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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
/* $OpenBSD: prom.h,v 1.5 2004/01/24 21:10:31 miod Exp $ */
/*
* Copyright (c) 2001 Steve Murphree, Jr.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __MACHINE_PROM_H__
#define __MACHINE_PROM_H__
#define MVMEPROM_INCHR 0x0000
#define MVMEPROM_INSTAT 0x0001
#define MVMEPROM_INLN 0x0002
#define MVMEPROM_READSTR 0x0003
#define MVMEPROM_READLN 0x0004
#define MVMEPROM_CHKBRK 0x0005
#define MVMEPROM_DSKRD 0x0010
#define MVMEPROM_DSKWR 0x0011
#define MVMEPROM_DSKCFIG 0x0012
#define MVMEPROM_DSKFMT 0x0014
#define MVMEPROM_DSKCTRL 0x0015
#define MVMEPROM_NETRD 0x0018
#define MVMEPROM_NETWR 0x0019
#define MVMEPROM_NETCFIG 0x001a
#define MVMEPROM_NETFOPEN 0x001b
#define MVMEPROM_NETFREAD 0x001c
#define MVMEPROM_NETCTRL 0x001d
#define MVMEPROM_OUTCHR 0x0020
#define MVMEPROM_OUTSTR 0x0021
#define MVMEPROM_OUTLN 0x0022
#define MVMEPROM_WRITE 0x0023
#define MVMEPROM_WRITELN 0x0024
#define MVMEPROM_WRITDLN 0x0025
#define MVMEPROM_PCRLF 0x0026
#define MVMEPROM_ERASLN 0x0027
#define MVMEPROM_WRITD 0x0028
#define MVMEPROM_SNDBRK 0x0029
#define MVMEPROM_DELAY 0x0043
#define MVMEPROM_RTC_TM 0x0050
#define MVMEPROM_RTC_DT 0x0051
#define MVMEPROM_RTC_DSP 0x0052
#define MVMEPROM_RTC_RD 0x0053
#define MVMEPROM_REDIR 0x0060
#define MVMEPROM_REDIR_I 0x0061
#define MVMEPROM_REDIR_O 0x0062
#define MVMEPROM_EXIT 0x0063
#define MVMEPROM_RETURN MVMEPROM_EXIT
#define MVMEPROM_BINDEC 0x0064
#define MVMEPROM_CHANGEV 0x0067
#define MVMEPROM_STRCMP 0x0068
#define MVMEPROM_MUL32 0x0069
#define MVMEPROM_DIV32 0x006a
#define MVMEPROM_CHKSUM 0x006b
#define MVMEPROM_BRD_ID 0x0070
#define MVMEPROM_ENVIRON 0x0071
#define MVMEPROM_PFLASH 0x0073
#define MVMEPROM_DIAGFCN 0x0074
#define MVMEPROM_SIOPEPS 0x0090
#define MVMEPROM_FORKMPU 0x0100
#define MVMEPROM_FORKMPUR 0x0101
#define MVMEPROM_IDELMPU 0x0110
#define MVMEPROM_IOINQ 0x0120
#define MVMEPROM_IOINFORM 0x0124
#define MVMEPROM_IOCONFIG 0x0128
#define MVMEPROM_IODELETE 0x012c
#define MVMEPROM_SYMBOLTA 0x0130
#define MVMEPROM_SYMBOLTD 0x0131
#define NETCTRLCMD_GETETHER 1
#define ENVIRONCMD_WRITE 1
#define ENVIRONCMD_READ 2
#define ENVIRONTYPE_EOL 0
#define ENVIRONTYPE_START 1
#define ENVIRONTYPE_DISKBOOT 2
#define ENVIRONTYPE_ROMBOOT 3
#define ENVIRONTYPE_NETBOOT 4
#define ENVIRONTYPE_MEMSIZE 5
#define NETSTATUS_SUCCESS 0x00
#define NETSTATUS_MISALNG 0x01
#define NETSTATUS_BUFFLMT 0x02
#define NETSTATUS_BADLEN 0x03
#define NETSTATUS_INITABRT 0x04
#define NETSTATUS_TXABRT 0x05
#define NETSTATUS_PCIADDRERR 0x06
#define NETSTATUS_NOPORT 0x07
#define NETSTATUS_ILLIPL 0x08
#define NETSTATUS_USERABRT 0x09
#define NETSTATUS_TIMEOUT 0x0A
#define NETSTATUS_SYSERR 0x10
#define NETSTATUS_TXBABBLE 0x11
#define NETSTATUS_TXCOL 0x12
#define NETSTATUS_TXSTOPPED 0x13
#define NETSTATUS_TXUNDERFL 0x14
#define NETSTATUS_TXLATECOL 0x15
#define NETSTATUS_TXLOSTCARR 0x16
#define NETSTATUS_TXLINKFAIL 0x17
#define NETSTATUS_TXNOCARR 0x18
#define NETSTATUS_TXTOPHY 0x19
#define NETSTATUS_RXCRCERR 0x20
#define NETSTATUS_RXOVERFL 0x21
#define NETSTATUS_RXFRAMEERR 0x22
#define NETSTATUS_RXLDFNS 0x23
#define NETSTATUS_RXFDCOL 0x24
#define NETSTATUS_RXRUNTFRAME 0x25
#define NETSTATUS_TXTONORM 0x28
#define NETSTATUS_TXTOSETUP 0x29
#define NETSTATUS_SROMERR 0x30
#define NETCTRLCMD_INIT 0
#define NETCTRLCMD_GETETHER 1
#define NETCTRLCMD_TX 2
#define NETCTRLCMD_RX 3
#define NETCTRLCMD_FLUSH 4
#define NETCTRLCMD_RESET 5
#define NETCFG_FLAG_RD 0
#define NETCFG_FLAG_WR 1
#define NETCFG_FLAG_WRNV 2
#ifndef LOCORE
extern struct bugenviron bugenviron;
extern int bugenv_init;
#define BUG_ENV_END 0
#define BUG_STARTUP_PARAM 1
struct bug_startup {
char s_mode;
char s_menu;
char s_remotestart;
char s_probe;
char s_negsysfail;
char s_resetscsi;
char s_nocfblk;
char s_scsisync;
};
#define BUG_AUTOBOOT_INFO 2
struct bug_autoboot {
char b_enable;
char b_poweruponly;
char b_clun;
char b_dlun;
char b_delay;
char b_string[22]; /* 0x15 + 0x1 */
};
#define BUG_ROMBOOT_INFO 3
struct bug_romboot {
char r_enable;
char r_poweruponly;
char r_bootvme;
char r_delay;
unsigned r_start;
unsigned r_end;
};
#define BUG_NETBOOT_INFO 4
struct bug_netboot {
char n_enable;
char n_poweruponly;
char n_clun;
char n_dlun;
char n_delay;
char *n_param;
};
#define BUG_MEMORY_INFO 5
struct bug_memory {
char m_sizeenable;
unsigned m_start;
unsigned m_end;
};
struct bugenviron {
struct bug_startup s;
struct bug_autoboot b;
struct bug_romboot r;
struct bug_netboot n;
struct bug_memory m;
};
#define bug_localmemsize() (bugenviron.m.m_end - bugenviron.m.m_start)
#define bug_localmemstart() (bugenviron.m.m_start)
#define bug_localmemend() (bugenviron.m.m_end)
struct mvmeprom_netio {
u_char clun;
u_char dlun;
u_short status;
void *addr;
u_long tlen;
u_long offset;
u_long ttime;
u_long tbytes;
char filename[64];
};
struct mvmeprom_netfopen {
u_char clun;
u_char dlun;
u_short status;
char filename[64];
};
struct mvmeprom_netfread {
u_char clun;
u_char dlun;
u_short status;
void *addr;
u_short bytes;
u_short blk;
u_long timeout;
};
struct mvmeprom_netctrl {
u_char clun;
u_char dlun;
u_short status;
u_long cmd;
void *addr;
u_long len;
u_long flags;
};
struct mvmeprom_netparam {
u_long ver;
void * nodeaddr;
void * loadaddr;
void * execaddr;
u_long delay;
u_long length;
u_long offset;
void * traceaddr;
u_long client_ip;
u_long server_ip;
u_long subnet;
u_long bcast;
u_long gateway_ip;
u_char rarp_retry;
u_char tftp_retry;
u_char rarp_cntl;
u_char update_cntl;
char filename[64];
char args[64];
};
struct mvmeprom_netcfg {
u_char clun;
u_char dlun;
u_short status;
struct mvmeprom_netparam *netparam;
u_long flag;
};
struct prom_environ_hdr {
u_char type;
u_char len;
};
struct mvmeprom_brdid {
u_long eye_catcher; /* "BDID" */
u_char rev;
u_char month;
u_char day;
u_char year;
u_short size; /* BID packet length */
u_short rsv1;
u_short model; /* e.g. 1603, 1604 */
u_short suffix; /* e.g. AT */
u_long options; /* Board options */
u_short ctrlun; /* boot clun */
u_short devlun; /* boot dlun */
u_short devtype; /* boot device type */
u_short devnum; /* boot device number */
u_long opt2; /* reserved */
u_char version[4];
/* the folowing are CNFG values */
u_char board_serial[12]; /* SBC serial number */
u_char board_id[16]; /* SBC id */
u_char pwa_id[16]; /* printed wiring assembly id */
u_char old_speed[4]; /* old cpu speed field */
u_char etheraddr[6]; /* mac address, all zero if no ether */
u_char fill[2];
u_char scsi_id[2]; /* local SCSI id */
u_char speed[3]; /* cpu speed */
u_char bus_speed[3]; /* pci bus speed */
u_char sys_serial[16]; /* system serial (user)*/
u_char sys_id[31]; /* system id (user)*/
u_char license_id[9]; /* license ID (for AIX)*/
};
struct mvmeprom_time {
u_char year_BCD;
u_char month_BCD;
u_char day_BCD;
u_char wday_BCD;
u_char hour_BCD;
u_char min_BCD;
u_char sec_BCD;
u_char cal_BCD;
};
struct mvmeprom_dskio {
u_char ctrl_lun;
u_char dev_lun;
u_short status;
void *pbuffer;
u_long blk_num;
u_short blk_cnt;
u_char flag;
#define BUG_FILE_MARK 0x80
#define IGNORE_FILENUM 0x02
#define END_OF_FILE 0x01
u_char addr_mod;
};
#define MVMEPROM_BLOCK_SIZE 256
struct mvmeprom_args {
u_int dev_lun;
u_int ctrl_lun;
u_int flags;
u_int ctrl_addr;
u_int entry;
u_int conf_blk;
char *arg_start;
char *arg_end;
char *nbarg_start;
char *nbarg_end;
u_int cputyp;
};
#endif
#define MVMEPROM_REG_CTRLLUN "3"
#define MVMEPROM_REG_DEVLUN "4"
#define MVMEPROM_REG_SCSUPP "5"
#define MVMEPROM_REG_CTRLADDR "6"
#define MVMEPROM_REG_ENTRY "7"
#define MVMEPROM_REG_IPA "8"
#define MVMEPROM_REG_ARGSTART "9"
#define MVMEPROM_REG_ARGEND "10"
#define MVMEPROM_REG_NBARGSTART "11"
#define MVMEPROM_REG_NBARGEND "12"
#ifndef RB_NOSYM
#define RB_NOSYM 0x4000
#endif
#endif /* __MACHINE_PROM_H__ */
|