1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/* $OpenBSD: build.c,v 1.5 2009/08/07 00:10:17 martynas Exp $ */
/*
* Copyright (c) 2004 Theo de Raadt <deraadt@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <dev/pci/if_tivar.h>
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "ti_fw.h"
#include "ti_fw2.h"
static void
output(const char *name,
const int FwReleaseMajor, const int FwReleaseMinor,
const int FwReleaseFix, const u_int32_t FwStartAddr,
const u_int32_t FwTextAddr, const int FwTextLen,
const u_int32_t FwRodataAddr, const int FwRodataLen,
const u_int32_t FwDataAddr, const int FwDataLen,
const u_int32_t FwSbssAddr, const int FwSbssLen,
const u_int32_t FwBssAddr, const int FwBssLen,
const u_int32_t *FwText, int sizetext,
const u_int32_t *FwRodata, int sizerodata,
const u_int32_t *FwData, int sizedata)
{
struct tigon_firmware tfproto, *tf;
int len, fd, i, cnt;
u_int32_t *b;
ssize_t rlen;
len = sizeof(tfproto) - sizeof(tfproto.data) + sizetext +
sizerodata + sizedata;
tf = (struct tigon_firmware *)malloc(len);
bzero(tf, len);
tf->FwReleaseMajor = FwReleaseMajor;
tf->FwReleaseMinor = FwReleaseMinor;
tf->FwReleaseFix = FwReleaseFix;
tf->FwStartAddr = FwStartAddr;
tf->FwTextAddr = FwTextAddr;
tf->FwTextLen = FwTextLen;
tf->FwRodataAddr = FwRodataAddr;
tf->FwRodataLen = FwRodataLen;
tf->FwDataAddr = FwDataAddr;
tf->FwDataLen = FwDataLen;
tf->FwSbssAddr = FwSbssAddr;
tf->FwSbssLen = FwSbssLen;
tf->FwBssAddr = FwBssAddr;
tf->FwBssLen = FwBssLen;
tf->FwTextOffset = 0;
tf->FwRodataOffset = sizetext;
tf->FwDataOffset = sizetext + sizerodata;
bcopy(FwText, &tf->data[tf->FwTextOffset], FwTextLen);
bcopy(FwRodata, &tf->data[tf->FwRodataOffset], FwRodataLen);
bcopy(FwData, &tf->data[tf->FwDataOffset], FwDataLen);
b = (u_int32_t *)tf;
cnt = len / sizeof(u_int32_t);
for (i = 0; i < cnt; i++)
b[i] = htole32(b[i]);
printf("creating %s length %d [%d+%d+%d] [%d+%d+%d]\n",
name, len, FwTextLen, FwRodataLen, FwDataLen,
sizetext, sizerodata, sizedata);
fd = open(name, O_WRONLY|O_CREAT|O_TRUNC, 0644);
if (fd == -1)
err(1, "%s", name);
rlen = write(fd, tf, len);
if (rlen == -1)
err(1, "%s", name);
if (rlen != len)
errx(1, "%s: short write", name);
free(tf);
close(fd);
}
int
main(int argc, char *argv[])
{
output("tigon1",
tigonFwReleaseMajor, tigonFwReleaseMinor,
tigonFwReleaseFix, tigonFwStartAddr,
tigonFwTextAddr, tigonFwTextLen,
tigonFwRodataAddr, tigonFwRodataLen,
tigonFwDataAddr, tigonFwDataLen,
tigonFwSbssAddr, tigonFwSbssLen,
tigonFwBssAddr, tigonFwBssLen,
tigonFwText, sizeof tigonFwText,
tigonFwRodata, sizeof tigonFwRodata,
tigonFwData, sizeof tigonFwData);
output("tigon2",
tigon2FwReleaseMajor, tigon2FwReleaseMinor,
tigon2FwReleaseFix, tigon2FwStartAddr,
tigon2FwTextAddr, tigon2FwTextLen,
tigon2FwRodataAddr, tigon2FwRodataLen,
tigon2FwDataAddr, tigon2FwDataLen,
tigon2FwSbssAddr, tigon2FwSbssLen,
tigon2FwBssAddr, tigon2FwBssLen,
tigon2FwText, sizeof tigon2FwText,
tigon2FwRodata, sizeof tigon2FwRodata,
tigon2FwData, sizeof tigon2FwData);
return 0;
}
|