1 /*******************************************************************************
3 * Linux ThunderLAN Driver
8 * (C) 1997-1998 Caldera, Inc.
10 * (C) 1999-2001 Torben Mathiasen
11 * (C) 2002 Samuel Chessman
13 * This software may be used and distributed according to the terms
14 * of the GNU General Public License, incorporated herein by reference.
16 ** Useful (if not required) reading:
18 * Texas Instruments, ThunderLAN Programmer's Guide,
19 * TI Literature Number SPWU013A
20 * available in PDF format from www.ti.com
21 * Level One, LXT901 and LXT970 Data Sheets
22 * available in PDF format from www.level1.com
23 * National Semiconductor, DP83840A Data Sheet
24 * available in PDF format from www.national.com
25 * Microchip Technology, 24C01A/02A/04A Data Sheet
26 * available in PDF format from www.microchip.com
28 ******************************************************************************/
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/hardirq.h>
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/interrupt.h>
36 #include <linux/ioport.h>
37 #include <linux/eisa.h>
38 #include <linux/pci.h>
39 #include <linux/dma-mapping.h>
40 #include <linux/netdevice.h>
41 #include <linux/etherdevice.h>
42 #include <linux/delay.h>
43 #include <linux/spinlock.h>
44 #include <linux/workqueue.h>
45 #include <linux/mii.h>
50 /* For removing EISA devices */
51 static struct net_device
*tlan_eisa_devices
;
53 static int tlan_devices_installed
;
55 /* Set speed, duplex and aui settings */
56 static int aui
[MAX_TLAN_BOARDS
];
57 static int duplex
[MAX_TLAN_BOARDS
];
58 static int speed
[MAX_TLAN_BOARDS
];
59 static int boards_found
;
60 module_param_array(aui
, int, NULL
, 0);
61 module_param_array(duplex
, int, NULL
, 0);
62 module_param_array(speed
, int, NULL
, 0);
63 MODULE_PARM_DESC(aui
, "ThunderLAN use AUI port(s) (0-1)");
64 MODULE_PARM_DESC(duplex
,
65 "ThunderLAN duplex setting(s) (0-default, 1-half, 2-full)");
66 MODULE_PARM_DESC(speed
, "ThunderLAN port speed setting(s) (0,10,100)");
68 MODULE_AUTHOR("Maintainer: Samuel Chessman <chessman@tux.org>");
69 MODULE_DESCRIPTION("Driver for TI ThunderLAN based ethernet PCI adapters");
70 MODULE_LICENSE("GPL");
72 /* Turn on debugging. See Documentation/networking/tlan.txt for details */
74 module_param(debug
, int, 0);
75 MODULE_PARM_DESC(debug
, "ThunderLAN debug mask");
77 static const char tlan_signature
[] = "TLAN";
78 static const char tlan_banner
[] = "ThunderLAN driver v1.17\n";
79 static int tlan_have_pci
;
80 static int tlan_have_eisa
;
82 static const char * const media
[] = {
83 "10BaseT-HD", "10BaseT-FD", "100baseTx-HD",
84 "100BaseTx-FD", "100BaseT4", NULL
88 const char *device_label
;
92 { "Compaq Netelligent 10 T PCI UTP", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
93 { "Compaq Netelligent 10/100 TX PCI UTP",
94 TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
95 { "Compaq Integrated NetFlex-3/P", TLAN_ADAPTER_NONE
, 0x83 },
96 { "Compaq NetFlex-3/P",
97 TLAN_ADAPTER_UNMANAGED_PHY
| TLAN_ADAPTER_BIT_RATE_PHY
, 0x83 },
98 { "Compaq NetFlex-3/P", TLAN_ADAPTER_NONE
, 0x83 },
99 { "Compaq Netelligent Integrated 10/100 TX UTP",
100 TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
101 { "Compaq Netelligent Dual 10/100 TX PCI UTP",
102 TLAN_ADAPTER_NONE
, 0x83 },
103 { "Compaq Netelligent 10/100 TX Embedded UTP",
104 TLAN_ADAPTER_NONE
, 0x83 },
105 { "Olicom OC-2183/2185", TLAN_ADAPTER_USE_INTERN_10
, 0x83 },
106 { "Olicom OC-2325", TLAN_ADAPTER_ACTIVITY_LED
|
107 TLAN_ADAPTER_UNMANAGED_PHY
, 0xf8 },
108 { "Olicom OC-2326", TLAN_ADAPTER_ACTIVITY_LED
|
109 TLAN_ADAPTER_USE_INTERN_10
, 0xf8 },
110 { "Compaq Netelligent 10/100 TX UTP", TLAN_ADAPTER_ACTIVITY_LED
, 0x83 },
111 { "Compaq Netelligent 10 T/2 PCI UTP/coax", TLAN_ADAPTER_NONE
, 0x83 },
112 { "Compaq NetFlex-3/E",
113 TLAN_ADAPTER_ACTIVITY_LED
| /* EISA card */
114 TLAN_ADAPTER_UNMANAGED_PHY
| TLAN_ADAPTER_BIT_RATE_PHY
, 0x83 },
115 { "Compaq NetFlex-3/E",
116 TLAN_ADAPTER_ACTIVITY_LED
, 0x83 }, /* EISA card */
119 static const struct pci_device_id tlan_pci_tbl
[] = {
120 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL10
,
121 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 0 },
122 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100
,
123 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 1 },
124 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETFLEX3I
,
125 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 2 },
126 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_THUNDER
,
127 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 3 },
128 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETFLEX3B
,
129 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 4 },
130 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100PI
,
131 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 5 },
132 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100D
,
133 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 6 },
134 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_COMPAQ_NETEL100I
,
135 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 7 },
136 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2183
,
137 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 8 },
138 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2325
,
139 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 9 },
140 { PCI_VENDOR_ID_OLICOM
, PCI_DEVICE_ID_OLICOM_OC2326
,
141 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 10 },
142 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_NETELLIGENT_10_100_WS_5100
,
143 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 11 },
144 { PCI_VENDOR_ID_COMPAQ
, PCI_DEVICE_ID_NETELLIGENT_10_T2
,
145 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, 12 },
148 MODULE_DEVICE_TABLE(pci
, tlan_pci_tbl
);
150 static void tlan_eisa_probe(void);
151 static void tlan_eisa_cleanup(void);
152 static int tlan_init(struct net_device
*);
153 static int tlan_open(struct net_device
*dev
);
154 static netdev_tx_t
tlan_start_tx(struct sk_buff
*, struct net_device
*);
155 static irqreturn_t
tlan_handle_interrupt(int, void *);
156 static int tlan_close(struct net_device
*);
157 static struct net_device_stats
*tlan_get_stats(struct net_device
*);
158 static void tlan_set_multicast_list(struct net_device
*);
159 static int tlan_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
);
160 static int tlan_probe1(struct pci_dev
*pdev
, long ioaddr
,
161 int irq
, int rev
, const struct pci_device_id
*ent
);
162 static void tlan_tx_timeout(struct net_device
*dev
);
163 static void tlan_tx_timeout_work(struct work_struct
*work
);
164 static int tlan_init_one(struct pci_dev
*pdev
,
165 const struct pci_device_id
*ent
);
167 static u32
tlan_handle_tx_eof(struct net_device
*, u16
);
168 static u32
tlan_handle_stat_overflow(struct net_device
*, u16
);
169 static u32
tlan_handle_rx_eof(struct net_device
*, u16
);
170 static u32
tlan_handle_dummy(struct net_device
*, u16
);
171 static u32
tlan_handle_tx_eoc(struct net_device
*, u16
);
172 static u32
tlan_handle_status_check(struct net_device
*, u16
);
173 static u32
tlan_handle_rx_eoc(struct net_device
*, u16
);
175 static void tlan_timer(unsigned long);
177 static void tlan_reset_lists(struct net_device
*);
178 static void tlan_free_lists(struct net_device
*);
179 static void tlan_print_dio(u16
);
180 static void tlan_print_list(struct tlan_list
*, char *, int);
181 static void tlan_read_and_clear_stats(struct net_device
*, int);
182 static void tlan_reset_adapter(struct net_device
*);
183 static void tlan_finish_reset(struct net_device
*);
184 static void tlan_set_mac(struct net_device
*, int areg
, char *mac
);
186 static void tlan_phy_print(struct net_device
*);
187 static void tlan_phy_detect(struct net_device
*);
188 static void tlan_phy_power_down(struct net_device
*);
189 static void tlan_phy_power_up(struct net_device
*);
190 static void tlan_phy_reset(struct net_device
*);
191 static void tlan_phy_start_link(struct net_device
*);
192 static void tlan_phy_finish_auto_neg(struct net_device
*);
193 static void tlan_phy_monitor(unsigned long);
196 static int tlan_phy_nop(struct net_device *);
197 static int tlan_phy_internal_check(struct net_device *);
198 static int tlan_phy_internal_service(struct net_device *);
199 static int tlan_phy_dp83840a_check(struct net_device *);
202 static bool tlan_mii_read_reg(struct net_device
*, u16
, u16
, u16
*);
203 static void tlan_mii_send_data(u16
, u32
, unsigned);
204 static void tlan_mii_sync(u16
);
205 static void tlan_mii_write_reg(struct net_device
*, u16
, u16
, u16
);
207 static void tlan_ee_send_start(u16
);
208 static int tlan_ee_send_byte(u16
, u8
, int);
209 static void tlan_ee_receive_byte(u16
, u8
*, int);
210 static int tlan_ee_read_byte(struct net_device
*, u8
, u8
*);
214 tlan_store_skb(struct tlan_list
*tag
, struct sk_buff
*skb
)
216 unsigned long addr
= (unsigned long)skb
;
217 tag
->buffer
[9].address
= addr
;
218 tag
->buffer
[8].address
= upper_32_bits(addr
);
221 static inline struct sk_buff
*
222 tlan_get_skb(const struct tlan_list
*tag
)
226 addr
= tag
->buffer
[9].address
;
227 addr
|= ((unsigned long) tag
->buffer
[8].address
<< 16) << 16;
228 return (struct sk_buff
*) addr
;
232 (*tlan_int_vector
[TLAN_INT_NUMBER_OF_INTS
])(struct net_device
*, u16
) = {
235 tlan_handle_stat_overflow
,
239 tlan_handle_status_check
,
244 tlan_set_timer(struct net_device
*dev
, u32 ticks
, u32 type
)
246 struct tlan_priv
*priv
= netdev_priv(dev
);
247 unsigned long flags
= 0;
250 spin_lock_irqsave(&priv
->lock
, flags
);
251 if (priv
->timer
.function
!= NULL
&&
252 priv
->timer_type
!= TLAN_TIMER_ACTIVITY
) {
254 spin_unlock_irqrestore(&priv
->lock
, flags
);
257 priv
->timer
.function
= tlan_timer
;
259 spin_unlock_irqrestore(&priv
->lock
, flags
);
261 priv
->timer
.data
= (unsigned long) dev
;
262 priv
->timer_set_at
= jiffies
;
263 priv
->timer_type
= type
;
264 mod_timer(&priv
->timer
, jiffies
+ ticks
);
269 /*****************************************************************************
270 ******************************************************************************
272 ThunderLAN driver primary functions
274 these functions are more or less common to all linux network drivers.
276 ******************************************************************************
277 *****************************************************************************/
283 /***************************************************************
291 * Goes through the TLanDevices list and frees the device
292 * structs and memory associated with each device (lists
293 * and buffers). It also ureserves the IO port regions
294 * associated with this device.
296 **************************************************************/
299 static void tlan_remove_one(struct pci_dev
*pdev
)
301 struct net_device
*dev
= pci_get_drvdata(pdev
);
302 struct tlan_priv
*priv
= netdev_priv(dev
);
304 unregister_netdev(dev
);
306 if (priv
->dma_storage
) {
307 pci_free_consistent(priv
->pci_dev
,
308 priv
->dma_size
, priv
->dma_storage
,
309 priv
->dma_storage_dma
);
313 pci_release_regions(pdev
);
318 cancel_work_sync(&priv
->tlan_tqueue
);
321 static void tlan_start(struct net_device
*dev
)
323 tlan_reset_lists(dev
);
324 /* NOTE: It might not be necessary to read the stats before a
325 reset if you don't care what the values are.
327 tlan_read_and_clear_stats(dev
, TLAN_IGNORE
);
328 tlan_reset_adapter(dev
);
329 netif_wake_queue(dev
);
332 static void tlan_stop(struct net_device
*dev
)
334 struct tlan_priv
*priv
= netdev_priv(dev
);
336 del_timer_sync(&priv
->media_timer
);
337 tlan_read_and_clear_stats(dev
, TLAN_RECORD
);
338 outl(TLAN_HC_AD_RST
, dev
->base_addr
+ TLAN_HOST_CMD
);
339 /* Reset and power down phy */
340 tlan_reset_adapter(dev
);
341 if (priv
->timer
.function
!= NULL
) {
342 del_timer_sync(&priv
->timer
);
343 priv
->timer
.function
= NULL
;
349 static int tlan_suspend(struct pci_dev
*pdev
, pm_message_t state
)
351 struct net_device
*dev
= pci_get_drvdata(pdev
);
353 if (netif_running(dev
))
356 netif_device_detach(dev
);
357 pci_save_state(pdev
);
358 pci_disable_device(pdev
);
359 pci_wake_from_d3(pdev
, false);
360 pci_set_power_state(pdev
, PCI_D3hot
);
365 static int tlan_resume(struct pci_dev
*pdev
)
367 struct net_device
*dev
= pci_get_drvdata(pdev
);
368 int rc
= pci_enable_device(pdev
);
372 pci_restore_state(pdev
);
373 pci_enable_wake(pdev
, PCI_D0
, 0);
374 netif_device_attach(dev
);
376 if (netif_running(dev
))
382 #else /* CONFIG_PM */
384 #define tlan_suspend NULL
385 #define tlan_resume NULL
387 #endif /* CONFIG_PM */
390 static struct pci_driver tlan_driver
= {
392 .id_table
= tlan_pci_tbl
,
393 .probe
= tlan_init_one
,
394 .remove
= tlan_remove_one
,
395 .suspend
= tlan_suspend
,
396 .resume
= tlan_resume
,
399 static int __init
tlan_probe(void)
403 pr_info("%s", tlan_banner
);
405 TLAN_DBG(TLAN_DEBUG_PROBE
, "Starting PCI Probe....\n");
407 /* Use new style PCI probing. Now the kernel will
408 do most of this for us */
409 rc
= pci_register_driver(&tlan_driver
);
412 pr_err("Could not register pci driver\n");
413 goto err_out_pci_free
;
416 TLAN_DBG(TLAN_DEBUG_PROBE
, "Starting EISA Probe....\n");
419 pr_info("%d device%s installed, PCI: %d EISA: %d\n",
420 tlan_devices_installed
, tlan_devices_installed
== 1 ? "" : "s",
421 tlan_have_pci
, tlan_have_eisa
);
423 if (tlan_devices_installed
== 0) {
425 goto err_out_pci_unreg
;
430 pci_unregister_driver(&tlan_driver
);
436 static int tlan_init_one(struct pci_dev
*pdev
,
437 const struct pci_device_id
*ent
)
439 return tlan_probe1(pdev
, -1, -1, 0, ent
);
444 ***************************************************************
448 * 0 on success, error code on error
452 * The name is lower case to fit in with all the rest of
453 * the netcard_probe names. This function looks for
454 * another TLan based adapter, setting it up with the
455 * allocated device struct if one is found.
456 * tlan_probe has been ported to the new net API and
457 * now allocates its own device structure. This function
458 * is also used by modules.
460 **************************************************************/
462 static int tlan_probe1(struct pci_dev
*pdev
, long ioaddr
, int irq
, int rev
,
463 const struct pci_device_id
*ent
)
466 struct net_device
*dev
;
467 struct tlan_priv
*priv
;
469 int reg
, rc
= -ENODEV
;
473 rc
= pci_enable_device(pdev
);
477 rc
= pci_request_regions(pdev
, tlan_signature
);
479 pr_err("Could not reserve IO regions\n");
483 #endif /* CONFIG_PCI */
485 dev
= alloc_etherdev(sizeof(struct tlan_priv
));
488 goto err_out_regions
;
490 SET_NETDEV_DEV(dev
, &pdev
->dev
);
492 priv
= netdev_priv(dev
);
494 priv
->pci_dev
= pdev
;
497 /* Is this a PCI device? */
501 priv
->adapter
= &board_info
[ent
->driver_data
];
503 rc
= pci_set_dma_mask(pdev
, DMA_BIT_MASK(32));
505 pr_err("No suitable PCI mapping available\n");
506 goto err_out_free_dev
;
509 for (reg
= 0; reg
<= 5; reg
++) {
510 if (pci_resource_flags(pdev
, reg
) & IORESOURCE_IO
) {
511 pci_io_base
= pci_resource_start(pdev
, reg
);
512 TLAN_DBG(TLAN_DEBUG_GNRL
,
513 "IO mapping is available at %x.\n",
519 pr_err("No IO mappings available\n");
521 goto err_out_free_dev
;
524 dev
->base_addr
= pci_io_base
;
525 dev
->irq
= pdev
->irq
;
526 priv
->adapter_rev
= pdev
->revision
;
527 pci_set_master(pdev
);
528 pci_set_drvdata(pdev
, dev
);
530 } else { /* EISA card */
531 /* This is a hack. We need to know which board structure
532 * is suited for this adapter */
533 device_id
= inw(ioaddr
+ EISA_ID2
);
534 if (device_id
== 0x20F1) {
535 priv
->adapter
= &board_info
[13]; /* NetFlex-3/E */
536 priv
->adapter_rev
= 23; /* TLAN 2.3 */
538 priv
->adapter
= &board_info
[14];
539 priv
->adapter_rev
= 10; /* TLAN 1.0 */
541 dev
->base_addr
= ioaddr
;
545 /* Kernel parameters */
546 if (dev
->mem_start
) {
547 priv
->aui
= dev
->mem_start
& 0x01;
548 priv
->duplex
= ((dev
->mem_start
& 0x06) == 0x06) ? 0
549 : (dev
->mem_start
& 0x06) >> 1;
550 priv
->speed
= ((dev
->mem_start
& 0x18) == 0x18) ? 0
551 : (dev
->mem_start
& 0x18) >> 3;
553 if (priv
->speed
== 0x1)
554 priv
->speed
= TLAN_SPEED_10
;
555 else if (priv
->speed
== 0x2)
556 priv
->speed
= TLAN_SPEED_100
;
558 debug
= priv
->debug
= dev
->mem_end
;
560 priv
->aui
= aui
[boards_found
];
561 priv
->speed
= speed
[boards_found
];
562 priv
->duplex
= duplex
[boards_found
];
566 /* This will be used when we get an adapter error from
567 * within our irq handler */
568 INIT_WORK(&priv
->tlan_tqueue
, tlan_tx_timeout_work
);
570 spin_lock_init(&priv
->lock
);
574 pr_err("Could not set up device\n");
575 goto err_out_free_dev
;
578 rc
= register_netdev(dev
);
580 pr_err("Could not register device\n");
585 tlan_devices_installed
++;
588 /* pdev is NULL if this is an EISA device */
592 priv
->next_device
= tlan_eisa_devices
;
593 tlan_eisa_devices
= dev
;
597 netdev_info(dev
, "irq=%2d, io=%04x, %s, Rev. %d\n",
600 priv
->adapter
->device_label
,
605 pci_free_consistent(priv
->pci_dev
, priv
->dma_size
, priv
->dma_storage
,
606 priv
->dma_storage_dma
);
612 pci_release_regions(pdev
);
616 pci_disable_device(pdev
);
621 static void tlan_eisa_cleanup(void)
623 struct net_device
*dev
;
624 struct tlan_priv
*priv
;
626 while (tlan_have_eisa
) {
627 dev
= tlan_eisa_devices
;
628 priv
= netdev_priv(dev
);
629 if (priv
->dma_storage
) {
630 pci_free_consistent(priv
->pci_dev
, priv
->dma_size
,
632 priv
->dma_storage_dma
);
634 release_region(dev
->base_addr
, 0x10);
635 unregister_netdev(dev
);
636 tlan_eisa_devices
= priv
->next_device
;
643 static void __exit
tlan_exit(void)
645 pci_unregister_driver(&tlan_driver
);
653 /* Module loading/unloading */
654 module_init(tlan_probe
);
655 module_exit(tlan_exit
);
659 /**************************************************************
662 * Returns: 0 on success, 1 otherwise
667 * This functions probes for EISA devices and calls
668 * TLan_probe1 when one is found.
670 *************************************************************/
672 static void __init
tlan_eisa_probe(void)
680 TLAN_DBG(TLAN_DEBUG_PROBE
, "No EISA bus present\n");
684 /* Loop through all slots of the EISA bus */
685 for (ioaddr
= 0x1000; ioaddr
< 0x9000; ioaddr
+= 0x1000) {
687 TLAN_DBG(TLAN_DEBUG_PROBE
, "EISA_ID 0x%4x: 0x%4x\n",
688 (int) ioaddr
+ 0xc80, inw(ioaddr
+ EISA_ID
));
689 TLAN_DBG(TLAN_DEBUG_PROBE
, "EISA_ID 0x%4x: 0x%4x\n",
690 (int) ioaddr
+ 0xc82, inw(ioaddr
+ EISA_ID2
));
693 TLAN_DBG(TLAN_DEBUG_PROBE
,
694 "Probing for EISA adapter at IO: 0x%4x : ",
696 if (request_region(ioaddr
, 0x10, tlan_signature
) == NULL
)
699 if (inw(ioaddr
+ EISA_ID
) != 0x110E) {
700 release_region(ioaddr
, 0x10);
704 device_id
= inw(ioaddr
+ EISA_ID2
);
705 if (device_id
!= 0x20F1 && device_id
!= 0x40F1) {
706 release_region(ioaddr
, 0x10);
710 /* check if adapter is enabled */
711 if (inb(ioaddr
+ EISA_CR
) != 0x1) {
712 release_region(ioaddr
, 0x10);
717 pr_info("Found one\n");
720 /* Get irq from board */
721 switch (inb(ioaddr
+ 0xcc0)) {
739 /* Setup the newly found eisa adapter */
740 rc
= tlan_probe1(NULL
, ioaddr
, irq
,
746 pr_info("None found\n");
751 pr_info("Card found but it is not enabled, skipping\n");
758 #ifdef CONFIG_NET_POLL_CONTROLLER
759 static void tlan_poll(struct net_device
*dev
)
761 disable_irq(dev
->irq
);
762 tlan_handle_interrupt(dev
->irq
, dev
);
763 enable_irq(dev
->irq
);
767 static const struct net_device_ops tlan_netdev_ops
= {
768 .ndo_open
= tlan_open
,
769 .ndo_stop
= tlan_close
,
770 .ndo_start_xmit
= tlan_start_tx
,
771 .ndo_tx_timeout
= tlan_tx_timeout
,
772 .ndo_get_stats
= tlan_get_stats
,
773 .ndo_set_rx_mode
= tlan_set_multicast_list
,
774 .ndo_do_ioctl
= tlan_ioctl
,
775 .ndo_set_mac_address
= eth_mac_addr
,
776 .ndo_validate_addr
= eth_validate_addr
,
777 #ifdef CONFIG_NET_POLL_CONTROLLER
778 .ndo_poll_controller
= tlan_poll
,
782 static void tlan_get_drvinfo(struct net_device
*dev
,
783 struct ethtool_drvinfo
*info
)
785 struct tlan_priv
*priv
= netdev_priv(dev
);
787 strlcpy(info
->driver
, KBUILD_MODNAME
, sizeof(info
->driver
));
789 strlcpy(info
->bus_info
, pci_name(priv
->pci_dev
),
790 sizeof(info
->bus_info
));
792 strlcpy(info
->bus_info
, "EISA", sizeof(info
->bus_info
));
795 static int tlan_get_eeprom_len(struct net_device
*dev
)
797 return TLAN_EEPROM_SIZE
;
800 static int tlan_get_eeprom(struct net_device
*dev
,
801 struct ethtool_eeprom
*eeprom
, u8
*data
)
805 for (i
= 0; i
< TLAN_EEPROM_SIZE
; i
++)
806 if (tlan_ee_read_byte(dev
, i
, &data
[i
]))
812 static const struct ethtool_ops tlan_ethtool_ops
= {
813 .get_drvinfo
= tlan_get_drvinfo
,
814 .get_link
= ethtool_op_get_link
,
815 .get_eeprom_len
= tlan_get_eeprom_len
,
816 .get_eeprom
= tlan_get_eeprom
,
819 /***************************************************************
823 * 0 on success, error code otherwise.
825 * dev The structure of the device to be
828 * This function completes the initialization of the
829 * device structure and driver. It reserves the IO
830 * addresses, allocates memory for the lists and bounce
831 * buffers, retrieves the MAC address from the eeprom
832 * and assignes the device's methods.
834 **************************************************************/
836 static int tlan_init(struct net_device
*dev
)
841 struct tlan_priv
*priv
;
843 priv
= netdev_priv(dev
);
845 dma_size
= (TLAN_NUM_RX_LISTS
+ TLAN_NUM_TX_LISTS
)
846 * (sizeof(struct tlan_list
));
847 priv
->dma_storage
= pci_alloc_consistent(priv
->pci_dev
,
849 &priv
->dma_storage_dma
);
850 priv
->dma_size
= dma_size
;
852 if (priv
->dma_storage
== NULL
) {
853 pr_err("Could not allocate lists and buffers for %s\n",
857 memset(priv
->dma_storage
, 0, dma_size
);
858 priv
->rx_list
= (struct tlan_list
*)
859 ALIGN((unsigned long)priv
->dma_storage
, 8);
860 priv
->rx_list_dma
= ALIGN(priv
->dma_storage_dma
, 8);
861 priv
->tx_list
= priv
->rx_list
+ TLAN_NUM_RX_LISTS
;
863 priv
->rx_list_dma
+ sizeof(struct tlan_list
)*TLAN_NUM_RX_LISTS
;
866 for (i
= 0; i
< ETH_ALEN
; i
++)
867 err
|= tlan_ee_read_byte(dev
,
868 (u8
) priv
->adapter
->addr_ofs
+ i
,
869 (u8
*) &dev
->dev_addr
[i
]);
871 pr_err("%s: Error reading MAC from eeprom: %d\n",
874 /* Olicom OC-2325/OC-2326 have the address byte-swapped */
875 if (priv
->adapter
->addr_ofs
== 0xf8) {
876 for (i
= 0; i
< ETH_ALEN
; i
+= 2) {
877 char tmp
= dev
->dev_addr
[i
];
878 dev
->dev_addr
[i
] = dev
->dev_addr
[i
+ 1];
879 dev
->dev_addr
[i
+ 1] = tmp
;
883 netif_carrier_off(dev
);
886 dev
->netdev_ops
= &tlan_netdev_ops
;
887 dev
->ethtool_ops
= &tlan_ethtool_ops
;
888 dev
->watchdog_timeo
= TX_TIMEOUT
;
897 /***************************************************************
901 * 0 on success, error code otherwise.
903 * dev Structure of device to be opened.
905 * This routine puts the driver and TLAN adapter in a
906 * state where it is ready to send and receive packets.
907 * It allocates the IRQ, resets and brings the adapter
908 * out of reset, and allows interrupts. It also delays
909 * the startup for autonegotiation or sends a Rx GO
910 * command to the adapter, as appropriate.
912 **************************************************************/
914 static int tlan_open(struct net_device
*dev
)
916 struct tlan_priv
*priv
= netdev_priv(dev
);
919 priv
->tlan_rev
= tlan_dio_read8(dev
->base_addr
, TLAN_DEF_REVISION
);
920 err
= request_irq(dev
->irq
, tlan_handle_interrupt
, IRQF_SHARED
,
924 netdev_err(dev
, "Cannot open because IRQ %d is already in use\n",
929 init_timer(&priv
->timer
);
930 init_timer(&priv
->media_timer
);
934 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Opened. TLAN Chip Rev: %x\n",
935 dev
->name
, priv
->tlan_rev
);
943 /**************************************************************
947 * 0 on success, error code otherwise
949 * dev structure of device to receive ioctl.
951 * rq ifreq structure to hold userspace data.
956 *************************************************************/
958 static int tlan_ioctl(struct net_device
*dev
, struct ifreq
*rq
, int cmd
)
960 struct tlan_priv
*priv
= netdev_priv(dev
);
961 struct mii_ioctl_data
*data
= if_mii(rq
);
962 u32 phy
= priv
->phy
[priv
->phy_num
];
964 if (!priv
->phy_online
)
968 case SIOCGMIIPHY
: /* get address of MII PHY in use. */
972 case SIOCGMIIREG
: /* read MII PHY register. */
973 tlan_mii_read_reg(dev
, data
->phy_id
& 0x1f,
974 data
->reg_num
& 0x1f, &data
->val_out
);
978 case SIOCSMIIREG
: /* write MII PHY register. */
979 tlan_mii_write_reg(dev
, data
->phy_id
& 0x1f,
980 data
->reg_num
& 0x1f, data
->val_in
);
988 /***************************************************************
994 * dev structure of device which timed out
997 **************************************************************/
999 static void tlan_tx_timeout(struct net_device
*dev
)
1002 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Transmit timed out.\n", dev
->name
);
1004 /* Ok so we timed out, lets see what we can do about it...*/
1005 tlan_free_lists(dev
);
1006 tlan_reset_lists(dev
);
1007 tlan_read_and_clear_stats(dev
, TLAN_IGNORE
);
1008 tlan_reset_adapter(dev
);
1009 netif_trans_update(dev
); /* prevent tx timeout */
1010 netif_wake_queue(dev
);
1015 /***************************************************************
1016 * tlan_tx_timeout_work
1021 * work work item of device which timed out
1023 **************************************************************/
1025 static void tlan_tx_timeout_work(struct work_struct
*work
)
1027 struct tlan_priv
*priv
=
1028 container_of(work
, struct tlan_priv
, tlan_tqueue
);
1030 tlan_tx_timeout(priv
->dev
);
1035 /***************************************************************
1039 * 0 on success, non-zero on failure.
1041 * skb A pointer to the sk_buff containing the
1043 * dev The device to send the data on.
1045 * This function adds a frame to the Tx list to be sent
1046 * ASAP. First it verifies that the adapter is ready and
1047 * there is room in the queue. Then it sets up the next
1048 * available list, copies the frame to the corresponding
1049 * buffer. If the adapter Tx channel is idle, it gives
1050 * the adapter a Tx Go command on the list, otherwise it
1051 * sets the forward address of the previous list to point
1052 * to this one. Then it frees the sk_buff.
1054 **************************************************************/
1056 static netdev_tx_t
tlan_start_tx(struct sk_buff
*skb
, struct net_device
*dev
)
1058 struct tlan_priv
*priv
= netdev_priv(dev
);
1059 dma_addr_t tail_list_phys
;
1060 struct tlan_list
*tail_list
;
1061 unsigned long flags
;
1064 if (!priv
->phy_online
) {
1065 TLAN_DBG(TLAN_DEBUG_TX
, "TRANSMIT: %s PHY is not ready\n",
1067 dev_kfree_skb_any(skb
);
1068 return NETDEV_TX_OK
;
1071 if (skb_padto(skb
, TLAN_MIN_FRAME_SIZE
))
1072 return NETDEV_TX_OK
;
1073 txlen
= max(skb
->len
, (unsigned int)TLAN_MIN_FRAME_SIZE
);
1075 tail_list
= priv
->tx_list
+ priv
->tx_tail
;
1077 priv
->tx_list_dma
+ sizeof(struct tlan_list
)*priv
->tx_tail
;
1079 if (tail_list
->c_stat
!= TLAN_CSTAT_UNUSED
) {
1080 TLAN_DBG(TLAN_DEBUG_TX
,
1081 "TRANSMIT: %s is busy (Head=%d Tail=%d)\n",
1082 dev
->name
, priv
->tx_head
, priv
->tx_tail
);
1083 netif_stop_queue(dev
);
1084 priv
->tx_busy_count
++;
1085 return NETDEV_TX_BUSY
;
1088 tail_list
->forward
= 0;
1090 tail_list
->buffer
[0].address
= pci_map_single(priv
->pci_dev
,
1093 tlan_store_skb(tail_list
, skb
);
1095 tail_list
->frame_size
= (u16
) txlen
;
1096 tail_list
->buffer
[0].count
= TLAN_LAST_BUFFER
| (u32
) txlen
;
1097 tail_list
->buffer
[1].count
= 0;
1098 tail_list
->buffer
[1].address
= 0;
1100 spin_lock_irqsave(&priv
->lock
, flags
);
1101 tail_list
->c_stat
= TLAN_CSTAT_READY
;
1102 if (!priv
->tx_in_progress
) {
1103 priv
->tx_in_progress
= 1;
1104 TLAN_DBG(TLAN_DEBUG_TX
,
1105 "TRANSMIT: Starting TX on buffer %d\n",
1107 outl(tail_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1108 outl(TLAN_HC_GO
, dev
->base_addr
+ TLAN_HOST_CMD
);
1110 TLAN_DBG(TLAN_DEBUG_TX
,
1111 "TRANSMIT: Adding buffer %d to TX channel\n",
1113 if (priv
->tx_tail
== 0) {
1114 (priv
->tx_list
+ (TLAN_NUM_TX_LISTS
- 1))->forward
1117 (priv
->tx_list
+ (priv
->tx_tail
- 1))->forward
1121 spin_unlock_irqrestore(&priv
->lock
, flags
);
1123 CIRC_INC(priv
->tx_tail
, TLAN_NUM_TX_LISTS
);
1125 return NETDEV_TX_OK
;
1132 /***************************************************************
1133 * tlan_handle_interrupt
1138 * irq The line on which the interrupt
1140 * dev_id A pointer to the device assigned to
1143 * This function handles an interrupt generated by its
1144 * assigned TLAN adapter. The function deactivates
1145 * interrupts on its adapter, records the type of
1146 * interrupt, executes the appropriate subhandler, and
1147 * acknowdges the interrupt to the adapter (thus
1148 * re-enabling adapter interrupts.
1150 **************************************************************/
1152 static irqreturn_t
tlan_handle_interrupt(int irq
, void *dev_id
)
1154 struct net_device
*dev
= dev_id
;
1155 struct tlan_priv
*priv
= netdev_priv(dev
);
1159 spin_lock(&priv
->lock
);
1161 host_int
= inw(dev
->base_addr
+ TLAN_HOST_INT
);
1162 type
= (host_int
& TLAN_HI_IT_MASK
) >> 2;
1167 outw(host_int
, dev
->base_addr
+ TLAN_HOST_INT
);
1168 ack
= tlan_int_vector
[type
](dev
, host_int
);
1171 host_cmd
= TLAN_HC_ACK
| ack
| (type
<< 18);
1172 outl(host_cmd
, dev
->base_addr
+ TLAN_HOST_CMD
);
1176 spin_unlock(&priv
->lock
);
1178 return IRQ_RETVAL(type
);
1184 /***************************************************************
1190 * dev The device structure of the device to
1193 * This function shuts down the adapter. It records any
1194 * stats, puts the adapter into reset state, deactivates
1195 * its time as needed, and frees the irq it is using.
1197 **************************************************************/
1199 static int tlan_close(struct net_device
*dev
)
1203 free_irq(dev
->irq
, dev
);
1204 tlan_free_lists(dev
);
1205 TLAN_DBG(TLAN_DEBUG_GNRL
, "Device %s closed.\n", dev
->name
);
1214 /***************************************************************
1218 * A pointer to the device's statistics structure.
1220 * dev The device structure to return the
1223 * This function updates the devices statistics by reading
1224 * the TLAN chip's onboard registers. Then it returns the
1225 * address of the statistics structure.
1227 **************************************************************/
1229 static struct net_device_stats
*tlan_get_stats(struct net_device
*dev
)
1231 struct tlan_priv
*priv
= netdev_priv(dev
);
1234 /* Should only read stats if open ? */
1235 tlan_read_and_clear_stats(dev
, TLAN_RECORD
);
1237 TLAN_DBG(TLAN_DEBUG_RX
, "RECEIVE: %s EOC count = %d\n", dev
->name
,
1238 priv
->rx_eoc_count
);
1239 TLAN_DBG(TLAN_DEBUG_TX
, "TRANSMIT: %s Busy count = %d\n", dev
->name
,
1240 priv
->tx_busy_count
);
1241 if (debug
& TLAN_DEBUG_GNRL
) {
1242 tlan_print_dio(dev
->base_addr
);
1243 tlan_phy_print(dev
);
1245 if (debug
& TLAN_DEBUG_LIST
) {
1246 for (i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++)
1247 tlan_print_list(priv
->rx_list
+ i
, "RX", i
);
1248 for (i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++)
1249 tlan_print_list(priv
->tx_list
+ i
, "TX", i
);
1259 /***************************************************************
1260 * tlan_set_multicast_list
1265 * dev The device structure to set the
1266 * multicast list for.
1268 * This function sets the TLAN adaptor to various receive
1269 * modes. If the IFF_PROMISC flag is set, promiscuous
1270 * mode is acitviated. Otherwise, promiscuous mode is
1271 * turned off. If the IFF_ALLMULTI flag is set, then
1272 * the hash table is set to receive all group addresses.
1273 * Otherwise, the first three multicast addresses are
1274 * stored in AREG_1-3, and the rest are selected via the
1275 * hash table, as necessary.
1277 **************************************************************/
1279 static void tlan_set_multicast_list(struct net_device
*dev
)
1281 struct netdev_hw_addr
*ha
;
1288 if (dev
->flags
& IFF_PROMISC
) {
1289 tmp
= tlan_dio_read8(dev
->base_addr
, TLAN_NET_CMD
);
1290 tlan_dio_write8(dev
->base_addr
,
1291 TLAN_NET_CMD
, tmp
| TLAN_NET_CMD_CAF
);
1293 tmp
= tlan_dio_read8(dev
->base_addr
, TLAN_NET_CMD
);
1294 tlan_dio_write8(dev
->base_addr
,
1295 TLAN_NET_CMD
, tmp
& ~TLAN_NET_CMD_CAF
);
1296 if (dev
->flags
& IFF_ALLMULTI
) {
1297 for (i
= 0; i
< 3; i
++)
1298 tlan_set_mac(dev
, i
+ 1, NULL
);
1299 tlan_dio_write32(dev
->base_addr
, TLAN_HASH_1
,
1301 tlan_dio_write32(dev
->base_addr
, TLAN_HASH_2
,
1305 netdev_for_each_mc_addr(ha
, dev
) {
1307 tlan_set_mac(dev
, i
+ 1,
1308 (char *) &ha
->addr
);
1311 tlan_hash_func((u8
*)&ha
->addr
);
1313 hash1
|= (1 << offset
);
1315 hash2
|= (1 << (offset
- 32));
1320 tlan_set_mac(dev
, i
+ 1, NULL
);
1321 tlan_dio_write32(dev
->base_addr
, TLAN_HASH_1
, hash1
);
1322 tlan_dio_write32(dev
->base_addr
, TLAN_HASH_2
, hash2
);
1330 /*****************************************************************************
1331 ******************************************************************************
1333 ThunderLAN driver interrupt vectors and table
1335 please see chap. 4, "Interrupt Handling" of the "ThunderLAN
1336 Programmer's Guide" for more informations on handling interrupts
1337 generated by TLAN based adapters.
1339 ******************************************************************************
1340 *****************************************************************************/
1345 /***************************************************************
1346 * tlan_handle_tx_eof
1351 * dev Device assigned the IRQ that was
1353 * host_int The contents of the HOST_INT
1356 * This function handles Tx EOF interrupts which are raised
1357 * by the adapter when it has completed sending the
1358 * contents of a buffer. If detemines which list/buffer
1359 * was completed and resets it. If the buffer was the last
1360 * in the channel (EOC), then the function checks to see if
1361 * another buffer is ready to send, and if so, sends a Tx
1362 * Go command. Finally, the driver activates/continues the
1365 **************************************************************/
1367 static u32
tlan_handle_tx_eof(struct net_device
*dev
, u16 host_int
)
1369 struct tlan_priv
*priv
= netdev_priv(dev
);
1371 struct tlan_list
*head_list
;
1372 dma_addr_t head_list_phys
;
1376 TLAN_DBG(TLAN_DEBUG_TX
,
1377 "TRANSMIT: Handling TX EOF (Head=%d Tail=%d)\n",
1378 priv
->tx_head
, priv
->tx_tail
);
1379 head_list
= priv
->tx_list
+ priv
->tx_head
;
1381 while (((tmp_c_stat
= head_list
->c_stat
) & TLAN_CSTAT_FRM_CMP
)
1383 struct sk_buff
*skb
= tlan_get_skb(head_list
);
1386 pci_unmap_single(priv
->pci_dev
, head_list
->buffer
[0].address
,
1388 (unsigned int)TLAN_MIN_FRAME_SIZE
),
1390 dev_kfree_skb_any(skb
);
1391 head_list
->buffer
[8].address
= 0;
1392 head_list
->buffer
[9].address
= 0;
1394 if (tmp_c_stat
& TLAN_CSTAT_EOC
)
1397 dev
->stats
.tx_bytes
+= head_list
->frame_size
;
1399 head_list
->c_stat
= TLAN_CSTAT_UNUSED
;
1400 netif_start_queue(dev
);
1401 CIRC_INC(priv
->tx_head
, TLAN_NUM_TX_LISTS
);
1402 head_list
= priv
->tx_list
+ priv
->tx_head
;
1407 "Received interrupt for uncompleted TX frame\n");
1410 TLAN_DBG(TLAN_DEBUG_TX
,
1411 "TRANSMIT: handling TX EOC (Head=%d Tail=%d)\n",
1412 priv
->tx_head
, priv
->tx_tail
);
1413 head_list
= priv
->tx_list
+ priv
->tx_head
;
1414 head_list_phys
= priv
->tx_list_dma
1415 + sizeof(struct tlan_list
)*priv
->tx_head
;
1416 if ((head_list
->c_stat
& TLAN_CSTAT_READY
)
1417 == TLAN_CSTAT_READY
) {
1418 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1421 priv
->tx_in_progress
= 0;
1425 if (priv
->adapter
->flags
& TLAN_ADAPTER_ACTIVITY_LED
) {
1426 tlan_dio_write8(dev
->base_addr
,
1427 TLAN_LED_REG
, TLAN_LED_LINK
| TLAN_LED_ACT
);
1428 if (priv
->timer
.function
== NULL
) {
1429 priv
->timer
.function
= tlan_timer
;
1430 priv
->timer
.data
= (unsigned long) dev
;
1431 priv
->timer
.expires
= jiffies
+ TLAN_TIMER_ACT_DELAY
;
1432 priv
->timer_set_at
= jiffies
;
1433 priv
->timer_type
= TLAN_TIMER_ACTIVITY
;
1434 add_timer(&priv
->timer
);
1435 } else if (priv
->timer_type
== TLAN_TIMER_ACTIVITY
) {
1436 priv
->timer_set_at
= jiffies
;
1447 /***************************************************************
1448 * TLan_HandleStatOverflow
1453 * dev Device assigned the IRQ that was
1455 * host_int The contents of the HOST_INT
1458 * This function handles the Statistics Overflow interrupt
1459 * which means that one or more of the TLAN statistics
1460 * registers has reached 1/2 capacity and needs to be read.
1462 **************************************************************/
1464 static u32
tlan_handle_stat_overflow(struct net_device
*dev
, u16 host_int
)
1466 tlan_read_and_clear_stats(dev
, TLAN_RECORD
);
1475 /***************************************************************
1481 * dev Device assigned the IRQ that was
1483 * host_int The contents of the HOST_INT
1486 * This function handles the Rx EOF interrupt which
1487 * indicates a frame has been received by the adapter from
1488 * the net and the frame has been transferred to memory.
1489 * The function determines the bounce buffer the frame has
1490 * been loaded into, creates a new sk_buff big enough to
1491 * hold the frame, and sends it to protocol stack. It
1492 * then resets the used buffer and appends it to the end
1493 * of the list. If the frame was the last in the Rx
1494 * channel (EOC), the function restarts the receive channel
1495 * by sending an Rx Go command to the adapter. Then it
1496 * activates/continues the activity LED.
1498 **************************************************************/
1500 static u32
tlan_handle_rx_eof(struct net_device
*dev
, u16 host_int
)
1502 struct tlan_priv
*priv
= netdev_priv(dev
);
1505 struct tlan_list
*head_list
;
1506 struct sk_buff
*skb
;
1507 struct tlan_list
*tail_list
;
1509 dma_addr_t head_list_phys
;
1511 TLAN_DBG(TLAN_DEBUG_RX
, "RECEIVE: handling RX EOF (Head=%d Tail=%d)\n",
1512 priv
->rx_head
, priv
->rx_tail
);
1513 head_list
= priv
->rx_list
+ priv
->rx_head
;
1515 priv
->rx_list_dma
+ sizeof(struct tlan_list
)*priv
->rx_head
;
1517 while (((tmp_c_stat
= head_list
->c_stat
) & TLAN_CSTAT_FRM_CMP
)
1519 dma_addr_t frame_dma
= head_list
->buffer
[0].address
;
1520 u32 frame_size
= head_list
->frame_size
;
1521 struct sk_buff
*new_skb
;
1524 if (tmp_c_stat
& TLAN_CSTAT_EOC
)
1527 new_skb
= netdev_alloc_skb_ip_align(dev
,
1528 TLAN_MAX_FRAME_SIZE
+ 5);
1530 goto drop_and_reuse
;
1532 skb
= tlan_get_skb(head_list
);
1533 pci_unmap_single(priv
->pci_dev
, frame_dma
,
1534 TLAN_MAX_FRAME_SIZE
, PCI_DMA_FROMDEVICE
);
1535 skb_put(skb
, frame_size
);
1537 dev
->stats
.rx_bytes
+= frame_size
;
1539 skb
->protocol
= eth_type_trans(skb
, dev
);
1542 head_list
->buffer
[0].address
=
1543 pci_map_single(priv
->pci_dev
, new_skb
->data
,
1544 TLAN_MAX_FRAME_SIZE
, PCI_DMA_FROMDEVICE
);
1546 tlan_store_skb(head_list
, new_skb
);
1548 head_list
->forward
= 0;
1549 head_list
->c_stat
= 0;
1550 tail_list
= priv
->rx_list
+ priv
->rx_tail
;
1551 tail_list
->forward
= head_list_phys
;
1553 CIRC_INC(priv
->rx_head
, TLAN_NUM_RX_LISTS
);
1554 CIRC_INC(priv
->rx_tail
, TLAN_NUM_RX_LISTS
);
1555 head_list
= priv
->rx_list
+ priv
->rx_head
;
1556 head_list_phys
= priv
->rx_list_dma
1557 + sizeof(struct tlan_list
)*priv
->rx_head
;
1562 "Received interrupt for uncompleted RX frame\n");
1566 TLAN_DBG(TLAN_DEBUG_RX
,
1567 "RECEIVE: handling RX EOC (Head=%d Tail=%d)\n",
1568 priv
->rx_head
, priv
->rx_tail
);
1569 head_list
= priv
->rx_list
+ priv
->rx_head
;
1570 head_list_phys
= priv
->rx_list_dma
1571 + sizeof(struct tlan_list
)*priv
->rx_head
;
1572 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1573 ack
|= TLAN_HC_GO
| TLAN_HC_RT
;
1574 priv
->rx_eoc_count
++;
1577 if (priv
->adapter
->flags
& TLAN_ADAPTER_ACTIVITY_LED
) {
1578 tlan_dio_write8(dev
->base_addr
,
1579 TLAN_LED_REG
, TLAN_LED_LINK
| TLAN_LED_ACT
);
1580 if (priv
->timer
.function
== NULL
) {
1581 priv
->timer
.function
= tlan_timer
;
1582 priv
->timer
.data
= (unsigned long) dev
;
1583 priv
->timer
.expires
= jiffies
+ TLAN_TIMER_ACT_DELAY
;
1584 priv
->timer_set_at
= jiffies
;
1585 priv
->timer_type
= TLAN_TIMER_ACTIVITY
;
1586 add_timer(&priv
->timer
);
1587 } else if (priv
->timer_type
== TLAN_TIMER_ACTIVITY
) {
1588 priv
->timer_set_at
= jiffies
;
1599 /***************************************************************
1605 * dev Device assigned the IRQ that was
1607 * host_int The contents of the HOST_INT
1610 * This function handles the Dummy interrupt, which is
1611 * raised whenever a test interrupt is generated by setting
1612 * the Req_Int bit of HOST_CMD to 1.
1614 **************************************************************/
1616 static u32
tlan_handle_dummy(struct net_device
*dev
, u16 host_int
)
1618 netdev_info(dev
, "Test interrupt\n");
1626 /***************************************************************
1627 * tlan_handle_tx_eoc
1632 * dev Device assigned the IRQ that was
1634 * host_int The contents of the HOST_INT
1637 * This driver is structured to determine EOC occurrences by
1638 * reading the CSTAT member of the list structure. Tx EOC
1639 * interrupts are disabled via the DIO INTDIS register.
1640 * However, TLAN chips before revision 3.0 didn't have this
1641 * functionality, so process EOC events if this is the
1644 **************************************************************/
1646 static u32
tlan_handle_tx_eoc(struct net_device
*dev
, u16 host_int
)
1648 struct tlan_priv
*priv
= netdev_priv(dev
);
1649 struct tlan_list
*head_list
;
1650 dma_addr_t head_list_phys
;
1653 if (priv
->tlan_rev
< 0x30) {
1654 TLAN_DBG(TLAN_DEBUG_TX
,
1655 "TRANSMIT: handling TX EOC (Head=%d Tail=%d) -- IRQ\n",
1656 priv
->tx_head
, priv
->tx_tail
);
1657 head_list
= priv
->tx_list
+ priv
->tx_head
;
1658 head_list_phys
= priv
->tx_list_dma
1659 + sizeof(struct tlan_list
)*priv
->tx_head
;
1660 if ((head_list
->c_stat
& TLAN_CSTAT_READY
)
1661 == TLAN_CSTAT_READY
) {
1662 netif_stop_queue(dev
);
1663 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1666 priv
->tx_in_progress
= 0;
1677 /***************************************************************
1678 * tlan_handle_status_check
1681 * 0 if Adapter check, 1 if Network Status check.
1683 * dev Device assigned the IRQ that was
1685 * host_int The contents of the HOST_INT
1688 * This function handles Adapter Check/Network Status
1689 * interrupts generated by the adapter. It checks the
1690 * vector in the HOST_INT register to determine if it is
1691 * an Adapter Check interrupt. If so, it resets the
1692 * adapter. Otherwise it clears the status registers
1693 * and services the PHY.
1695 **************************************************************/
1697 static u32
tlan_handle_status_check(struct net_device
*dev
, u16 host_int
)
1699 struct tlan_priv
*priv
= netdev_priv(dev
);
1708 if (host_int
& TLAN_HI_IV_MASK
) {
1709 netif_stop_queue(dev
);
1710 error
= inl(dev
->base_addr
+ TLAN_CH_PARM
);
1711 netdev_info(dev
, "Adaptor Error = 0x%x\n", error
);
1712 tlan_read_and_clear_stats(dev
, TLAN_RECORD
);
1713 outl(TLAN_HC_AD_RST
, dev
->base_addr
+ TLAN_HOST_CMD
);
1715 schedule_work(&priv
->tlan_tqueue
);
1717 netif_wake_queue(dev
);
1720 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Status Check\n", dev
->name
);
1721 phy
= priv
->phy
[priv
->phy_num
];
1723 net_sts
= tlan_dio_read8(dev
->base_addr
, TLAN_NET_STS
);
1725 tlan_dio_write8(dev
->base_addr
, TLAN_NET_STS
, net_sts
);
1726 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Net_Sts = %x\n",
1727 dev
->name
, (unsigned) net_sts
);
1729 if ((net_sts
& TLAN_NET_STS_MIRQ
) && (priv
->phy_num
== 0)) {
1730 tlan_mii_read_reg(dev
, phy
, TLAN_TLPHY_STS
, &tlphy_sts
);
1731 tlan_mii_read_reg(dev
, phy
, TLAN_TLPHY_CTL
, &tlphy_ctl
);
1732 if (!(tlphy_sts
& TLAN_TS_POLOK
) &&
1733 !(tlphy_ctl
& TLAN_TC_SWAPOL
)) {
1734 tlphy_ctl
|= TLAN_TC_SWAPOL
;
1735 tlan_mii_write_reg(dev
, phy
, TLAN_TLPHY_CTL
,
1737 } else if ((tlphy_sts
& TLAN_TS_POLOK
) &&
1738 (tlphy_ctl
& TLAN_TC_SWAPOL
)) {
1739 tlphy_ctl
&= ~TLAN_TC_SWAPOL
;
1740 tlan_mii_write_reg(dev
, phy
, TLAN_TLPHY_CTL
,
1745 tlan_phy_print(dev
);
1756 /***************************************************************
1757 * tlan_handle_rx_eoc
1762 * dev Device assigned the IRQ that was
1764 * host_int The contents of the HOST_INT
1767 * This driver is structured to determine EOC occurrences by
1768 * reading the CSTAT member of the list structure. Rx EOC
1769 * interrupts are disabled via the DIO INTDIS register.
1770 * However, TLAN chips before revision 3.0 didn't have this
1771 * CSTAT member or a INTDIS register, so if this chip is
1772 * pre-3.0, process EOC interrupts normally.
1774 **************************************************************/
1776 static u32
tlan_handle_rx_eoc(struct net_device
*dev
, u16 host_int
)
1778 struct tlan_priv
*priv
= netdev_priv(dev
);
1779 dma_addr_t head_list_phys
;
1782 if (priv
->tlan_rev
< 0x30) {
1783 TLAN_DBG(TLAN_DEBUG_RX
,
1784 "RECEIVE: Handling RX EOC (head=%d tail=%d) -- IRQ\n",
1785 priv
->rx_head
, priv
->rx_tail
);
1786 head_list_phys
= priv
->rx_list_dma
1787 + sizeof(struct tlan_list
)*priv
->rx_head
;
1788 outl(head_list_phys
, dev
->base_addr
+ TLAN_CH_PARM
);
1789 ack
|= TLAN_HC_GO
| TLAN_HC_RT
;
1790 priv
->rx_eoc_count
++;
1800 /*****************************************************************************
1801 ******************************************************************************
1803 ThunderLAN driver timer function
1805 ******************************************************************************
1806 *****************************************************************************/
1809 /***************************************************************
1815 * data A value given to add timer when
1816 * add_timer was called.
1818 * This function handles timed functionality for the
1819 * TLAN driver. The two current timer uses are for
1820 * delaying for autonegotionation and driving the ACT LED.
1821 * - Autonegotiation requires being allowed about
1822 * 2 1/2 seconds before attempting to transmit a
1823 * packet. It would be a very bad thing to hang
1824 * the kernel this long, so the driver doesn't
1825 * allow transmission 'til after this time, for
1826 * certain PHYs. It would be much nicer if all
1827 * PHYs were interrupt-capable like the internal
1829 * - The ACT LED, which shows adapter activity, is
1830 * driven by the driver, and so must be left on
1831 * for a short period to power up the LED so it
1832 * can be seen. This delay can be changed by
1833 * changing the TLAN_TIMER_ACT_DELAY in tlan.h,
1834 * if desired. 100 ms produces a slightly
1835 * sluggish response.
1837 **************************************************************/
1839 static void tlan_timer(unsigned long data
)
1841 struct net_device
*dev
= (struct net_device
*) data
;
1842 struct tlan_priv
*priv
= netdev_priv(dev
);
1844 unsigned long flags
= 0;
1846 priv
->timer
.function
= NULL
;
1848 switch (priv
->timer_type
) {
1849 case TLAN_TIMER_PHY_PDOWN
:
1850 tlan_phy_power_down(dev
);
1852 case TLAN_TIMER_PHY_PUP
:
1853 tlan_phy_power_up(dev
);
1855 case TLAN_TIMER_PHY_RESET
:
1856 tlan_phy_reset(dev
);
1858 case TLAN_TIMER_PHY_START_LINK
:
1859 tlan_phy_start_link(dev
);
1861 case TLAN_TIMER_PHY_FINISH_AN
:
1862 tlan_phy_finish_auto_neg(dev
);
1864 case TLAN_TIMER_FINISH_RESET
:
1865 tlan_finish_reset(dev
);
1867 case TLAN_TIMER_ACTIVITY
:
1868 spin_lock_irqsave(&priv
->lock
, flags
);
1869 if (priv
->timer
.function
== NULL
) {
1870 elapsed
= jiffies
- priv
->timer_set_at
;
1871 if (elapsed
>= TLAN_TIMER_ACT_DELAY
) {
1872 tlan_dio_write8(dev
->base_addr
,
1873 TLAN_LED_REG
, TLAN_LED_LINK
);
1875 priv
->timer
.function
= tlan_timer
;
1876 priv
->timer
.expires
= priv
->timer_set_at
1877 + TLAN_TIMER_ACT_DELAY
;
1878 spin_unlock_irqrestore(&priv
->lock
, flags
);
1879 add_timer(&priv
->timer
);
1883 spin_unlock_irqrestore(&priv
->lock
, flags
);
1892 /*****************************************************************************
1893 ******************************************************************************
1895 ThunderLAN driver adapter related routines
1897 ******************************************************************************
1898 *****************************************************************************/
1901 /***************************************************************
1907 * dev The device structure with the list
1908 * stuctures to be reset.
1910 * This routine sets the variables associated with managing
1911 * the TLAN lists to their initial values.
1913 **************************************************************/
1915 static void tlan_reset_lists(struct net_device
*dev
)
1917 struct tlan_priv
*priv
= netdev_priv(dev
);
1919 struct tlan_list
*list
;
1920 dma_addr_t list_phys
;
1921 struct sk_buff
*skb
;
1925 for (i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++) {
1926 list
= priv
->tx_list
+ i
;
1927 list
->c_stat
= TLAN_CSTAT_UNUSED
;
1928 list
->buffer
[0].address
= 0;
1929 list
->buffer
[2].count
= 0;
1930 list
->buffer
[2].address
= 0;
1931 list
->buffer
[8].address
= 0;
1932 list
->buffer
[9].address
= 0;
1936 priv
->rx_tail
= TLAN_NUM_RX_LISTS
- 1;
1937 for (i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++) {
1938 list
= priv
->rx_list
+ i
;
1939 list_phys
= priv
->rx_list_dma
+ sizeof(struct tlan_list
)*i
;
1940 list
->c_stat
= TLAN_CSTAT_READY
;
1941 list
->frame_size
= TLAN_MAX_FRAME_SIZE
;
1942 list
->buffer
[0].count
= TLAN_MAX_FRAME_SIZE
| TLAN_LAST_BUFFER
;
1943 skb
= netdev_alloc_skb_ip_align(dev
, TLAN_MAX_FRAME_SIZE
+ 5);
1947 list
->buffer
[0].address
= pci_map_single(priv
->pci_dev
,
1949 TLAN_MAX_FRAME_SIZE
,
1950 PCI_DMA_FROMDEVICE
);
1951 tlan_store_skb(list
, skb
);
1952 list
->buffer
[1].count
= 0;
1953 list
->buffer
[1].address
= 0;
1954 list
->forward
= list_phys
+ sizeof(struct tlan_list
);
1957 /* in case ran out of memory early, clear bits */
1958 while (i
< TLAN_NUM_RX_LISTS
) {
1959 tlan_store_skb(priv
->rx_list
+ i
, NULL
);
1967 static void tlan_free_lists(struct net_device
*dev
)
1969 struct tlan_priv
*priv
= netdev_priv(dev
);
1971 struct tlan_list
*list
;
1972 struct sk_buff
*skb
;
1974 for (i
= 0; i
< TLAN_NUM_TX_LISTS
; i
++) {
1975 list
= priv
->tx_list
+ i
;
1976 skb
= tlan_get_skb(list
);
1980 list
->buffer
[0].address
,
1982 (unsigned int)TLAN_MIN_FRAME_SIZE
),
1984 dev_kfree_skb_any(skb
);
1985 list
->buffer
[8].address
= 0;
1986 list
->buffer
[9].address
= 0;
1990 for (i
= 0; i
< TLAN_NUM_RX_LISTS
; i
++) {
1991 list
= priv
->rx_list
+ i
;
1992 skb
= tlan_get_skb(list
);
1994 pci_unmap_single(priv
->pci_dev
,
1995 list
->buffer
[0].address
,
1996 TLAN_MAX_FRAME_SIZE
,
1997 PCI_DMA_FROMDEVICE
);
1998 dev_kfree_skb_any(skb
);
1999 list
->buffer
[8].address
= 0;
2000 list
->buffer
[9].address
= 0;
2008 /***************************************************************
2014 * io_base Base IO port of the device of
2015 * which to print DIO registers.
2017 * This function prints out all the internal (DIO)
2018 * registers of a TLAN chip.
2020 **************************************************************/
2022 static void tlan_print_dio(u16 io_base
)
2027 pr_info("Contents of internal registers for io base 0x%04hx\n",
2029 pr_info("Off. +0 +4\n");
2030 for (i
= 0; i
< 0x4C; i
+= 8) {
2031 data0
= tlan_dio_read32(io_base
, i
);
2032 data1
= tlan_dio_read32(io_base
, i
+ 0x4);
2033 pr_info("0x%02x 0x%08x 0x%08x\n", i
, data0
, data1
);
2041 /***************************************************************
2047 * list A pointer to the struct tlan_list structure to
2049 * type A string to designate type of list,
2051 * num The index of the list.
2053 * This function prints out the contents of the list
2054 * pointed to by the list parameter.
2056 **************************************************************/
2058 static void tlan_print_list(struct tlan_list
*list
, char *type
, int num
)
2062 pr_info("%s List %d at %p\n", type
, num
, list
);
2063 pr_info(" Forward = 0x%08x\n", list
->forward
);
2064 pr_info(" CSTAT = 0x%04hx\n", list
->c_stat
);
2065 pr_info(" Frame Size = 0x%04hx\n", list
->frame_size
);
2066 /* for (i = 0; i < 10; i++) { */
2067 for (i
= 0; i
< 2; i
++) {
2068 pr_info(" Buffer[%d].count, addr = 0x%08x, 0x%08x\n",
2069 i
, list
->buffer
[i
].count
, list
->buffer
[i
].address
);
2077 /***************************************************************
2078 * tlan_read_and_clear_stats
2083 * dev Pointer to device structure of adapter
2084 * to which to read stats.
2085 * record Flag indicating whether to add
2087 * This functions reads all the internal status registers
2088 * of the TLAN chip, which clears them as a side effect.
2089 * It then either adds the values to the device's status
2090 * struct, or discards them, depending on whether record
2091 * is TLAN_RECORD (!=0) or TLAN_IGNORE (==0).
2093 **************************************************************/
2095 static void tlan_read_and_clear_stats(struct net_device
*dev
, int record
)
2097 u32 tx_good
, tx_under
;
2098 u32 rx_good
, rx_over
;
2099 u32 def_tx
, crc
, code
;
2100 u32 multi_col
, single_col
;
2101 u32 excess_col
, late_col
, loss
;
2103 outw(TLAN_GOOD_TX_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2104 tx_good
= inb(dev
->base_addr
+ TLAN_DIO_DATA
);
2105 tx_good
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 1) << 8;
2106 tx_good
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 2) << 16;
2107 tx_under
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 3);
2109 outw(TLAN_GOOD_RX_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2110 rx_good
= inb(dev
->base_addr
+ TLAN_DIO_DATA
);
2111 rx_good
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 1) << 8;
2112 rx_good
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 2) << 16;
2113 rx_over
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 3);
2115 outw(TLAN_DEFERRED_TX
, dev
->base_addr
+ TLAN_DIO_ADR
);
2116 def_tx
= inb(dev
->base_addr
+ TLAN_DIO_DATA
);
2117 def_tx
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 1) << 8;
2118 crc
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 2);
2119 code
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 3);
2121 outw(TLAN_MULTICOL_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2122 multi_col
= inb(dev
->base_addr
+ TLAN_DIO_DATA
);
2123 multi_col
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 1) << 8;
2124 single_col
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 2);
2125 single_col
+= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 3) << 8;
2127 outw(TLAN_EXCESSCOL_FRMS
, dev
->base_addr
+ TLAN_DIO_ADR
);
2128 excess_col
= inb(dev
->base_addr
+ TLAN_DIO_DATA
);
2129 late_col
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 1);
2130 loss
= inb(dev
->base_addr
+ TLAN_DIO_DATA
+ 2);
2133 dev
->stats
.rx_packets
+= rx_good
;
2134 dev
->stats
.rx_errors
+= rx_over
+ crc
+ code
;
2135 dev
->stats
.tx_packets
+= tx_good
;
2136 dev
->stats
.tx_errors
+= tx_under
+ loss
;
2137 dev
->stats
.collisions
+= multi_col
2138 + single_col
+ excess_col
+ late_col
;
2140 dev
->stats
.rx_over_errors
+= rx_over
;
2141 dev
->stats
.rx_crc_errors
+= crc
;
2142 dev
->stats
.rx_frame_errors
+= code
;
2144 dev
->stats
.tx_aborted_errors
+= tx_under
;
2145 dev
->stats
.tx_carrier_errors
+= loss
;
2153 /***************************************************************
2159 * dev Pointer to device structure of adapter
2162 * This function resets the adapter and it's physical
2163 * device. See Chap. 3, pp. 9-10 of the "ThunderLAN
2164 * Programmer's Guide" for details. The routine tries to
2165 * implement what is detailed there, though adjustments
2168 **************************************************************/
2171 tlan_reset_adapter(struct net_device
*dev
)
2173 struct tlan_priv
*priv
= netdev_priv(dev
);
2179 priv
->tlan_full_duplex
= false;
2180 priv
->phy_online
= 0;
2181 netif_carrier_off(dev
);
2183 /* 1. Assert reset bit. */
2185 data
= inl(dev
->base_addr
+ TLAN_HOST_CMD
);
2186 data
|= TLAN_HC_AD_RST
;
2187 outl(data
, dev
->base_addr
+ TLAN_HOST_CMD
);
2191 /* 2. Turn off interrupts. (Probably isn't necessary) */
2193 data
= inl(dev
->base_addr
+ TLAN_HOST_CMD
);
2194 data
|= TLAN_HC_INT_OFF
;
2195 outl(data
, dev
->base_addr
+ TLAN_HOST_CMD
);
2197 /* 3. Clear AREGs and HASHs. */
2199 for (i
= TLAN_AREG_0
; i
<= TLAN_HASH_2
; i
+= 4)
2200 tlan_dio_write32(dev
->base_addr
, (u16
) i
, 0);
2202 /* 4. Setup NetConfig register. */
2204 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
| TLAN_NET_CFG_PHY_EN
;
2205 tlan_dio_write16(dev
->base_addr
, TLAN_NET_CONFIG
, (u16
) data
);
2207 /* 5. Load Ld_Tmr and Ld_Thr in HOST_CMD. */
2209 outl(TLAN_HC_LD_TMR
| 0x3f, dev
->base_addr
+ TLAN_HOST_CMD
);
2210 outl(TLAN_HC_LD_THR
| 0x9, dev
->base_addr
+ TLAN_HOST_CMD
);
2212 /* 6. Unreset the MII by setting NMRST (in NetSio) to 1. */
2214 outw(TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
2215 addr
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2216 tlan_set_bit(TLAN_NET_SIO_NMRST
, addr
);
2218 /* 7. Setup the remaining registers. */
2220 if (priv
->tlan_rev
>= 0x30) {
2221 data8
= TLAN_ID_TX_EOC
| TLAN_ID_RX_EOC
;
2222 tlan_dio_write8(dev
->base_addr
, TLAN_INT_DIS
, data8
);
2224 tlan_phy_detect(dev
);
2225 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
;
2227 if (priv
->adapter
->flags
& TLAN_ADAPTER_BIT_RATE_PHY
) {
2228 data
|= TLAN_NET_CFG_BIT
;
2229 if (priv
->aui
== 1) {
2230 tlan_dio_write8(dev
->base_addr
, TLAN_ACOMMIT
, 0x0a);
2231 } else if (priv
->duplex
== TLAN_DUPLEX_FULL
) {
2232 tlan_dio_write8(dev
->base_addr
, TLAN_ACOMMIT
, 0x00);
2233 priv
->tlan_full_duplex
= true;
2235 tlan_dio_write8(dev
->base_addr
, TLAN_ACOMMIT
, 0x08);
2239 /* don't power down internal PHY if we're going to use it */
2240 if (priv
->phy_num
== 0 ||
2241 (priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
))
2242 data
|= TLAN_NET_CFG_PHY_EN
;
2243 tlan_dio_write16(dev
->base_addr
, TLAN_NET_CONFIG
, (u16
) data
);
2245 if (priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
)
2246 tlan_finish_reset(dev
);
2248 tlan_phy_power_down(dev
);
2256 tlan_finish_reset(struct net_device
*dev
)
2258 struct tlan_priv
*priv
= netdev_priv(dev
);
2266 u16 tlphy_id1
, tlphy_id2
;
2269 phy
= priv
->phy
[priv
->phy_num
];
2271 data
= TLAN_NET_CMD_NRESET
| TLAN_NET_CMD_NWRAP
;
2272 if (priv
->tlan_full_duplex
)
2273 data
|= TLAN_NET_CMD_DUPLEX
;
2274 tlan_dio_write8(dev
->base_addr
, TLAN_NET_CMD
, data
);
2275 data
= TLAN_NET_MASK_MASK4
| TLAN_NET_MASK_MASK5
;
2276 if (priv
->phy_num
== 0)
2277 data
|= TLAN_NET_MASK_MASK7
;
2278 tlan_dio_write8(dev
->base_addr
, TLAN_NET_MASK
, data
);
2279 tlan_dio_write16(dev
->base_addr
, TLAN_MAX_RX
, ((1536)+7)&~7);
2280 tlan_mii_read_reg(dev
, phy
, MII_GEN_ID_HI
, &tlphy_id1
);
2281 tlan_mii_read_reg(dev
, phy
, MII_GEN_ID_LO
, &tlphy_id2
);
2283 if ((priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) ||
2285 status
= MII_GS_LINK
;
2286 netdev_info(dev
, "Link forced\n");
2288 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &status
);
2290 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &status
);
2291 if (status
& MII_GS_LINK
) {
2292 /* We only support link info on Nat.Sem. PHY's */
2293 if ((tlphy_id1
== NAT_SEM_ID1
) &&
2294 (tlphy_id2
== NAT_SEM_ID2
)) {
2295 tlan_mii_read_reg(dev
, phy
, MII_AN_LPA
,
2297 tlan_mii_read_reg(dev
, phy
, TLAN_TLPHY_PAR
,
2301 "Link active, %s %uMbps %s-Duplex\n",
2302 !(tlphy_par
& TLAN_PHY_AN_EN_STAT
)
2303 ? "forced" : "Autonegotiation enabled,",
2304 tlphy_par
& TLAN_PHY_SPEED_100
2306 tlphy_par
& TLAN_PHY_DUPLEX_FULL
2309 if (tlphy_par
& TLAN_PHY_AN_EN_STAT
) {
2310 netdev_info(dev
, "Partner capability:");
2311 for (i
= 5; i
< 10; i
++)
2312 if (partner
& (1 << i
))
2318 netdev_info(dev
, "Link active\n");
2319 /* Enabling link beat monitoring */
2320 priv
->media_timer
.function
= tlan_phy_monitor
;
2321 priv
->media_timer
.data
= (unsigned long) dev
;
2322 priv
->media_timer
.expires
= jiffies
+ HZ
;
2323 add_timer(&priv
->media_timer
);
2327 if (priv
->phy_num
== 0) {
2328 tlan_mii_read_reg(dev
, phy
, TLAN_TLPHY_CTL
, &tlphy_ctl
);
2329 tlphy_ctl
|= TLAN_TC_INTEN
;
2330 tlan_mii_write_reg(dev
, phy
, TLAN_TLPHY_CTL
, tlphy_ctl
);
2331 sio
= tlan_dio_read8(dev
->base_addr
, TLAN_NET_SIO
);
2332 sio
|= TLAN_NET_SIO_MINTEN
;
2333 tlan_dio_write8(dev
->base_addr
, TLAN_NET_SIO
, sio
);
2336 if (status
& MII_GS_LINK
) {
2337 tlan_set_mac(dev
, 0, dev
->dev_addr
);
2338 priv
->phy_online
= 1;
2339 outb((TLAN_HC_INT_ON
>> 8), dev
->base_addr
+ TLAN_HOST_CMD
+ 1);
2340 if (debug
>= 1 && debug
!= TLAN_DEBUG_PROBE
)
2341 outb((TLAN_HC_REQ_INT
>> 8),
2342 dev
->base_addr
+ TLAN_HOST_CMD
+ 1);
2343 outl(priv
->rx_list_dma
, dev
->base_addr
+ TLAN_CH_PARM
);
2344 outl(TLAN_HC_GO
| TLAN_HC_RT
, dev
->base_addr
+ TLAN_HOST_CMD
);
2345 tlan_dio_write8(dev
->base_addr
, TLAN_LED_REG
, TLAN_LED_LINK
);
2346 netif_carrier_on(dev
);
2348 netdev_info(dev
, "Link inactive, will retry in 10 secs...\n");
2349 tlan_set_timer(dev
, (10*HZ
), TLAN_TIMER_FINISH_RESET
);
2352 tlan_set_multicast_list(dev
);
2359 /***************************************************************
2365 * dev Pointer to device structure of adapter
2366 * on which to change the AREG.
2367 * areg The AREG to set the address in (0 - 3).
2368 * mac A pointer to an array of chars. Each
2369 * element stores one byte of the address.
2370 * IE, it isn't in ascii.
2372 * This function transfers a MAC address to one of the
2373 * TLAN AREGs (address registers). The TLAN chip locks
2374 * the register on writing to offset 0 and unlocks the
2375 * register after writing to offset 5. If NULL is passed
2376 * in mac, then the AREG is filled with 0's.
2378 **************************************************************/
2380 static void tlan_set_mac(struct net_device
*dev
, int areg
, char *mac
)
2387 for (i
= 0; i
< 6; i
++)
2388 tlan_dio_write8(dev
->base_addr
,
2389 TLAN_AREG_0
+ areg
+ i
, mac
[i
]);
2391 for (i
= 0; i
< 6; i
++)
2392 tlan_dio_write8(dev
->base_addr
,
2393 TLAN_AREG_0
+ areg
+ i
, 0);
2401 /*****************************************************************************
2402 ******************************************************************************
2404 ThunderLAN driver PHY layer routines
2406 ******************************************************************************
2407 *****************************************************************************/
2411 /*********************************************************************
2417 * dev A pointer to the device structure of the
2418 * TLAN device having the PHYs to be detailed.
2420 * This function prints the registers a PHY (aka transceiver).
2422 ********************************************************************/
2424 static void tlan_phy_print(struct net_device
*dev
)
2426 struct tlan_priv
*priv
= netdev_priv(dev
);
2427 u16 i
, data0
, data1
, data2
, data3
, phy
;
2429 phy
= priv
->phy
[priv
->phy_num
];
2431 if (priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) {
2432 netdev_info(dev
, "Unmanaged PHY\n");
2433 } else if (phy
<= TLAN_PHY_MAX_ADDR
) {
2434 netdev_info(dev
, "PHY 0x%02x\n", phy
);
2435 pr_info(" Off. +0 +1 +2 +3\n");
2436 for (i
= 0; i
< 0x20; i
+= 4) {
2437 tlan_mii_read_reg(dev
, phy
, i
, &data0
);
2438 tlan_mii_read_reg(dev
, phy
, i
+ 1, &data1
);
2439 tlan_mii_read_reg(dev
, phy
, i
+ 2, &data2
);
2440 tlan_mii_read_reg(dev
, phy
, i
+ 3, &data3
);
2441 pr_info(" 0x%02x 0x%04hx 0x%04hx 0x%04hx 0x%04hx\n",
2442 i
, data0
, data1
, data2
, data3
);
2445 netdev_info(dev
, "Invalid PHY\n");
2453 /*********************************************************************
2459 * dev A pointer to the device structure of the adapter
2460 * for which the PHY needs determined.
2462 * So far I've found that adapters which have external PHYs
2463 * may also use the internal PHY for part of the functionality.
2464 * (eg, AUI/Thinnet). This function finds out if this TLAN
2465 * chip has an internal PHY, and then finds the first external
2466 * PHY (starting from address 0) if it exists).
2468 ********************************************************************/
2470 static void tlan_phy_detect(struct net_device
*dev
)
2472 struct tlan_priv
*priv
= netdev_priv(dev
);
2478 if (priv
->adapter
->flags
& TLAN_ADAPTER_UNMANAGED_PHY
) {
2479 priv
->phy_num
= 0xffff;
2483 tlan_mii_read_reg(dev
, TLAN_PHY_MAX_ADDR
, MII_GEN_ID_HI
, &hi
);
2486 priv
->phy
[0] = TLAN_PHY_MAX_ADDR
;
2488 priv
->phy
[0] = TLAN_PHY_NONE
;
2490 priv
->phy
[1] = TLAN_PHY_NONE
;
2491 for (phy
= 0; phy
<= TLAN_PHY_MAX_ADDR
; phy
++) {
2492 tlan_mii_read_reg(dev
, phy
, MII_GEN_CTL
, &control
);
2493 tlan_mii_read_reg(dev
, phy
, MII_GEN_ID_HI
, &hi
);
2494 tlan_mii_read_reg(dev
, phy
, MII_GEN_ID_LO
, &lo
);
2495 if ((control
!= 0xffff) ||
2496 (hi
!= 0xffff) || (lo
!= 0xffff)) {
2497 TLAN_DBG(TLAN_DEBUG_GNRL
,
2498 "PHY found at %02x %04x %04x %04x\n",
2499 phy
, control
, hi
, lo
);
2500 if ((priv
->phy
[1] == TLAN_PHY_NONE
) &&
2501 (phy
!= TLAN_PHY_MAX_ADDR
)) {
2507 if (priv
->phy
[1] != TLAN_PHY_NONE
)
2509 else if (priv
->phy
[0] != TLAN_PHY_NONE
)
2512 netdev_info(dev
, "Cannot initialize device, no PHY was found!\n");
2519 static void tlan_phy_power_down(struct net_device
*dev
)
2521 struct tlan_priv
*priv
= netdev_priv(dev
);
2524 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Powering down PHY(s).\n", dev
->name
);
2525 value
= MII_GC_PDOWN
| MII_GC_LOOPBK
| MII_GC_ISOLATE
;
2526 tlan_mii_sync(dev
->base_addr
);
2527 tlan_mii_write_reg(dev
, priv
->phy
[priv
->phy_num
], MII_GEN_CTL
, value
);
2528 if ((priv
->phy_num
== 0) && (priv
->phy
[1] != TLAN_PHY_NONE
)) {
2529 /* if using internal PHY, the external PHY must be powered on */
2530 if (priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
)
2531 value
= MII_GC_ISOLATE
; /* just isolate it from MII */
2532 tlan_mii_sync(dev
->base_addr
);
2533 tlan_mii_write_reg(dev
, priv
->phy
[1], MII_GEN_CTL
, value
);
2536 /* Wait for 50 ms and powerup
2537 * This is abitrary. It is intended to make sure the
2538 * transceiver settles.
2540 tlan_set_timer(dev
, msecs_to_jiffies(50), TLAN_TIMER_PHY_PUP
);
2547 static void tlan_phy_power_up(struct net_device
*dev
)
2549 struct tlan_priv
*priv
= netdev_priv(dev
);
2552 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Powering up PHY.\n", dev
->name
);
2553 tlan_mii_sync(dev
->base_addr
);
2554 value
= MII_GC_LOOPBK
;
2555 tlan_mii_write_reg(dev
, priv
->phy
[priv
->phy_num
], MII_GEN_CTL
, value
);
2556 tlan_mii_sync(dev
->base_addr
);
2557 /* Wait for 500 ms and reset the
2558 * transceiver. The TLAN docs say both 50 ms and
2559 * 500 ms, so do the longer, just in case.
2561 tlan_set_timer(dev
, msecs_to_jiffies(500), TLAN_TIMER_PHY_RESET
);
2568 static void tlan_phy_reset(struct net_device
*dev
)
2570 struct tlan_priv
*priv
= netdev_priv(dev
);
2573 unsigned long timeout
= jiffies
+ HZ
;
2575 phy
= priv
->phy
[priv
->phy_num
];
2577 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Resetting PHY.\n", dev
->name
);
2578 tlan_mii_sync(dev
->base_addr
);
2579 value
= MII_GC_LOOPBK
| MII_GC_RESET
;
2580 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, value
);
2582 tlan_mii_read_reg(dev
, phy
, MII_GEN_CTL
, &value
);
2583 if (time_after(jiffies
, timeout
)) {
2584 netdev_err(dev
, "PHY reset timeout\n");
2587 } while (value
& MII_GC_RESET
);
2589 /* Wait for 500 ms and initialize.
2590 * I don't remember why I wait this long.
2591 * I've changed this to 50ms, as it seems long enough.
2593 tlan_set_timer(dev
, msecs_to_jiffies(50), TLAN_TIMER_PHY_START_LINK
);
2600 static void tlan_phy_start_link(struct net_device
*dev
)
2602 struct tlan_priv
*priv
= netdev_priv(dev
);
2610 phy
= priv
->phy
[priv
->phy_num
];
2611 TLAN_DBG(TLAN_DEBUG_GNRL
, "%s: Trying to activate link.\n", dev
->name
);
2612 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &status
);
2613 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &ability
);
2615 if ((status
& MII_GS_AUTONEG
) &&
2617 ability
= status
>> 11;
2618 if (priv
->speed
== TLAN_SPEED_10
&&
2619 priv
->duplex
== TLAN_DUPLEX_HALF
) {
2620 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x0000);
2621 } else if (priv
->speed
== TLAN_SPEED_10
&&
2622 priv
->duplex
== TLAN_DUPLEX_FULL
) {
2623 priv
->tlan_full_duplex
= true;
2624 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x0100);
2625 } else if (priv
->speed
== TLAN_SPEED_100
&&
2626 priv
->duplex
== TLAN_DUPLEX_HALF
) {
2627 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x2000);
2628 } else if (priv
->speed
== TLAN_SPEED_100
&&
2629 priv
->duplex
== TLAN_DUPLEX_FULL
) {
2630 priv
->tlan_full_duplex
= true;
2631 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x2100);
2634 /* Set Auto-Neg advertisement */
2635 tlan_mii_write_reg(dev
, phy
, MII_AN_ADV
,
2636 (ability
<< 5) | 1);
2637 /* Enablee Auto-Neg */
2638 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x1000);
2639 /* Restart Auto-Neg */
2640 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, 0x1200);
2641 /* Wait for 4 sec for autonegotiation
2642 * to complete. The max spec time is less than this
2643 * but the card need additional time to start AN.
2644 * .5 sec should be plenty extra.
2646 netdev_info(dev
, "Starting autonegotiation\n");
2647 tlan_set_timer(dev
, (2*HZ
), TLAN_TIMER_PHY_FINISH_AN
);
2653 if ((priv
->aui
) && (priv
->phy_num
!= 0)) {
2655 data
= TLAN_NET_CFG_1FRAG
| TLAN_NET_CFG_1CHAN
2656 | TLAN_NET_CFG_PHY_EN
;
2657 tlan_dio_write16(dev
->base_addr
, TLAN_NET_CONFIG
, data
);
2658 tlan_set_timer(dev
, msecs_to_jiffies(40), TLAN_TIMER_PHY_PDOWN
);
2660 } else if (priv
->phy_num
== 0) {
2662 tlan_mii_read_reg(dev
, phy
, TLAN_TLPHY_CTL
, &tctl
);
2664 tctl
|= TLAN_TC_AUISEL
;
2666 tctl
&= ~TLAN_TC_AUISEL
;
2667 if (priv
->duplex
== TLAN_DUPLEX_FULL
) {
2668 control
|= MII_GC_DUPLEX
;
2669 priv
->tlan_full_duplex
= true;
2671 if (priv
->speed
== TLAN_SPEED_100
)
2672 control
|= MII_GC_SPEEDSEL
;
2674 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
, control
);
2675 tlan_mii_write_reg(dev
, phy
, TLAN_TLPHY_CTL
, tctl
);
2678 /* Wait for 2 sec to give the transceiver time
2679 * to establish link.
2681 tlan_set_timer(dev
, (4*HZ
), TLAN_TIMER_FINISH_RESET
);
2688 static void tlan_phy_finish_auto_neg(struct net_device
*dev
)
2690 struct tlan_priv
*priv
= netdev_priv(dev
);
2697 phy
= priv
->phy
[priv
->phy_num
];
2699 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &status
);
2701 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &status
);
2703 if (!(status
& MII_GS_AUTOCMPLT
)) {
2704 /* Wait for 8 sec to give the process
2705 * more time. Perhaps we should fail after a while.
2707 tlan_set_timer(dev
, 2 * HZ
, TLAN_TIMER_PHY_FINISH_AN
);
2711 netdev_info(dev
, "Autonegotiation complete\n");
2712 tlan_mii_read_reg(dev
, phy
, MII_AN_ADV
, &an_adv
);
2713 tlan_mii_read_reg(dev
, phy
, MII_AN_LPA
, &an_lpa
);
2714 mode
= an_adv
& an_lpa
& 0x03E0;
2716 priv
->tlan_full_duplex
= true;
2717 else if (!(mode
& 0x0080) && (mode
& 0x0040))
2718 priv
->tlan_full_duplex
= true;
2720 /* switch to internal PHY for 10 Mbps */
2721 if ((!(mode
& 0x0180)) &&
2722 (priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
) &&
2723 (priv
->phy_num
!= 0)) {
2725 tlan_set_timer(dev
, msecs_to_jiffies(400), TLAN_TIMER_PHY_PDOWN
);
2729 if (priv
->phy_num
== 0) {
2730 if ((priv
->duplex
== TLAN_DUPLEX_FULL
) ||
2731 (an_adv
& an_lpa
& 0x0040)) {
2732 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
,
2733 MII_GC_AUTOENB
| MII_GC_DUPLEX
);
2734 netdev_info(dev
, "Starting internal PHY with FULL-DUPLEX\n");
2736 tlan_mii_write_reg(dev
, phy
, MII_GEN_CTL
,
2738 netdev_info(dev
, "Starting internal PHY with HALF-DUPLEX\n");
2742 /* Wait for 100 ms. No reason in partiticular.
2744 tlan_set_timer(dev
, msecs_to_jiffies(100), TLAN_TIMER_FINISH_RESET
);
2749 /*********************************************************************
2757 * data The device structure of this device.
2760 * This function monitors PHY condition by reading the status
2761 * register via the MII bus, controls LINK LED and notifies the
2762 * kernel about link state.
2764 *******************************************************************/
2766 static void tlan_phy_monitor(unsigned long data
)
2768 struct net_device
*dev
= (struct net_device
*) data
;
2769 struct tlan_priv
*priv
= netdev_priv(dev
);
2773 phy
= priv
->phy
[priv
->phy_num
];
2775 /* Get PHY status register */
2776 tlan_mii_read_reg(dev
, phy
, MII_GEN_STS
, &phy_status
);
2778 /* Check if link has been lost */
2779 if (!(phy_status
& MII_GS_LINK
)) {
2780 if (netif_carrier_ok(dev
)) {
2781 printk(KERN_DEBUG
"TLAN: %s has lost link\n",
2783 tlan_dio_write8(dev
->base_addr
, TLAN_LED_REG
, 0);
2784 netif_carrier_off(dev
);
2785 if (priv
->adapter
->flags
& TLAN_ADAPTER_USE_INTERN_10
) {
2786 /* power down internal PHY */
2787 u16 data
= MII_GC_PDOWN
| MII_GC_LOOPBK
|
2790 tlan_mii_sync(dev
->base_addr
);
2791 tlan_mii_write_reg(dev
, priv
->phy
[0],
2793 /* set to external PHY */
2795 /* restart autonegotiation */
2796 tlan_set_timer(dev
, msecs_to_jiffies(400),
2797 TLAN_TIMER_PHY_PDOWN
);
2803 /* Link restablished? */
2804 if ((phy_status
& MII_GS_LINK
) && !netif_carrier_ok(dev
)) {
2805 tlan_dio_write8(dev
->base_addr
, TLAN_LED_REG
, TLAN_LED_LINK
);
2806 printk(KERN_DEBUG
"TLAN: %s has reestablished link\n",
2808 netif_carrier_on(dev
);
2810 priv
->media_timer
.expires
= jiffies
+ HZ
;
2811 add_timer(&priv
->media_timer
);
2815 /*****************************************************************************
2816 ******************************************************************************
2818 ThunderLAN driver MII routines
2820 these routines are based on the information in chap. 2 of the
2821 "ThunderLAN Programmer's Guide", pp. 15-24.
2823 ******************************************************************************
2824 *****************************************************************************/
2827 /***************************************************************
2831 * false if ack received ok
2832 * true if no ack received or other error
2835 * dev The device structure containing
2836 * The io address and interrupt count
2838 * phy The address of the PHY to be queried.
2839 * reg The register whose contents are to be
2841 * val A pointer to a variable to store the
2844 * This function uses the TLAN's MII bus to retrieve the contents
2845 * of a given register on a PHY. It sends the appropriate info
2846 * and then reads the 16-bit register value from the MII bus via
2847 * the TLAN SIO register.
2849 **************************************************************/
2852 tlan_mii_read_reg(struct net_device
*dev
, u16 phy
, u16 reg
, u16
*val
)
2859 struct tlan_priv
*priv
= netdev_priv(dev
);
2860 unsigned long flags
= 0;
2863 outw(TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
2864 sio
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2867 spin_lock_irqsave(&priv
->lock
, flags
);
2869 tlan_mii_sync(dev
->base_addr
);
2871 minten
= tlan_get_bit(TLAN_NET_SIO_MINTEN
, sio
);
2873 tlan_clear_bit(TLAN_NET_SIO_MINTEN
, sio
);
2875 tlan_mii_send_data(dev
->base_addr
, 0x1, 2); /* start (01b) */
2876 tlan_mii_send_data(dev
->base_addr
, 0x2, 2); /* read (10b) */
2877 tlan_mii_send_data(dev
->base_addr
, phy
, 5); /* device # */
2878 tlan_mii_send_data(dev
->base_addr
, reg
, 5); /* register # */
2881 tlan_clear_bit(TLAN_NET_SIO_MTXEN
, sio
); /* change direction */
2883 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
); /* clock idle bit */
2884 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
2885 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
); /* wait 300ns */
2887 nack
= tlan_get_bit(TLAN_NET_SIO_MDATA
, sio
); /* check for ACK */
2888 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
); /* finish ACK */
2889 if (nack
) { /* no ACK, so fake it */
2890 for (i
= 0; i
< 16; i
++) {
2891 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
);
2892 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
2896 } else { /* ACK, so read data */
2897 for (tmp
= 0, i
= 0x8000; i
; i
>>= 1) {
2898 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
);
2899 if (tlan_get_bit(TLAN_NET_SIO_MDATA
, sio
))
2901 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
2906 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
); /* idle cycle */
2907 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
2910 tlan_set_bit(TLAN_NET_SIO_MINTEN
, sio
);
2915 spin_unlock_irqrestore(&priv
->lock
, flags
);
2924 /***************************************************************
2925 * tlan_mii_send_data
2930 * base_port The base IO port of the adapter in
2932 * dev The address of the PHY to be queried.
2933 * data The value to be placed on the MII bus.
2934 * num_bits The number of bits in data that are to
2935 * be placed on the MII bus.
2937 * This function sends on sequence of bits on the MII
2938 * configuration bus.
2940 **************************************************************/
2942 static void tlan_mii_send_data(u16 base_port
, u32 data
, unsigned num_bits
)
2950 outw(TLAN_NET_SIO
, base_port
+ TLAN_DIO_ADR
);
2951 sio
= base_port
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2952 tlan_set_bit(TLAN_NET_SIO_MTXEN
, sio
);
2954 for (i
= (0x1 << (num_bits
- 1)); i
; i
>>= 1) {
2955 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
);
2956 (void) tlan_get_bit(TLAN_NET_SIO_MCLK
, sio
);
2958 tlan_set_bit(TLAN_NET_SIO_MDATA
, sio
);
2960 tlan_clear_bit(TLAN_NET_SIO_MDATA
, sio
);
2961 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
2962 (void) tlan_get_bit(TLAN_NET_SIO_MCLK
, sio
);
2970 /***************************************************************
2976 * base_port The base IO port of the adapter in
2979 * This functions syncs all PHYs in terms of the MII configuration
2982 **************************************************************/
2984 static void tlan_mii_sync(u16 base_port
)
2989 outw(TLAN_NET_SIO
, base_port
+ TLAN_DIO_ADR
);
2990 sio
= base_port
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
2992 tlan_clear_bit(TLAN_NET_SIO_MTXEN
, sio
);
2993 for (i
= 0; i
< 32; i
++) {
2994 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
);
2995 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
3003 /***************************************************************
3004 * tlan_mii_write_reg
3009 * dev The device structure for the device
3011 * phy The address of the PHY to be written to.
3012 * reg The register whose contents are to be
3014 * val The value to be written to the register.
3016 * This function uses the TLAN's MII bus to write the contents of a
3017 * given register on a PHY. It sends the appropriate info and then
3018 * writes the 16-bit register value from the MII configuration bus
3019 * via the TLAN SIO register.
3021 **************************************************************/
3024 tlan_mii_write_reg(struct net_device
*dev
, u16 phy
, u16 reg
, u16 val
)
3028 unsigned long flags
= 0;
3029 struct tlan_priv
*priv
= netdev_priv(dev
);
3031 outw(TLAN_NET_SIO
, dev
->base_addr
+ TLAN_DIO_ADR
);
3032 sio
= dev
->base_addr
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3035 spin_lock_irqsave(&priv
->lock
, flags
);
3037 tlan_mii_sync(dev
->base_addr
);
3039 minten
= tlan_get_bit(TLAN_NET_SIO_MINTEN
, sio
);
3041 tlan_clear_bit(TLAN_NET_SIO_MINTEN
, sio
);
3043 tlan_mii_send_data(dev
->base_addr
, 0x1, 2); /* start (01b) */
3044 tlan_mii_send_data(dev
->base_addr
, 0x1, 2); /* write (01b) */
3045 tlan_mii_send_data(dev
->base_addr
, phy
, 5); /* device # */
3046 tlan_mii_send_data(dev
->base_addr
, reg
, 5); /* register # */
3048 tlan_mii_send_data(dev
->base_addr
, 0x2, 2); /* send ACK */
3049 tlan_mii_send_data(dev
->base_addr
, val
, 16); /* send data */
3051 tlan_clear_bit(TLAN_NET_SIO_MCLK
, sio
); /* idle cycle */
3052 tlan_set_bit(TLAN_NET_SIO_MCLK
, sio
);
3055 tlan_set_bit(TLAN_NET_SIO_MINTEN
, sio
);
3058 spin_unlock_irqrestore(&priv
->lock
, flags
);
3065 /*****************************************************************************
3066 ******************************************************************************
3068 ThunderLAN driver eeprom routines
3070 the Compaq netelligent 10 and 10/100 cards use a microchip 24C02A
3071 EEPROM. these functions are based on information in microchip's
3072 data sheet. I don't know how well this functions will work with
3075 ******************************************************************************
3076 *****************************************************************************/
3079 /***************************************************************
3080 * tlan_ee_send_start
3085 * io_base The IO port base address for the
3086 * TLAN device with the EEPROM to
3089 * This function sends a start cycle to an EEPROM attached
3092 **************************************************************/
3094 static void tlan_ee_send_start(u16 io_base
)
3098 outw(TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3099 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3101 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3102 tlan_set_bit(TLAN_NET_SIO_EDATA
, sio
);
3103 tlan_set_bit(TLAN_NET_SIO_ETXEN
, sio
);
3104 tlan_clear_bit(TLAN_NET_SIO_EDATA
, sio
);
3105 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3112 /***************************************************************
3116 * If the correct ack was received, 0, otherwise 1
3117 * Parms: io_base The IO port base address for the
3118 * TLAN device with the EEPROM to
3120 * data The 8 bits of information to
3121 * send to the EEPROM.
3122 * stop If TLAN_EEPROM_STOP is passed, a
3123 * stop cycle is sent after the
3124 * byte is sent after the ack is
3127 * This function sends a byte on the serial EEPROM line,
3128 * driving the clock to send each bit. The function then
3129 * reverses transmission direction and reads an acknowledge
3132 **************************************************************/
3134 static int tlan_ee_send_byte(u16 io_base
, u8 data
, int stop
)
3140 outw(TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3141 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3143 /* Assume clock is low, tx is enabled; */
3144 for (place
= 0x80; place
!= 0; place
>>= 1) {
3146 tlan_set_bit(TLAN_NET_SIO_EDATA
, sio
);
3148 tlan_clear_bit(TLAN_NET_SIO_EDATA
, sio
);
3149 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3150 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3152 tlan_clear_bit(TLAN_NET_SIO_ETXEN
, sio
);
3153 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3154 err
= tlan_get_bit(TLAN_NET_SIO_EDATA
, sio
);
3155 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3156 tlan_set_bit(TLAN_NET_SIO_ETXEN
, sio
);
3158 if ((!err
) && stop
) {
3159 /* STOP, raise data while clock is high */
3160 tlan_clear_bit(TLAN_NET_SIO_EDATA
, sio
);
3161 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3162 tlan_set_bit(TLAN_NET_SIO_EDATA
, sio
);
3172 /***************************************************************
3173 * tlan_ee_receive_byte
3178 * io_base The IO port base address for the
3179 * TLAN device with the EEPROM to
3181 * data An address to a char to hold the
3182 * data sent from the EEPROM.
3183 * stop If TLAN_EEPROM_STOP is passed, a
3184 * stop cycle is sent after the
3185 * byte is received, and no ack is
3188 * This function receives 8 bits of data from the EEPROM
3189 * over the serial link. It then sends and ack bit, or no
3190 * ack and a stop bit. This function is used to retrieve
3191 * data after the address of a byte in the EEPROM has been
3194 **************************************************************/
3196 static void tlan_ee_receive_byte(u16 io_base
, u8
*data
, int stop
)
3201 outw(TLAN_NET_SIO
, io_base
+ TLAN_DIO_ADR
);
3202 sio
= io_base
+ TLAN_DIO_DATA
+ TLAN_NET_SIO
;
3205 /* Assume clock is low, tx is enabled; */
3206 tlan_clear_bit(TLAN_NET_SIO_ETXEN
, sio
);
3207 for (place
= 0x80; place
; place
>>= 1) {
3208 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3209 if (tlan_get_bit(TLAN_NET_SIO_EDATA
, sio
))
3211 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3214 tlan_set_bit(TLAN_NET_SIO_ETXEN
, sio
);
3216 tlan_clear_bit(TLAN_NET_SIO_EDATA
, sio
); /* ack = 0 */
3217 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3218 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3220 tlan_set_bit(TLAN_NET_SIO_EDATA
, sio
); /* no ack = 1 (?) */
3221 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3222 tlan_clear_bit(TLAN_NET_SIO_ECLOK
, sio
);
3223 /* STOP, raise data while clock is high */
3224 tlan_clear_bit(TLAN_NET_SIO_EDATA
, sio
);
3225 tlan_set_bit(TLAN_NET_SIO_ECLOK
, sio
);
3226 tlan_set_bit(TLAN_NET_SIO_EDATA
, sio
);
3234 /***************************************************************
3238 * No error = 0, else, the stage at which the error
3241 * io_base The IO port base address for the
3242 * TLAN device with the EEPROM to
3244 * ee_addr The address of the byte in the
3245 * EEPROM whose contents are to be
3247 * data An address to a char to hold the
3248 * data obtained from the EEPROM.
3250 * This function reads a byte of information from an byte
3251 * cell in the EEPROM.
3253 **************************************************************/
3255 static int tlan_ee_read_byte(struct net_device
*dev
, u8 ee_addr
, u8
*data
)
3258 struct tlan_priv
*priv
= netdev_priv(dev
);
3259 unsigned long flags
= 0;
3262 spin_lock_irqsave(&priv
->lock
, flags
);
3264 tlan_ee_send_start(dev
->base_addr
);
3265 err
= tlan_ee_send_byte(dev
->base_addr
, 0xa0, TLAN_EEPROM_ACK
);
3270 err
= tlan_ee_send_byte(dev
->base_addr
, ee_addr
, TLAN_EEPROM_ACK
);
3275 tlan_ee_send_start(dev
->base_addr
);
3276 err
= tlan_ee_send_byte(dev
->base_addr
, 0xa1, TLAN_EEPROM_ACK
);
3281 tlan_ee_receive_byte(dev
->base_addr
, data
, TLAN_EEPROM_STOP
);
3283 spin_unlock_irqrestore(&priv
->lock
, flags
);