1 |
1632 |
jcastillo |
#ifndef _HWRPB_H
|
2 |
|
|
#define _HWRPB_H
|
3 |
|
|
|
4 |
|
|
#define INIT_HWRPB ((struct hwrpb_struct *) 0x10000000)
|
5 |
|
|
|
6 |
|
|
/*
|
7 |
|
|
* DEC processor types for Alpha systems. Found in HWRPB.
|
8 |
|
|
* These values are architected.
|
9 |
|
|
*/
|
10 |
|
|
|
11 |
|
|
#define EV3_CPU 1 /* EV3 */
|
12 |
|
|
#define EV4_CPU 2 /* EV4 (21064) */
|
13 |
|
|
#define LCA4_CPU 4 /* LCA4 (21066/21068) */
|
14 |
|
|
#define EV5_CPU 5 /* EV5 (21164) */
|
15 |
|
|
#define EV45_CPU 6 /* EV4.5 (21064/xxx) */
|
16 |
|
|
#define EV56_CPU 7 /* EV5.6 (21164) */
|
17 |
|
|
#define EV6_CPU 8 /* EV6 (21164) */
|
18 |
|
|
#define PCA56_CPU 9 /* PCA56 (21164PC) */
|
19 |
|
|
#define PCA57_CPU 10 /* PCA57 (21164??) */
|
20 |
|
|
|
21 |
|
|
/*
|
22 |
|
|
* DEC system types for Alpha systems. Found in HWRPB.
|
23 |
|
|
* These values are architected.
|
24 |
|
|
*/
|
25 |
|
|
|
26 |
|
|
#define ST_ADU 1 /* Alpha ADU systype */
|
27 |
|
|
#define ST_DEC_4000 2 /* Cobra systype */
|
28 |
|
|
#define ST_DEC_7000 3 /* Ruby systype */
|
29 |
|
|
#define ST_DEC_3000_500 4 /* Flamingo systype */
|
30 |
|
|
#define ST_DEC_2000_300 6 /* Jensen systype */
|
31 |
|
|
#define ST_DEC_3000_300 7 /* Pelican systype */
|
32 |
|
|
#define ST_DEC_2100_A500 9 /* Sable systype */
|
33 |
|
|
#define ST_DEC_AXPVME_64 10 /* AXPvme system type */
|
34 |
|
|
#define ST_DEC_AXPPCI_33 11 /* NoName system type */
|
35 |
|
|
#define ST_DEC_TLASER 12 /* Turbolaser systype */
|
36 |
|
|
#define ST_DEC_2100_A50 13 /* Avanti systype */
|
37 |
|
|
#define ST_DEC_ALCOR 15 /* Alcor (EV5) systype */
|
38 |
|
|
#define ST_DEC_1000 17 /* Mikasa systype */
|
39 |
|
|
#define ST_DEC_EB64 18 /* EB64 systype */
|
40 |
|
|
#define ST_DEC_EB66 19 /* EB66 systype */
|
41 |
|
|
#define ST_DEC_EB64P 20 /* EB64+ systype */
|
42 |
|
|
#define ST_DEC_BURNS 21 /* laptop systype */
|
43 |
|
|
#define ST_DEC_RAWHIDE 22 /* Rawhide systype */
|
44 |
|
|
#define ST_DEC_K2 23 /* K2 systype */
|
45 |
|
|
#define ST_DEC_LYNX 24 /* Lynx systype */
|
46 |
|
|
#define ST_DEC_XL 25 /* Alpha XL systype */
|
47 |
|
|
#define ST_DEC_EB164 26 /* EB164 systype */
|
48 |
|
|
#define ST_DEC_NORITAKE 27 /* Noritake systype */
|
49 |
|
|
#define ST_DEC_CORTEX 28 /* Cortex systype */
|
50 |
|
|
#define ST_DEC_MIATA 30 /* Miata systype */
|
51 |
|
|
#define ST_DEC_XXM 31 /* XXM systype */
|
52 |
|
|
#define ST_DEC_TAKARA 32 /* Takara systype */
|
53 |
|
|
#define ST_DEC_YUKON 33 /* Yukon systype */
|
54 |
|
|
#define ST_DEC_TSUNAMI 34 /* Tsunami systype */
|
55 |
|
|
#define ST_DEC_WILDFIRE 35 /* Wildfire systype */
|
56 |
|
|
#define ST_DEC_CUSCO 36 /* CUSCO systype */
|
57 |
|
|
|
58 |
|
|
/* UNOFFICIAL!!! */
|
59 |
|
|
#define ST_UNOFFICIAL_BIAS 100
|
60 |
|
|
#define ST_DTI_RUFFIAN 101 /* RUFFIAN systype */
|
61 |
|
|
|
62 |
|
|
struct pcb_struct {
|
63 |
|
|
unsigned long ksp;
|
64 |
|
|
unsigned long usp;
|
65 |
|
|
unsigned long ptbr;
|
66 |
|
|
unsigned int pcc;
|
67 |
|
|
unsigned int asn;
|
68 |
|
|
unsigned long unique;
|
69 |
|
|
unsigned long flags;
|
70 |
|
|
unsigned long res1, res2;
|
71 |
|
|
};
|
72 |
|
|
|
73 |
|
|
struct percpu_struct {
|
74 |
|
|
unsigned long hwpcb[16];
|
75 |
|
|
unsigned long flags;
|
76 |
|
|
unsigned long pal_mem_size;
|
77 |
|
|
unsigned long pal_scratch_size;
|
78 |
|
|
unsigned long pal_mem_pa;
|
79 |
|
|
unsigned long pal_scratch_pa;
|
80 |
|
|
unsigned long pal_revision;
|
81 |
|
|
unsigned long type;
|
82 |
|
|
unsigned long variation;
|
83 |
|
|
unsigned long revision;
|
84 |
|
|
unsigned long serial_no[2];
|
85 |
|
|
unsigned long logout_area_pa;
|
86 |
|
|
unsigned long logout_area_len;
|
87 |
|
|
unsigned long halt_PCBB;
|
88 |
|
|
unsigned long halt_PC;
|
89 |
|
|
unsigned long halt_PS;
|
90 |
|
|
unsigned long halt_arg;
|
91 |
|
|
unsigned long halt_ra;
|
92 |
|
|
unsigned long halt_pv;
|
93 |
|
|
unsigned long halt_reason;
|
94 |
|
|
unsigned long res;
|
95 |
|
|
unsigned long ipc_buffer[21];
|
96 |
|
|
unsigned long palcode_avail[16];
|
97 |
|
|
unsigned long compatibility;
|
98 |
|
|
};
|
99 |
|
|
|
100 |
|
|
struct procdesc_struct {
|
101 |
|
|
unsigned long weird_vms_stuff;
|
102 |
|
|
unsigned long address;
|
103 |
|
|
};
|
104 |
|
|
|
105 |
|
|
struct vf_map_struct {
|
106 |
|
|
unsigned long va;
|
107 |
|
|
unsigned long pa;
|
108 |
|
|
unsigned long count;
|
109 |
|
|
};
|
110 |
|
|
|
111 |
|
|
struct crb_struct {
|
112 |
|
|
struct procdesc_struct * dispatch_va;
|
113 |
|
|
struct procdesc_struct * dispatch_pa;
|
114 |
|
|
struct procdesc_struct * fixup_va;
|
115 |
|
|
struct procdesc_struct * fixup_pa;
|
116 |
|
|
/* virtual->physical map */
|
117 |
|
|
unsigned long map_entries;
|
118 |
|
|
unsigned long map_pages;
|
119 |
|
|
struct vf_map_struct map[1];
|
120 |
|
|
};
|
121 |
|
|
|
122 |
|
|
struct memclust_struct {
|
123 |
|
|
unsigned long start_pfn;
|
124 |
|
|
unsigned long numpages;
|
125 |
|
|
unsigned long numtested;
|
126 |
|
|
unsigned long bitmap_va;
|
127 |
|
|
unsigned long bitmap_pa;
|
128 |
|
|
unsigned long bitmap_chksum;
|
129 |
|
|
unsigned long usage;
|
130 |
|
|
};
|
131 |
|
|
|
132 |
|
|
struct memdesc_struct {
|
133 |
|
|
unsigned long chksum;
|
134 |
|
|
unsigned long optional_pa;
|
135 |
|
|
unsigned long numclusters;
|
136 |
|
|
struct memclust_struct cluster[0];
|
137 |
|
|
};
|
138 |
|
|
|
139 |
|
|
struct dsr_struct {
|
140 |
|
|
long smm; /* SMM nubber used by LMF */
|
141 |
|
|
unsigned long lurt_off; /* offset to LURT table */
|
142 |
|
|
unsigned long sysname_off; /* offset to sysname char count */
|
143 |
|
|
};
|
144 |
|
|
|
145 |
|
|
struct hwrpb_struct {
|
146 |
|
|
unsigned long phys_addr; /* check: physical address of the hwrpb */
|
147 |
|
|
unsigned long id; /* check: "HWRPB\0\0\0" */
|
148 |
|
|
unsigned long revision;
|
149 |
|
|
unsigned long size; /* size of hwrpb */
|
150 |
|
|
unsigned long cpuid;
|
151 |
|
|
unsigned long pagesize; /* 8192, I hope */
|
152 |
|
|
unsigned long pa_bits; /* number of physical address bits */
|
153 |
|
|
unsigned long max_asn;
|
154 |
|
|
unsigned char ssn[16]; /* system serial number: big bother is watching */
|
155 |
|
|
unsigned long sys_type;
|
156 |
|
|
unsigned long sys_variation;
|
157 |
|
|
unsigned long sys_revision;
|
158 |
|
|
unsigned long intr_freq; /* interval clock frequency * 4096 */
|
159 |
|
|
unsigned long cycle_freq; /* cycle counter frequency */
|
160 |
|
|
unsigned long vptb; /* Virtual Page Table Base address */
|
161 |
|
|
unsigned long res1;
|
162 |
|
|
unsigned long tbhb_offset; /* Translation Buffer Hint Block */
|
163 |
|
|
unsigned long nr_processors;
|
164 |
|
|
unsigned long processor_size;
|
165 |
|
|
unsigned long processor_offset;
|
166 |
|
|
unsigned long ctb_nr;
|
167 |
|
|
unsigned long ctb_size; /* console terminal block size */
|
168 |
|
|
unsigned long ctbt_offset; /* console terminal block table offset */
|
169 |
|
|
unsigned long crb_offset; /* console callback routine block */
|
170 |
|
|
unsigned long mddt_offset; /* memory data descriptor table */
|
171 |
|
|
unsigned long cdb_offset; /* configuration data block (or NULL) */
|
172 |
|
|
unsigned long frut_offset; /* FRU table (or NULL) */
|
173 |
|
|
void (*save_terminal)(unsigned long);
|
174 |
|
|
unsigned long save_terminal_data;
|
175 |
|
|
void (*restore_terminal)(unsigned long);
|
176 |
|
|
unsigned long restore_terminal_data;
|
177 |
|
|
void (*CPU_restart)(unsigned long);
|
178 |
|
|
unsigned long CPU_restart_data;
|
179 |
|
|
unsigned long res2;
|
180 |
|
|
unsigned long res3;
|
181 |
|
|
unsigned long chksum;
|
182 |
|
|
unsigned long rxrdy;
|
183 |
|
|
unsigned long txrdy;
|
184 |
|
|
unsigned long dsr_offset; /* "Dynamic System Recognition Data Block Table" */
|
185 |
|
|
};
|
186 |
|
|
|
187 |
|
|
#endif
|