iPXE
cs89x0.c
Go to the documentation of this file.
1#ifdef ALLMULTI
2#error multicast support is not yet implemented
3#endif
4
5/**
6 Per an email message from Russ Nelson <nelson@crynwr.com> on
7 18 March 2008 this file is now licensed under GPL Version 2.
8
9 From: Russ Nelson <nelson@crynwr.com>
10 Date: Tue, 18 Mar 2008 12:42:00 -0400
11 Subject: Re: [Etherboot-developers] cs89x0 driver in etherboot
12 -- quote from email
13 As copyright holder, if I say it doesn't conflict with the GPL,
14 then it doesn't conflict with the GPL.
15
16 However, there's no point in causing people's brains to overheat,
17 so yes, I grant permission for the code to be relicensed under the
18 GPLv2. Please make sure that this change in licensing makes its
19 way upstream. -russ
20 -- quote from email
21**/
22
23FILE_LICENCE ( GPL2_ONLY );
24
25/* cs89x0.c: A Crystal Semiconductor CS89[02]0 driver for etherboot. */
26/*
27 Permission is granted to distribute the enclosed cs89x0.[ch] driver
28 only in conjunction with the Etherboot package. The code is
29 ordinarily distributed under the GPL.
30
31 Russ Nelson, January 2000
32
33 ChangeLog:
34
35 Thu Dec 6 22:40:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
36
37 * disabled all "advanced" features; this should make the code more reliable
38
39 * reorganized the reset function
40
41 * always reset the address port, so that autoprobing will continue working
42
43 * some cosmetic changes
44
45 * 2.5
46
47 Thu Dec 5 21:00:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
48
49 * tested the code against a CS8900 card
50
51 * lots of minor bug fixes and adjustments
52
53 * this is the first release, that actually works! it still requires some
54 changes in order to be more tolerant to different environments
55
56 * 4
57
58 Fri Nov 22 23:00:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
59
60 * read the manuals for the CS89x0 chipsets and took note of all the
61 changes that will be necessary in order to adapt Russel Nelson's code
62 to the requirements of a BOOT-Prom
63
64 * 6
65
66 Thu Nov 19 22:00:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
67
68 * Synched with Russel Nelson's current code (v1.00)
69
70 * 2
71
72 Thu Nov 12 18:00:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
73
74 * Cleaned up some of the code and tried to optimize the code size.
75
76 * 1.5
77
78 Sun Nov 10 16:30:00 1996 Markus Gutschke <gutschk@math.uni-muenster.de>
79
80 * First experimental release. This code compiles fine, but I
81 have no way of testing whether it actually works.
82
83 * I did not (yet) bother to make the code 16bit aware, so for
84 the time being, it will only work for Etherboot/32.
85
86 * 12
87
88 */
89
90#include <errno.h>
91#include <ipxe/ethernet.h>
92#include "etherboot.h"
93#include "nic.h"
94#include <ipxe/isa.h>
95#include "cs89x0.h"
96
97static unsigned short eth_nic_base;
98static unsigned long eth_mem_start;
99static unsigned short eth_irqno;
100static unsigned short eth_cs_type; /* one of: CS8900, CS8920, CS8920M */
101static unsigned short eth_auto_neg_cnf;
102static unsigned short eth_adapter_cnf;
103static unsigned short eth_linectl;
104
105/*************************************************************************
106 CS89x0 - specific routines
107**************************************************************************/
108
109static inline int readreg(int portno)
110{
111 outw(portno, eth_nic_base + ADD_PORT);
112 return inw(eth_nic_base + DATA_PORT);
113}
114
115static inline void writereg(int portno, int value)
116{
117 outw(portno, eth_nic_base + ADD_PORT);
119 return;
120}
121
122/*************************************************************************
123EEPROM access
124**************************************************************************/
125
126static int wait_eeprom_ready(void)
127{
128 unsigned long tmo = currticks() + 4*TICKS_PER_SEC;
129
130 /* check to see if the EEPROM is ready, a timeout is used -
131 just in case EEPROM is ready when SI_BUSY in the
132 PP_SelfST is clear */
133 while(readreg(PP_SelfST) & SI_BUSY) {
134 if (currticks() >= tmo)
135 return -1; }
136 return 0;
137}
138
139static int get_eeprom_data(int off, int len, unsigned short *buffer)
140{
141 int i;
142
143#ifdef EDEBUG
144 printf("\ncs: EEPROM data from %hX for %hX:",off,len);
145#endif
146 for (i = 0; i < len; i++) {
147 if (wait_eeprom_ready() < 0)
148 return -1;
149 /* Now send the EEPROM read command and EEPROM location
150 to read */
151 writereg(PP_EECMD, (off + i) | EEPROM_READ_CMD);
152 if (wait_eeprom_ready() < 0)
153 return -1;
155#ifdef EDEBUG
156 if (!(i%10))
157 printf("\ncs: ");
158 printf("%hX ", buffer[i]);
159#endif
160 }
161#ifdef EDEBUG
162 putchar('\n');
163#endif
164
165 return(0);
166}
167
168static int get_eeprom_chksum(int off __unused, int len, unsigned short *buffer)
169{
170 int i, cksum;
171
172 cksum = 0;
173 for (i = 0; i < len; i++)
174 cksum += buffer[i];
175 cksum &= 0xffff;
176 if (cksum == 0)
177 return 0;
178 return -1;
179}
180
181/*************************************************************************
182Activate all of the available media and probe for network
183**************************************************************************/
184
185static void clrline(void)
186{
187 int i;
188
189 putchar('\r');
190 for (i = 79; i--; ) putchar(' ');
191 printf("\rcs: ");
192 return;
193}
194
195static void control_dc_dc(int on_not_off)
196{
197 unsigned int selfcontrol;
198 unsigned long tmo = currticks() + TICKS_PER_SEC;
199
200 /* control the DC to DC convertor in the SelfControl register. */
201 selfcontrol = HCB1_ENBL; /* Enable the HCB1 bit as an output */
202 if (((eth_adapter_cnf & A_CNF_DC_DC_POLARITY) != 0) ^ on_not_off)
203 selfcontrol |= HCB1;
204 else
205 selfcontrol &= ~HCB1;
206 writereg(PP_SelfCTL, selfcontrol);
207
208 /* Wait for the DC/DC converter to power up - 1000ms */
209 while (currticks() < tmo);
210
211 return;
212}
213
214static int detect_tp(void)
215{
216 unsigned long tmo;
217
218 /* Turn on the chip auto detection of 10BT/ AUI */
219
220 clrline(); printf("attempting %s:","TP");
221
222 /* If connected to another full duplex capable 10-Base-T card
223 the link pulses seem to be lost when the auto detect bit in
224 the LineCTL is set. To overcome this the auto detect bit
225 will be cleared whilst testing the 10-Base-T interface.
226 This would not be necessary for the sparrow chip but is
227 simpler to do it anyway. */
229 control_dc_dc(0);
230
231 /* Delay for the hardware to work out if the TP cable is
232 present - 150ms */
233 for (tmo = currticks() + 4; currticks() < tmo; );
234
235 if ((readreg(PP_LineST) & LINK_OK) == 0)
236 return 0;
237
238 if (eth_cs_type != CS8900) {
239
241
243 printf(" negotiating duplex... ");
245 if (currticks() - tmo > 40*TICKS_PER_SEC) {
246 printf("time out ");
247 break;
248 }
249 }
250 }
252 printf("using full duplex");
253 else
254 printf("using half duplex");
255 }
256
257 return A_CNF_MEDIA_10B_T;
258}
259
260/* send a test packet - return true if carrier bits are ok */
261static int send_test_pkt(struct nic *nic)
262{
263 static unsigned char testpacket[] = { 0,0,0,0,0,0, 0,0,0,0,0,0,
264 0, 46, /*A 46 in network order */
265 0, 0, /*DSAP=0 & SSAP=0 fields */
266 0xf3,0 /*Control (Test Req+P bit set)*/ };
267 unsigned long tmo;
268
270
271 memcpy(testpacket, nic->node_addr, ETH_ALEN);
272 memcpy(testpacket+ETH_ALEN, nic->node_addr, ETH_ALEN);
273
276
277 /* Test to see if the chip has allocated memory for the packet */
278 for (tmo = currticks() + 2;
280 if (currticks() >= tmo)
281 return(0);
282
283 /* Write the contents of the packet */
284 outsw(eth_nic_base + TX_FRAME_PORT, testpacket,
285 (ETH_ZLEN+1)>>1);
286
287 printf(" sending test packet ");
288 /* wait a couple of timer ticks for packet to be received */
289 for (tmo = currticks() + 2; currticks() < tmo; );
290
292 printf("succeeded");
293 return 1;
294 }
295 printf("failed");
296 return 0;
297}
298
299
300static int detect_aui(struct nic *nic)
301{
302 clrline(); printf("attempting %s:","AUI");
303 control_dc_dc(0);
304
306
307 if (send_test_pkt(nic)) {
308 return A_CNF_MEDIA_AUI; }
309 else
310 return 0;
311}
312
313static int detect_bnc(struct nic *nic)
314{
315 clrline(); printf("attempting %s:","BNC");
316 control_dc_dc(1);
317
319
320 if (send_test_pkt(nic)) {
321 return A_CNF_MEDIA_10B_2; }
322 else
323 return 0;
324}
325
326/**************************************************************************
327ETH_RESET - Reset adapter
328***************************************************************************/
329
330static void cs89x0_reset(struct nic *nic)
331{
332 int i;
333 unsigned long reset_tmo;
334
336
337 /* wait for two ticks; that is 2*55ms */
338 for (reset_tmo = currticks() + 2; currticks() < reset_tmo; );
339
340 if (eth_cs_type != CS8900) {
341 /* Hardware problem requires PNP registers to be reconfigured
342 after a reset */
343 if (eth_irqno != 0xFFFF) {
346 outb(0, eth_nic_base + DATA_PORT + 1); }
347
348 if (eth_mem_start) {
350 outb((eth_mem_start >> 8) & 0xff, eth_nic_base + DATA_PORT);
351 outb((eth_mem_start >> 24) & 0xff, eth_nic_base + DATA_PORT + 1); } }
352
353 /* Wait until the chip is reset */
354 for (reset_tmo = currticks() + 2;
355 (readreg(PP_SelfST) & INIT_DONE) == 0 &&
356 currticks() < reset_tmo; );
357
358 /* disable interrupts and memory accesses */
360
361 /* set the ethernet address */
362 for (i=0; i < ETH_ALEN/2; i++)
363 writereg(PP_IA+i*2,
364 nic->node_addr[i*2] |
365 (nic->node_addr[i*2+1] << 8));
366
367 /* receive only error free packets addressed to this card */
369
370 /* do not generate any interrupts on receive operations */
371 writereg(PP_RxCFG, 0);
372
373 /* do not generate any interrupts on transmit operations */
374 writereg(PP_TxCFG, 0);
375
376 /* do not generate any interrupts on buffer operations */
378
379 /* reset address port, so that autoprobing will keep working */
381
382 return;
383}
384
385/**************************************************************************
386ETH_TRANSMIT - Transmit a frame
387***************************************************************************/
388
389static void cs89x0_transmit(
390 struct nic *nic,
391 const char *d, /* Destination */
392 unsigned int t, /* Type */
393 unsigned int s, /* size */
394 const char *p) /* Packet */
395{
396 unsigned long tmo;
397 int sr;
398
399 /* does this size have to be rounded??? please,
400 somebody have a look in the specs */
401 if ((sr = ((s + ETH_HLEN + 1)&~1)) < ETH_ZLEN)
402 sr = ETH_ZLEN;
403
404retry:
405 /* initiate a transmit sequence */
408
409 /* Test to see if the chip has allocated memory for the packet */
410 if ((readreg(PP_BusST) & READY_FOR_TX_NOW) == 0) {
411 /* Oops... this should not happen! */
412 printf("cs: unable to send packet; retrying...\n");
413 for (tmo = currticks() + 5*TICKS_PER_SEC; currticks() < tmo; );
415 goto retry; }
416
417 /* Write the contents of the packet */
420 ETH_ALEN/2);
421 outw(((t >> 8)&0xFF)|(t << 8), eth_nic_base + TX_FRAME_PORT);
422 outsw(eth_nic_base + TX_FRAME_PORT, p, (s+1)/2);
423 for (sr = sr/2 - (s+1)/2 - ETH_ALEN - 1; sr > 0; sr--)
425
426 /* wait for transfer to succeed */
427 for (tmo = currticks()+5*TICKS_PER_SEC;
428 (s = readreg(PP_TxEvent)&~0x1F) == 0 && currticks() < tmo;)
429 /* nothing */ ;
430 if ((s & TX_SEND_OK_BITS) != TX_OK) {
431 printf("\ntransmission error %#hX\n", s);
432 }
433
434 return;
435}
436
437/**************************************************************************
438ETH_POLL - Wait for a frame
439***************************************************************************/
440
441static int cs89x0_poll(struct nic *nic, int retrieve)
442{
443 int status;
444
446
447 if ((status & RX_OK) == 0)
448 return(0);
449
450 if ( ! retrieve ) return 1;
451
455 if (nic->packetlen & 1)
457 return 1;
458}
459
460static void cs89x0_irq(struct nic *nic __unused, irq_action_t action __unused)
461{
462 switch ( action ) {
463 case DISABLE :
464 break;
465 case ENABLE :
466 break;
467 case FORCE :
468 break;
469 }
470}
471
473 .connect = dummy_connect,
474 .poll = cs89x0_poll,
475 .transmit = cs89x0_transmit,
476 .irq = cs89x0_irq,
477};
478
479/**************************************************************************
480ETH_PROBE - Look for an adapter
481***************************************************************************/
482
484 /* if they give us an odd I/O address, then do ONE write to
485 the address port, to get it back to address zero, where we
486 expect to find the EISA signature word. */
487 if (ioaddr & 1) {
488 ioaddr &= ~1;
489 if ((inw(ioaddr + ADD_PORT) & ADD_MASK) != ADD_SIG)
490 return 0;
492 }
493
495 return 0;
496
497 return 1;
498}
499
500static int cs89x0_probe ( struct nic *nic, struct isa_device *isa __unused ) {
501 int i, result = -1;
502 unsigned rev_type = 0, isa_cnf, cs_revision;
503 unsigned short eeprom_buff[CHKSUM_LEN];
504
505 nic->ioaddr &= ~1; /* LSB = 1 indicates a more aggressive probe */
507
508 /* get the chip type */
509 rev_type = readreg(PRODUCT_ID_ADD);
510 eth_cs_type = rev_type &~ REVISON_BITS;
511 cs_revision = ((rev_type & REVISON_BITS) >> 8) + 'A';
512
513 printf("\ncs: cs89%c0%s rev %c, base %#hX",
514 eth_cs_type==CS8900?'0':'2',
515 eth_cs_type==CS8920M?"M":"",
516 cs_revision,
518#ifndef EMBEDDED
519 /* First check to see if an EEPROM is attached*/
520 if ((readreg(PP_SelfST) & EEPROM_PRESENT) == 0) {
521 printf("\ncs: no EEPROM...\n");
523 return 0;
525 eeprom_buff) < 0) {
526 printf("\ncs: EEPROM read failed...\n");
528 return 0;
530 eeprom_buff) < 0) {
531 printf("\ncs: EEPROM checksum bad...\n");
533 return 0;
534 }
535
536 /* get transmission control word but keep the
537 autonegotiation bits */
538 eth_auto_neg_cnf = eeprom_buff[AUTO_NEG_CNF_OFFSET/2];
539 /* Store adapter configuration */
540 eth_adapter_cnf = eeprom_buff[ADAPTER_CNF_OFFSET/2];
541 /* Store ISA configuration */
542 isa_cnf = eeprom_buff[ISA_CNF_OFFSET/2];
543
544 /* store the initial memory base address */
545 eth_mem_start = eeprom_buff[PACKET_PAGE_OFFSET/2] << 8;
546
547 printf("%s%s%s, addr ",
548 (eth_adapter_cnf & A_CNF_10B_T)?", RJ-45":"",
549 (eth_adapter_cnf & A_CNF_AUI)?", AUI":"",
550 (eth_adapter_cnf & A_CNF_10B_2)?", BNC":"");
551
552 /* If this is a CS8900 then no pnp soft */
553 if (eth_cs_type != CS8900 &&
554 /* Check if the ISA IRQ has been set */
555 (i = readreg(PP_CS8920_ISAINT) & 0xff,
556 (i != 0 && i < CS8920_NO_INTS)))
557 eth_irqno = i;
558 else {
559 i = isa_cnf & INT_NO_MASK;
560 if (eth_cs_type == CS8900) {
561 /* the table that follows is dependent
562 upon how you wired up your cs8900
563 in your system. The table is the
564 same as the cs8900 engineering demo
565 board. irq_map also depends on the
566 contents of the table. Also see
567 write_irq, which is the reverse
568 mapping of the table below. */
569 if (i < 4) i = "\012\013\014\005"[i];
570 else printf("\ncs: BUG: isa_config is %d\n", i); }
571 eth_irqno = i; }
572
574
575 /* Retrieve and print the ethernet address. */
576 for (i=0; i<ETH_ALEN; i++) {
577 nic->node_addr[i] = ((unsigned char *)eeprom_buff)[i];
578 }
579
580 DBG ( "%s\n", eth_ntoa ( nic->node_addr ) );
581
582#endif
583#ifdef EMBEDDED
584 /* Retrieve and print the ethernet address. */
585 {
586 unsigned char MAC_HW_ADDR[6]={MAC_HW_ADDR_DRV};
587 memcpy(nic->node_addr, MAC_HW_ADDR, 6);
588 }
589
590 DBG ( "%s\n", eth_ntoa ( nic->node_addr ) );
591
594#endif
595#ifndef EMBEDDED
596 /* Set the LineCTL quintuplet based on adapter
597 configuration read from EEPROM */
601 else
602 eth_linectl = 0;
603
604 /* check to make sure that they have the "right"
605 hardware available */
608 break;
610 break;
612 break;
615 }
616 if (!result) {
617 printf("cs: EEPROM is configured for unavailable media\n");
618 error:
622 return 0;
623 }
624#endif
625 /* Initialize the card for probing of the attached media */
627
628 /* set the hardware to the configured choice */
631 result = detect_tp();
632 if (!result) {
633 clrline();
634 printf("10Base-T (RJ-45%s",
635 ") has no cable\n"); }
636 /* check "ignore missing media" bit */
638 /* Yes! I don't care if I see a link pulse */
640 break;
641 case A_CNF_MEDIA_AUI:
643 if (!result) {
644 clrline();
645 printf("10Base-5 (AUI%s",
646 ") has no cable\n"); }
647 /* check "ignore missing media" bit */
649 /* Yes! I don't care if I see a carrrier */
651 break;
654 if (!result) {
655 clrline();
656 printf("10Base-2 (BNC%s",
657 ") has no cable\n"); }
658 /* check "ignore missing media" bit */
660 /* Yes! I don't care if I can xmit a packet */
662 break;
663 case A_CNF_MEDIA_AUTO:
666 if ((result = detect_tp()) != 0)
667 break;
669 if ((result = detect_aui(nic)) != 0)
670 break;
672 if ((result = detect_bnc(nic)) != 0)
673 break;
674 clrline(); printf("no media detected\n");
675 goto error;
676 }
677 clrline();
678 switch(result) {
679 case 0: printf("no network cable attached to configured media\n");
680 goto error;
681 case A_CNF_MEDIA_10B_T: printf("using 10Base-T (RJ-45)\n");
682 break;
683 case A_CNF_MEDIA_AUI: printf("using 10Base-5 (AUI)\n");
684 break;
685 case A_CNF_MEDIA_10B_2: printf("using 10Base-2 (BNC)\n");
686 break;
687 }
688
689 /* Turn on both receive and transmit operations */
692
693 return 0;
694#ifdef EMBEDDED
695 error:
699 return 0;
700#endif
701
703 return 1;
704}
705
706static void cs89x0_disable ( struct nic *nic,
707 struct isa_device *isa __unused ) {
709}
710
712#ifndef EMBEDDED
713 /* use "conservative" default values for autoprobing */
714 0x300, 0x320, 0x340, 0x200, 0x220, 0x240,
715 0x260, 0x280, 0x2a0, 0x2c0, 0x2e0,
716 /* if that did not work, then be more aggressive */
717 0x301, 0x321, 0x341, 0x201, 0x221, 0x241,
718 0x261, 0x281, 0x2a1, 0x2c1, 0x2e1,
719#else
720 0x01000300,
721#endif
722};
723
725 ISAPNP_VENDOR('C','S','C'), 0x0007 );
726
727DRIVER ( "cs89x0", nic_driver, isa_driver, cs89x0_driver,
729
730ISA_ROM ( "cs89x0", "Crystal Semiconductor CS89x0" );
731
732/*
733 * Local variables:
734 * c-basic-offset: 8
735 * c-indent-level: 8
736 * tab-width: 8
737 * End:
738 */
static unsigned short eth_nic_base
Definition 3c595.c:38
pseudo_bit_t value[0x00020]
Definition arbel.h:2
struct arbelprm_completion_with_error error
Definition arbel.h:1
uint16_t result
Definition hyperv.h:33
int putchar(int character)
Write a single character to each console device.
Definition console.c:29
static void clrline(void)
Definition cs89x0.c:185
static unsigned short eth_auto_neg_cnf
Definition cs89x0.c:101
static void cs89x0_irq(struct nic *nic __unused, irq_action_t action __unused)
Definition cs89x0.c:460
static isa_probe_addr_t cs89x0_probe_addrs[]
Definition cs89x0.c:711
static int cs89x0_probe_addr(isa_probe_addr_t ioaddr)
Definition cs89x0.c:483
static int get_eeprom_data(int off, int len, unsigned short *buffer)
Definition cs89x0.c:139
static unsigned short eth_linectl
Definition cs89x0.c:103
static int cs89x0_poll(struct nic *nic, int retrieve)
Definition cs89x0.c:441
static int get_eeprom_chksum(int off __unused, int len, unsigned short *buffer)
Definition cs89x0.c:168
static int wait_eeprom_ready(void)
Definition cs89x0.c:126
static void cs89x0_disable(struct nic *nic, struct isa_device *isa __unused)
Definition cs89x0.c:706
static unsigned short eth_cs_type
Definition cs89x0.c:100
static void control_dc_dc(int on_not_off)
Definition cs89x0.c:195
static int detect_aui(struct nic *nic)
Definition cs89x0.c:300
static struct nic_operations cs89x0_operations
Definition cs89x0.c:472
static unsigned short eth_adapter_cnf
Definition cs89x0.c:102
static int cs89x0_probe(struct nic *nic, struct isa_device *isa __unused)
Definition cs89x0.c:500
static void cs89x0_reset(struct nic *nic)
Definition cs89x0.c:330
static int detect_tp(void)
Definition cs89x0.c:214
static unsigned long eth_mem_start
Definition cs89x0.c:98
static int send_test_pkt(struct nic *nic)
Definition cs89x0.c:261
static unsigned short eth_irqno
Definition cs89x0.c:99
static int detect_bnc(struct nic *nic)
Definition cs89x0.c:313
static int readreg(int portno)
Definition cs89x0.c:109
static void cs89x0_transmit(struct nic *nic, const char *d, unsigned int t, unsigned int s, const char *p)
Definition cs89x0.c:389
static void writereg(int portno, int value)
Definition cs89x0.c:115
#define PP_RxCTL
Definition cs89x0.h:61
#define SERIAL_RX_ON
Definition cs89x0.h:200
#define PP_AutoNegCTL
Definition cs89x0.h:69
#define TX_SEND_OK_BITS
Definition cs89x0.h:254
#define RX_FRAME_PORT
Definition cs89x0.h:338
#define INT_NO_MASK
Definition cs89x0.h:412
#define PP_TxCFG
Definition cs89x0.h:62
#define PP_ChipID
Definition cs89x0.h:37
#define TX_LEN_PORT
Definition cs89x0.h:344
#define EE_AUTO_NEG_ENABLE
Definition cs89x0.h:389
#define A_CNF_10B_2
Definition cs89x0.h:398
#define ADD_MASK
Definition cs89x0.h:97
#define CHIP_EISA_ID_SIG
Definition cs89x0.h:100
#define PP_EECMD
Definition cs89x0.h:56
#define PP_BusCTL
Definition cs89x0.h:67
#define PP_TxEvent
Definition cs89x0.h:73
#define CHKSUM_LEN
Definition cs89x0.h:445
#define EEPROM_READ_CMD
Definition cs89x0.h:352
#define TX_AFTER_ALL
Definition cs89x0.h:343
#define TX_FRAME_PORT
Definition cs89x0.h:339
#define HCB1_ENBL
Definition cs89x0.h:215
#define LINK_OK
Definition cs89x0.h:269
#define A_CNF_10B_T
Definition cs89x0.h:396
#define LOW_RX_SQUELCH
Definition cs89x0.h:207
#define POWER_ON_RESET
Definition cs89x0.h:210
#define TX_CMD_PORT
Definition cs89x0.h:340
#define SERIAL_TX_ON
Definition cs89x0.h:201
#define PRODUCT_ID_ADD
Definition cs89x0.h:112
#define CS8900
Definition cs89x0.h:440
#define A_CNF_MEDIA_AUI
Definition cs89x0.h:402
#define PP_AutoNegST
Definition cs89x0.h:81
#define AUTO_NEG_MASK
Definition cs89x0.h:295
#define AUTO_NEG_BITS
Definition cs89x0.h:294
#define REVISON_BITS
Definition cs89x0.h:443
#define START_EEPROM_DATA
Definition cs89x0.h:447
#define ADD_PORT
Definition cs89x0.h:346
#define RX_OK
Definition cs89x0.h:237
#define AUTO_NEG_ENABLE
Definition cs89x0.h:291
#define A_CNF_LOW_RX_SQUELCH
Definition cs89x0.h:406
#define ADAPTER_CNF_OFFSET
Definition cs89x0.h:395
#define PP_EEData
Definition cs89x0.h:57
#define PP_RxEvent
Definition cs89x0.h:72
#define PP_RxCFG
Definition cs89x0.h:60
#define AUTO_NEG_BUSY
Definition cs89x0.h:298
#define PP_LineCTL
Definition cs89x0.h:65
#define PP_SelfST
Definition cs89x0.h:78
#define CS8920_NO_INTS
Definition cs89x0.h:453
#define AUTO_NEG_CNF_OFFSET
Definition cs89x0.h:381
#define PP_CS8920_ISAINT
Definition cs89x0.h:43
#define PP_SelfCTL
Definition cs89x0.h:66
#define A_CNF_DC_DC_POLARITY
Definition cs89x0.h:404
#define CS8920M
Definition cs89x0.h:442
#define FDX_ACTIVE
Definition cs89x0.h:303
#define SI_BUSY
Definition cs89x0.h:278
#define PACKET_PAGE_OFFSET
Definition cs89x0.h:409
#define AUTO_AUI_10BASET
Definition cs89x0.h:203
#define A_CNF_MEDIA_10B_T
Definition cs89x0.h:401
#define IMM_BIT
Definition cs89x0.h:393
#define PP_LineST
Definition cs89x0.h:77
#define INIT_DONE
Definition cs89x0.h:277
#define ADD_SIG
Definition cs89x0.h:98
#define HCB1
Definition cs89x0.h:217
#define DATA_PORT
Definition cs89x0.h:347
#define TX_OK
Definition cs89x0.h:250
#define PP_IA
Definition cs89x0.h:85
#define EEPROM_PRESENT
Definition cs89x0.h:279
#define A_CNF_MEDIA_TYPE
Definition cs89x0.h:399
#define AUI_ONLY
Definition cs89x0.h:202
#define PP_BufCFG
Definition cs89x0.h:64
#define A_CNF_MEDIA_AUTO
Definition cs89x0.h:400
#define ISA_CNF_OFFSET
Definition cs89x0.h:379
#define PP_BusST
Definition cs89x0.h:79
#define READY_FOR_TX_NOW
Definition cs89x0.h:286
#define A_CNF_EXTND_10B_2
Definition cs89x0.h:407
#define DEF_RX_ACCEPT
Definition cs89x0.h:166
#define A_CNF_AUI
Definition cs89x0.h:397
#define PP_CS8920_ISAMemB
Definition cs89x0.h:50
#define A_CNF_MEDIA_10B_2
Definition cs89x0.h:403
static unsigned long ioaddr
Definition davicom.c:129
ring len
Length.
Definition dwmac.h:226
uint8_t status
Status.
Definition ena.h:5
Error codes.
const char * eth_ntoa(const void *ll_addr)
Transcribe Ethernet address.
Definition ethernet.c:176
Ethernet protocol.
#define __unused
Declare a variable or data structure as unused.
Definition compiler.h:573
#define DBG(...)
Print a debugging message.
Definition compiler.h:498
uint32_t buffer
Buffer index (or NETVSC_RNDIS_NO_BUFFER)
Definition netvsc.h:5
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define ETH_ZLEN
Definition if_ether.h:11
#define ETH_ALEN
Definition if_ether.h:9
#define ETH_HLEN
Definition if_ether.h:10
#define inw(io_addr)
Definition io.h:292
#define outb(data, io_addr)
Definition io.h:310
#define outw(data, io_addr)
Definition io.h:320
#define insw(io_addr, data, count)
Definition io.h:412
#define outsw(io_addr, data, count)
Definition io.h:447
uint16_t isa_probe_addr_t
Definition isa.h:31
#define ISA_ROM(IMAGE, DESCRIPTION)
Definition isa.h:92
#define TICKS_PER_SEC
Number of ticks per second.
Definition timer.h:16
void * memcpy(void *dest, const void *src, size_t len) __nonnull
#define ISAPNP_VENDOR(a, b, c)
Definition isa_ids.h:35
int dummy_connect(struct nic *nic __unused)
Definition legacy.c:175
#define DRIVER(_name_text, _unused2, _unused3, _name, _probe, _disable, _fake_bss)
Definition nic.h:220
irq_action_t
Definition nic.h:34
@ FORCE
Definition nic.h:37
@ ENABLE
Definition nic.h:36
@ DISABLE
Definition nic.h:35
#define ISA_DRIVER(_name, _probe_addrs, _probe_addr, _vendor_id, _prod_id)
Definition nic.h:188
struct @002057171240057303273132130141036221271355330106 no_fake_bss
An ISA device.
Definition isa.h:12
An ISA driver.
Definition isa.h:34
Definition nic.h:49
unsigned char * packet
Definition nic.h:53
unsigned char * node_addr
Definition nic.h:52
unsigned int packetlen
Definition nic.h:54
unsigned char irqno
Definition nic.h:56
unsigned int ioaddr
Definition nic.h:55
struct nic_operations * nic_op
Definition nic.h:50
unsigned long currticks(void)
Get current system time in ticks.
Definition timer.c:43
int printf(const char *fmt,...)
Write a formatted string to the console.
Definition vsprintf.c:465