]>
Commit | Line | Data |
---|---|---|
a65f56ee AJ |
1 | /* |
2 | * QEMU NS SONIC DP8393x netcard | |
3 | * | |
4 | * Copyright (c) 2008-2009 Herve Poussineau | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU General Public License as | |
8 | * published by the Free Software Foundation; either version 2 of | |
9 | * the License, or (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License along | |
8167ee88 | 17 | * with this program; if not, see <http://www.gnu.org/licenses/>. |
a65f56ee AJ |
18 | */ |
19 | ||
104655a5 HP |
20 | #include "hw/sysbus.h" |
21 | #include "hw/devices.h" | |
1422e32d | 22 | #include "net/net.h" |
104655a5 | 23 | #include "qemu/timer.h" |
f2f62c4d | 24 | #include <zlib.h> |
a65f56ee AJ |
25 | |
26 | //#define DEBUG_SONIC | |
27 | ||
89ae0ff9 | 28 | #define SONIC_PROM_SIZE 0x1000 |
a65f56ee AJ |
29 | |
30 | #ifdef DEBUG_SONIC | |
001faf32 BS |
31 | #define DPRINTF(fmt, ...) \ |
32 | do { printf("sonic: " fmt , ## __VA_ARGS__); } while (0) | |
a65f56ee AJ |
33 | static const char* reg_names[] = { |
34 | "CR", "DCR", "RCR", "TCR", "IMR", "ISR", "UTDA", "CTDA", | |
35 | "TPS", "TFC", "TSA0", "TSA1", "TFS", "URDA", "CRDA", "CRBA0", | |
36 | "CRBA1", "RBWC0", "RBWC1", "EOBC", "URRA", "RSA", "REA", "RRP", | |
37 | "RWP", "TRBA0", "TRBA1", "0x1b", "0x1c", "0x1d", "0x1e", "LLFA", | |
38 | "TTDA", "CEP", "CAP2", "CAP1", "CAP0", "CE", "CDP", "CDC", | |
39 | "SR", "WT0", "WT1", "RSC", "CRCT", "FAET", "MPT", "MDT", | |
40 | "0x30", "0x31", "0x32", "0x33", "0x34", "0x35", "0x36", "0x37", | |
41 | "0x38", "0x39", "0x3a", "0x3b", "0x3c", "0x3d", "0x3e", "DCR2" }; | |
42 | #else | |
001faf32 | 43 | #define DPRINTF(fmt, ...) do {} while (0) |
a65f56ee AJ |
44 | #endif |
45 | ||
001faf32 BS |
46 | #define SONIC_ERROR(fmt, ...) \ |
47 | do { printf("sonic ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0) | |
a65f56ee AJ |
48 | |
49 | #define SONIC_CR 0x00 | |
50 | #define SONIC_DCR 0x01 | |
51 | #define SONIC_RCR 0x02 | |
52 | #define SONIC_TCR 0x03 | |
53 | #define SONIC_IMR 0x04 | |
54 | #define SONIC_ISR 0x05 | |
55 | #define SONIC_UTDA 0x06 | |
56 | #define SONIC_CTDA 0x07 | |
57 | #define SONIC_TPS 0x08 | |
58 | #define SONIC_TFC 0x09 | |
59 | #define SONIC_TSA0 0x0a | |
60 | #define SONIC_TSA1 0x0b | |
61 | #define SONIC_TFS 0x0c | |
62 | #define SONIC_URDA 0x0d | |
63 | #define SONIC_CRDA 0x0e | |
64 | #define SONIC_CRBA0 0x0f | |
65 | #define SONIC_CRBA1 0x10 | |
66 | #define SONIC_RBWC0 0x11 | |
67 | #define SONIC_RBWC1 0x12 | |
68 | #define SONIC_EOBC 0x13 | |
69 | #define SONIC_URRA 0x14 | |
70 | #define SONIC_RSA 0x15 | |
71 | #define SONIC_REA 0x16 | |
72 | #define SONIC_RRP 0x17 | |
73 | #define SONIC_RWP 0x18 | |
74 | #define SONIC_TRBA0 0x19 | |
75 | #define SONIC_TRBA1 0x1a | |
76 | #define SONIC_LLFA 0x1f | |
77 | #define SONIC_TTDA 0x20 | |
78 | #define SONIC_CEP 0x21 | |
79 | #define SONIC_CAP2 0x22 | |
80 | #define SONIC_CAP1 0x23 | |
81 | #define SONIC_CAP0 0x24 | |
82 | #define SONIC_CE 0x25 | |
83 | #define SONIC_CDP 0x26 | |
84 | #define SONIC_CDC 0x27 | |
85 | #define SONIC_SR 0x28 | |
86 | #define SONIC_WT0 0x29 | |
87 | #define SONIC_WT1 0x2a | |
88 | #define SONIC_RSC 0x2b | |
89 | #define SONIC_CRCT 0x2c | |
90 | #define SONIC_FAET 0x2d | |
91 | #define SONIC_MPT 0x2e | |
92 | #define SONIC_MDT 0x2f | |
93 | #define SONIC_DCR2 0x3f | |
94 | ||
95 | #define SONIC_CR_HTX 0x0001 | |
96 | #define SONIC_CR_TXP 0x0002 | |
97 | #define SONIC_CR_RXDIS 0x0004 | |
98 | #define SONIC_CR_RXEN 0x0008 | |
99 | #define SONIC_CR_STP 0x0010 | |
100 | #define SONIC_CR_ST 0x0020 | |
101 | #define SONIC_CR_RST 0x0080 | |
102 | #define SONIC_CR_RRRA 0x0100 | |
103 | #define SONIC_CR_LCAM 0x0200 | |
104 | #define SONIC_CR_MASK 0x03bf | |
105 | ||
106 | #define SONIC_DCR_DW 0x0020 | |
107 | #define SONIC_DCR_LBR 0x2000 | |
108 | #define SONIC_DCR_EXBUS 0x8000 | |
109 | ||
110 | #define SONIC_RCR_PRX 0x0001 | |
111 | #define SONIC_RCR_LBK 0x0002 | |
112 | #define SONIC_RCR_FAER 0x0004 | |
113 | #define SONIC_RCR_CRCR 0x0008 | |
114 | #define SONIC_RCR_CRS 0x0020 | |
115 | #define SONIC_RCR_LPKT 0x0040 | |
116 | #define SONIC_RCR_BC 0x0080 | |
117 | #define SONIC_RCR_MC 0x0100 | |
118 | #define SONIC_RCR_LB0 0x0200 | |
119 | #define SONIC_RCR_LB1 0x0400 | |
120 | #define SONIC_RCR_AMC 0x0800 | |
121 | #define SONIC_RCR_PRO 0x1000 | |
122 | #define SONIC_RCR_BRD 0x2000 | |
123 | #define SONIC_RCR_RNT 0x4000 | |
124 | ||
125 | #define SONIC_TCR_PTX 0x0001 | |
126 | #define SONIC_TCR_BCM 0x0002 | |
127 | #define SONIC_TCR_FU 0x0004 | |
128 | #define SONIC_TCR_EXC 0x0040 | |
129 | #define SONIC_TCR_CRSL 0x0080 | |
130 | #define SONIC_TCR_NCRS 0x0100 | |
131 | #define SONIC_TCR_EXD 0x0400 | |
132 | #define SONIC_TCR_CRCI 0x2000 | |
133 | #define SONIC_TCR_PINT 0x8000 | |
134 | ||
135 | #define SONIC_ISR_RBE 0x0020 | |
136 | #define SONIC_ISR_RDE 0x0040 | |
137 | #define SONIC_ISR_TC 0x0080 | |
138 | #define SONIC_ISR_TXDN 0x0200 | |
139 | #define SONIC_ISR_PKTRX 0x0400 | |
140 | #define SONIC_ISR_PINT 0x0800 | |
141 | #define SONIC_ISR_LCD 0x1000 | |
142 | ||
104655a5 HP |
143 | #define TYPE_DP8393X "dp8393x" |
144 | #define DP8393X(obj) OBJECT_CHECK(dp8393xState, (obj), TYPE_DP8393X) | |
145 | ||
a65f56ee | 146 | typedef struct dp8393xState { |
104655a5 HP |
147 | SysBusDevice parent_obj; |
148 | ||
a65f56ee | 149 | /* Hardware */ |
104655a5 | 150 | uint8_t it_shift; |
a65f56ee AJ |
151 | qemu_irq irq; |
152 | #ifdef DEBUG_SONIC | |
153 | int irq_level; | |
154 | #endif | |
155 | QEMUTimer *watchdog; | |
156 | int64_t wt_last_update; | |
05f41fe3 MM |
157 | NICConf conf; |
158 | NICState *nic; | |
024e5bb6 | 159 | MemoryRegion mmio; |
89ae0ff9 | 160 | MemoryRegion prom; |
a65f56ee AJ |
161 | |
162 | /* Registers */ | |
163 | uint8_t cam[16][6]; | |
164 | uint16_t regs[0x40]; | |
165 | ||
166 | /* Temporaries */ | |
167 | uint8_t tx_buffer[0x10000]; | |
168 | int loopback_packet; | |
169 | ||
170 | /* Memory access */ | |
104655a5 | 171 | void *dma_mr; |
dd820513 | 172 | AddressSpace as; |
a65f56ee AJ |
173 | } dp8393xState; |
174 | ||
175 | static void dp8393x_update_irq(dp8393xState *s) | |
176 | { | |
177 | int level = (s->regs[SONIC_IMR] & s->regs[SONIC_ISR]) ? 1 : 0; | |
178 | ||
179 | #ifdef DEBUG_SONIC | |
180 | if (level != s->irq_level) { | |
181 | s->irq_level = level; | |
182 | if (level) { | |
183 | DPRINTF("raise irq, isr is 0x%04x\n", s->regs[SONIC_ISR]); | |
184 | } else { | |
185 | DPRINTF("lower irq\n"); | |
186 | } | |
187 | } | |
188 | #endif | |
189 | ||
190 | qemu_set_irq(s->irq, level); | |
191 | } | |
192 | ||
3df5de64 | 193 | static void dp8393x_do_load_cam(dp8393xState *s) |
a65f56ee AJ |
194 | { |
195 | uint16_t data[8]; | |
196 | int width, size; | |
197 | uint16_t index = 0; | |
198 | ||
199 | width = (s->regs[SONIC_DCR] & SONIC_DCR_DW) ? 2 : 1; | |
200 | size = sizeof(uint16_t) * 4 * width; | |
201 | ||
202 | while (s->regs[SONIC_CDC] & 0x1f) { | |
203 | /* Fill current entry */ | |
dd820513 | 204 | address_space_rw(&s->as, |
a65f56ee | 205 | (s->regs[SONIC_URRA] << 16) | s->regs[SONIC_CDP], |
dd820513 | 206 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
207 | s->cam[index][0] = data[1 * width] & 0xff; |
208 | s->cam[index][1] = data[1 * width] >> 8; | |
209 | s->cam[index][2] = data[2 * width] & 0xff; | |
210 | s->cam[index][3] = data[2 * width] >> 8; | |
211 | s->cam[index][4] = data[3 * width] & 0xff; | |
212 | s->cam[index][5] = data[3 * width] >> 8; | |
213 | DPRINTF("load cam[%d] with %02x%02x%02x%02x%02x%02x\n", index, | |
214 | s->cam[index][0], s->cam[index][1], s->cam[index][2], | |
215 | s->cam[index][3], s->cam[index][4], s->cam[index][5]); | |
216 | /* Move to next entry */ | |
217 | s->regs[SONIC_CDC]--; | |
218 | s->regs[SONIC_CDP] += size; | |
219 | index++; | |
220 | } | |
221 | ||
222 | /* Read CAM enable */ | |
dd820513 | 223 | address_space_rw(&s->as, |
a65f56ee | 224 | (s->regs[SONIC_URRA] << 16) | s->regs[SONIC_CDP], |
dd820513 | 225 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
226 | s->regs[SONIC_CE] = data[0 * width]; |
227 | DPRINTF("load cam done. cam enable mask 0x%04x\n", s->regs[SONIC_CE]); | |
228 | ||
229 | /* Done */ | |
230 | s->regs[SONIC_CR] &= ~SONIC_CR_LCAM; | |
231 | s->regs[SONIC_ISR] |= SONIC_ISR_LCD; | |
232 | dp8393x_update_irq(s); | |
233 | } | |
234 | ||
3df5de64 | 235 | static void dp8393x_do_read_rra(dp8393xState *s) |
a65f56ee AJ |
236 | { |
237 | uint16_t data[8]; | |
238 | int width, size; | |
239 | ||
240 | /* Read memory */ | |
241 | width = (s->regs[SONIC_DCR] & SONIC_DCR_DW) ? 2 : 1; | |
242 | size = sizeof(uint16_t) * 4 * width; | |
dd820513 | 243 | address_space_rw(&s->as, |
a65f56ee | 244 | (s->regs[SONIC_URRA] << 16) | s->regs[SONIC_RRP], |
dd820513 | 245 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
246 | |
247 | /* Update SONIC registers */ | |
248 | s->regs[SONIC_CRBA0] = data[0 * width]; | |
249 | s->regs[SONIC_CRBA1] = data[1 * width]; | |
250 | s->regs[SONIC_RBWC0] = data[2 * width]; | |
251 | s->regs[SONIC_RBWC1] = data[3 * width]; | |
252 | DPRINTF("CRBA0/1: 0x%04x/0x%04x, RBWC0/1: 0x%04x/0x%04x\n", | |
253 | s->regs[SONIC_CRBA0], s->regs[SONIC_CRBA1], | |
254 | s->regs[SONIC_RBWC0], s->regs[SONIC_RBWC1]); | |
255 | ||
256 | /* Go to next entry */ | |
257 | s->regs[SONIC_RRP] += size; | |
258 | ||
259 | /* Handle wrap */ | |
260 | if (s->regs[SONIC_RRP] == s->regs[SONIC_REA]) { | |
261 | s->regs[SONIC_RRP] = s->regs[SONIC_RSA]; | |
262 | } | |
263 | ||
264 | /* Check resource exhaustion */ | |
265 | if (s->regs[SONIC_RRP] == s->regs[SONIC_RWP]) | |
266 | { | |
267 | s->regs[SONIC_ISR] |= SONIC_ISR_RBE; | |
268 | dp8393x_update_irq(s); | |
269 | } | |
270 | ||
271 | /* Done */ | |
272 | s->regs[SONIC_CR] &= ~SONIC_CR_RRRA; | |
273 | } | |
274 | ||
3df5de64 | 275 | static void dp8393x_do_software_reset(dp8393xState *s) |
a65f56ee | 276 | { |
bc72ad67 | 277 | timer_del(s->watchdog); |
a65f56ee AJ |
278 | |
279 | s->regs[SONIC_CR] &= ~(SONIC_CR_LCAM | SONIC_CR_RRRA | SONIC_CR_TXP | SONIC_CR_HTX); | |
280 | s->regs[SONIC_CR] |= SONIC_CR_RST | SONIC_CR_RXDIS; | |
281 | } | |
282 | ||
3df5de64 | 283 | static void dp8393x_set_next_tick(dp8393xState *s) |
a65f56ee AJ |
284 | { |
285 | uint32_t ticks; | |
286 | int64_t delay; | |
287 | ||
288 | if (s->regs[SONIC_CR] & SONIC_CR_STP) { | |
bc72ad67 | 289 | timer_del(s->watchdog); |
a65f56ee AJ |
290 | return; |
291 | } | |
292 | ||
293 | ticks = s->regs[SONIC_WT1] << 16 | s->regs[SONIC_WT0]; | |
bc72ad67 | 294 | s->wt_last_update = qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
6ee093c9 | 295 | delay = get_ticks_per_sec() * ticks / 5000000; |
bc72ad67 | 296 | timer_mod(s->watchdog, s->wt_last_update + delay); |
a65f56ee AJ |
297 | } |
298 | ||
3df5de64 | 299 | static void dp8393x_update_wt_regs(dp8393xState *s) |
a65f56ee AJ |
300 | { |
301 | int64_t elapsed; | |
302 | uint32_t val; | |
303 | ||
304 | if (s->regs[SONIC_CR] & SONIC_CR_STP) { | |
bc72ad67 | 305 | timer_del(s->watchdog); |
a65f56ee AJ |
306 | return; |
307 | } | |
308 | ||
bc72ad67 | 309 | elapsed = s->wt_last_update - qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL); |
a65f56ee AJ |
310 | val = s->regs[SONIC_WT1] << 16 | s->regs[SONIC_WT0]; |
311 | val -= elapsed / 5000000; | |
312 | s->regs[SONIC_WT1] = (val >> 16) & 0xffff; | |
313 | s->regs[SONIC_WT0] = (val >> 0) & 0xffff; | |
3df5de64 | 314 | dp8393x_set_next_tick(s); |
a65f56ee AJ |
315 | |
316 | } | |
317 | ||
3df5de64 | 318 | static void dp8393x_do_start_timer(dp8393xState *s) |
a65f56ee AJ |
319 | { |
320 | s->regs[SONIC_CR] &= ~SONIC_CR_STP; | |
3df5de64 | 321 | dp8393x_set_next_tick(s); |
a65f56ee AJ |
322 | } |
323 | ||
3df5de64 | 324 | static void dp8393x_do_stop_timer(dp8393xState *s) |
a65f56ee AJ |
325 | { |
326 | s->regs[SONIC_CR] &= ~SONIC_CR_ST; | |
3df5de64 | 327 | dp8393x_update_wt_regs(s); |
a65f56ee AJ |
328 | } |
329 | ||
3df5de64 | 330 | static void dp8393x_do_receiver_enable(dp8393xState *s) |
a65f56ee AJ |
331 | { |
332 | s->regs[SONIC_CR] &= ~SONIC_CR_RXDIS; | |
333 | } | |
334 | ||
3df5de64 | 335 | static void dp8393x_do_receiver_disable(dp8393xState *s) |
a65f56ee AJ |
336 | { |
337 | s->regs[SONIC_CR] &= ~SONIC_CR_RXEN; | |
338 | } | |
339 | ||
3df5de64 | 340 | static void dp8393x_do_transmit_packets(dp8393xState *s) |
a65f56ee | 341 | { |
b356f76d | 342 | NetClientState *nc = qemu_get_queue(s->nic); |
a65f56ee AJ |
343 | uint16_t data[12]; |
344 | int width, size; | |
345 | int tx_len, len; | |
346 | uint16_t i; | |
347 | ||
348 | width = (s->regs[SONIC_DCR] & SONIC_DCR_DW) ? 2 : 1; | |
349 | ||
350 | while (1) { | |
351 | /* Read memory */ | |
352 | DPRINTF("Transmit packet at %08x\n", | |
353 | (s->regs[SONIC_UTDA] << 16) | s->regs[SONIC_CTDA]); | |
354 | size = sizeof(uint16_t) * 6 * width; | |
355 | s->regs[SONIC_TTDA] = s->regs[SONIC_CTDA]; | |
dd820513 | 356 | address_space_rw(&s->as, |
a65f56ee | 357 | ((s->regs[SONIC_UTDA] << 16) | s->regs[SONIC_TTDA]) + sizeof(uint16_t) * width, |
dd820513 | 358 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
359 | tx_len = 0; |
360 | ||
361 | /* Update registers */ | |
362 | s->regs[SONIC_TCR] = data[0 * width] & 0xf000; | |
363 | s->regs[SONIC_TPS] = data[1 * width]; | |
364 | s->regs[SONIC_TFC] = data[2 * width]; | |
365 | s->regs[SONIC_TSA0] = data[3 * width]; | |
366 | s->regs[SONIC_TSA1] = data[4 * width]; | |
367 | s->regs[SONIC_TFS] = data[5 * width]; | |
368 | ||
369 | /* Handle programmable interrupt */ | |
370 | if (s->regs[SONIC_TCR] & SONIC_TCR_PINT) { | |
371 | s->regs[SONIC_ISR] |= SONIC_ISR_PINT; | |
372 | } else { | |
373 | s->regs[SONIC_ISR] &= ~SONIC_ISR_PINT; | |
374 | } | |
375 | ||
376 | for (i = 0; i < s->regs[SONIC_TFC]; ) { | |
377 | /* Append fragment */ | |
378 | len = s->regs[SONIC_TFS]; | |
379 | if (tx_len + len > sizeof(s->tx_buffer)) { | |
380 | len = sizeof(s->tx_buffer) - tx_len; | |
381 | } | |
dd820513 | 382 | address_space_rw(&s->as, |
a65f56ee | 383 | (s->regs[SONIC_TSA1] << 16) | s->regs[SONIC_TSA0], |
dd820513 | 384 | MEMTXATTRS_UNSPECIFIED, &s->tx_buffer[tx_len], len, 0); |
a65f56ee AJ |
385 | tx_len += len; |
386 | ||
387 | i++; | |
388 | if (i != s->regs[SONIC_TFC]) { | |
389 | /* Read next fragment details */ | |
390 | size = sizeof(uint16_t) * 3 * width; | |
dd820513 | 391 | address_space_rw(&s->as, |
a65f56ee | 392 | ((s->regs[SONIC_UTDA] << 16) | s->regs[SONIC_TTDA]) + sizeof(uint16_t) * (4 + 3 * i) * width, |
dd820513 | 393 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
394 | s->regs[SONIC_TSA0] = data[0 * width]; |
395 | s->regs[SONIC_TSA1] = data[1 * width]; | |
396 | s->regs[SONIC_TFS] = data[2 * width]; | |
397 | } | |
398 | } | |
399 | ||
400 | /* Handle Ethernet checksum */ | |
401 | if (!(s->regs[SONIC_TCR] & SONIC_TCR_CRCI)) { | |
402 | /* Don't append FCS there, to look like slirp packets | |
403 | * which don't have one */ | |
404 | } else { | |
405 | /* Remove existing FCS */ | |
406 | tx_len -= 4; | |
407 | } | |
408 | ||
409 | if (s->regs[SONIC_RCR] & (SONIC_RCR_LB1 | SONIC_RCR_LB0)) { | |
410 | /* Loopback */ | |
411 | s->regs[SONIC_TCR] |= SONIC_TCR_CRSL; | |
b356f76d | 412 | if (nc->info->can_receive(nc)) { |
a65f56ee | 413 | s->loopback_packet = 1; |
b356f76d | 414 | nc->info->receive(nc, s->tx_buffer, tx_len); |
a65f56ee AJ |
415 | } |
416 | } else { | |
417 | /* Transmit packet */ | |
b356f76d | 418 | qemu_send_packet(nc, s->tx_buffer, tx_len); |
a65f56ee AJ |
419 | } |
420 | s->regs[SONIC_TCR] |= SONIC_TCR_PTX; | |
421 | ||
422 | /* Write status */ | |
423 | data[0 * width] = s->regs[SONIC_TCR] & 0x0fff; /* status */ | |
424 | size = sizeof(uint16_t) * width; | |
dd820513 | 425 | address_space_rw(&s->as, |
a65f56ee | 426 | (s->regs[SONIC_UTDA] << 16) | s->regs[SONIC_TTDA], |
dd820513 | 427 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 1); |
a65f56ee AJ |
428 | |
429 | if (!(s->regs[SONIC_CR] & SONIC_CR_HTX)) { | |
430 | /* Read footer of packet */ | |
431 | size = sizeof(uint16_t) * width; | |
dd820513 | 432 | address_space_rw(&s->as, |
a65f56ee | 433 | ((s->regs[SONIC_UTDA] << 16) | s->regs[SONIC_TTDA]) + sizeof(uint16_t) * (4 + 3 * s->regs[SONIC_TFC]) * width, |
dd820513 | 434 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
435 | s->regs[SONIC_CTDA] = data[0 * width] & ~0x1; |
436 | if (data[0 * width] & 0x1) { | |
437 | /* EOL detected */ | |
438 | break; | |
439 | } | |
440 | } | |
441 | } | |
442 | ||
443 | /* Done */ | |
444 | s->regs[SONIC_CR] &= ~SONIC_CR_TXP; | |
445 | s->regs[SONIC_ISR] |= SONIC_ISR_TXDN; | |
446 | dp8393x_update_irq(s); | |
447 | } | |
448 | ||
3df5de64 | 449 | static void dp8393x_do_halt_transmission(dp8393xState *s) |
a65f56ee AJ |
450 | { |
451 | /* Nothing to do */ | |
452 | } | |
453 | ||
3df5de64 | 454 | static void dp8393x_do_command(dp8393xState *s, uint16_t command) |
a65f56ee AJ |
455 | { |
456 | if ((s->regs[SONIC_CR] & SONIC_CR_RST) && !(command & SONIC_CR_RST)) { | |
457 | s->regs[SONIC_CR] &= ~SONIC_CR_RST; | |
458 | return; | |
459 | } | |
460 | ||
461 | s->regs[SONIC_CR] |= (command & SONIC_CR_MASK); | |
462 | ||
463 | if (command & SONIC_CR_HTX) | |
3df5de64 | 464 | dp8393x_do_halt_transmission(s); |
a65f56ee | 465 | if (command & SONIC_CR_TXP) |
3df5de64 | 466 | dp8393x_do_transmit_packets(s); |
a65f56ee | 467 | if (command & SONIC_CR_RXDIS) |
3df5de64 | 468 | dp8393x_do_receiver_disable(s); |
a65f56ee | 469 | if (command & SONIC_CR_RXEN) |
3df5de64 | 470 | dp8393x_do_receiver_enable(s); |
a65f56ee | 471 | if (command & SONIC_CR_STP) |
3df5de64 | 472 | dp8393x_do_stop_timer(s); |
a65f56ee | 473 | if (command & SONIC_CR_ST) |
3df5de64 | 474 | dp8393x_do_start_timer(s); |
a65f56ee | 475 | if (command & SONIC_CR_RST) |
3df5de64 | 476 | dp8393x_do_software_reset(s); |
a65f56ee | 477 | if (command & SONIC_CR_RRRA) |
3df5de64 | 478 | dp8393x_do_read_rra(s); |
a65f56ee | 479 | if (command & SONIC_CR_LCAM) |
3df5de64 | 480 | dp8393x_do_load_cam(s); |
a65f56ee AJ |
481 | } |
482 | ||
84689cbb | 483 | static uint64_t dp8393x_read(void *opaque, hwaddr addr, unsigned int size) |
a65f56ee | 484 | { |
84689cbb HP |
485 | dp8393xState *s = opaque; |
486 | int reg = addr >> s->it_shift; | |
a65f56ee AJ |
487 | uint16_t val = 0; |
488 | ||
489 | switch (reg) { | |
490 | /* Update data before reading it */ | |
491 | case SONIC_WT0: | |
492 | case SONIC_WT1: | |
3df5de64 | 493 | dp8393x_update_wt_regs(s); |
a65f56ee AJ |
494 | val = s->regs[reg]; |
495 | break; | |
496 | /* Accept read to some registers only when in reset mode */ | |
497 | case SONIC_CAP2: | |
498 | case SONIC_CAP1: | |
499 | case SONIC_CAP0: | |
500 | if (s->regs[SONIC_CR] & SONIC_CR_RST) { | |
501 | val = s->cam[s->regs[SONIC_CEP] & 0xf][2* (SONIC_CAP0 - reg) + 1] << 8; | |
502 | val |= s->cam[s->regs[SONIC_CEP] & 0xf][2* (SONIC_CAP0 - reg)]; | |
503 | } | |
504 | break; | |
505 | /* All other registers have no special contrainst */ | |
506 | default: | |
507 | val = s->regs[reg]; | |
508 | } | |
509 | ||
510 | DPRINTF("read 0x%04x from reg %s\n", val, reg_names[reg]); | |
511 | ||
512 | return val; | |
513 | } | |
514 | ||
84689cbb HP |
515 | static void dp8393x_write(void *opaque, hwaddr addr, uint64_t data, |
516 | unsigned int size) | |
a65f56ee | 517 | { |
84689cbb HP |
518 | dp8393xState *s = opaque; |
519 | int reg = addr >> s->it_shift; | |
520 | ||
521 | DPRINTF("write 0x%04x to reg %s\n", (uint16_t)data, reg_names[reg]); | |
a65f56ee AJ |
522 | |
523 | switch (reg) { | |
524 | /* Command register */ | |
525 | case SONIC_CR: | |
3df5de64 | 526 | dp8393x_do_command(s, data); |
a65f56ee AJ |
527 | break; |
528 | /* Prevent write to read-only registers */ | |
529 | case SONIC_CAP2: | |
530 | case SONIC_CAP1: | |
531 | case SONIC_CAP0: | |
532 | case SONIC_SR: | |
533 | case SONIC_MDT: | |
534 | DPRINTF("writing to reg %d invalid\n", reg); | |
535 | break; | |
536 | /* Accept write to some registers only when in reset mode */ | |
537 | case SONIC_DCR: | |
538 | if (s->regs[SONIC_CR] & SONIC_CR_RST) { | |
84689cbb | 539 | s->regs[reg] = data & 0xbfff; |
a65f56ee AJ |
540 | } else { |
541 | DPRINTF("writing to DCR invalid\n"); | |
542 | } | |
543 | break; | |
544 | case SONIC_DCR2: | |
545 | if (s->regs[SONIC_CR] & SONIC_CR_RST) { | |
84689cbb | 546 | s->regs[reg] = data & 0xf017; |
a65f56ee AJ |
547 | } else { |
548 | DPRINTF("writing to DCR2 invalid\n"); | |
549 | } | |
550 | break; | |
551 | /* 12 lower bytes are Read Only */ | |
552 | case SONIC_TCR: | |
84689cbb | 553 | s->regs[reg] = data & 0xf000; |
a65f56ee AJ |
554 | break; |
555 | /* 9 lower bytes are Read Only */ | |
556 | case SONIC_RCR: | |
84689cbb | 557 | s->regs[reg] = data & 0xffe0; |
a65f56ee AJ |
558 | break; |
559 | /* Ignore most significant bit */ | |
560 | case SONIC_IMR: | |
84689cbb | 561 | s->regs[reg] = data & 0x7fff; |
a65f56ee AJ |
562 | dp8393x_update_irq(s); |
563 | break; | |
564 | /* Clear bits by writing 1 to them */ | |
565 | case SONIC_ISR: | |
84689cbb HP |
566 | data &= s->regs[reg]; |
567 | s->regs[reg] &= ~data; | |
568 | if (data & SONIC_ISR_RBE) { | |
3df5de64 | 569 | dp8393x_do_read_rra(s); |
a65f56ee AJ |
570 | } |
571 | dp8393x_update_irq(s); | |
572 | break; | |
573 | /* Ignore least significant bit */ | |
574 | case SONIC_RSA: | |
575 | case SONIC_REA: | |
576 | case SONIC_RRP: | |
577 | case SONIC_RWP: | |
84689cbb | 578 | s->regs[reg] = data & 0xfffe; |
a65f56ee AJ |
579 | break; |
580 | /* Invert written value for some registers */ | |
581 | case SONIC_CRCT: | |
582 | case SONIC_FAET: | |
583 | case SONIC_MPT: | |
84689cbb | 584 | s->regs[reg] = data ^ 0xffff; |
a65f56ee AJ |
585 | break; |
586 | /* All other registers have no special contrainst */ | |
587 | default: | |
84689cbb | 588 | s->regs[reg] = data; |
a65f56ee AJ |
589 | } |
590 | ||
591 | if (reg == SONIC_WT0 || reg == SONIC_WT1) { | |
3df5de64 | 592 | dp8393x_set_next_tick(s); |
a65f56ee AJ |
593 | } |
594 | } | |
595 | ||
84689cbb HP |
596 | static const MemoryRegionOps dp8393x_ops = { |
597 | .read = dp8393x_read, | |
598 | .write = dp8393x_write, | |
599 | .impl.min_access_size = 2, | |
600 | .impl.max_access_size = 2, | |
601 | .endianness = DEVICE_NATIVE_ENDIAN, | |
602 | }; | |
603 | ||
a65f56ee AJ |
604 | static void dp8393x_watchdog(void *opaque) |
605 | { | |
606 | dp8393xState *s = opaque; | |
607 | ||
608 | if (s->regs[SONIC_CR] & SONIC_CR_STP) { | |
609 | return; | |
610 | } | |
611 | ||
612 | s->regs[SONIC_WT1] = 0xffff; | |
613 | s->regs[SONIC_WT0] = 0xffff; | |
3df5de64 | 614 | dp8393x_set_next_tick(s); |
a65f56ee AJ |
615 | |
616 | /* Signal underflow */ | |
617 | s->regs[SONIC_ISR] |= SONIC_ISR_TC; | |
618 | dp8393x_update_irq(s); | |
619 | } | |
620 | ||
3df5de64 | 621 | static int dp8393x_can_receive(NetClientState *nc) |
a65f56ee | 622 | { |
cc1f0f45 | 623 | dp8393xState *s = qemu_get_nic_opaque(nc); |
a65f56ee AJ |
624 | |
625 | if (!(s->regs[SONIC_CR] & SONIC_CR_RXEN)) | |
626 | return 0; | |
627 | if (s->regs[SONIC_ISR] & SONIC_ISR_RBE) | |
628 | return 0; | |
629 | return 1; | |
630 | } | |
631 | ||
3df5de64 HP |
632 | static int dp8393x_receive_filter(dp8393xState *s, const uint8_t * buf, |
633 | int size) | |
a65f56ee AJ |
634 | { |
635 | static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; | |
636 | int i; | |
637 | ||
638 | /* Check for runt packet (remember that checksum is not there) */ | |
639 | if (size < 64 - 4) { | |
640 | return (s->regs[SONIC_RCR] & SONIC_RCR_RNT) ? 0 : -1; | |
641 | } | |
642 | ||
643 | /* Check promiscuous mode */ | |
644 | if ((s->regs[SONIC_RCR] & SONIC_RCR_PRO) && (buf[0] & 1) == 0) { | |
645 | return 0; | |
646 | } | |
647 | ||
648 | /* Check multicast packets */ | |
649 | if ((s->regs[SONIC_RCR] & SONIC_RCR_AMC) && (buf[0] & 1) == 1) { | |
650 | return SONIC_RCR_MC; | |
651 | } | |
652 | ||
653 | /* Check broadcast */ | |
654 | if ((s->regs[SONIC_RCR] & SONIC_RCR_BRD) && !memcmp(buf, bcast, sizeof(bcast))) { | |
655 | return SONIC_RCR_BC; | |
656 | } | |
657 | ||
658 | /* Check CAM */ | |
659 | for (i = 0; i < 16; i++) { | |
660 | if (s->regs[SONIC_CE] & (1 << i)) { | |
661 | /* Entry enabled */ | |
662 | if (!memcmp(buf, s->cam[i], sizeof(s->cam[i]))) { | |
663 | return 0; | |
664 | } | |
665 | } | |
666 | } | |
667 | ||
668 | return -1; | |
669 | } | |
670 | ||
3df5de64 HP |
671 | static ssize_t dp8393x_receive(NetClientState *nc, const uint8_t * buf, |
672 | size_t size) | |
a65f56ee | 673 | { |
cc1f0f45 | 674 | dp8393xState *s = qemu_get_nic_opaque(nc); |
a65f56ee | 675 | uint16_t data[10]; |
a65f56ee AJ |
676 | int packet_type; |
677 | uint32_t available, address; | |
678 | int width, rx_len = size; | |
679 | uint32_t checksum; | |
680 | ||
681 | width = (s->regs[SONIC_DCR] & SONIC_DCR_DW) ? 2 : 1; | |
682 | ||
683 | s->regs[SONIC_RCR] &= ~(SONIC_RCR_PRX | SONIC_RCR_LBK | SONIC_RCR_FAER | | |
684 | SONIC_RCR_CRCR | SONIC_RCR_LPKT | SONIC_RCR_BC | SONIC_RCR_MC); | |
685 | ||
3df5de64 | 686 | packet_type = dp8393x_receive_filter(s, buf, size); |
a65f56ee AJ |
687 | if (packet_type < 0) { |
688 | DPRINTF("packet not for netcard\n"); | |
4f1c942b | 689 | return -1; |
a65f56ee AJ |
690 | } |
691 | ||
692 | /* XXX: Check byte ordering */ | |
693 | ||
694 | /* Check for EOL */ | |
695 | if (s->regs[SONIC_LLFA] & 0x1) { | |
696 | /* Are we still in resource exhaustion? */ | |
697 | size = sizeof(uint16_t) * 1 * width; | |
698 | address = ((s->regs[SONIC_URDA] << 16) | s->regs[SONIC_CRDA]) + sizeof(uint16_t) * 5 * width; | |
dd820513 HP |
699 | address_space_rw(&s->as, address, MEMTXATTRS_UNSPECIFIED, |
700 | (uint8_t *)data, size, 0); | |
a65f56ee AJ |
701 | if (data[0 * width] & 0x1) { |
702 | /* Still EOL ; stop reception */ | |
4f1c942b | 703 | return -1; |
a65f56ee AJ |
704 | } else { |
705 | s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA]; | |
706 | } | |
707 | } | |
708 | ||
709 | /* Save current position */ | |
710 | s->regs[SONIC_TRBA1] = s->regs[SONIC_CRBA1]; | |
711 | s->regs[SONIC_TRBA0] = s->regs[SONIC_CRBA0]; | |
712 | ||
713 | /* Calculate the ethernet checksum */ | |
a65f56ee | 714 | checksum = cpu_to_le32(crc32(0, buf, rx_len)); |
a65f56ee AJ |
715 | |
716 | /* Put packet into RBA */ | |
717 | DPRINTF("Receive packet at %08x\n", (s->regs[SONIC_CRBA1] << 16) | s->regs[SONIC_CRBA0]); | |
718 | address = (s->regs[SONIC_CRBA1] << 16) | s->regs[SONIC_CRBA0]; | |
dd820513 HP |
719 | address_space_rw(&s->as, address, |
720 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)buf, rx_len, 1); | |
a65f56ee | 721 | address += rx_len; |
dd820513 HP |
722 | address_space_rw(&s->as, address, |
723 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)&checksum, 4, 1); | |
a65f56ee AJ |
724 | rx_len += 4; |
725 | s->regs[SONIC_CRBA1] = address >> 16; | |
726 | s->regs[SONIC_CRBA0] = address & 0xffff; | |
727 | available = (s->regs[SONIC_RBWC1] << 16) | s->regs[SONIC_RBWC0]; | |
728 | available -= rx_len / 2; | |
729 | s->regs[SONIC_RBWC1] = available >> 16; | |
730 | s->regs[SONIC_RBWC0] = available & 0xffff; | |
731 | ||
732 | /* Update status */ | |
733 | if (((s->regs[SONIC_RBWC1] << 16) | s->regs[SONIC_RBWC0]) < s->regs[SONIC_EOBC]) { | |
734 | s->regs[SONIC_RCR] |= SONIC_RCR_LPKT; | |
735 | } | |
736 | s->regs[SONIC_RCR] |= packet_type; | |
737 | s->regs[SONIC_RCR] |= SONIC_RCR_PRX; | |
738 | if (s->loopback_packet) { | |
739 | s->regs[SONIC_RCR] |= SONIC_RCR_LBK; | |
740 | s->loopback_packet = 0; | |
741 | } | |
742 | ||
743 | /* Write status to memory */ | |
744 | DPRINTF("Write status at %08x\n", (s->regs[SONIC_URDA] << 16) | s->regs[SONIC_CRDA]); | |
745 | data[0 * width] = s->regs[SONIC_RCR]; /* status */ | |
746 | data[1 * width] = rx_len; /* byte count */ | |
747 | data[2 * width] = s->regs[SONIC_TRBA0]; /* pkt_ptr0 */ | |
748 | data[3 * width] = s->regs[SONIC_TRBA1]; /* pkt_ptr1 */ | |
749 | data[4 * width] = s->regs[SONIC_RSC]; /* seq_no */ | |
750 | size = sizeof(uint16_t) * 5 * width; | |
dd820513 HP |
751 | address_space_rw(&s->as, (s->regs[SONIC_URDA] << 16) | s->regs[SONIC_CRDA], |
752 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 1); | |
a65f56ee AJ |
753 | |
754 | /* Move to next descriptor */ | |
755 | size = sizeof(uint16_t) * width; | |
dd820513 | 756 | address_space_rw(&s->as, |
a65f56ee | 757 | ((s->regs[SONIC_URDA] << 16) | s->regs[SONIC_CRDA]) + sizeof(uint16_t) * 5 * width, |
dd820513 | 758 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 0); |
a65f56ee AJ |
759 | s->regs[SONIC_LLFA] = data[0 * width]; |
760 | if (s->regs[SONIC_LLFA] & 0x1) { | |
761 | /* EOL detected */ | |
762 | s->regs[SONIC_ISR] |= SONIC_ISR_RDE; | |
763 | } else { | |
764 | data[0 * width] = 0; /* in_use */ | |
dd820513 | 765 | address_space_rw(&s->as, |
a65f56ee | 766 | ((s->regs[SONIC_URDA] << 16) | s->regs[SONIC_CRDA]) + sizeof(uint16_t) * 6 * width, |
dd820513 | 767 | MEMTXATTRS_UNSPECIFIED, (uint8_t *)data, size, 1); |
a65f56ee AJ |
768 | s->regs[SONIC_CRDA] = s->regs[SONIC_LLFA]; |
769 | s->regs[SONIC_ISR] |= SONIC_ISR_PKTRX; | |
770 | s->regs[SONIC_RSC] = (s->regs[SONIC_RSC] & 0xff00) | (((s->regs[SONIC_RSC] & 0x00ff) + 1) & 0x00ff); | |
771 | ||
772 | if (s->regs[SONIC_RCR] & SONIC_RCR_LPKT) { | |
773 | /* Read next RRA */ | |
3df5de64 | 774 | dp8393x_do_read_rra(s); |
a65f56ee AJ |
775 | } |
776 | } | |
777 | ||
778 | /* Done */ | |
779 | dp8393x_update_irq(s); | |
4f1c942b MM |
780 | |
781 | return size; | |
a65f56ee AJ |
782 | } |
783 | ||
104655a5 | 784 | static void dp8393x_reset(DeviceState *dev) |
a65f56ee | 785 | { |
104655a5 | 786 | dp8393xState *s = DP8393X(dev); |
bc72ad67 | 787 | timer_del(s->watchdog); |
a65f56ee AJ |
788 | |
789 | s->regs[SONIC_CR] = SONIC_CR_RST | SONIC_CR_STP | SONIC_CR_RXDIS; | |
790 | s->regs[SONIC_DCR] &= ~(SONIC_DCR_EXBUS | SONIC_DCR_LBR); | |
791 | s->regs[SONIC_RCR] &= ~(SONIC_RCR_LB0 | SONIC_RCR_LB1 | SONIC_RCR_BRD | SONIC_RCR_RNT); | |
792 | s->regs[SONIC_TCR] |= SONIC_TCR_NCRS | SONIC_TCR_PTX; | |
793 | s->regs[SONIC_TCR] &= ~SONIC_TCR_BCM; | |
794 | s->regs[SONIC_IMR] = 0; | |
795 | s->regs[SONIC_ISR] = 0; | |
796 | s->regs[SONIC_DCR2] = 0; | |
797 | s->regs[SONIC_EOBC] = 0x02F8; | |
798 | s->regs[SONIC_RSC] = 0; | |
799 | s->regs[SONIC_CE] = 0; | |
800 | s->regs[SONIC_RSC] = 0; | |
801 | ||
802 | /* Network cable is connected */ | |
803 | s->regs[SONIC_RCR] |= SONIC_RCR_CRS; | |
804 | ||
805 | dp8393x_update_irq(s); | |
806 | } | |
807 | ||
05f41fe3 | 808 | static NetClientInfo net_dp83932_info = { |
2be64a68 | 809 | .type = NET_CLIENT_OPTIONS_KIND_NIC, |
05f41fe3 | 810 | .size = sizeof(NICState), |
3df5de64 HP |
811 | .can_receive = dp8393x_can_receive, |
812 | .receive = dp8393x_receive, | |
05f41fe3 MM |
813 | }; |
814 | ||
104655a5 | 815 | static void dp8393x_instance_init(Object *obj) |
a65f56ee | 816 | { |
104655a5 HP |
817 | SysBusDevice *sbd = SYS_BUS_DEVICE(obj); |
818 | dp8393xState *s = DP8393X(obj); | |
a65f56ee | 819 | |
104655a5 | 820 | sysbus_init_mmio(sbd, &s->mmio); |
89ae0ff9 | 821 | sysbus_init_mmio(sbd, &s->prom); |
104655a5 HP |
822 | sysbus_init_irq(sbd, &s->irq); |
823 | } | |
824 | ||
825 | static void dp8393x_realize(DeviceState *dev, Error **errp) | |
826 | { | |
827 | dp8393xState *s = DP8393X(dev); | |
89ae0ff9 HP |
828 | int i, checksum; |
829 | uint8_t *prom; | |
a65f56ee | 830 | |
104655a5 HP |
831 | address_space_init(&s->as, s->dma_mr, "dp8393x"); |
832 | memory_region_init_io(&s->mmio, OBJECT(dev), &dp8393x_ops, s, | |
833 | "dp8393x-regs", 0x40 << s->it_shift); | |
834 | ||
835 | s->nic = qemu_new_nic(&net_dp83932_info, &s->conf, | |
836 | object_get_typename(OBJECT(dev)), dev->id, s); | |
837 | qemu_format_nic_info_str(qemu_get_queue(s->nic), s->conf.macaddr.a); | |
a65f56ee | 838 | |
bc72ad67 | 839 | s->watchdog = timer_new_ns(QEMU_CLOCK_VIRTUAL, dp8393x_watchdog, s); |
a65f56ee | 840 | s->regs[SONIC_SR] = 0x0004; /* only revision recognized by Linux */ |
89ae0ff9 HP |
841 | |
842 | memory_region_init_rom_device(&s->prom, OBJECT(dev), NULL, NULL, | |
843 | "dp8393x-prom", SONIC_PROM_SIZE, NULL); | |
844 | prom = memory_region_get_ram_ptr(&s->prom); | |
845 | checksum = 0; | |
846 | for (i = 0; i < 6; i++) { | |
847 | prom[i] = s->conf.macaddr.a[i]; | |
848 | checksum += prom[i]; | |
849 | if (checksum > 0xff) { | |
850 | checksum = (checksum + 1) & 0xff; | |
851 | } | |
852 | } | |
853 | prom[7] = 0xff - checksum; | |
104655a5 | 854 | } |
a65f56ee | 855 | |
104655a5 HP |
856 | static Property dp8393x_properties[] = { |
857 | DEFINE_NIC_PROPERTIES(dp8393xState, conf), | |
858 | DEFINE_PROP_PTR("dma_mr", dp8393xState, dma_mr), | |
859 | DEFINE_PROP_UINT8("it_shift", dp8393xState, it_shift, 0), | |
860 | DEFINE_PROP_END_OF_LIST(), | |
861 | }; | |
05f41fe3 | 862 | |
104655a5 HP |
863 | static void dp8393x_class_init(ObjectClass *klass, void *data) |
864 | { | |
865 | DeviceClass *dc = DEVICE_CLASS(klass); | |
a65f56ee | 866 | |
104655a5 HP |
867 | set_bit(DEVICE_CATEGORY_NETWORK, dc->categories); |
868 | dc->realize = dp8393x_realize; | |
869 | dc->reset = dp8393x_reset; | |
870 | dc->props = dp8393x_properties; | |
871 | } | |
a65f56ee | 872 | |
104655a5 HP |
873 | static const TypeInfo dp8393x_info = { |
874 | .name = TYPE_DP8393X, | |
875 | .parent = TYPE_SYS_BUS_DEVICE, | |
876 | .instance_size = sizeof(dp8393xState), | |
877 | .instance_init = dp8393x_instance_init, | |
878 | .class_init = dp8393x_class_init, | |
879 | }; | |
880 | ||
881 | static void dp8393x_register_types(void) | |
882 | { | |
883 | type_register_static(&dp8393x_info); | |
a65f56ee | 884 | } |
104655a5 HP |
885 | |
886 | type_init(dp8393x_register_types) |