]>
Commit | Line | Data |
---|---|---|
663e8e51 TS |
1 | /* |
2 | * QEMU i8255x (PRO100) emulation | |
3 | * | |
4 | * Copyright (c) 2006-2007 Stefan Weil | |
5 | * | |
6 | * Portions of the code are copies from grub / etherboot eepro100.c | |
7 | * and linux e100.c. | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License as published by | |
11 | * the Free Software Foundation; either version 2 of the License, or | |
12 | * (at your option) any later version. | |
13 | * | |
14 | * This program is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | * GNU General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License | |
8167ee88 | 20 | * along with this program; if not, see <http://www.gnu.org/licenses/>. |
663e8e51 TS |
21 | * |
22 | * Tested features (i82559): | |
23 | * PXE boot (i386) no valid link | |
24 | * Linux networking (i386) ok | |
25 | * | |
26 | * Untested: | |
27 | * non-i386 platforms | |
28 | * Windows networking | |
29 | * | |
30 | * References: | |
31 | * | |
32 | * Intel 8255x 10/100 Mbps Ethernet Controller Family | |
33 | * Open Source Software Developer Manual | |
34 | */ | |
35 | ||
36 | #if defined(TARGET_I386) | |
37 | # warning "PXE boot still not working!" | |
38 | #endif | |
39 | ||
663e8e51 | 40 | #include <stddef.h> /* offsetof */ |
b84a5c6f | 41 | #include <stdbool.h> |
87ecb68b PB |
42 | #include "hw.h" |
43 | #include "pci.h" | |
44 | #include "net.h" | |
663e8e51 TS |
45 | #include "eeprom93xx.h" |
46 | ||
47 | /* Common declarations for all PCI devices. */ | |
48 | ||
663e8e51 TS |
49 | #define PCI_CONFIG_8(offset, value) \ |
50 | (pci_conf[offset] = (value)) | |
51 | #define PCI_CONFIG_16(offset, value) \ | |
52 | (*(uint16_t *)&pci_conf[offset] = cpu_to_le16(value)) | |
53 | #define PCI_CONFIG_32(offset, value) \ | |
54 | (*(uint32_t *)&pci_conf[offset] = cpu_to_le32(value)) | |
55 | ||
56 | #define KiB 1024 | |
57 | ||
aac443e6 | 58 | /* Debug EEPRO100 card. */ |
663e8e51 TS |
59 | //~ #define DEBUG_EEPRO100 |
60 | ||
61 | #ifdef DEBUG_EEPRO100 | |
001faf32 | 62 | #define logout(fmt, ...) fprintf(stderr, "EE100\t%-24s" fmt, __func__, ## __VA_ARGS__) |
663e8e51 | 63 | #else |
001faf32 | 64 | #define logout(fmt, ...) ((void)0) |
663e8e51 TS |
65 | #endif |
66 | ||
67 | /* Set flags to 0 to disable debug output. */ | |
aac443e6 SW |
68 | #define INT 1 /* interrupt related actions */ |
69 | #define MDI 1 /* mdi related actions */ | |
70 | #define OTHER 1 | |
71 | #define RXTX 1 | |
72 | #define EEPROM 1 /* eeprom related actions */ | |
663e8e51 TS |
73 | |
74 | #define TRACE(flag, command) ((flag) ? (command) : (void)0) | |
75 | ||
7f1e9d4e | 76 | #define missing(text) fprintf(stderr, "eepro100: feature is missing in this emulation: " text "\n") |
663e8e51 TS |
77 | |
78 | #define MAX_ETH_FRAME_SIZE 1514 | |
79 | ||
80 | /* This driver supports several different devices which are declared here. */ | |
c4c270e2 | 81 | #define i82550 0x82550 |
663e8e51 | 82 | #define i82551 0x82551 |
c4c270e2 | 83 | #define i82557A 0x82557a |
663e8e51 TS |
84 | #define i82557B 0x82557b |
85 | #define i82557C 0x82557c | |
c4c270e2 | 86 | #define i82558A 0x82558a |
663e8e51 | 87 | #define i82558B 0x82558b |
c4c270e2 SW |
88 | #define i82559A 0x82559a |
89 | #define i82559B 0x82559b | |
663e8e51 TS |
90 | #define i82559C 0x82559c |
91 | #define i82559ER 0x82559e | |
92 | #define i82562 0x82562 | |
93 | ||
aac443e6 | 94 | /* Use 64 word EEPROM. TODO: could be a runtime option. */ |
663e8e51 TS |
95 | #define EEPROM_SIZE 64 |
96 | ||
97 | #define PCI_MEM_SIZE (4 * KiB) | |
98 | #define PCI_IO_SIZE 64 | |
99 | #define PCI_FLASH_SIZE (128 * KiB) | |
100 | ||
101 | #define BIT(n) (1 << (n)) | |
102 | #define BITS(n, m) (((0xffffffffU << (31 - n)) >> (31 - n + m)) << m) | |
103 | ||
104 | /* The SCB accepts the following controls for the Tx and Rx units: */ | |
105 | #define CU_NOP 0x0000 /* No operation. */ | |
106 | #define CU_START 0x0010 /* CU start. */ | |
107 | #define CU_RESUME 0x0020 /* CU resume. */ | |
108 | #define CU_STATSADDR 0x0040 /* Load dump counters address. */ | |
109 | #define CU_SHOWSTATS 0x0050 /* Dump statistical counters. */ | |
110 | #define CU_CMD_BASE 0x0060 /* Load CU base address. */ | |
111 | #define CU_DUMPSTATS 0x0070 /* Dump and reset statistical counters. */ | |
112 | #define CU_SRESUME 0x00a0 /* CU static resume. */ | |
113 | ||
114 | #define RU_NOP 0x0000 | |
115 | #define RX_START 0x0001 | |
116 | #define RX_RESUME 0x0002 | |
117 | #define RX_ABORT 0x0004 | |
118 | #define RX_ADDR_LOAD 0x0006 | |
119 | #define RX_RESUMENR 0x0007 | |
120 | #define INT_MASK 0x0100 | |
121 | #define DRVR_INT 0x0200 /* Driver generated interrupt. */ | |
122 | ||
663e8e51 TS |
123 | /* Offsets to the various registers. |
124 | All accesses need not be longword aligned. */ | |
125 | enum speedo_offsets { | |
126 | SCBStatus = 0, | |
127 | SCBAck = 1, | |
128 | SCBCmd = 2, /* Rx/Command Unit command and status. */ | |
129 | SCBIntmask = 3, | |
130 | SCBPointer = 4, /* General purpose pointer. */ | |
131 | SCBPort = 8, /* Misc. commands and operands. */ | |
132 | SCBflash = 12, SCBeeprom = 14, /* EEPROM and flash memory control. */ | |
133 | SCBCtrlMDI = 16, /* MDI interface control. */ | |
134 | SCBEarlyRx = 20, /* Early receive byte count. */ | |
3257d2b6 | 135 | SCBFlow = 24, |
663e8e51 TS |
136 | }; |
137 | ||
138 | /* A speedo3 transmit buffer descriptor with two buffers... */ | |
139 | typedef struct { | |
140 | uint16_t status; | |
141 | uint16_t command; | |
142 | uint32_t link; /* void * */ | |
143 | uint32_t tx_desc_addr; /* transmit buffer decsriptor array address. */ | |
144 | uint16_t tcb_bytes; /* transmit command block byte count (in lower 14 bits */ | |
145 | uint8_t tx_threshold; /* transmit threshold */ | |
146 | uint8_t tbd_count; /* TBD number */ | |
147 | //~ /* This constitutes two "TBD" entries: hdr and data */ | |
148 | //~ uint32_t tx_buf_addr0; /* void *, header of frame to be transmitted. */ | |
149 | //~ int32_t tx_buf_size0; /* Length of Tx hdr. */ | |
150 | //~ uint32_t tx_buf_addr1; /* void *, data to be transmitted. */ | |
151 | //~ int32_t tx_buf_size1; /* Length of Tx data. */ | |
c227f099 | 152 | } eepro100_tx_t; |
663e8e51 TS |
153 | |
154 | /* Receive frame descriptor. */ | |
155 | typedef struct { | |
156 | int16_t status; | |
157 | uint16_t command; | |
158 | uint32_t link; /* struct RxFD * */ | |
159 | uint32_t rx_buf_addr; /* void * */ | |
160 | uint16_t count; | |
161 | uint16_t size; | |
162 | char packet[MAX_ETH_FRAME_SIZE + 4]; | |
c227f099 | 163 | } eepro100_rx_t; |
663e8e51 TS |
164 | |
165 | typedef struct { | |
166 | uint32_t tx_good_frames, tx_max_collisions, tx_late_collisions, | |
167 | tx_underruns, tx_lost_crs, tx_deferred, tx_single_collisions, | |
168 | tx_multiple_collisions, tx_total_collisions; | |
169 | uint32_t rx_good_frames, rx_crc_errors, rx_alignment_errors, | |
170 | rx_resource_errors, rx_overrun_errors, rx_cdt_errors, | |
171 | rx_short_frame_errors; | |
172 | uint32_t fc_xmt_pause, fc_rcv_pause, fc_rcv_unsupported; | |
173 | uint16_t xmt_tco_frames, rcv_tco_frames; | |
174 | uint32_t complete; | |
c227f099 | 175 | } eepro100_stats_t; |
663e8e51 TS |
176 | |
177 | typedef enum { | |
178 | cu_idle = 0, | |
179 | cu_suspended = 1, | |
180 | cu_active = 2, | |
181 | cu_lpq_active = 2, | |
182 | cu_hqp_active = 3 | |
c227f099 | 183 | } cu_state_t; |
663e8e51 TS |
184 | |
185 | typedef enum { | |
186 | ru_idle = 0, | |
187 | ru_suspended = 1, | |
188 | ru_no_resources = 2, | |
189 | ru_ready = 4 | |
c227f099 | 190 | } ru_state_t; |
663e8e51 | 191 | |
663e8e51 | 192 | typedef struct { |
273a2142 | 193 | PCIDevice dev; |
663e8e51 TS |
194 | uint8_t mult[8]; /* multicast mask array */ |
195 | int mmio_index; | |
663e8e51 | 196 | VLANClientState *vc; |
663e8e51 TS |
197 | uint8_t scb_stat; /* SCB stat/ack byte */ |
198 | uint8_t int_stat; /* PCI interrupt status */ | |
3706c43f | 199 | /* region must not be saved by nic_save. */ |
663e8e51 TS |
200 | uint32_t region[3]; /* PCI region addresses */ |
201 | uint8_t macaddr[6]; | |
663e8e51 | 202 | uint16_t mdimem[32]; |
c227f099 | 203 | eeprom_t *eeprom; |
663e8e51 TS |
204 | uint32_t device; /* device variant */ |
205 | uint32_t pointer; | |
206 | /* (cu_base + cu_offset) address the next command block in the command block list. */ | |
207 | uint32_t cu_base; /* CU base address */ | |
208 | uint32_t cu_offset; /* CU address offset */ | |
209 | /* (ru_base + ru_offset) address the RFD in the Receive Frame Area. */ | |
210 | uint32_t ru_base; /* RU base address */ | |
211 | uint32_t ru_offset; /* RU address offset */ | |
c227f099 | 212 | uint32_t statsaddr; /* pointer to eepro100_stats_t */ |
4e3db917 | 213 | eepro100_stats_t statistics; /* statistical counters */ |
663e8e51 TS |
214 | #if 0 |
215 | uint16_t status; | |
216 | #endif | |
217 | ||
218 | /* Configuration bytes. */ | |
219 | uint8_t configuration[22]; | |
220 | ||
221 | /* Data in mem is always in the byte order of the controller (le). */ | |
222 | uint8_t mem[PCI_MEM_SIZE]; | |
223 | } EEPRO100State; | |
224 | ||
225 | /* Default values for MDI (PHY) registers */ | |
226 | static const uint16_t eepro100_mdi_default[] = { | |
227 | /* MDI Registers 0 - 6, 7 */ | |
228 | 0x3000, 0x780d, 0x02a8, 0x0154, 0x05e1, 0x0000, 0x0000, 0x0000, | |
229 | /* MDI Registers 8 - 15 */ | |
230 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | |
231 | /* MDI Registers 16 - 31 */ | |
232 | 0x0003, 0x0000, 0x0001, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | |
233 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | |
234 | }; | |
235 | ||
236 | /* Readonly mask for MDI (PHY) registers */ | |
237 | static const uint16_t eepro100_mdi_mask[] = { | |
238 | 0x0000, 0xffff, 0xffff, 0xffff, 0xc01f, 0xffff, 0xffff, 0x0000, | |
239 | 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | |
240 | 0x0fff, 0x0000, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, 0xffff, | |
241 | 0xffff, 0xffff, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, | |
242 | }; | |
243 | ||
244 | #define POLYNOMIAL 0x04c11db6 | |
245 | ||
246 | /* From FreeBSD */ | |
247 | /* XXX: optimize */ | |
248 | static int compute_mcast_idx(const uint8_t * ep) | |
249 | { | |
250 | uint32_t crc; | |
251 | int carry, i, j; | |
252 | uint8_t b; | |
253 | ||
254 | crc = 0xffffffff; | |
255 | for (i = 0; i < 6; i++) { | |
256 | b = *ep++; | |
257 | for (j = 0; j < 8; j++) { | |
258 | carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01); | |
259 | crc <<= 1; | |
260 | b >>= 1; | |
aac443e6 | 261 | if (carry) { |
663e8e51 | 262 | crc = ((crc ^ POLYNOMIAL) | carry); |
aac443e6 | 263 | } |
663e8e51 TS |
264 | } |
265 | } | |
266 | return (crc >> 26); | |
267 | } | |
268 | ||
269 | #if defined(DEBUG_EEPRO100) | |
270 | static const char *nic_dump(const uint8_t * buf, unsigned size) | |
271 | { | |
272 | static char dump[3 * 16 + 1]; | |
273 | char *p = &dump[0]; | |
aac443e6 | 274 | if (size > 16) { |
663e8e51 | 275 | size = 16; |
aac443e6 | 276 | } |
663e8e51 TS |
277 | while (size-- > 0) { |
278 | p += sprintf(p, " %02x", *buf++); | |
279 | } | |
280 | return dump; | |
281 | } | |
282 | #endif /* DEBUG_EEPRO100 */ | |
283 | ||
284 | enum scb_stat_ack { | |
285 | stat_ack_not_ours = 0x00, | |
286 | stat_ack_sw_gen = 0x04, | |
287 | stat_ack_rnr = 0x10, | |
288 | stat_ack_cu_idle = 0x20, | |
289 | stat_ack_frame_rx = 0x40, | |
290 | stat_ack_cu_cmd_done = 0x80, | |
291 | stat_ack_not_present = 0xFF, | |
292 | stat_ack_rx = (stat_ack_sw_gen | stat_ack_rnr | stat_ack_frame_rx), | |
293 | stat_ack_tx = (stat_ack_cu_idle | stat_ack_cu_cmd_done), | |
294 | }; | |
295 | ||
296 | static void disable_interrupt(EEPRO100State * s) | |
297 | { | |
298 | if (s->int_stat) { | |
aac443e6 | 299 | TRACE(INT, logout("interrupt disabled\n")); |
273a2142 | 300 | qemu_irq_lower(s->dev.irq[0]); |
663e8e51 TS |
301 | s->int_stat = 0; |
302 | } | |
303 | } | |
304 | ||
305 | static void enable_interrupt(EEPRO100State * s) | |
306 | { | |
307 | if (!s->int_stat) { | |
aac443e6 | 308 | TRACE(INT, logout("interrupt enabled\n")); |
273a2142 | 309 | qemu_irq_raise(s->dev.irq[0]); |
663e8e51 TS |
310 | s->int_stat = 1; |
311 | } | |
312 | } | |
313 | ||
314 | static void eepro100_acknowledge(EEPRO100State * s) | |
315 | { | |
316 | s->scb_stat &= ~s->mem[SCBAck]; | |
317 | s->mem[SCBAck] = s->scb_stat; | |
318 | if (s->scb_stat == 0) { | |
319 | disable_interrupt(s); | |
320 | } | |
321 | } | |
322 | ||
323 | static void eepro100_interrupt(EEPRO100State * s, uint8_t stat) | |
324 | { | |
325 | uint8_t mask = ~s->mem[SCBIntmask]; | |
326 | s->mem[SCBAck] |= stat; | |
327 | stat = s->scb_stat = s->mem[SCBAck]; | |
328 | stat &= (mask | 0x0f); | |
329 | //~ stat &= (~s->mem[SCBIntmask] | 0x0xf); | |
330 | if (stat && (mask & 0x01)) { | |
331 | /* SCB mask and SCB Bit M do not disable interrupt. */ | |
332 | enable_interrupt(s); | |
333 | } else if (s->int_stat) { | |
334 | disable_interrupt(s); | |
335 | } | |
336 | } | |
337 | ||
338 | static void eepro100_cx_interrupt(EEPRO100State * s) | |
339 | { | |
340 | /* CU completed action command. */ | |
341 | /* Transmit not ok (82557 only, not in emulation). */ | |
342 | eepro100_interrupt(s, 0x80); | |
343 | } | |
344 | ||
345 | static void eepro100_cna_interrupt(EEPRO100State * s) | |
346 | { | |
347 | /* CU left the active state. */ | |
348 | eepro100_interrupt(s, 0x20); | |
349 | } | |
350 | ||
351 | static void eepro100_fr_interrupt(EEPRO100State * s) | |
352 | { | |
353 | /* RU received a complete frame. */ | |
354 | eepro100_interrupt(s, 0x40); | |
355 | } | |
356 | ||
357 | #if 0 | |
358 | static void eepro100_rnr_interrupt(EEPRO100State * s) | |
359 | { | |
360 | /* RU is not ready. */ | |
361 | eepro100_interrupt(s, 0x10); | |
362 | } | |
363 | #endif | |
364 | ||
365 | static void eepro100_mdi_interrupt(EEPRO100State * s) | |
366 | { | |
367 | /* MDI completed read or write cycle. */ | |
368 | eepro100_interrupt(s, 0x08); | |
369 | } | |
370 | ||
371 | static void eepro100_swi_interrupt(EEPRO100State * s) | |
372 | { | |
373 | /* Software has requested an interrupt. */ | |
374 | eepro100_interrupt(s, 0x04); | |
375 | } | |
376 | ||
377 | #if 0 | |
378 | static void eepro100_fcp_interrupt(EEPRO100State * s) | |
379 | { | |
380 | /* Flow control pause interrupt (82558 and later). */ | |
381 | eepro100_interrupt(s, 0x01); | |
382 | } | |
383 | #endif | |
384 | ||
385 | static void pci_reset(EEPRO100State * s) | |
386 | { | |
387 | uint32_t device = s->device; | |
273a2142 | 388 | uint8_t *pci_conf = s->dev.config; |
663e8e51 | 389 | |
aac443e6 | 390 | TRACE(OTHER, logout("%p\n", s)); |
663e8e51 TS |
391 | |
392 | /* PCI Vendor ID */ | |
deb54399 | 393 | pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL); |
d6fd1e66 | 394 | /* PCI Device ID depends on device and is set below. */ |
663e8e51 TS |
395 | /* PCI Command */ |
396 | PCI_CONFIG_16(PCI_COMMAND, 0x0000); | |
397 | /* PCI Status */ | |
398 | PCI_CONFIG_16(PCI_STATUS, 0x2800); | |
399 | /* PCI Revision ID */ | |
400 | PCI_CONFIG_8(PCI_REVISION_ID, 0x08); | |
401 | /* PCI Class Code */ | |
402 | PCI_CONFIG_8(0x09, 0x00); | |
173a543b | 403 | pci_config_set_class(pci_conf, PCI_CLASS_NETWORK_ETHERNET); |
663e8e51 TS |
404 | /* PCI Cache Line Size */ |
405 | /* check cache line size!!! */ | |
406 | //~ PCI_CONFIG_8(0x0c, 0x00); | |
407 | /* PCI Latency Timer */ | |
408 | PCI_CONFIG_8(0x0d, 0x20); // latency timer = 32 clocks | |
409 | /* PCI Header Type */ | |
410 | /* BIST (built-in self test) */ | |
411 | #if defined(TARGET_I386) | |
412 | // !!! workaround for buggy bios | |
413 | //~ #define PCI_ADDRESS_SPACE_MEM_PREFETCH 0 | |
414 | #endif | |
415 | #if 0 | |
416 | /* PCI Base Address Registers */ | |
417 | /* CSR Memory Mapped Base Address */ | |
418 | PCI_CONFIG_32(PCI_BASE_ADDRESS_0, | |
419 | PCI_ADDRESS_SPACE_MEM | PCI_ADDRESS_SPACE_MEM_PREFETCH); | |
420 | /* CSR I/O Mapped Base Address */ | |
421 | PCI_CONFIG_32(PCI_BASE_ADDRESS_1, PCI_ADDRESS_SPACE_IO); | |
422 | #if 0 | |
423 | /* Flash Memory Mapped Base Address */ | |
424 | PCI_CONFIG_32(PCI_BASE_ADDRESS_2, 0xfffe0000 | PCI_ADDRESS_SPACE_MEM); | |
425 | #endif | |
426 | #endif | |
427 | /* Expansion ROM Base Address (depends on boot disable!!!) */ | |
428 | PCI_CONFIG_32(0x30, 0x00000000); | |
429 | /* Capability Pointer */ | |
430 | PCI_CONFIG_8(0x34, 0xdc); | |
aac443e6 | 431 | /* Interrupt Line */ |
663e8e51 TS |
432 | /* Interrupt Pin */ |
433 | PCI_CONFIG_8(0x3d, 1); // interrupt pin 0 | |
434 | /* Minimum Grant */ | |
435 | PCI_CONFIG_8(0x3e, 0x08); | |
436 | /* Maximum Latency */ | |
437 | PCI_CONFIG_8(0x3f, 0x18); | |
438 | /* Power Management Capabilities / Next Item Pointer / Capability ID */ | |
439 | PCI_CONFIG_32(0xdc, 0x7e210001); | |
440 | ||
441 | switch (device) { | |
442 | case i82551: | |
d6fd1e66 | 443 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82551IT); |
663e8e51 TS |
444 | PCI_CONFIG_8(PCI_REVISION_ID, 0x0f); |
445 | break; | |
446 | case i82557B: | |
d6fd1e66 | 447 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82557); |
663e8e51 TS |
448 | PCI_CONFIG_8(PCI_REVISION_ID, 0x02); |
449 | break; | |
450 | case i82557C: | |
d6fd1e66 | 451 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82557); |
663e8e51 TS |
452 | PCI_CONFIG_8(PCI_REVISION_ID, 0x03); |
453 | break; | |
454 | case i82558B: | |
d6fd1e66 | 455 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82557); |
663e8e51 TS |
456 | PCI_CONFIG_16(PCI_STATUS, 0x2810); |
457 | PCI_CONFIG_8(PCI_REVISION_ID, 0x05); | |
458 | break; | |
459 | case i82559C: | |
d6fd1e66 | 460 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82557); |
663e8e51 TS |
461 | PCI_CONFIG_16(PCI_STATUS, 0x2810); |
462 | //~ PCI_CONFIG_8(PCI_REVISION_ID, 0x08); | |
463 | break; | |
464 | case i82559ER: | |
d6fd1e66 | 465 | pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82551IT); |
663e8e51 TS |
466 | PCI_CONFIG_16(PCI_STATUS, 0x2810); |
467 | PCI_CONFIG_8(PCI_REVISION_ID, 0x09); | |
468 | break; | |
469 | //~ PCI_CONFIG_16(PCI_DEVICE_ID, 0x1029); | |
470 | //~ PCI_CONFIG_16(PCI_DEVICE_ID, 0x1030); /* 82559 InBusiness 10/100 */ | |
471 | default: | |
472 | logout("Device %X is undefined!\n", device); | |
473 | } | |
474 | ||
475 | if (device == i82557C || device == i82558B || device == i82559C) { | |
476 | logout("Get device id and revision from EEPROM!!!\n"); | |
477 | } | |
478 | } | |
479 | ||
480 | static void nic_selective_reset(EEPRO100State * s) | |
481 | { | |
482 | size_t i; | |
483 | uint16_t *eeprom_contents = eeprom93xx_data(s->eeprom); | |
484 | //~ eeprom93xx_reset(s->eeprom); | |
485 | memcpy(eeprom_contents, s->macaddr, 6); | |
486 | eeprom_contents[0xa] = 0x4000; | |
f4e94dfe RD |
487 | if (s->device == i82557B || s->device == i82557C) |
488 | eeprom_contents[5] = 0x0100; | |
663e8e51 TS |
489 | uint16_t sum = 0; |
490 | for (i = 0; i < EEPROM_SIZE - 1; i++) { | |
491 | sum += eeprom_contents[i]; | |
492 | } | |
493 | eeprom_contents[EEPROM_SIZE - 1] = 0xbaba - sum; | |
aac443e6 | 494 | TRACE(EEPROM, logout("checksum=0x%04x\n", eeprom_contents[EEPROM_SIZE - 1])); |
663e8e51 TS |
495 | |
496 | memset(s->mem, 0, sizeof(s->mem)); | |
497 | uint32_t val = BIT(21); | |
498 | memcpy(&s->mem[SCBCtrlMDI], &val, sizeof(val)); | |
499 | ||
500 | assert(sizeof(s->mdimem) == sizeof(eepro100_mdi_default)); | |
501 | memcpy(&s->mdimem[0], &eepro100_mdi_default[0], sizeof(s->mdimem)); | |
502 | } | |
503 | ||
504 | static void nic_reset(void *opaque) | |
505 | { | |
769cf7a5 | 506 | EEPRO100State *s = opaque; |
aac443e6 | 507 | TRACE(OTHER, logout("%p\n", s)); |
663e8e51 TS |
508 | nic_selective_reset(s); |
509 | } | |
510 | ||
511 | #if defined(DEBUG_EEPRO100) | |
6a0b9cc9 | 512 | static const char * const reg[PCI_IO_SIZE / 4] = { |
663e8e51 TS |
513 | "Command/Status", |
514 | "General Pointer", | |
515 | "Port", | |
516 | "EEPROM/Flash Control", | |
517 | "MDI Control", | |
518 | "Receive DMA Byte Count", | |
aac443e6 | 519 | "Flow control", |
663e8e51 TS |
520 | "General Status/Control" |
521 | }; | |
522 | ||
523 | static char *regname(uint32_t addr) | |
524 | { | |
525 | static char buf[16]; | |
526 | if (addr < PCI_IO_SIZE) { | |
527 | const char *r = reg[addr / 4]; | |
528 | if (r != 0) { | |
41cbc23c | 529 | snprintf(buf, sizeof(buf), "%s+%u", r, addr % 4); |
663e8e51 | 530 | } else { |
41cbc23c | 531 | snprintf(buf, sizeof(buf), "0x%02x", addr); |
663e8e51 TS |
532 | } |
533 | } else { | |
41cbc23c | 534 | snprintf(buf, sizeof(buf), "??? 0x%08x", addr); |
663e8e51 TS |
535 | } |
536 | return buf; | |
537 | } | |
538 | #endif /* DEBUG_EEPRO100 */ | |
539 | ||
540 | #if 0 | |
541 | static uint16_t eepro100_read_status(EEPRO100State * s) | |
542 | { | |
543 | uint16_t val = s->status; | |
aac443e6 | 544 | TRACE(OTHER, logout("val=0x%04x\n", val)); |
663e8e51 TS |
545 | return val; |
546 | } | |
547 | ||
548 | static void eepro100_write_status(EEPRO100State * s, uint16_t val) | |
549 | { | |
aac443e6 | 550 | TRACE(OTHER, logout("val=0x%04x\n", val)); |
663e8e51 TS |
551 | s->status = val; |
552 | } | |
553 | #endif | |
554 | ||
555 | /***************************************************************************** | |
556 | * | |
557 | * Command emulation. | |
558 | * | |
559 | ****************************************************************************/ | |
560 | ||
561 | #if 0 | |
562 | static uint16_t eepro100_read_command(EEPRO100State * s) | |
563 | { | |
564 | uint16_t val = 0xffff; | |
aac443e6 | 565 | //~ TRACE(OTHER, logout("val=0x%04x\n", val)); |
663e8e51 TS |
566 | return val; |
567 | } | |
568 | #endif | |
569 | ||
0859df68 NS |
570 | static bool device_supports_eTxCB(EEPRO100State * s) |
571 | { | |
572 | return (s->device != i82557B && s->device != i82557C); | |
573 | } | |
574 | ||
663e8e51 TS |
575 | /* Commands that can be put in a command list entry. */ |
576 | enum commands { | |
577 | CmdNOp = 0, | |
578 | CmdIASetup = 1, | |
579 | CmdConfigure = 2, | |
580 | CmdMulticastList = 3, | |
581 | CmdTx = 4, | |
582 | CmdTDR = 5, /* load microcode */ | |
583 | CmdDump = 6, | |
584 | CmdDiagnose = 7, | |
585 | ||
586 | /* And some extra flags: */ | |
587 | CmdSuspend = 0x4000, /* Suspend after completion. */ | |
588 | CmdIntr = 0x2000, /* Interrupt after completion. */ | |
589 | CmdTxFlex = 0x0008, /* Use "Flexible mode" for CmdTx command. */ | |
590 | }; | |
591 | ||
c227f099 | 592 | static cu_state_t get_cu_state(EEPRO100State * s) |
663e8e51 TS |
593 | { |
594 | return ((s->mem[SCBStatus] >> 6) & 0x03); | |
595 | } | |
596 | ||
c227f099 | 597 | static void set_cu_state(EEPRO100State * s, cu_state_t state) |
663e8e51 TS |
598 | { |
599 | s->mem[SCBStatus] = (s->mem[SCBStatus] & 0x3f) + (state << 6); | |
600 | } | |
601 | ||
c227f099 | 602 | static ru_state_t get_ru_state(EEPRO100State * s) |
663e8e51 TS |
603 | { |
604 | return ((s->mem[SCBStatus] >> 2) & 0x0f); | |
605 | } | |
606 | ||
c227f099 | 607 | static void set_ru_state(EEPRO100State * s, ru_state_t state) |
663e8e51 TS |
608 | { |
609 | s->mem[SCBStatus] = (s->mem[SCBStatus] & 0xc3) + (state << 2); | |
610 | } | |
611 | ||
612 | static void dump_statistics(EEPRO100State * s) | |
613 | { | |
614 | /* Dump statistical data. Most data is never changed by the emulation | |
615 | * and always 0, so we first just copy the whole block and then those | |
616 | * values which really matter. | |
617 | * Number of data should check configuration!!! | |
618 | */ | |
619 | cpu_physical_memory_write(s->statsaddr, (uint8_t *) & s->statistics, 64); | |
620 | stl_phys(s->statsaddr + 0, s->statistics.tx_good_frames); | |
621 | stl_phys(s->statsaddr + 36, s->statistics.rx_good_frames); | |
622 | stl_phys(s->statsaddr + 48, s->statistics.rx_resource_errors); | |
623 | stl_phys(s->statsaddr + 60, s->statistics.rx_short_frame_errors); | |
624 | //~ stw_phys(s->statsaddr + 76, s->statistics.xmt_tco_frames); | |
625 | //~ stw_phys(s->statsaddr + 78, s->statistics.rcv_tco_frames); | |
626 | //~ missing("CU dump statistical counters"); | |
627 | } | |
628 | ||
629 | static void eepro100_cu_command(EEPRO100State * s, uint8_t val) | |
630 | { | |
c227f099 | 631 | eepro100_tx_t tx; |
663e8e51 TS |
632 | uint32_t cb_address; |
633 | switch (val) { | |
634 | case CU_NOP: | |
635 | /* No operation. */ | |
636 | break; | |
637 | case CU_START: | |
638 | if (get_cu_state(s) != cu_idle) { | |
639 | /* Intel documentation says that CU must be idle for the CU | |
640 | * start command. Intel driver for Linux also starts the CU | |
641 | * from suspended state. */ | |
642 | logout("CU state is %u, should be %u\n", get_cu_state(s), cu_idle); | |
643 | //~ assert(!"wrong CU state"); | |
644 | } | |
645 | set_cu_state(s, cu_active); | |
646 | s->cu_offset = s->pointer; | |
647 | next_command: | |
648 | cb_address = s->cu_base + s->cu_offset; | |
649 | cpu_physical_memory_read(cb_address, (uint8_t *) & tx, sizeof(tx)); | |
650 | uint16_t status = le16_to_cpu(tx.status); | |
651 | uint16_t command = le16_to_cpu(tx.command); | |
652 | logout | |
653 | ("val=0x%02x (cu start), status=0x%04x, command=0x%04x, link=0x%08x\n", | |
654 | val, status, command, tx.link); | |
655 | bool bit_el = ((command & 0x8000) != 0); | |
656 | bool bit_s = ((command & 0x4000) != 0); | |
657 | bool bit_i = ((command & 0x2000) != 0); | |
658 | bool bit_nc = ((command & 0x0010) != 0); | |
7f1e9d4e | 659 | bool success = true; |
663e8e51 TS |
660 | //~ bool bit_sf = ((command & 0x0008) != 0); |
661 | uint16_t cmd = command & 0x0007; | |
662 | s->cu_offset = le32_to_cpu(tx.link); | |
663 | switch (cmd) { | |
664 | case CmdNOp: | |
665 | /* Do nothing. */ | |
666 | break; | |
667 | case CmdIASetup: | |
668 | cpu_physical_memory_read(cb_address + 8, &s->macaddr[0], 6); | |
aac443e6 | 669 | TRACE(OTHER, logout("macaddr: %s\n", nic_dump(&s->macaddr[0], 6))); |
663e8e51 TS |
670 | break; |
671 | case CmdConfigure: | |
672 | cpu_physical_memory_read(cb_address + 8, &s->configuration[0], | |
673 | sizeof(s->configuration)); | |
aac443e6 | 674 | TRACE(OTHER, logout("configuration: %s\n", nic_dump(&s->configuration[0], 16))); |
663e8e51 TS |
675 | break; |
676 | case CmdMulticastList: | |
677 | //~ missing("multicast list"); | |
678 | break; | |
679 | case CmdTx: | |
680 | (void)0; | |
681 | uint32_t tbd_array = le32_to_cpu(tx.tx_desc_addr); | |
682 | uint16_t tcb_bytes = (le16_to_cpu(tx.tcb_bytes) & 0x3fff); | |
aac443e6 | 683 | TRACE(RXTX, logout |
663e8e51 | 684 | ("transmit, TBD array address 0x%08x, TCB byte count 0x%04x, TBD count %u\n", |
aac443e6 | 685 | tbd_array, tcb_bytes, tx.tbd_count)); |
7f1e9d4e KW |
686 | |
687 | if (bit_nc) { | |
688 | missing("CmdTx: NC = 0"); | |
689 | success = false; | |
690 | break; | |
691 | } | |
663e8e51 | 692 | //~ assert(!bit_sf); |
7f1e9d4e KW |
693 | if (tcb_bytes > 2600) { |
694 | logout("TCB byte count too large, using 2600\n"); | |
695 | tcb_bytes = 2600; | |
696 | } | |
663e8e51 TS |
697 | /* Next assertion fails for local configuration. */ |
698 | //~ assert((tcb_bytes > 0) || (tbd_array != 0xffffffff)); | |
699 | if (!((tcb_bytes > 0) || (tbd_array != 0xffffffff))) { | |
700 | logout | |
701 | ("illegal values of TBD array address and TCB byte count!\n"); | |
702 | } | |
24e6f355 RD |
703 | // sends larger than MAX_ETH_FRAME_SIZE are allowed, up to 2600 bytes |
704 | uint8_t buf[2600]; | |
663e8e51 TS |
705 | uint16_t size = 0; |
706 | uint32_t tbd_address = cb_address + 0x10; | |
707 | assert(tcb_bytes <= sizeof(buf)); | |
708 | while (size < tcb_bytes) { | |
709 | uint32_t tx_buffer_address = ldl_phys(tbd_address); | |
710 | uint16_t tx_buffer_size = lduw_phys(tbd_address + 4); | |
711 | //~ uint16_t tx_buffer_el = lduw_phys(tbd_address + 6); | |
712 | tbd_address += 8; | |
aac443e6 | 713 | TRACE(RXTX, logout |
663e8e51 | 714 | ("TBD (simplified mode): buffer address 0x%08x, size 0x%04x\n", |
aac443e6 | 715 | tx_buffer_address, tx_buffer_size)); |
24e6f355 | 716 | tx_buffer_size = MIN(tx_buffer_size, sizeof(buf) - size); |
663e8e51 TS |
717 | cpu_physical_memory_read(tx_buffer_address, &buf[size], |
718 | tx_buffer_size); | |
719 | size += tx_buffer_size; | |
720 | } | |
721 | if (tbd_array == 0xffffffff) { | |
722 | /* Simplified mode. Was already handled by code above. */ | |
723 | } else { | |
724 | /* Flexible mode. */ | |
725 | uint8_t tbd_count = 0; | |
0859df68 | 726 | if (device_supports_eTxCB(s) && !(s->configuration[6] & BIT(4))) { |
3f9cb1c1 | 727 | /* Extended Flexible TCB. */ |
663e8e51 TS |
728 | for (; tbd_count < 2; tbd_count++) { |
729 | uint32_t tx_buffer_address = ldl_phys(tbd_address); | |
730 | uint16_t tx_buffer_size = lduw_phys(tbd_address + 4); | |
731 | uint16_t tx_buffer_el = lduw_phys(tbd_address + 6); | |
732 | tbd_address += 8; | |
aac443e6 | 733 | TRACE(RXTX, logout |
3f9cb1c1 | 734 | ("TBD (extended flexible mode): buffer address 0x%08x, size 0x%04x\n", |
aac443e6 | 735 | tx_buffer_address, tx_buffer_size)); |
24e6f355 | 736 | tx_buffer_size = MIN(tx_buffer_size, sizeof(buf) - size); |
663e8e51 TS |
737 | cpu_physical_memory_read(tx_buffer_address, &buf[size], |
738 | tx_buffer_size); | |
739 | size += tx_buffer_size; | |
740 | if (tx_buffer_el & 1) { | |
741 | break; | |
742 | } | |
743 | } | |
744 | } | |
745 | tbd_address = tbd_array; | |
746 | for (; tbd_count < tx.tbd_count; tbd_count++) { | |
747 | uint32_t tx_buffer_address = ldl_phys(tbd_address); | |
748 | uint16_t tx_buffer_size = lduw_phys(tbd_address + 4); | |
749 | uint16_t tx_buffer_el = lduw_phys(tbd_address + 6); | |
750 | tbd_address += 8; | |
aac443e6 | 751 | TRACE(RXTX, logout |
663e8e51 | 752 | ("TBD (flexible mode): buffer address 0x%08x, size 0x%04x\n", |
aac443e6 | 753 | tx_buffer_address, tx_buffer_size)); |
24e6f355 | 754 | tx_buffer_size = MIN(tx_buffer_size, sizeof(buf) - size); |
663e8e51 TS |
755 | cpu_physical_memory_read(tx_buffer_address, &buf[size], |
756 | tx_buffer_size); | |
757 | size += tx_buffer_size; | |
758 | if (tx_buffer_el & 1) { | |
759 | break; | |
760 | } | |
761 | } | |
762 | } | |
aac443e6 | 763 | TRACE(RXTX, logout("%p sending frame, len=%d,%s\n", s, size, nic_dump(buf, size))); |
663e8e51 TS |
764 | qemu_send_packet(s->vc, buf, size); |
765 | s->statistics.tx_good_frames++; | |
766 | /* Transmit with bad status would raise an CX/TNO interrupt. | |
767 | * (82557 only). Emulation never has bad status. */ | |
768 | //~ eepro100_cx_interrupt(s); | |
769 | break; | |
770 | case CmdTDR: | |
aac443e6 | 771 | TRACE(OTHER, logout("load microcode\n")); |
663e8e51 TS |
772 | /* Starting with offset 8, the command contains |
773 | * 64 dwords microcode which we just ignore here. */ | |
774 | break; | |
775 | default: | |
776 | missing("undefined command"); | |
7f1e9d4e KW |
777 | success = false; |
778 | break; | |
663e8e51 | 779 | } |
7f1e9d4e KW |
780 | /* Write new status. */ |
781 | stw_phys(cb_address, status | 0x8000 | (success ? 0x2000 : 0)); | |
663e8e51 TS |
782 | if (bit_i) { |
783 | /* CU completed action. */ | |
784 | eepro100_cx_interrupt(s); | |
785 | } | |
786 | if (bit_el) { | |
aac443e6 | 787 | /* CU becomes idle. Terminate command loop. */ |
663e8e51 TS |
788 | set_cu_state(s, cu_idle); |
789 | eepro100_cna_interrupt(s); | |
790 | } else if (bit_s) { | |
791 | /* CU becomes suspended. */ | |
792 | set_cu_state(s, cu_suspended); | |
793 | eepro100_cna_interrupt(s); | |
794 | } else { | |
795 | /* More entries in list. */ | |
aac443e6 | 796 | TRACE(OTHER, logout("CU list with at least one more entry\n")); |
663e8e51 TS |
797 | goto next_command; |
798 | } | |
aac443e6 | 799 | TRACE(OTHER, logout("CU list empty\n")); |
663e8e51 TS |
800 | /* List is empty. Now CU is idle or suspended. */ |
801 | break; | |
802 | case CU_RESUME: | |
803 | if (get_cu_state(s) != cu_suspended) { | |
804 | logout("bad CU resume from CU state %u\n", get_cu_state(s)); | |
805 | /* Workaround for bad Linux eepro100 driver which resumes | |
806 | * from idle state. */ | |
807 | //~ missing("cu resume"); | |
808 | set_cu_state(s, cu_suspended); | |
809 | } | |
810 | if (get_cu_state(s) == cu_suspended) { | |
aac443e6 | 811 | TRACE(OTHER, logout("CU resuming\n")); |
663e8e51 TS |
812 | set_cu_state(s, cu_active); |
813 | goto next_command; | |
814 | } | |
815 | break; | |
816 | case CU_STATSADDR: | |
817 | /* Load dump counters address. */ | |
818 | s->statsaddr = s->pointer; | |
aac443e6 | 819 | TRACE(OTHER, logout("val=0x%02x (status address)\n", val)); |
663e8e51 TS |
820 | break; |
821 | case CU_SHOWSTATS: | |
822 | /* Dump statistical counters. */ | |
aac443e6 | 823 | TRACE(OTHER, logout("val=0x%02x (dump stats)\n", val)); |
663e8e51 TS |
824 | dump_statistics(s); |
825 | break; | |
826 | case CU_CMD_BASE: | |
827 | /* Load CU base. */ | |
aac443e6 | 828 | TRACE(OTHER, logout("val=0x%02x (CU base address)\n", val)); |
663e8e51 TS |
829 | s->cu_base = s->pointer; |
830 | break; | |
831 | case CU_DUMPSTATS: | |
832 | /* Dump and reset statistical counters. */ | |
aac443e6 | 833 | TRACE(OTHER, logout("val=0x%02x (dump stats and reset)\n", val)); |
663e8e51 TS |
834 | dump_statistics(s); |
835 | memset(&s->statistics, 0, sizeof(s->statistics)); | |
836 | break; | |
837 | case CU_SRESUME: | |
838 | /* CU static resume. */ | |
839 | missing("CU static resume"); | |
840 | break; | |
841 | default: | |
842 | missing("Undefined CU command"); | |
843 | } | |
844 | } | |
845 | ||
846 | static void eepro100_ru_command(EEPRO100State * s, uint8_t val) | |
847 | { | |
848 | switch (val) { | |
849 | case RU_NOP: | |
850 | /* No operation. */ | |
851 | break; | |
852 | case RX_START: | |
853 | /* RU start. */ | |
854 | if (get_ru_state(s) != ru_idle) { | |
855 | logout("RU state is %u, should be %u\n", get_ru_state(s), ru_idle); | |
856 | //~ assert(!"wrong RU state"); | |
857 | } | |
858 | set_ru_state(s, ru_ready); | |
859 | s->ru_offset = s->pointer; | |
aac443e6 | 860 | TRACE(OTHER, logout("val=0x%02x (rx start)\n", val)); |
663e8e51 TS |
861 | break; |
862 | case RX_RESUME: | |
863 | /* Restart RU. */ | |
864 | if (get_ru_state(s) != ru_suspended) { | |
865 | logout("RU state is %u, should be %u\n", get_ru_state(s), | |
866 | ru_suspended); | |
867 | //~ assert(!"wrong RU state"); | |
868 | } | |
869 | set_ru_state(s, ru_ready); | |
870 | break; | |
871 | case RX_ADDR_LOAD: | |
872 | /* Load RU base. */ | |
aac443e6 | 873 | TRACE(OTHER, logout("val=0x%02x (RU base address)\n", val)); |
663e8e51 TS |
874 | s->ru_base = s->pointer; |
875 | break; | |
876 | default: | |
877 | logout("val=0x%02x (undefined RU command)\n", val); | |
878 | missing("Undefined SU command"); | |
879 | } | |
880 | } | |
881 | ||
882 | static void eepro100_write_command(EEPRO100State * s, uint8_t val) | |
883 | { | |
884 | eepro100_ru_command(s, val & 0x0f); | |
885 | eepro100_cu_command(s, val & 0xf0); | |
886 | if ((val) == 0) { | |
aac443e6 | 887 | TRACE(OTHER, logout("val=0x%02x\n", val)); |
663e8e51 TS |
888 | } |
889 | /* Clear command byte after command was accepted. */ | |
890 | s->mem[SCBCmd] = 0; | |
891 | } | |
892 | ||
893 | /***************************************************************************** | |
894 | * | |
895 | * EEPROM emulation. | |
896 | * | |
897 | ****************************************************************************/ | |
898 | ||
899 | #define EEPROM_CS 0x02 | |
900 | #define EEPROM_SK 0x01 | |
901 | #define EEPROM_DI 0x04 | |
902 | #define EEPROM_DO 0x08 | |
903 | ||
904 | static uint16_t eepro100_read_eeprom(EEPRO100State * s) | |
905 | { | |
906 | uint16_t val; | |
907 | memcpy(&val, &s->mem[SCBeeprom], sizeof(val)); | |
908 | if (eeprom93xx_read(s->eeprom)) { | |
909 | val |= EEPROM_DO; | |
910 | } else { | |
911 | val &= ~EEPROM_DO; | |
912 | } | |
aac443e6 | 913 | TRACE(EEPROM, logout("val=0x%04x\n", val)); |
663e8e51 TS |
914 | return val; |
915 | } | |
916 | ||
c227f099 | 917 | static void eepro100_write_eeprom(eeprom_t * eeprom, uint8_t val) |
663e8e51 | 918 | { |
aac443e6 | 919 | TRACE(EEPROM, logout("val=0x%02x\n", val)); |
663e8e51 TS |
920 | |
921 | /* mask unwriteable bits */ | |
922 | //~ val = SET_MASKED(val, 0x31, eeprom->value); | |
923 | ||
924 | int eecs = ((val & EEPROM_CS) != 0); | |
925 | int eesk = ((val & EEPROM_SK) != 0); | |
926 | int eedi = ((val & EEPROM_DI) != 0); | |
927 | eeprom93xx_write(eeprom, eecs, eesk, eedi); | |
928 | } | |
929 | ||
930 | static void eepro100_write_pointer(EEPRO100State * s, uint32_t val) | |
931 | { | |
932 | s->pointer = le32_to_cpu(val); | |
aac443e6 | 933 | TRACE(OTHER, logout("val=0x%08x\n", val)); |
663e8e51 TS |
934 | } |
935 | ||
936 | /***************************************************************************** | |
937 | * | |
938 | * MDI emulation. | |
939 | * | |
940 | ****************************************************************************/ | |
941 | ||
942 | #if defined(DEBUG_EEPRO100) | |
6a0b9cc9 | 943 | static const char * const mdi_op_name[] = { |
663e8e51 TS |
944 | "opcode 0", |
945 | "write", | |
946 | "read", | |
947 | "opcode 3" | |
948 | }; | |
949 | ||
6a0b9cc9 | 950 | static const char * const mdi_reg_name[] = { |
663e8e51 TS |
951 | "Control", |
952 | "Status", | |
953 | "PHY Identification (Word 1)", | |
954 | "PHY Identification (Word 2)", | |
955 | "Auto-Negotiation Advertisement", | |
956 | "Auto-Negotiation Link Partner Ability", | |
957 | "Auto-Negotiation Expansion" | |
958 | }; | |
aac443e6 SW |
959 | |
960 | static const char *reg2name(uint8_t reg) | |
961 | { | |
962 | static char buffer[10]; | |
963 | const char *p = buffer; | |
964 | if (reg < ARRAY_SIZE(mdi_reg_name)) { | |
965 | p = mdi_reg_name[reg]; | |
966 | } else { | |
967 | snprintf(buffer, sizeof(buffer), "reg=0x%02x", reg); | |
968 | } | |
969 | return p; | |
970 | } | |
663e8e51 TS |
971 | #endif /* DEBUG_EEPRO100 */ |
972 | ||
973 | static uint32_t eepro100_read_mdi(EEPRO100State * s) | |
974 | { | |
975 | uint32_t val; | |
976 | memcpy(&val, &s->mem[0x10], sizeof(val)); | |
977 | ||
978 | #ifdef DEBUG_EEPRO100 | |
979 | uint8_t raiseint = (val & BIT(29)) >> 29; | |
980 | uint8_t opcode = (val & BITS(27, 26)) >> 26; | |
981 | uint8_t phy = (val & BITS(25, 21)) >> 21; | |
982 | uint8_t reg = (val & BITS(20, 16)) >> 16; | |
983 | uint16_t data = (val & BITS(15, 0)); | |
984 | #endif | |
985 | /* Emulation takes no time to finish MDI transaction. */ | |
986 | val |= BIT(28); | |
987 | TRACE(MDI, logout("val=0x%08x (int=%u, %s, phy=%u, %s, data=0x%04x\n", | |
988 | val, raiseint, mdi_op_name[opcode], phy, | |
aac443e6 | 989 | reg2name(reg), data)); |
663e8e51 TS |
990 | return val; |
991 | } | |
992 | ||
663e8e51 TS |
993 | static void eepro100_write_mdi(EEPRO100State * s, uint32_t val) |
994 | { | |
995 | uint8_t raiseint = (val & BIT(29)) >> 29; | |
996 | uint8_t opcode = (val & BITS(27, 26)) >> 26; | |
997 | uint8_t phy = (val & BITS(25, 21)) >> 21; | |
998 | uint8_t reg = (val & BITS(20, 16)) >> 16; | |
999 | uint16_t data = (val & BITS(15, 0)); | |
aac443e6 SW |
1000 | TRACE(MDI, logout("val=0x%08x (int=%u, %s, phy=%u, %s, data=0x%04x\n", |
1001 | val, raiseint, mdi_op_name[opcode], phy, reg2name(reg), data)); | |
663e8e51 TS |
1002 | if (phy != 1) { |
1003 | /* Unsupported PHY address. */ | |
1004 | //~ logout("phy must be 1 but is %u\n", phy); | |
1005 | data = 0; | |
1006 | } else if (opcode != 1 && opcode != 2) { | |
1007 | /* Unsupported opcode. */ | |
1008 | logout("opcode must be 1 or 2 but is %u\n", opcode); | |
1009 | data = 0; | |
1010 | } else if (reg > 6) { | |
1011 | /* Unsupported register. */ | |
1012 | logout("register must be 0...6 but is %u\n", reg); | |
1013 | data = 0; | |
1014 | } else { | |
1015 | TRACE(MDI, logout("val=0x%08x (int=%u, %s, phy=%u, %s, data=0x%04x\n", | |
1016 | val, raiseint, mdi_op_name[opcode], phy, | |
aac443e6 | 1017 | reg2name(reg), data)); |
663e8e51 TS |
1018 | if (opcode == 1) { |
1019 | /* MDI write */ | |
1020 | switch (reg) { | |
1021 | case 0: /* Control Register */ | |
1022 | if (data & 0x8000) { | |
1023 | /* Reset status and control registers to default. */ | |
1024 | s->mdimem[0] = eepro100_mdi_default[0]; | |
1025 | s->mdimem[1] = eepro100_mdi_default[1]; | |
1026 | data = s->mdimem[reg]; | |
1027 | } else { | |
1028 | /* Restart Auto Configuration = Normal Operation */ | |
1029 | data &= ~0x0200; | |
1030 | } | |
1031 | break; | |
1032 | case 1: /* Status Register */ | |
1033 | missing("not writable"); | |
1034 | data = s->mdimem[reg]; | |
1035 | break; | |
1036 | case 2: /* PHY Identification Register (Word 1) */ | |
1037 | case 3: /* PHY Identification Register (Word 2) */ | |
1038 | missing("not implemented"); | |
1039 | break; | |
1040 | case 4: /* Auto-Negotiation Advertisement Register */ | |
1041 | case 5: /* Auto-Negotiation Link Partner Ability Register */ | |
1042 | break; | |
1043 | case 6: /* Auto-Negotiation Expansion Register */ | |
1044 | default: | |
1045 | missing("not implemented"); | |
1046 | } | |
1047 | s->mdimem[reg] = data; | |
1048 | } else if (opcode == 2) { | |
1049 | /* MDI read */ | |
1050 | switch (reg) { | |
1051 | case 0: /* Control Register */ | |
1052 | if (data & 0x8000) { | |
1053 | /* Reset status and control registers to default. */ | |
1054 | s->mdimem[0] = eepro100_mdi_default[0]; | |
1055 | s->mdimem[1] = eepro100_mdi_default[1]; | |
1056 | } | |
1057 | break; | |
1058 | case 1: /* Status Register */ | |
1059 | s->mdimem[reg] |= 0x0020; | |
1060 | break; | |
1061 | case 2: /* PHY Identification Register (Word 1) */ | |
1062 | case 3: /* PHY Identification Register (Word 2) */ | |
1063 | case 4: /* Auto-Negotiation Advertisement Register */ | |
1064 | break; | |
1065 | case 5: /* Auto-Negotiation Link Partner Ability Register */ | |
1066 | s->mdimem[reg] = 0x41fe; | |
1067 | break; | |
1068 | case 6: /* Auto-Negotiation Expansion Register */ | |
1069 | s->mdimem[reg] = 0x0001; | |
1070 | break; | |
1071 | } | |
1072 | data = s->mdimem[reg]; | |
1073 | } | |
1074 | /* Emulation takes no time to finish MDI transaction. | |
1075 | * Set MDI bit in SCB status register. */ | |
1076 | s->mem[SCBAck] |= 0x08; | |
1077 | val |= BIT(28); | |
1078 | if (raiseint) { | |
1079 | eepro100_mdi_interrupt(s); | |
1080 | } | |
1081 | } | |
1082 | val = (val & 0xffff0000) + data; | |
1083 | memcpy(&s->mem[0x10], &val, sizeof(val)); | |
1084 | } | |
1085 | ||
1086 | /***************************************************************************** | |
1087 | * | |
1088 | * Port emulation. | |
1089 | * | |
1090 | ****************************************************************************/ | |
1091 | ||
1092 | #define PORT_SOFTWARE_RESET 0 | |
1093 | #define PORT_SELFTEST 1 | |
1094 | #define PORT_SELECTIVE_RESET 2 | |
1095 | #define PORT_DUMP 3 | |
1096 | #define PORT_SELECTION_MASK 3 | |
1097 | ||
1098 | typedef struct { | |
1099 | uint32_t st_sign; /* Self Test Signature */ | |
1100 | uint32_t st_result; /* Self Test Results */ | |
c227f099 | 1101 | } eepro100_selftest_t; |
663e8e51 TS |
1102 | |
1103 | static uint32_t eepro100_read_port(EEPRO100State * s) | |
1104 | { | |
1105 | return 0; | |
1106 | } | |
1107 | ||
1108 | static void eepro100_write_port(EEPRO100State * s, uint32_t val) | |
1109 | { | |
1110 | val = le32_to_cpu(val); | |
1111 | uint32_t address = (val & ~PORT_SELECTION_MASK); | |
1112 | uint8_t selection = (val & PORT_SELECTION_MASK); | |
1113 | switch (selection) { | |
1114 | case PORT_SOFTWARE_RESET: | |
1115 | nic_reset(s); | |
1116 | break; | |
1117 | case PORT_SELFTEST: | |
aac443e6 | 1118 | TRACE(OTHER, logout("selftest address=0x%08x\n", address)); |
c227f099 | 1119 | eepro100_selftest_t data; |
663e8e51 TS |
1120 | cpu_physical_memory_read(address, (uint8_t *) & data, sizeof(data)); |
1121 | data.st_sign = 0xffffffff; | |
1122 | data.st_result = 0; | |
1123 | cpu_physical_memory_write(address, (uint8_t *) & data, sizeof(data)); | |
1124 | break; | |
1125 | case PORT_SELECTIVE_RESET: | |
aac443e6 | 1126 | TRACE(OTHER, logout("selective reset, selftest address=0x%08x\n", address)); |
663e8e51 TS |
1127 | nic_selective_reset(s); |
1128 | break; | |
1129 | default: | |
1130 | logout("val=0x%08x\n", val); | |
1131 | missing("unknown port selection"); | |
1132 | } | |
1133 | } | |
1134 | ||
1135 | /***************************************************************************** | |
1136 | * | |
1137 | * General hardware emulation. | |
1138 | * | |
1139 | ****************************************************************************/ | |
1140 | ||
1141 | static uint8_t eepro100_read1(EEPRO100State * s, uint32_t addr) | |
1142 | { | |
1143 | uint8_t val; | |
1144 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1145 | memcpy(&val, &s->mem[addr], sizeof(val)); | |
1146 | } | |
1147 | ||
1148 | switch (addr) { | |
1149 | case SCBStatus: | |
1150 | //~ val = eepro100_read_status(s); | |
aac443e6 | 1151 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1152 | break; |
1153 | case SCBAck: | |
1154 | //~ val = eepro100_read_status(s); | |
aac443e6 | 1155 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1156 | break; |
1157 | case SCBCmd: | |
aac443e6 | 1158 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1159 | //~ val = eepro100_read_command(s); |
1160 | break; | |
1161 | case SCBIntmask: | |
aac443e6 | 1162 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1163 | break; |
1164 | case SCBPort + 3: | |
aac443e6 | 1165 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1166 | break; |
1167 | case SCBeeprom: | |
1168 | val = eepro100_read_eeprom(s); | |
1169 | break; | |
1170 | case 0x1b: /* PMDR (power management driver register) */ | |
1171 | val = 0; | |
aac443e6 | 1172 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1173 | break; |
1174 | case 0x1d: /* general status register */ | |
1175 | /* 100 Mbps full duplex, valid link */ | |
1176 | val = 0x07; | |
aac443e6 | 1177 | TRACE(OTHER, logout("addr=General Status val=%02x\n", val)); |
663e8e51 TS |
1178 | break; |
1179 | default: | |
1180 | logout("addr=%s val=0x%02x\n", regname(addr), val); | |
1181 | missing("unknown byte read"); | |
1182 | } | |
1183 | return val; | |
1184 | } | |
1185 | ||
1186 | static uint16_t eepro100_read2(EEPRO100State * s, uint32_t addr) | |
1187 | { | |
1188 | uint16_t val; | |
1189 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1190 | memcpy(&val, &s->mem[addr], sizeof(val)); | |
1191 | } | |
1192 | ||
663e8e51 TS |
1193 | switch (addr) { |
1194 | case SCBStatus: | |
1195 | //~ val = eepro100_read_status(s); | |
dbbaaff6 | 1196 | case SCBCmd: |
aac443e6 | 1197 | TRACE(OTHER, logout("addr=%s val=0x%04x\n", regname(addr), val)); |
663e8e51 TS |
1198 | break; |
1199 | case SCBeeprom: | |
1200 | val = eepro100_read_eeprom(s); | |
aac443e6 | 1201 | TRACE(OTHER, logout("addr=%s val=0x%04x\n", regname(addr), val)); |
663e8e51 TS |
1202 | break; |
1203 | default: | |
1204 | logout("addr=%s val=0x%04x\n", regname(addr), val); | |
1205 | missing("unknown word read"); | |
1206 | } | |
1207 | return val; | |
1208 | } | |
1209 | ||
1210 | static uint32_t eepro100_read4(EEPRO100State * s, uint32_t addr) | |
1211 | { | |
1212 | uint32_t val; | |
1213 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1214 | memcpy(&val, &s->mem[addr], sizeof(val)); | |
1215 | } | |
1216 | ||
1217 | switch (addr) { | |
1218 | case SCBStatus: | |
1219 | //~ val = eepro100_read_status(s); | |
aac443e6 | 1220 | TRACE(OTHER, logout("addr=%s val=0x%08x\n", regname(addr), val)); |
663e8e51 TS |
1221 | break; |
1222 | case SCBPointer: | |
1223 | //~ val = eepro100_read_pointer(s); | |
aac443e6 | 1224 | TRACE(OTHER, logout("addr=%s val=0x%08x\n", regname(addr), val)); |
663e8e51 TS |
1225 | break; |
1226 | case SCBPort: | |
1227 | val = eepro100_read_port(s); | |
aac443e6 | 1228 | TRACE(OTHER, logout("addr=%s val=0x%08x\n", regname(addr), val)); |
663e8e51 TS |
1229 | break; |
1230 | case SCBCtrlMDI: | |
1231 | val = eepro100_read_mdi(s); | |
1232 | break; | |
1233 | default: | |
1234 | logout("addr=%s val=0x%08x\n", regname(addr), val); | |
1235 | missing("unknown longword read"); | |
1236 | } | |
1237 | return val; | |
1238 | } | |
1239 | ||
1240 | static void eepro100_write1(EEPRO100State * s, uint32_t addr, uint8_t val) | |
1241 | { | |
1242 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1243 | memcpy(&s->mem[addr], &val, sizeof(val)); | |
1244 | } | |
1245 | ||
aac443e6 | 1246 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1247 | |
1248 | switch (addr) { | |
1249 | case SCBStatus: | |
1250 | //~ eepro100_write_status(s, val); | |
1251 | break; | |
1252 | case SCBAck: | |
1253 | eepro100_acknowledge(s); | |
1254 | break; | |
1255 | case SCBCmd: | |
1256 | eepro100_write_command(s, val); | |
1257 | break; | |
1258 | case SCBIntmask: | |
1259 | if (val & BIT(1)) { | |
1260 | eepro100_swi_interrupt(s); | |
1261 | } | |
1262 | eepro100_interrupt(s, 0); | |
1263 | break; | |
1264 | case SCBPort + 3: | |
aac443e6 | 1265 | case SCBFlow: /* does not exist on 82557 */ |
3257d2b6 TS |
1266 | case SCBFlow + 1: |
1267 | case SCBFlow + 2: | |
1268 | case SCBFlow + 3: | |
aac443e6 | 1269 | TRACE(OTHER, logout("addr=%s val=0x%02x\n", regname(addr), val)); |
663e8e51 TS |
1270 | break; |
1271 | case SCBeeprom: | |
1272 | eepro100_write_eeprom(s->eeprom, val); | |
1273 | break; | |
1274 | default: | |
1275 | logout("addr=%s val=0x%02x\n", regname(addr), val); | |
1276 | missing("unknown byte write"); | |
1277 | } | |
1278 | } | |
1279 | ||
1280 | static void eepro100_write2(EEPRO100State * s, uint32_t addr, uint16_t val) | |
1281 | { | |
1282 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1283 | memcpy(&s->mem[addr], &val, sizeof(val)); | |
1284 | } | |
1285 | ||
aac443e6 | 1286 | TRACE(OTHER, logout("addr=%s val=0x%04x\n", regname(addr), val)); |
663e8e51 TS |
1287 | |
1288 | switch (addr) { | |
1289 | case SCBStatus: | |
1290 | //~ eepro100_write_status(s, val); | |
1291 | eepro100_acknowledge(s); | |
1292 | break; | |
1293 | case SCBCmd: | |
1294 | eepro100_write_command(s, val); | |
1295 | eepro100_write1(s, SCBIntmask, val >> 8); | |
1296 | break; | |
1297 | case SCBeeprom: | |
1298 | eepro100_write_eeprom(s->eeprom, val); | |
1299 | break; | |
1300 | default: | |
1301 | logout("addr=%s val=0x%04x\n", regname(addr), val); | |
1302 | missing("unknown word write"); | |
1303 | } | |
1304 | } | |
1305 | ||
1306 | static void eepro100_write4(EEPRO100State * s, uint32_t addr, uint32_t val) | |
1307 | { | |
1308 | if (addr <= sizeof(s->mem) - sizeof(val)) { | |
1309 | memcpy(&s->mem[addr], &val, sizeof(val)); | |
1310 | } | |
1311 | ||
1312 | switch (addr) { | |
1313 | case SCBPointer: | |
1314 | eepro100_write_pointer(s, val); | |
1315 | break; | |
1316 | case SCBPort: | |
aac443e6 | 1317 | TRACE(OTHER, logout("addr=%s val=0x%08x\n", regname(addr), val)); |
663e8e51 TS |
1318 | eepro100_write_port(s, val); |
1319 | break; | |
1320 | case SCBCtrlMDI: | |
1321 | eepro100_write_mdi(s, val); | |
1322 | break; | |
1323 | default: | |
1324 | logout("addr=%s val=0x%08x\n", regname(addr), val); | |
1325 | missing("unknown longword write"); | |
1326 | } | |
1327 | } | |
1328 | ||
aac443e6 SW |
1329 | /***************************************************************************** |
1330 | * | |
1331 | * Port mapped I/O. | |
1332 | * | |
1333 | ****************************************************************************/ | |
1334 | ||
663e8e51 TS |
1335 | static uint32_t ioport_read1(void *opaque, uint32_t addr) |
1336 | { | |
1337 | EEPRO100State *s = opaque; | |
1338 | //~ logout("addr=%s\n", regname(addr)); | |
1339 | return eepro100_read1(s, addr - s->region[1]); | |
1340 | } | |
1341 | ||
1342 | static uint32_t ioport_read2(void *opaque, uint32_t addr) | |
1343 | { | |
1344 | EEPRO100State *s = opaque; | |
1345 | return eepro100_read2(s, addr - s->region[1]); | |
1346 | } | |
1347 | ||
1348 | static uint32_t ioport_read4(void *opaque, uint32_t addr) | |
1349 | { | |
1350 | EEPRO100State *s = opaque; | |
1351 | return eepro100_read4(s, addr - s->region[1]); | |
1352 | } | |
1353 | ||
1354 | static void ioport_write1(void *opaque, uint32_t addr, uint32_t val) | |
1355 | { | |
1356 | EEPRO100State *s = opaque; | |
1357 | //~ logout("addr=%s val=0x%02x\n", regname(addr), val); | |
1358 | eepro100_write1(s, addr - s->region[1], val); | |
1359 | } | |
1360 | ||
1361 | static void ioport_write2(void *opaque, uint32_t addr, uint32_t val) | |
1362 | { | |
1363 | EEPRO100State *s = opaque; | |
1364 | eepro100_write2(s, addr - s->region[1], val); | |
1365 | } | |
1366 | ||
1367 | static void ioport_write4(void *opaque, uint32_t addr, uint32_t val) | |
1368 | { | |
1369 | EEPRO100State *s = opaque; | |
1370 | eepro100_write4(s, addr - s->region[1], val); | |
1371 | } | |
1372 | ||
1373 | /***********************************************************/ | |
1374 | /* PCI EEPRO100 definitions */ | |
1375 | ||
663e8e51 TS |
1376 | static void pci_map(PCIDevice * pci_dev, int region_num, |
1377 | uint32_t addr, uint32_t size, int type) | |
1378 | { | |
273a2142 | 1379 | EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, pci_dev); |
663e8e51 | 1380 | |
aac443e6 SW |
1381 | TRACE(OTHER, logout("region %d, addr=0x%08x, size=0x%08x, type=%d\n", |
1382 | region_num, addr, size, type)); | |
663e8e51 TS |
1383 | |
1384 | assert(region_num == 1); | |
1385 | register_ioport_write(addr, size, 1, ioport_write1, s); | |
1386 | register_ioport_read(addr, size, 1, ioport_read1, s); | |
1387 | register_ioport_write(addr, size, 2, ioport_write2, s); | |
1388 | register_ioport_read(addr, size, 2, ioport_read2, s); | |
1389 | register_ioport_write(addr, size, 4, ioport_write4, s); | |
1390 | register_ioport_read(addr, size, 4, ioport_read4, s); | |
1391 | ||
1392 | s->region[region_num] = addr; | |
1393 | } | |
1394 | ||
aac443e6 SW |
1395 | /***************************************************************************** |
1396 | * | |
1397 | * Memory mapped I/O. | |
1398 | * | |
1399 | ****************************************************************************/ | |
1400 | ||
c227f099 | 1401 | static void pci_mmio_writeb(void *opaque, target_phys_addr_t addr, uint32_t val) |
663e8e51 TS |
1402 | { |
1403 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1404 | //~ logout("addr=%s val=0x%02x\n", regname(addr), val); |
1405 | eepro100_write1(s, addr, val); | |
1406 | } | |
1407 | ||
c227f099 | 1408 | static void pci_mmio_writew(void *opaque, target_phys_addr_t addr, uint32_t val) |
663e8e51 TS |
1409 | { |
1410 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1411 | //~ logout("addr=%s val=0x%02x\n", regname(addr), val); |
1412 | eepro100_write2(s, addr, val); | |
1413 | } | |
1414 | ||
c227f099 | 1415 | static void pci_mmio_writel(void *opaque, target_phys_addr_t addr, uint32_t val) |
663e8e51 TS |
1416 | { |
1417 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1418 | //~ logout("addr=%s val=0x%02x\n", regname(addr), val); |
1419 | eepro100_write4(s, addr, val); | |
1420 | } | |
1421 | ||
c227f099 | 1422 | static uint32_t pci_mmio_readb(void *opaque, target_phys_addr_t addr) |
663e8e51 TS |
1423 | { |
1424 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1425 | //~ logout("addr=%s\n", regname(addr)); |
1426 | return eepro100_read1(s, addr); | |
1427 | } | |
1428 | ||
c227f099 | 1429 | static uint32_t pci_mmio_readw(void *opaque, target_phys_addr_t addr) |
663e8e51 TS |
1430 | { |
1431 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1432 | //~ logout("addr=%s\n", regname(addr)); |
1433 | return eepro100_read2(s, addr); | |
1434 | } | |
1435 | ||
c227f099 | 1436 | static uint32_t pci_mmio_readl(void *opaque, target_phys_addr_t addr) |
663e8e51 TS |
1437 | { |
1438 | EEPRO100State *s = opaque; | |
663e8e51 TS |
1439 | //~ logout("addr=%s\n", regname(addr)); |
1440 | return eepro100_read4(s, addr); | |
1441 | } | |
1442 | ||
d60efc6b | 1443 | static CPUWriteMemoryFunc * const pci_mmio_write[] = { |
663e8e51 TS |
1444 | pci_mmio_writeb, |
1445 | pci_mmio_writew, | |
1446 | pci_mmio_writel | |
1447 | }; | |
1448 | ||
d60efc6b | 1449 | static CPUReadMemoryFunc * const pci_mmio_read[] = { |
663e8e51 TS |
1450 | pci_mmio_readb, |
1451 | pci_mmio_readw, | |
1452 | pci_mmio_readl | |
1453 | }; | |
1454 | ||
1455 | static void pci_mmio_map(PCIDevice * pci_dev, int region_num, | |
1456 | uint32_t addr, uint32_t size, int type) | |
1457 | { | |
273a2142 | 1458 | EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, pci_dev); |
663e8e51 | 1459 | |
aac443e6 SW |
1460 | TRACE(OTHER, logout("region %d, addr=0x%08x, size=0x%08x, type=%d\n", |
1461 | region_num, addr, size, type)); | |
663e8e51 TS |
1462 | |
1463 | if (region_num == 0) { | |
1464 | /* Map control / status registers. */ | |
273a2142 JQ |
1465 | cpu_register_physical_memory(addr, size, s->mmio_index); |
1466 | s->region[region_num] = addr; | |
663e8e51 TS |
1467 | } |
1468 | } | |
1469 | ||
e3f5ec2b | 1470 | static int nic_can_receive(VLANClientState *vc) |
663e8e51 | 1471 | { |
e3f5ec2b | 1472 | EEPRO100State *s = vc->opaque; |
aac443e6 | 1473 | TRACE(RXTX, logout("%p\n", s)); |
663e8e51 TS |
1474 | return get_ru_state(s) == ru_ready; |
1475 | //~ return !eepro100_buffer_full(s); | |
1476 | } | |
1477 | ||
4f1c942b | 1478 | static ssize_t nic_receive(VLANClientState *vc, const uint8_t * buf, size_t size) |
663e8e51 TS |
1479 | { |
1480 | /* TODO: | |
1481 | * - Magic packets should set bit 30 in power management driver register. | |
1482 | * - Interesting packets should set bit 29 in power management driver register. | |
1483 | */ | |
e3f5ec2b | 1484 | EEPRO100State *s = vc->opaque; |
663e8e51 TS |
1485 | uint16_t rfd_status = 0xa000; |
1486 | static const uint8_t broadcast_macaddr[6] = | |
1487 | { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; | |
1488 | ||
1489 | /* TODO: check multiple IA bit. */ | |
7f1e9d4e KW |
1490 | if (s->configuration[20] & BIT(6)) { |
1491 | missing("Multiple IA bit"); | |
1492 | return -1; | |
1493 | } | |
663e8e51 TS |
1494 | |
1495 | if (s->configuration[8] & 0x80) { | |
1496 | /* CSMA is disabled. */ | |
1497 | logout("%p received while CSMA is disabled\n", s); | |
4f1c942b | 1498 | return -1; |
663e8e51 TS |
1499 | } else if (size < 64 && (s->configuration[7] & 1)) { |
1500 | /* Short frame and configuration byte 7/0 (discard short receive) set: | |
1501 | * Short frame is discarded */ | |
067d01de | 1502 | logout("%p received short frame (%zu byte)\n", s, size); |
663e8e51 | 1503 | s->statistics.rx_short_frame_errors++; |
4f1c942b | 1504 | //~ return -1; |
663e8e51 TS |
1505 | } else if ((size > MAX_ETH_FRAME_SIZE + 4) && !(s->configuration[18] & 8)) { |
1506 | /* Long frame and configuration byte 18/3 (long receive ok) not set: | |
1507 | * Long frames are discarded. */ | |
067d01de | 1508 | logout("%p received long frame (%zu byte), ignored\n", s, size); |
4f1c942b | 1509 | return -1; |
663e8e51 TS |
1510 | } else if (memcmp(buf, s->macaddr, 6) == 0) { // !!! |
1511 | /* Frame matches individual address. */ | |
1512 | /* TODO: check configuration byte 15/4 (ignore U/L). */ | |
067d01de | 1513 | TRACE(RXTX, logout("%p received frame for me, len=%zu\n", s, size)); |
663e8e51 TS |
1514 | } else if (memcmp(buf, broadcast_macaddr, 6) == 0) { |
1515 | /* Broadcast frame. */ | |
067d01de | 1516 | TRACE(RXTX, logout("%p received broadcast, len=%zu\n", s, size)); |
663e8e51 TS |
1517 | rfd_status |= 0x0002; |
1518 | } else if (buf[0] & 0x01) { // !!! | |
1519 | /* Multicast frame. */ | |
067d01de | 1520 | TRACE(RXTX, logout("%p received multicast, len=%zu\n", s, size)); |
663e8e51 | 1521 | /* TODO: check multicast all bit. */ |
7f1e9d4e KW |
1522 | if (s->configuration[21] & BIT(3)) { |
1523 | missing("Multicast All bit"); | |
1524 | } | |
663e8e51 TS |
1525 | int mcast_idx = compute_mcast_idx(buf); |
1526 | if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7)))) { | |
4f1c942b | 1527 | return size; |
663e8e51 TS |
1528 | } |
1529 | rfd_status |= 0x0002; | |
1530 | } else if (s->configuration[15] & 1) { | |
1531 | /* Promiscuous: receive all. */ | |
067d01de | 1532 | TRACE(RXTX, logout("%p received frame in promiscuous mode, len=%zu\n", s, size)); |
663e8e51 TS |
1533 | rfd_status |= 0x0004; |
1534 | } else { | |
067d01de | 1535 | TRACE(RXTX, logout("%p received frame, ignored, len=%zu,%s\n", s, size, |
aac443e6 | 1536 | nic_dump(buf, size))); |
4f1c942b | 1537 | return size; |
663e8e51 TS |
1538 | } |
1539 | ||
1540 | if (get_ru_state(s) != ru_ready) { | |
aac443e6 SW |
1541 | /* No resources available. */ |
1542 | logout("no resources, state=%u\n", get_ru_state(s)); | |
663e8e51 | 1543 | s->statistics.rx_resource_errors++; |
aac443e6 | 1544 | //~ assert(!"no resources"); |
4f1c942b | 1545 | return -1; |
663e8e51 TS |
1546 | } |
1547 | //~ !!! | |
1548 | //~ $3 = {status = 0x0, command = 0xc000, link = 0x2d220, rx_buf_addr = 0x207dc, count = 0x0, size = 0x5f8, packet = {0x0 <repeats 1518 times>}} | |
c227f099 | 1549 | eepro100_rx_t rx; |
663e8e51 | 1550 | cpu_physical_memory_read(s->ru_base + s->ru_offset, (uint8_t *) & rx, |
c227f099 | 1551 | offsetof(eepro100_rx_t, packet)); |
663e8e51 TS |
1552 | uint16_t rfd_command = le16_to_cpu(rx.command); |
1553 | uint16_t rfd_size = le16_to_cpu(rx.size); | |
7f1e9d4e KW |
1554 | |
1555 | if (size > rfd_size) { | |
1556 | logout("Receive buffer (%" PRId16 " bytes) too small for data " | |
1557 | "(%zu bytes); data truncated\n", rfd_size, size); | |
1558 | size = rfd_size; | |
1559 | } | |
663e8e51 TS |
1560 | if (size < 64) { |
1561 | rfd_status |= 0x0080; | |
1562 | } | |
aac443e6 SW |
1563 | TRACE(OTHER, logout("command 0x%04x, link 0x%08x, addr 0x%08x, size %u\n", |
1564 | rfd_command, rx.link, rx.rx_buf_addr, rfd_size)); | |
c227f099 | 1565 | stw_phys(s->ru_base + s->ru_offset + offsetof(eepro100_rx_t, status), |
663e8e51 | 1566 | rfd_status); |
c227f099 | 1567 | stw_phys(s->ru_base + s->ru_offset + offsetof(eepro100_rx_t, count), size); |
663e8e51 TS |
1568 | /* Early receive interrupt not supported. */ |
1569 | //~ eepro100_er_interrupt(s); | |
1570 | /* Receive CRC Transfer not supported. */ | |
7f1e9d4e KW |
1571 | if (s->configuration[18] & 4) { |
1572 | missing("Receive CRC Transfer"); | |
1573 | return -1; | |
1574 | } | |
663e8e51 TS |
1575 | /* TODO: check stripping enable bit. */ |
1576 | //~ assert(!(s->configuration[17] & 1)); | |
1577 | cpu_physical_memory_write(s->ru_base + s->ru_offset + | |
c227f099 | 1578 | offsetof(eepro100_rx_t, packet), buf, size); |
663e8e51 TS |
1579 | s->statistics.rx_good_frames++; |
1580 | eepro100_fr_interrupt(s); | |
1581 | s->ru_offset = le32_to_cpu(rx.link); | |
1582 | if (rfd_command & 0x8000) { | |
1583 | /* EL bit is set, so this was the last frame. */ | |
7f1e9d4e KW |
1584 | logout("receive: Running out of frames\n"); |
1585 | set_ru_state(s, ru_suspended); | |
663e8e51 TS |
1586 | } |
1587 | if (rfd_command & 0x4000) { | |
1588 | /* S bit is set. */ | |
1589 | set_ru_state(s, ru_suspended); | |
1590 | } | |
4f1c942b | 1591 | return size; |
663e8e51 TS |
1592 | } |
1593 | ||
1594 | static int nic_load(QEMUFile * f, void *opaque, int version_id) | |
1595 | { | |
769cf7a5 | 1596 | EEPRO100State *s = opaque; |
2657c663 | 1597 | int i; |
663e8e51 TS |
1598 | int ret; |
1599 | ||
4e3db917 | 1600 | if (version_id > 3) |
663e8e51 | 1601 | return -EINVAL; |
4e3db917 | 1602 | |
3706c43f SW |
1603 | ret = pci_device_load(&s->dev, f); |
1604 | if (ret < 0) { | |
1605 | return ret; | |
663e8e51 TS |
1606 | } |
1607 | ||
3706c43f SW |
1608 | /* Skip unused entries. */ |
1609 | qemu_fseek(f, 32, SEEK_CUR); | |
663e8e51 | 1610 | |
663e8e51 TS |
1611 | qemu_get_buffer(f, s->mult, 8); |
1612 | qemu_get_buffer(f, s->mem, sizeof(s->mem)); | |
1613 | ||
3706c43f | 1614 | /* Restore all members of struct between scb_stat and mem. */ |
2657c663 AZ |
1615 | qemu_get_8s(f, &s->scb_stat); |
1616 | qemu_get_8s(f, &s->int_stat); | |
3706c43f SW |
1617 | /* Skip unused entries. */ |
1618 | qemu_fseek(f, 3 * 4, SEEK_CUR); | |
2657c663 | 1619 | qemu_get_buffer(f, s->macaddr, 6); |
3706c43f SW |
1620 | /* Skip unused entries. */ |
1621 | qemu_fseek(f, 19 * 4, SEEK_CUR); | |
4e3db917 | 1622 | for (i = 0; i < 32; i++) { |
2657c663 | 1623 | qemu_get_be16s(f, &s->mdimem[i]); |
aac443e6 SW |
1624 | } |
1625 | /* The eeprom should be saved and restored by its own routines. */ | |
2657c663 | 1626 | qemu_get_be32s(f, &s->device); |
3706c43f | 1627 | // TODO check device. |
2657c663 AZ |
1628 | qemu_get_be32s(f, &s->pointer); |
1629 | qemu_get_be32s(f, &s->cu_base); | |
1630 | qemu_get_be32s(f, &s->cu_offset); | |
1631 | qemu_get_be32s(f, &s->ru_base); | |
1632 | qemu_get_be32s(f, &s->ru_offset); | |
1633 | qemu_get_be32s(f, &s->statsaddr); | |
aac443e6 | 1634 | /* Restore epro100_stats_t statistics. */ |
2657c663 AZ |
1635 | qemu_get_be32s(f, &s->statistics.tx_good_frames); |
1636 | qemu_get_be32s(f, &s->statistics.tx_max_collisions); | |
1637 | qemu_get_be32s(f, &s->statistics.tx_late_collisions); | |
1638 | qemu_get_be32s(f, &s->statistics.tx_underruns); | |
1639 | qemu_get_be32s(f, &s->statistics.tx_lost_crs); | |
1640 | qemu_get_be32s(f, &s->statistics.tx_deferred); | |
1641 | qemu_get_be32s(f, &s->statistics.tx_single_collisions); | |
1642 | qemu_get_be32s(f, &s->statistics.tx_multiple_collisions); | |
1643 | qemu_get_be32s(f, &s->statistics.tx_total_collisions); | |
1644 | qemu_get_be32s(f, &s->statistics.rx_good_frames); | |
1645 | qemu_get_be32s(f, &s->statistics.rx_crc_errors); | |
1646 | qemu_get_be32s(f, &s->statistics.rx_alignment_errors); | |
1647 | qemu_get_be32s(f, &s->statistics.rx_resource_errors); | |
1648 | qemu_get_be32s(f, &s->statistics.rx_overrun_errors); | |
1649 | qemu_get_be32s(f, &s->statistics.rx_cdt_errors); | |
1650 | qemu_get_be32s(f, &s->statistics.rx_short_frame_errors); | |
1651 | qemu_get_be32s(f, &s->statistics.fc_xmt_pause); | |
1652 | qemu_get_be32s(f, &s->statistics.fc_rcv_pause); | |
1653 | qemu_get_be32s(f, &s->statistics.fc_rcv_unsupported); | |
1654 | qemu_get_be16s(f, &s->statistics.xmt_tco_frames); | |
1655 | qemu_get_be16s(f, &s->statistics.rcv_tco_frames); | |
1656 | qemu_get_be32s(f, &s->statistics.complete); | |
1657 | #if 0 | |
1658 | qemu_get_be16s(f, &s->status); | |
1659 | #endif | |
1660 | ||
1661 | /* Configuration bytes. */ | |
1662 | qemu_get_buffer(f, s->configuration, sizeof(s->configuration)); | |
1663 | ||
663e8e51 TS |
1664 | return 0; |
1665 | } | |
1666 | ||
1667 | static void nic_save(QEMUFile * f, void *opaque) | |
1668 | { | |
769cf7a5 | 1669 | EEPRO100State *s = opaque; |
2657c663 | 1670 | int i; |
663e8e51 | 1671 | |
273a2142 | 1672 | pci_device_save(&s->dev, f); |
663e8e51 | 1673 | |
3706c43f SW |
1674 | /* Skip unused entries. */ |
1675 | qemu_fseek(f, 32, SEEK_CUR); | |
1676 | ||
663e8e51 TS |
1677 | qemu_put_buffer(f, s->mult, 8); |
1678 | qemu_put_buffer(f, s->mem, sizeof(s->mem)); | |
2657c663 | 1679 | |
3706c43f | 1680 | /* Save all members of struct between scb_stat and mem. */ |
2657c663 AZ |
1681 | qemu_put_8s(f, &s->scb_stat); |
1682 | qemu_put_8s(f, &s->int_stat); | |
3706c43f SW |
1683 | /* Skip unused entries. */ |
1684 | qemu_fseek(f, 3 * 4, SEEK_CUR); | |
2657c663 | 1685 | qemu_put_buffer(f, s->macaddr, 6); |
3706c43f SW |
1686 | /* Skip unused entries. */ |
1687 | qemu_fseek(f, 19 * 4, SEEK_CUR); | |
4e3db917 | 1688 | for (i = 0; i < 32; i++) { |
2657c663 | 1689 | qemu_put_be16s(f, &s->mdimem[i]); |
aac443e6 SW |
1690 | } |
1691 | /* The eeprom should be saved and restored by its own routines. */ | |
2657c663 AZ |
1692 | qemu_put_be32s(f, &s->device); |
1693 | qemu_put_be32s(f, &s->pointer); | |
1694 | qemu_put_be32s(f, &s->cu_base); | |
1695 | qemu_put_be32s(f, &s->cu_offset); | |
1696 | qemu_put_be32s(f, &s->ru_base); | |
1697 | qemu_put_be32s(f, &s->ru_offset); | |
1698 | qemu_put_be32s(f, &s->statsaddr); | |
aac443e6 | 1699 | /* Save epro100_stats_t statistics. */ |
2657c663 AZ |
1700 | qemu_put_be32s(f, &s->statistics.tx_good_frames); |
1701 | qemu_put_be32s(f, &s->statistics.tx_max_collisions); | |
1702 | qemu_put_be32s(f, &s->statistics.tx_late_collisions); | |
1703 | qemu_put_be32s(f, &s->statistics.tx_underruns); | |
1704 | qemu_put_be32s(f, &s->statistics.tx_lost_crs); | |
1705 | qemu_put_be32s(f, &s->statistics.tx_deferred); | |
1706 | qemu_put_be32s(f, &s->statistics.tx_single_collisions); | |
1707 | qemu_put_be32s(f, &s->statistics.tx_multiple_collisions); | |
1708 | qemu_put_be32s(f, &s->statistics.tx_total_collisions); | |
1709 | qemu_put_be32s(f, &s->statistics.rx_good_frames); | |
1710 | qemu_put_be32s(f, &s->statistics.rx_crc_errors); | |
1711 | qemu_put_be32s(f, &s->statistics.rx_alignment_errors); | |
1712 | qemu_put_be32s(f, &s->statistics.rx_resource_errors); | |
1713 | qemu_put_be32s(f, &s->statistics.rx_overrun_errors); | |
1714 | qemu_put_be32s(f, &s->statistics.rx_cdt_errors); | |
1715 | qemu_put_be32s(f, &s->statistics.rx_short_frame_errors); | |
1716 | qemu_put_be32s(f, &s->statistics.fc_xmt_pause); | |
1717 | qemu_put_be32s(f, &s->statistics.fc_rcv_pause); | |
1718 | qemu_put_be32s(f, &s->statistics.fc_rcv_unsupported); | |
1719 | qemu_put_be16s(f, &s->statistics.xmt_tco_frames); | |
1720 | qemu_put_be16s(f, &s->statistics.rcv_tco_frames); | |
1721 | qemu_put_be32s(f, &s->statistics.complete); | |
1722 | #if 0 | |
1723 | qemu_put_be16s(f, &s->status); | |
1724 | #endif | |
1725 | ||
1726 | /* Configuration bytes. */ | |
1727 | qemu_put_buffer(f, s->configuration, sizeof(s->configuration)); | |
663e8e51 TS |
1728 | } |
1729 | ||
b946a153 AL |
1730 | static void nic_cleanup(VLANClientState *vc) |
1731 | { | |
1732 | EEPRO100State *s = vc->opaque; | |
1733 | ||
1734 | unregister_savevm(vc->model, s); | |
1735 | ||
1736 | eeprom93xx_free(s->eeprom); | |
1737 | } | |
1738 | ||
c4c270e2 | 1739 | static int pci_nic_uninit(PCIDevice *pci_dev) |
b946a153 | 1740 | { |
c4c270e2 | 1741 | EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, pci_dev); |
b946a153 AL |
1742 | |
1743 | cpu_unregister_io_memory(s->mmio_index); | |
1744 | ||
1745 | return 0; | |
1746 | } | |
1747 | ||
81a322d4 | 1748 | static int nic_init(PCIDevice *pci_dev, uint32_t device) |
663e8e51 | 1749 | { |
273a2142 | 1750 | EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, pci_dev); |
663e8e51 | 1751 | |
aac443e6 | 1752 | TRACE(OTHER, logout("\n")); |
663e8e51 | 1753 | |
663e8e51 | 1754 | s->device = device; |
663e8e51 TS |
1755 | |
1756 | pci_reset(s); | |
1757 | ||
1758 | /* Add 64 * 2 EEPROM. i82557 and i82558 support a 64 word EEPROM, | |
1759 | * i82559 and later support 64 or 256 word EEPROM. */ | |
1760 | s->eeprom = eeprom93xx_new(EEPROM_SIZE); | |
1761 | ||
1762 | /* Handler for memory-mapped I/O */ | |
273a2142 | 1763 | s->mmio_index = |
1eed09cb | 1764 | cpu_register_io_memory(pci_mmio_read, pci_mmio_write, s); |
663e8e51 | 1765 | |
273a2142 | 1766 | pci_register_bar(&s->dev, 0, PCI_MEM_SIZE, |
663e8e51 TS |
1767 | PCI_ADDRESS_SPACE_MEM | |
1768 | PCI_ADDRESS_SPACE_MEM_PREFETCH, pci_mmio_map); | |
273a2142 | 1769 | pci_register_bar(&s->dev, 1, PCI_IO_SIZE, PCI_ADDRESS_SPACE_IO, |
663e8e51 | 1770 | pci_map); |
273a2142 | 1771 | pci_register_bar(&s->dev, 2, PCI_FLASH_SIZE, PCI_ADDRESS_SPACE_MEM, |
663e8e51 TS |
1772 | pci_mmio_map); |
1773 | ||
273a2142 | 1774 | qdev_get_macaddr(&s->dev.qdev, s->macaddr); |
663e8e51 TS |
1775 | logout("macaddr: %s\n", nic_dump(&s->macaddr[0], 6)); |
1776 | assert(s->region[1] == 0); | |
1777 | ||
1778 | nic_reset(s); | |
1779 | ||
273a2142 | 1780 | s->vc = qdev_get_vlan_client(&s->dev.qdev, |
463af534 | 1781 | nic_can_receive, nic_receive, NULL, |
b946a153 | 1782 | nic_cleanup, s); |
663e8e51 | 1783 | |
7cb7434b | 1784 | qemu_format_nic_info_str(s->vc, s->macaddr); |
aac443e6 | 1785 | TRACE(OTHER, logout("%s\n", s->vc->info_str)); |
663e8e51 | 1786 | |
a08d4367 | 1787 | qemu_register_reset(nic_reset, s); |
663e8e51 | 1788 | |
4e3db917 | 1789 | register_savevm(s->vc->model, -1, 3, nic_save, nic_load, s); |
81a322d4 | 1790 | return 0; |
663e8e51 TS |
1791 | } |
1792 | ||
c4c270e2 SW |
1793 | static int pci_i82550_init(PCIDevice *pci_dev) |
1794 | { | |
1795 | return nic_init(pci_dev, i82550); | |
1796 | } | |
1797 | ||
1798 | static int pci_i82551_init(PCIDevice *pci_dev) | |
1799 | { | |
1800 | return nic_init(pci_dev, i82551); | |
1801 | } | |
1802 | ||
1803 | static int pci_i82557a_init(PCIDevice *pci_dev) | |
1804 | { | |
1805 | return nic_init(pci_dev, i82557A); | |
1806 | } | |
1807 | ||
1808 | static int pci_i82557b_init(PCIDevice *pci_dev) | |
1809 | { | |
1810 | return nic_init(pci_dev, i82557B); | |
1811 | } | |
1812 | ||
1813 | static int pci_i82557c_init(PCIDevice *pci_dev) | |
1814 | { | |
1815 | return nic_init(pci_dev, i82557C); | |
1816 | } | |
1817 | ||
1818 | static int pci_i82558a_init(PCIDevice *pci_dev) | |
1819 | { | |
1820 | return nic_init(pci_dev, i82558A); | |
1821 | } | |
1822 | ||
1823 | static int pci_i82558b_init(PCIDevice *pci_dev) | |
1824 | { | |
1825 | return nic_init(pci_dev, i82558B); | |
1826 | } | |
1827 | ||
1828 | static int pci_i82559a_init(PCIDevice *pci_dev) | |
1829 | { | |
1830 | return nic_init(pci_dev, i82559A); | |
1831 | } | |
1832 | ||
1833 | static int pci_i82559b_init(PCIDevice *pci_dev) | |
1834 | { | |
1835 | return nic_init(pci_dev, i82559B); | |
1836 | } | |
1837 | ||
1838 | static int pci_i82559c_init(PCIDevice *pci_dev) | |
9d07d757 | 1839 | { |
c4c270e2 | 1840 | return nic_init(pci_dev, i82559C); |
9d07d757 PB |
1841 | } |
1842 | ||
c4c270e2 | 1843 | static int pci_i82559er_init(PCIDevice *pci_dev) |
663e8e51 | 1844 | { |
c4c270e2 | 1845 | return nic_init(pci_dev, i82559ER); |
663e8e51 TS |
1846 | } |
1847 | ||
c4c270e2 | 1848 | static int pci_i82562_init(PCIDevice *pci_dev) |
663e8e51 | 1849 | { |
c4c270e2 | 1850 | return nic_init(pci_dev, i82562); |
663e8e51 TS |
1851 | } |
1852 | ||
0aab0d3a GH |
1853 | static PCIDeviceInfo eepro100_info[] = { |
1854 | { | |
c4c270e2 SW |
1855 | .qdev.name = "i82550", |
1856 | .qdev.size = sizeof(EEPRO100State), | |
1857 | .init = pci_i82550_init, | |
1858 | },{ | |
0aab0d3a | 1859 | .qdev.name = "i82551", |
273a2142 | 1860 | .qdev.size = sizeof(EEPRO100State), |
0aab0d3a | 1861 | .init = pci_i82551_init, |
e3936fa5 | 1862 | .exit = pci_nic_uninit, |
c4c270e2 SW |
1863 | },{ |
1864 | .qdev.name = "i82557a", | |
1865 | .qdev.size = sizeof(EEPRO100State), | |
1866 | .init = pci_i82557a_init, | |
0aab0d3a GH |
1867 | },{ |
1868 | .qdev.name = "i82557b", | |
273a2142 | 1869 | .qdev.size = sizeof(EEPRO100State), |
0aab0d3a | 1870 | .init = pci_i82557b_init, |
e3936fa5 | 1871 | .exit = pci_nic_uninit, |
c4c270e2 SW |
1872 | },{ |
1873 | .qdev.name = "i82557c", | |
1874 | .qdev.size = sizeof(EEPRO100State), | |
1875 | .init = pci_i82557c_init, | |
1876 | },{ | |
1877 | .qdev.name = "i82558a", | |
1878 | .qdev.size = sizeof(EEPRO100State), | |
1879 | .init = pci_i82558a_init, | |
1880 | },{ | |
1881 | .qdev.name = "i82558b", | |
1882 | .qdev.size = sizeof(EEPRO100State), | |
1883 | .init = pci_i82558b_init, | |
1884 | },{ | |
1885 | .qdev.name = "i82559a", | |
1886 | .qdev.size = sizeof(EEPRO100State), | |
1887 | .init = pci_i82559a_init, | |
1888 | },{ | |
1889 | .qdev.name = "i82559b", | |
1890 | .qdev.size = sizeof(EEPRO100State), | |
1891 | .init = pci_i82559b_init, | |
1892 | },{ | |
1893 | .qdev.name = "i82559c", | |
1894 | .qdev.size = sizeof(EEPRO100State), | |
1895 | .init = pci_i82559c_init, | |
0aab0d3a GH |
1896 | },{ |
1897 | .qdev.name = "i82559er", | |
273a2142 | 1898 | .qdev.size = sizeof(EEPRO100State), |
0aab0d3a | 1899 | .init = pci_i82559er_init, |
e3936fa5 | 1900 | .exit = pci_nic_uninit, |
c4c270e2 SW |
1901 | },{ |
1902 | .qdev.name = "i82562", | |
1903 | .qdev.size = sizeof(EEPRO100State), | |
1904 | .init = pci_i82562_init, | |
0aab0d3a GH |
1905 | },{ |
1906 | /* end of list */ | |
1907 | } | |
1908 | }; | |
1909 | ||
9d07d757 | 1910 | static void eepro100_register_devices(void) |
663e8e51 | 1911 | { |
0aab0d3a | 1912 | pci_qdev_register_many(eepro100_info); |
663e8e51 TS |
1913 | } |
1914 | ||
9d07d757 | 1915 | device_init(eepro100_register_devices) |