2 drivers/net/ethernet/dec/tulip/pnic.c
4 Copyright 2000,2001 The Linux Kernel Team
5 Written/copyright 1994-2001 by Donald Becker.
7 This software may be used and distributed according to the terms
8 of the GNU General Public License, incorporated herein by reference.
10 Please submit bugs to http://bugzilla.kernel.org/ .
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/jiffies.h>
19 void pnic_do_nway(struct net_device
*dev
)
21 struct tulip_private
*tp
= netdev_priv(dev
);
22 void __iomem
*ioaddr
= tp
->base_addr
;
23 u32 phy_reg
= ioread32(ioaddr
+ 0xB8);
24 u32 new_csr6
= tp
->csr6
& ~0x40C40200;
26 if (phy_reg
& 0x78000000) { /* Ignore baseT4 */
27 if (phy_reg
& 0x20000000) dev
->if_port
= 5;
28 else if (phy_reg
& 0x40000000) dev
->if_port
= 3;
29 else if (phy_reg
& 0x10000000) dev
->if_port
= 4;
30 else if (phy_reg
& 0x08000000) dev
->if_port
= 0;
32 new_csr6
= (dev
->if_port
& 1) ? 0x01860000 : 0x00420000;
33 iowrite32(0x32 | (dev
->if_port
& 1), ioaddr
+ CSR12
);
35 iowrite32(0x1F868, ioaddr
+ 0xB8);
36 if (phy_reg
& 0x30000000) {
38 new_csr6
|= 0x00000200;
41 netdev_dbg(dev
, "PNIC autonegotiated status %08x, %s\n",
42 phy_reg
, medianame
[dev
->if_port
]);
43 if (tp
->csr6
!= new_csr6
) {
46 tulip_restart_rxtx(tp
);
47 netif_trans_update(dev
);
52 void pnic_lnk_change(struct net_device
*dev
, int csr5
)
54 struct tulip_private
*tp
= netdev_priv(dev
);
55 void __iomem
*ioaddr
= tp
->base_addr
;
56 int phy_reg
= ioread32(ioaddr
+ 0xB8);
59 netdev_dbg(dev
, "PNIC link changed state %08x, CSR5 %08x\n",
61 if (ioread32(ioaddr
+ CSR5
) & TPLnkFail
) {
62 iowrite32((ioread32(ioaddr
+ CSR7
) & ~TPLnkFail
) | TPLnkPass
, ioaddr
+ CSR7
);
63 /* If we use an external MII, then we mustn't use the
64 * internal negotiation.
66 if (tulip_media_cap
[dev
->if_port
] & MediaIsMII
)
68 if (! tp
->nwayset
|| time_after(jiffies
, dev_trans_start(dev
) + 1*HZ
)) {
69 tp
->csr6
= 0x00420000 | (tp
->csr6
& 0x0000fdff);
70 iowrite32(tp
->csr6
, ioaddr
+ CSR6
);
71 iowrite32(0x30, ioaddr
+ CSR12
);
72 iowrite32(0x0201F078, ioaddr
+ 0xB8); /* Turn on autonegotiation. */
73 netif_trans_update(dev
);
75 } else if (ioread32(ioaddr
+ CSR5
) & TPLnkPass
) {
76 if (tulip_media_cap
[dev
->if_port
] & MediaIsMII
) {
78 tulip_check_duplex(dev
);
79 spin_unlock(&tp
->lock
);
83 iowrite32((ioread32(ioaddr
+ CSR7
) & ~TPLnkPass
) | TPLnkFail
, ioaddr
+ CSR7
);
87 void pnic_timer(struct timer_list
*t
)
89 struct tulip_private
*tp
= from_timer(tp
, t
, timer
);
90 struct net_device
*dev
= tp
->dev
;
91 void __iomem
*ioaddr
= tp
->base_addr
;
92 int next_tick
= 60*HZ
;
94 if(!ioread32(ioaddr
+ CSR7
)) {
95 /* the timer was called due to a work overflow
96 * in the interrupt handler. Skip the connection
97 * checks, the nic is definitively speaking with
100 goto too_good_connection
;
103 if (tulip_media_cap
[dev
->if_port
] & MediaIsMII
) {
104 spin_lock_irq(&tp
->lock
);
105 if (tulip_check_duplex(dev
) > 0)
107 spin_unlock_irq(&tp
->lock
);
109 int csr12
= ioread32(ioaddr
+ CSR12
);
110 int new_csr6
= tp
->csr6
& ~0x40C40200;
111 int phy_reg
= ioread32(ioaddr
+ 0xB8);
112 int csr5
= ioread32(ioaddr
+ CSR5
);
115 netdev_dbg(dev
, "PNIC timer PHY status %08x, %s CSR5 %08x\n",
116 phy_reg
, medianame
[dev
->if_port
], csr5
);
117 if (phy_reg
& 0x04000000) { /* Remote link fault */
118 iowrite32(0x0201F078, ioaddr
+ 0xB8);
121 } else if (phy_reg
& 0x78000000) { /* Ignore baseT4 */
124 } else if (csr5
& TPLnkFail
) { /* 100baseTx link beat */
126 netdev_dbg(dev
, "%s link beat failed, CSR12 %04x, CSR5 %08x, PHY %03x\n",
127 medianame
[dev
->if_port
],
129 ioread32(ioaddr
+ CSR5
),
130 ioread32(ioaddr
+ 0xB8));
133 } else if (tp
->nwayset
&& (dev
->if_port
& 1)) {
135 } else if (dev
->if_port
== 0) {
137 iowrite32(0x33, ioaddr
+ CSR12
);
138 new_csr6
= 0x01860000;
139 iowrite32(0x1F868, ioaddr
+ 0xB8);
142 iowrite32(0x32, ioaddr
+ CSR12
);
143 new_csr6
= 0x00420000;
144 iowrite32(0x1F078, ioaddr
+ 0xB8);
146 if (tp
->csr6
!= new_csr6
) {
149 tulip_restart_rxtx(tp
);
150 netif_trans_update(dev
);
153 "Changing PNIC configuration to %s %s-duplex, CSR6 %08x\n",
154 medianame
[dev
->if_port
],
155 tp
->full_duplex
? "full" : "half",
161 mod_timer(&tp
->timer
, RUN_AT(next_tick
));
162 if(!ioread32(ioaddr
+ CSR7
)) {
164 dev_info(&dev
->dev
, "sw timer wakeup\n");
165 disable_irq(dev
->irq
);
166 tulip_refill_rx(dev
);
167 enable_irq(dev
->irq
);
168 iowrite32(tulip_tbl
[tp
->chip_id
].valid_intrs
, ioaddr
+ CSR7
);