blob: 5ae131c147f9724d38917b31d4a0ada3328de93c [file] [log] [blame]
Michael Buesch753f4922007-09-19 14:20:30 -07001/* b44.c: Broadcom 44xx/47xx Fast Ethernet device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
Michael Buesch753f4922007-09-19 14:20:30 -07004 * Copyright (C) 2004 Pekka Pietikainen (pp@ee.oulu.fi)
5 * Copyright (C) 2004 Florian Schirmer (jolt@tuxbox.org)
6 * Copyright (C) 2006 Felix Fietkau (nbd@openwrt.org)
Gary Zambrano8056bfa2006-04-10 12:05:40 -07007 * Copyright (C) 2006 Broadcom Corporation.
Michael Buesch753f4922007-09-19 14:20:30 -07008 * Copyright (C) 2007 Michael Buesch <mb@bu3sch.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Distribute under GPL.
11 */
12
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/types.h>
17#include <linux/netdevice.h>
18#include <linux/ethtool.h>
19#include <linux/mii.h>
20#include <linux/if_ether.h>
Stephen Hemminger72f48612007-06-04 13:25:39 -070021#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/etherdevice.h>
23#include <linux/pci.h>
24#include <linux/delay.h>
25#include <linux/init.h>
Andrew Morton89358f92005-10-28 16:38:02 -040026#include <linux/dma-mapping.h>
Michael Buesch753f4922007-09-19 14:20:30 -070027#include <linux/ssb/ssb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/uaccess.h>
30#include <asm/io.h>
31#include <asm/irq.h>
32
Michael Buesch753f4922007-09-19 14:20:30 -070033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "b44.h"
35
36#define DRV_MODULE_NAME "b44"
37#define PFX DRV_MODULE_NAME ": "
Michael Buesch753f4922007-09-19 14:20:30 -070038#define DRV_MODULE_VERSION "2.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define B44_DEF_MSG_ENABLE \
41 (NETIF_MSG_DRV | \
42 NETIF_MSG_PROBE | \
43 NETIF_MSG_LINK | \
44 NETIF_MSG_TIMER | \
45 NETIF_MSG_IFDOWN | \
46 NETIF_MSG_IFUP | \
47 NETIF_MSG_RX_ERR | \
48 NETIF_MSG_TX_ERR)
49
50/* length of time before we decide the hardware is borked,
51 * and dev->tx_timeout() should be called to fix the problem
52 */
53#define B44_TX_TIMEOUT (5 * HZ)
54
55/* hardware minimum and maximum for a single frame's data payload */
56#define B44_MIN_MTU 60
57#define B44_MAX_MTU 1500
58
59#define B44_RX_RING_SIZE 512
60#define B44_DEF_RX_RING_PENDING 200
61#define B44_RX_RING_BYTES (sizeof(struct dma_desc) * \
62 B44_RX_RING_SIZE)
63#define B44_TX_RING_SIZE 512
64#define B44_DEF_TX_RING_PENDING (B44_TX_RING_SIZE - 1)
65#define B44_TX_RING_BYTES (sizeof(struct dma_desc) * \
66 B44_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68#define TX_RING_GAP(BP) \
69 (B44_TX_RING_SIZE - (BP)->tx_pending)
70#define TX_BUFFS_AVAIL(BP) \
71 (((BP)->tx_cons <= (BP)->tx_prod) ? \
72 (BP)->tx_cons + (BP)->tx_pending - (BP)->tx_prod : \
73 (BP)->tx_cons - (BP)->tx_prod - TX_RING_GAP(BP))
74#define NEXT_TX(N) (((N) + 1) & (B44_TX_RING_SIZE - 1))
75
Felix Fietkau4ca85792009-01-09 02:39:57 +000076#define RX_PKT_OFFSET (RX_HEADER_LEN + 2)
77#define RX_PKT_BUF_SZ (1536 + RX_PKT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/* minimum number of free TX descriptors required to wake up TX process */
80#define B44_TX_WAKEUP_THRESH (B44_TX_RING_SIZE / 4)
81
Gary Zambrano725ad802006-06-20 15:34:36 -070082/* b44 internal pattern match filter info */
83#define B44_PATTERN_BASE 0x400
84#define B44_PATTERN_SIZE 0x80
85#define B44_PMASK_BASE 0x600
86#define B44_PMASK_SIZE 0x10
87#define B44_MAX_PATTERNS 16
88#define B44_ETHIPV6UDP_HLEN 62
89#define B44_ETHIPV4UDP_HLEN 42
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static char version[] __devinitdata =
Michael Buesch753f4922007-09-19 14:20:30 -070092 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Michael Buesch753f4922007-09-19 14:20:30 -070094MODULE_AUTHOR("Felix Fietkau, Florian Schirmer, Pekka Pietikainen, David S. Miller");
95MODULE_DESCRIPTION("Broadcom 44xx/47xx 10/100 PCI ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070096MODULE_LICENSE("GPL");
97MODULE_VERSION(DRV_MODULE_VERSION);
98
99static int b44_debug = -1; /* -1 == use B44_DEF_MSG_ENABLE as value */
100module_param(b44_debug, int, 0);
101MODULE_PARM_DESC(b44_debug, "B44 bitmapped debugging message enable value");
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Michael Buesch753f4922007-09-19 14:20:30 -0700104#ifdef CONFIG_B44_PCI
105static const struct pci_device_id b44_pci_tbl[] = {
106 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401) },
107 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B0) },
108 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B1) },
109 { 0 } /* terminate list with empty entry */
110};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111MODULE_DEVICE_TABLE(pci, b44_pci_tbl);
112
Michael Buesch753f4922007-09-19 14:20:30 -0700113static struct pci_driver b44_pci_driver = {
114 .name = DRV_MODULE_NAME,
115 .id_table = b44_pci_tbl,
116};
117#endif /* CONFIG_B44_PCI */
118
119static const struct ssb_device_id b44_ssb_tbl[] = {
120 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_ETHERNET, SSB_ANY_REV),
121 SSB_DEVTABLE_END
122};
123MODULE_DEVICE_TABLE(ssb, b44_ssb_tbl);
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void b44_halt(struct b44 *);
126static void b44_init_rings(struct b44 *);
Michael Chan5fc7d612007-01-26 23:59:57 -0800127
128#define B44_FULL_RESET 1
129#define B44_FULL_RESET_SKIP_PHY 2
130#define B44_PARTIAL_RESET 3
Miguel Botónfedb0ee2008-01-01 01:17:54 +0100131#define B44_CHIP_RESET_FULL 4
132#define B44_CHIP_RESET_PARTIAL 5
Michael Chan5fc7d612007-01-26 23:59:57 -0800133
Gary Zambrano00e8b3a2006-06-20 15:34:26 -0700134static void b44_init_hw(struct b44 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
John W. Linville9f38c632005-10-18 21:30:59 -0400136static int dma_desc_align_mask;
137static int dma_desc_sync_size;
Michael Buesch753f4922007-09-19 14:20:30 -0700138static int instance;
John W. Linville9f38c632005-10-18 21:30:59 -0400139
Francois Romieu33539302005-11-07 01:51:34 +0100140static const char b44_gstrings[][ETH_GSTRING_LEN] = {
141#define _B44(x...) # x,
142B44_STAT_REG_DECLARE
143#undef _B44
144};
145
Michael Buesch753f4922007-09-19 14:20:30 -0700146static inline void b44_sync_dma_desc_for_device(struct ssb_device *sdev,
147 dma_addr_t dma_base,
148 unsigned long offset,
149 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400150{
Michael Bueschf2257632008-06-20 11:50:29 +0200151 ssb_dma_sync_single_range_for_device(sdev, dma_base,
152 offset & dma_desc_align_mask,
153 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400154}
155
Michael Buesch753f4922007-09-19 14:20:30 -0700156static inline void b44_sync_dma_desc_for_cpu(struct ssb_device *sdev,
157 dma_addr_t dma_base,
158 unsigned long offset,
159 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400160{
Michael Bueschf2257632008-06-20 11:50:29 +0200161 ssb_dma_sync_single_range_for_cpu(sdev, dma_base,
162 offset & dma_desc_align_mask,
163 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static inline unsigned long br32(const struct b44 *bp, unsigned long reg)
167{
Michael Buesch753f4922007-09-19 14:20:30 -0700168 return ssb_read32(bp->sdev, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169}
170
Jeff Garzik10badc22006-04-12 18:04:32 -0400171static inline void bw32(const struct b44 *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 unsigned long reg, unsigned long val)
173{
Michael Buesch753f4922007-09-19 14:20:30 -0700174 ssb_write32(bp->sdev, reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177static int b44_wait_bit(struct b44 *bp, unsigned long reg,
178 u32 bit, unsigned long timeout, const int clear)
179{
180 unsigned long i;
181
182 for (i = 0; i < timeout; i++) {
183 u32 val = br32(bp, reg);
184
185 if (clear && !(val & bit))
186 break;
187 if (!clear && (val & bit))
188 break;
189 udelay(10);
190 }
191 if (i == timeout) {
192 printk(KERN_ERR PFX "%s: BUG! Timeout waiting for bit %08x of register "
193 "%lx to %s.\n",
194 bp->dev->name,
195 bit, reg,
196 (clear ? "clear" : "set"));
197 return -ENODEV;
198 }
199 return 0;
200}
201
Michael Buesch753f4922007-09-19 14:20:30 -0700202static inline void __b44_cam_read(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 u32 val;
205
Michael Buesch753f4922007-09-19 14:20:30 -0700206 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_READ |
207 (index << CAM_CTRL_INDEX_SHIFT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Michael Buesch753f4922007-09-19 14:20:30 -0700209 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Michael Buesch753f4922007-09-19 14:20:30 -0700211 val = br32(bp, B44_CAM_DATA_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Michael Buesch753f4922007-09-19 14:20:30 -0700213 data[2] = (val >> 24) & 0xFF;
214 data[3] = (val >> 16) & 0xFF;
215 data[4] = (val >> 8) & 0xFF;
216 data[5] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Michael Buesch753f4922007-09-19 14:20:30 -0700218 val = br32(bp, B44_CAM_DATA_HI);
219
220 data[0] = (val >> 8) & 0xFF;
221 data[1] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Michael Buesch753f4922007-09-19 14:20:30 -0700224static inline void __b44_cam_write(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 u32 val;
227
228 val = ((u32) data[2]) << 24;
229 val |= ((u32) data[3]) << 16;
230 val |= ((u32) data[4]) << 8;
231 val |= ((u32) data[5]) << 0;
232 bw32(bp, B44_CAM_DATA_LO, val);
Jeff Garzik10badc22006-04-12 18:04:32 -0400233 val = (CAM_DATA_HI_VALID |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 (((u32) data[0]) << 8) |
235 (((u32) data[1]) << 0));
236 bw32(bp, B44_CAM_DATA_HI, val);
237 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_WRITE |
238 (index << CAM_CTRL_INDEX_SHIFT)));
Jeff Garzik10badc22006-04-12 18:04:32 -0400239 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242static inline void __b44_disable_ints(struct b44 *bp)
243{
244 bw32(bp, B44_IMASK, 0);
245}
246
247static void b44_disable_ints(struct b44 *bp)
248{
249 __b44_disable_ints(bp);
250
251 /* Flush posted writes. */
252 br32(bp, B44_IMASK);
253}
254
255static void b44_enable_ints(struct b44 *bp)
256{
257 bw32(bp, B44_IMASK, bp->imask);
258}
259
Michael Buesch753f4922007-09-19 14:20:30 -0700260static int __b44_readphy(struct b44 *bp, int phy_addr, int reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 int err;
263
264 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
265 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
266 (MDIO_OP_READ << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700267 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 (reg << MDIO_DATA_RA_SHIFT) |
269 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT)));
270 err = b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
271 *val = br32(bp, B44_MDIO_DATA) & MDIO_DATA_DATA;
272
273 return err;
274}
275
Michael Buesch753f4922007-09-19 14:20:30 -0700276static int __b44_writephy(struct b44 *bp, int phy_addr, int reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
279 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
280 (MDIO_OP_WRITE << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700281 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 (reg << MDIO_DATA_RA_SHIFT) |
283 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT) |
284 (val & MDIO_DATA_DATA)));
285 return b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
286}
287
Michael Buesch753f4922007-09-19 14:20:30 -0700288static inline int b44_readphy(struct b44 *bp, int reg, u32 *val)
289{
290 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
291 return 0;
292
293 return __b44_readphy(bp, bp->phy_addr, reg, val);
294}
295
296static inline int b44_writephy(struct b44 *bp, int reg, u32 val)
297{
298 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
299 return 0;
300
301 return __b44_writephy(bp, bp->phy_addr, reg, val);
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/* miilib interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static int b44_mii_read(struct net_device *dev, int phy_id, int location)
306{
307 u32 val;
308 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700309 int rc = __b44_readphy(bp, phy_id, location, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (rc)
311 return 0xffffffff;
312 return val;
313}
314
315static void b44_mii_write(struct net_device *dev, int phy_id, int location,
316 int val)
317{
318 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700319 __b44_writephy(bp, phy_id, location, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static int b44_phy_reset(struct b44 *bp)
323{
324 u32 val;
325 int err;
326
Michael Buesch753f4922007-09-19 14:20:30 -0700327 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 err = b44_writephy(bp, MII_BMCR, BMCR_RESET);
330 if (err)
331 return err;
332 udelay(100);
333 err = b44_readphy(bp, MII_BMCR, &val);
334 if (!err) {
335 if (val & BMCR_RESET) {
336 printk(KERN_ERR PFX "%s: PHY Reset would not complete.\n",
337 bp->dev->name);
338 err = -ENODEV;
339 }
340 }
341
342 return 0;
343}
344
345static void __b44_set_flow_ctrl(struct b44 *bp, u32 pause_flags)
346{
347 u32 val;
348
349 bp->flags &= ~(B44_FLAG_TX_PAUSE | B44_FLAG_RX_PAUSE);
350 bp->flags |= pause_flags;
351
352 val = br32(bp, B44_RXCONFIG);
353 if (pause_flags & B44_FLAG_RX_PAUSE)
354 val |= RXCONFIG_FLOW;
355 else
356 val &= ~RXCONFIG_FLOW;
357 bw32(bp, B44_RXCONFIG, val);
358
359 val = br32(bp, B44_MAC_FLOW);
360 if (pause_flags & B44_FLAG_TX_PAUSE)
361 val |= (MAC_FLOW_PAUSE_ENAB |
362 (0xc0 & MAC_FLOW_RX_HI_WATER));
363 else
364 val &= ~MAC_FLOW_PAUSE_ENAB;
365 bw32(bp, B44_MAC_FLOW, val);
366}
367
368static void b44_set_flow_ctrl(struct b44 *bp, u32 local, u32 remote)
369{
Jeff Garzik10badc22006-04-12 18:04:32 -0400370 u32 pause_enab = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700372 /* The driver supports only rx pause by default because
Jeff Garzik10badc22006-04-12 18:04:32 -0400373 the b44 mac tx pause mechanism generates excessive
374 pause frames.
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700375 Use ethtool to turn on b44 tx pause if necessary.
376 */
377 if ((local & ADVERTISE_PAUSE_CAP) &&
Jeff Garzik10badc22006-04-12 18:04:32 -0400378 (local & ADVERTISE_PAUSE_ASYM)){
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700379 if ((remote & LPA_PAUSE_ASYM) &&
380 !(remote & LPA_PAUSE_CAP))
381 pause_enab |= B44_FLAG_RX_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 }
383
384 __b44_set_flow_ctrl(bp, pause_enab);
385}
386
Michael Buesch753f4922007-09-19 14:20:30 -0700387#ifdef SSB_DRIVER_MIPS
388extern char *nvram_get(char *name);
389static void b44_wap54g10_workaround(struct b44 *bp)
390{
391 const char *str;
392 u32 val;
393 int err;
394
395 /*
396 * workaround for bad hardware design in Linksys WAP54G v1.0
397 * see https://dev.openwrt.org/ticket/146
398 * check and reset bit "isolate"
399 */
400 str = nvram_get("boardnum");
401 if (!str)
402 return;
403 if (simple_strtoul(str, NULL, 0) == 2) {
404 err = __b44_readphy(bp, 0, MII_BMCR, &val);
405 if (err)
406 goto error;
407 if (!(val & BMCR_ISOLATE))
408 return;
409 val &= ~BMCR_ISOLATE;
410 err = __b44_writephy(bp, 0, MII_BMCR, val);
411 if (err)
412 goto error;
413 }
414 return;
415error:
416 printk(KERN_WARNING PFX "PHY: cannot reset MII transceiver isolate bit.\n");
417}
418#else
419static inline void b44_wap54g10_workaround(struct b44 *bp)
420{
421}
422#endif
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static int b44_setup_phy(struct b44 *bp)
425{
426 u32 val;
427 int err;
428
Michael Buesch753f4922007-09-19 14:20:30 -0700429 b44_wap54g10_workaround(bp);
430
431 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
432 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if ((err = b44_readphy(bp, B44_MII_ALEDCTRL, &val)) != 0)
434 goto out;
435 if ((err = b44_writephy(bp, B44_MII_ALEDCTRL,
436 val & MII_ALEDCTRL_ALLMSK)) != 0)
437 goto out;
438 if ((err = b44_readphy(bp, B44_MII_TLEDCTRL, &val)) != 0)
439 goto out;
440 if ((err = b44_writephy(bp, B44_MII_TLEDCTRL,
441 val | MII_TLEDCTRL_ENABLE)) != 0)
442 goto out;
443
444 if (!(bp->flags & B44_FLAG_FORCE_LINK)) {
445 u32 adv = ADVERTISE_CSMA;
446
447 if (bp->flags & B44_FLAG_ADV_10HALF)
448 adv |= ADVERTISE_10HALF;
449 if (bp->flags & B44_FLAG_ADV_10FULL)
450 adv |= ADVERTISE_10FULL;
451 if (bp->flags & B44_FLAG_ADV_100HALF)
452 adv |= ADVERTISE_100HALF;
453 if (bp->flags & B44_FLAG_ADV_100FULL)
454 adv |= ADVERTISE_100FULL;
455
456 if (bp->flags & B44_FLAG_PAUSE_AUTO)
457 adv |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
458
459 if ((err = b44_writephy(bp, MII_ADVERTISE, adv)) != 0)
460 goto out;
461 if ((err = b44_writephy(bp, MII_BMCR, (BMCR_ANENABLE |
462 BMCR_ANRESTART))) != 0)
463 goto out;
464 } else {
465 u32 bmcr;
466
467 if ((err = b44_readphy(bp, MII_BMCR, &bmcr)) != 0)
468 goto out;
469 bmcr &= ~(BMCR_FULLDPLX | BMCR_ANENABLE | BMCR_SPEED100);
470 if (bp->flags & B44_FLAG_100_BASE_T)
471 bmcr |= BMCR_SPEED100;
472 if (bp->flags & B44_FLAG_FULL_DUPLEX)
473 bmcr |= BMCR_FULLDPLX;
474 if ((err = b44_writephy(bp, MII_BMCR, bmcr)) != 0)
475 goto out;
476
477 /* Since we will not be negotiating there is no safe way
478 * to determine if the link partner supports flow control
479 * or not. So just disable it completely in this case.
480 */
481 b44_set_flow_ctrl(bp, 0, 0);
482 }
483
484out:
485 return err;
486}
487
488static void b44_stats_update(struct b44 *bp)
489{
490 unsigned long reg;
491 u32 *val;
492
493 val = &bp->hw_stats.tx_good_octets;
494 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL) {
495 *val++ += br32(bp, reg);
496 }
Francois Romieu33539302005-11-07 01:51:34 +0100497
498 /* Pad */
499 reg += 8*4UL;
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL) {
502 *val++ += br32(bp, reg);
503 }
504}
505
506static void b44_link_report(struct b44 *bp)
507{
508 if (!netif_carrier_ok(bp->dev)) {
509 printk(KERN_INFO PFX "%s: Link is down.\n", bp->dev->name);
510 } else {
511 printk(KERN_INFO PFX "%s: Link is up at %d Mbps, %s duplex.\n",
512 bp->dev->name,
513 (bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10,
514 (bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
515
516 printk(KERN_INFO PFX "%s: Flow control is %s for TX and "
517 "%s for RX.\n",
518 bp->dev->name,
519 (bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
520 (bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
521 }
522}
523
524static void b44_check_phy(struct b44 *bp)
525{
526 u32 bmsr, aux;
527
Michael Buesch753f4922007-09-19 14:20:30 -0700528 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY) {
529 bp->flags |= B44_FLAG_100_BASE_T;
530 bp->flags |= B44_FLAG_FULL_DUPLEX;
531 if (!netif_carrier_ok(bp->dev)) {
532 u32 val = br32(bp, B44_TX_CTRL);
533 val |= TX_CTRL_DUPLEX;
534 bw32(bp, B44_TX_CTRL, val);
535 netif_carrier_on(bp->dev);
536 b44_link_report(bp);
537 }
538 return;
539 }
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (!b44_readphy(bp, MII_BMSR, &bmsr) &&
542 !b44_readphy(bp, B44_MII_AUXCTRL, &aux) &&
543 (bmsr != 0xffff)) {
544 if (aux & MII_AUXCTRL_SPEED)
545 bp->flags |= B44_FLAG_100_BASE_T;
546 else
547 bp->flags &= ~B44_FLAG_100_BASE_T;
548 if (aux & MII_AUXCTRL_DUPLEX)
549 bp->flags |= B44_FLAG_FULL_DUPLEX;
550 else
551 bp->flags &= ~B44_FLAG_FULL_DUPLEX;
552
553 if (!netif_carrier_ok(bp->dev) &&
554 (bmsr & BMSR_LSTATUS)) {
555 u32 val = br32(bp, B44_TX_CTRL);
556 u32 local_adv, remote_adv;
557
558 if (bp->flags & B44_FLAG_FULL_DUPLEX)
559 val |= TX_CTRL_DUPLEX;
560 else
561 val &= ~TX_CTRL_DUPLEX;
562 bw32(bp, B44_TX_CTRL, val);
563
564 if (!(bp->flags & B44_FLAG_FORCE_LINK) &&
565 !b44_readphy(bp, MII_ADVERTISE, &local_adv) &&
566 !b44_readphy(bp, MII_LPA, &remote_adv))
567 b44_set_flow_ctrl(bp, local_adv, remote_adv);
568
569 /* Link now up */
570 netif_carrier_on(bp->dev);
571 b44_link_report(bp);
572 } else if (netif_carrier_ok(bp->dev) && !(bmsr & BMSR_LSTATUS)) {
573 /* Link now down */
574 netif_carrier_off(bp->dev);
575 b44_link_report(bp);
576 }
577
578 if (bmsr & BMSR_RFAULT)
579 printk(KERN_WARNING PFX "%s: Remote fault detected in PHY\n",
580 bp->dev->name);
581 if (bmsr & BMSR_JCD)
582 printk(KERN_WARNING PFX "%s: Jabber detected in PHY\n",
583 bp->dev->name);
584 }
585}
586
587static void b44_timer(unsigned long __opaque)
588{
589 struct b44 *bp = (struct b44 *) __opaque;
590
591 spin_lock_irq(&bp->lock);
592
593 b44_check_phy(bp);
594
595 b44_stats_update(bp);
596
597 spin_unlock_irq(&bp->lock);
598
Stephen Hemmingera72a8172007-06-04 13:25:37 -0700599 mod_timer(&bp->timer, round_jiffies(jiffies + HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602static void b44_tx(struct b44 *bp)
603{
604 u32 cur, cons;
605
606 cur = br32(bp, B44_DMATX_STAT) & DMATX_STAT_CDMASK;
607 cur /= sizeof(struct dma_desc);
608
609 /* XXX needs updating when NETIF_F_SG is supported */
610 for (cons = bp->tx_cons; cons != cur; cons = NEXT_TX(cons)) {
611 struct ring_info *rp = &bp->tx_buffers[cons];
612 struct sk_buff *skb = rp->skb;
613
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200614 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Michael Bueschf2257632008-06-20 11:50:29 +0200616 ssb_dma_unmap_single(bp->sdev,
617 rp->mapping,
618 skb->len,
619 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 rp->skb = NULL;
621 dev_kfree_skb_irq(skb);
622 }
623
624 bp->tx_cons = cons;
625 if (netif_queue_stopped(bp->dev) &&
626 TX_BUFFS_AVAIL(bp) > B44_TX_WAKEUP_THRESH)
627 netif_wake_queue(bp->dev);
628
629 bw32(bp, B44_GPTIMER, 0);
630}
631
632/* Works like this. This chip writes a 'struct rx_header" 30 bytes
633 * before the DMA address you give it. So we allocate 30 more bytes
634 * for the RX buffer, DMA map all of it, skb_reserve the 30 bytes, then
635 * point the chip at 30 bytes past where the rx_header will go.
636 */
637static int b44_alloc_rx_skb(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
638{
639 struct dma_desc *dp;
640 struct ring_info *src_map, *map;
641 struct rx_header *rh;
642 struct sk_buff *skb;
643 dma_addr_t mapping;
644 int dest_idx;
645 u32 ctrl;
646
647 src_map = NULL;
648 if (src_idx >= 0)
649 src_map = &bp->rx_buffers[src_idx];
650 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
651 map = &bp->rx_buffers[dest_idx];
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700652 skb = netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (skb == NULL)
654 return -ENOMEM;
655
Michael Bueschf2257632008-06-20 11:50:29 +0200656 mapping = ssb_dma_map_single(bp->sdev, skb->data,
657 RX_PKT_BUF_SZ,
658 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /* Hardware bug work-around, the chip is unable to do PCI DMA
661 to/from anything above 1GB :-( */
Michael Bueschf2257632008-06-20 11:50:29 +0200662 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Gary Zambrano97db9ee72007-02-16 13:27:23 -0800663 mapping + RX_PKT_BUF_SZ > DMA_30BIT_MASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /* Sigh... */
Michael Bueschf2257632008-06-20 11:50:29 +0200665 if (!ssb_dma_mapping_error(bp->sdev, mapping))
666 ssb_dma_unmap_single(bp->sdev, mapping,
667 RX_PKT_BUF_SZ, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 dev_kfree_skb_any(skb);
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700669 skb = __netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ, GFP_ATOMIC|GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (skb == NULL)
671 return -ENOMEM;
Michael Bueschf2257632008-06-20 11:50:29 +0200672 mapping = ssb_dma_map_single(bp->sdev, skb->data,
673 RX_PKT_BUF_SZ,
674 DMA_FROM_DEVICE);
675 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Gary Zambrano97db9ee72007-02-16 13:27:23 -0800676 mapping + RX_PKT_BUF_SZ > DMA_30BIT_MASK) {
Michael Bueschf2257632008-06-20 11:50:29 +0200677 if (!ssb_dma_mapping_error(bp->sdev, mapping))
678 ssb_dma_unmap_single(bp->sdev, mapping, RX_PKT_BUF_SZ,DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 dev_kfree_skb_any(skb);
680 return -ENOMEM;
681 }
682 }
683
Stephen Hemminger72f48612007-06-04 13:25:39 -0700684 rh = (struct rx_header *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 rh->len = 0;
687 rh->flags = 0;
688
689 map->skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700690 map->mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 if (src_map != NULL)
693 src_map->skb = NULL;
694
Felix Fietkau4ca85792009-01-09 02:39:57 +0000695 ctrl = (DESC_CTRL_LEN & RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 if (dest_idx == (B44_RX_RING_SIZE - 1))
697 ctrl |= DESC_CTRL_EOT;
698
699 dp = &bp->rx_ring[dest_idx];
700 dp->ctrl = cpu_to_le32(ctrl);
Felix Fietkau4ca85792009-01-09 02:39:57 +0000701 dp->addr = cpu_to_le32((u32) mapping + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
John W. Linville9f38c632005-10-18 21:30:59 -0400703 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700704 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
705 dest_idx * sizeof(dp),
706 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return RX_PKT_BUF_SZ;
709}
710
711static void b44_recycle_rx(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
712{
713 struct dma_desc *src_desc, *dest_desc;
714 struct ring_info *src_map, *dest_map;
715 struct rx_header *rh;
716 int dest_idx;
Al Viroa7bed27d2007-01-29 15:36:54 -0500717 __le32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
720 dest_desc = &bp->rx_ring[dest_idx];
721 dest_map = &bp->rx_buffers[dest_idx];
722 src_desc = &bp->rx_ring[src_idx];
723 src_map = &bp->rx_buffers[src_idx];
724
725 dest_map->skb = src_map->skb;
726 rh = (struct rx_header *) src_map->skb->data;
727 rh->len = 0;
728 rh->flags = 0;
Michael Buesch753f4922007-09-19 14:20:30 -0700729 dest_map->mapping = src_map->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
John W. Linville9f38c632005-10-18 21:30:59 -0400731 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700732 b44_sync_dma_desc_for_cpu(bp->sdev, bp->rx_ring_dma,
733 src_idx * sizeof(src_desc),
734 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 ctrl = src_desc->ctrl;
737 if (dest_idx == (B44_RX_RING_SIZE - 1))
738 ctrl |= cpu_to_le32(DESC_CTRL_EOT);
739 else
740 ctrl &= cpu_to_le32(~DESC_CTRL_EOT);
741
742 dest_desc->ctrl = ctrl;
743 dest_desc->addr = src_desc->addr;
John W. Linville9f38c632005-10-18 21:30:59 -0400744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 src_map->skb = NULL;
746
John W. Linville9f38c632005-10-18 21:30:59 -0400747 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700748 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
749 dest_idx * sizeof(dest_desc),
750 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400751
Michael Bueschf2257632008-06-20 11:50:29 +0200752 ssb_dma_sync_single_for_device(bp->sdev, le32_to_cpu(src_desc->addr),
753 RX_PKT_BUF_SZ,
754 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757static int b44_rx(struct b44 *bp, int budget)
758{
759 int received;
760 u32 cons, prod;
761
762 received = 0;
763 prod = br32(bp, B44_DMARX_STAT) & DMARX_STAT_CDMASK;
764 prod /= sizeof(struct dma_desc);
765 cons = bp->rx_cons;
766
767 while (cons != prod && budget > 0) {
768 struct ring_info *rp = &bp->rx_buffers[cons];
769 struct sk_buff *skb = rp->skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700770 dma_addr_t map = rp->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct rx_header *rh;
772 u16 len;
773
Michael Bueschf2257632008-06-20 11:50:29 +0200774 ssb_dma_sync_single_for_cpu(bp->sdev, map,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 RX_PKT_BUF_SZ,
Michael Buesch753f4922007-09-19 14:20:30 -0700776 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 rh = (struct rx_header *) skb->data;
Al Viroa7bed27d2007-01-29 15:36:54 -0500778 len = le16_to_cpu(rh->len);
Stephen Hemminger72f48612007-06-04 13:25:39 -0700779 if ((len > (RX_PKT_BUF_SZ - RX_PKT_OFFSET)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 (rh->flags & cpu_to_le16(RX_FLAG_ERRORS))) {
781 drop_it:
782 b44_recycle_rx(bp, cons, bp->rx_prod);
783 drop_it_no_recycle:
784 bp->stats.rx_dropped++;
785 goto next_pkt;
786 }
787
788 if (len == 0) {
789 int i = 0;
790
791 do {
792 udelay(2);
793 barrier();
Al Viroa7bed27d2007-01-29 15:36:54 -0500794 len = le16_to_cpu(rh->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 } while (len == 0 && i++ < 5);
796 if (len == 0)
797 goto drop_it;
798 }
799
800 /* Omit CRC. */
801 len -= 4;
802
803 if (len > RX_COPY_THRESHOLD) {
804 int skb_size;
805 skb_size = b44_alloc_rx_skb(bp, cons, bp->rx_prod);
806 if (skb_size < 0)
807 goto drop_it;
Michael Bueschf2257632008-06-20 11:50:29 +0200808 ssb_dma_unmap_single(bp->sdev, map,
809 skb_size, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 /* Leave out rx_header */
Felix Fietkau4ca85792009-01-09 02:39:57 +0000811 skb_put(skb, len + RX_PKT_OFFSET);
812 skb_pull(skb, RX_PKT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 } else {
814 struct sk_buff *copy_skb;
815
816 b44_recycle_rx(bp, cons, bp->rx_prod);
817 copy_skb = dev_alloc_skb(len + 2);
818 if (copy_skb == NULL)
819 goto drop_it_no_recycle;
820
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 skb_reserve(copy_skb, 2);
822 skb_put(copy_skb, len);
823 /* DMA sync done above, copy just the actual packet */
Stephen Hemminger72f48612007-06-04 13:25:39 -0700824 skb_copy_from_linear_data_offset(skb, RX_PKT_OFFSET,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300825 copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 skb = copy_skb;
827 }
828 skb->ip_summed = CHECKSUM_NONE;
829 skb->protocol = eth_type_trans(skb, bp->dev);
830 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 received++;
832 budget--;
833 next_pkt:
834 bp->rx_prod = (bp->rx_prod + 1) &
835 (B44_RX_RING_SIZE - 1);
836 cons = (cons + 1) & (B44_RX_RING_SIZE - 1);
837 }
838
839 bp->rx_cons = cons;
840 bw32(bp, B44_DMARX_PTR, cons * sizeof(struct dma_desc));
841
842 return received;
843}
844
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700845static int b44_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700847 struct b44 *bp = container_of(napi, struct b44, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700848 int work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 spin_lock_irq(&bp->lock);
851
852 if (bp->istat & (ISTAT_TX | ISTAT_TO)) {
853 /* spin_lock(&bp->tx_lock); */
854 b44_tx(bp);
855 /* spin_unlock(&bp->tx_lock); */
856 }
857 spin_unlock_irq(&bp->lock);
858
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700859 work_done = 0;
860 if (bp->istat & ISTAT_RX)
861 work_done += b44_rx(bp, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863 if (bp->istat & ISTAT_ERRORS) {
Francois Romieud15e9c42006-12-17 23:03:15 +0100864 unsigned long flags;
865
866 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 b44_halt(bp);
868 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800869 b44_init_hw(bp, B44_FULL_RESET_SKIP_PHY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 netif_wake_queue(bp->dev);
Francois Romieud15e9c42006-12-17 23:03:15 +0100871 spin_unlock_irqrestore(&bp->lock, flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700872 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700875 if (work_done < budget) {
Neil Horman908a7a12008-12-22 20:43:12 -0800876 netif_rx_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 b44_enable_ints(bp);
878 }
879
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700880 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
David Howells7d12e782006-10-05 14:55:46 +0100883static irqreturn_t b44_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
885 struct net_device *dev = dev_id;
886 struct b44 *bp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 u32 istat, imask;
888 int handled = 0;
889
Francois Romieu65b984f2005-11-07 01:52:06 +0100890 spin_lock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 istat = br32(bp, B44_ISTAT);
893 imask = br32(bp, B44_IMASK);
894
Johannes Berge78181f2006-11-06 23:17:20 +0100895 /* The interrupt mask register controls which interrupt bits
896 * will actually raise an interrupt to the CPU when set by hw/firmware,
897 * but doesn't mask off the bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 */
899 istat &= imask;
900 if (istat) {
901 handled = 1;
Francois Romieuba5eec92005-11-08 23:37:12 +0100902
903 if (unlikely(!netif_running(dev))) {
904 printk(KERN_INFO "%s: late interrupt.\n", dev->name);
905 goto irq_ack;
906 }
907
Neil Horman908a7a12008-12-22 20:43:12 -0800908 if (netif_rx_schedule_prep(&bp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 /* NOTE: These writes are posted by the readback of
910 * the ISTAT register below.
911 */
912 bp->istat = istat;
913 __b44_disable_ints(bp);
Neil Horman908a7a12008-12-22 20:43:12 -0800914 __netif_rx_schedule(&bp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 } else {
916 printk(KERN_ERR PFX "%s: Error, poll already scheduled\n",
917 dev->name);
918 }
919
Francois Romieuba5eec92005-11-08 23:37:12 +0100920irq_ack:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 bw32(bp, B44_ISTAT, istat);
922 br32(bp, B44_ISTAT);
923 }
Francois Romieu65b984f2005-11-07 01:52:06 +0100924 spin_unlock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return IRQ_RETVAL(handled);
926}
927
928static void b44_tx_timeout(struct net_device *dev)
929{
930 struct b44 *bp = netdev_priv(dev);
931
932 printk(KERN_ERR PFX "%s: transmit timed out, resetting\n",
933 dev->name);
934
935 spin_lock_irq(&bp->lock);
936
937 b44_halt(bp);
938 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800939 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 spin_unlock_irq(&bp->lock);
942
943 b44_enable_ints(bp);
944
945 netif_wake_queue(dev);
946}
947
948static int b44_start_xmit(struct sk_buff *skb, struct net_device *dev)
949{
950 struct b44 *bp = netdev_priv(dev);
Francois Romieuc7193692005-11-07 01:50:03 +0100951 int rc = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 dma_addr_t mapping;
953 u32 len, entry, ctrl;
954
955 len = skb->len;
956 spin_lock_irq(&bp->lock);
957
958 /* This is a hard error, log it. */
959 if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) {
960 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n",
962 dev->name);
Francois Romieuc7193692005-11-07 01:50:03 +0100963 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965
Michael Bueschf2257632008-06-20 11:50:29 +0200966 mapping = ssb_dma_map_single(bp->sdev, skb->data, len, DMA_TO_DEVICE);
967 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_30BIT_MASK) {
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700968 struct sk_buff *bounce_skb;
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 /* Chip can't handle DMA to/from >1GB, use bounce buffer */
Michael Bueschf2257632008-06-20 11:50:29 +0200971 if (!ssb_dma_mapping_error(bp->sdev, mapping))
972 ssb_dma_unmap_single(bp->sdev, mapping, len,
973 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700975 bounce_skb = __dev_alloc_skb(len, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!bounce_skb)
Francois Romieuc7193692005-11-07 01:50:03 +0100977 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Michael Bueschf2257632008-06-20 11:50:29 +0200979 mapping = ssb_dma_map_single(bp->sdev, bounce_skb->data,
980 len, DMA_TO_DEVICE);
981 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_30BIT_MASK) {
982 if (!ssb_dma_mapping_error(bp->sdev, mapping))
983 ssb_dma_unmap_single(bp->sdev, mapping,
984 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 dev_kfree_skb_any(bounce_skb);
Francois Romieuc7193692005-11-07 01:50:03 +0100986 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
988
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700989 skb_copy_from_linear_data(skb, skb_put(bounce_skb, len), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 dev_kfree_skb_any(skb);
991 skb = bounce_skb;
992 }
993
994 entry = bp->tx_prod;
995 bp->tx_buffers[entry].skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700996 bp->tx_buffers[entry].mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 ctrl = (len & DESC_CTRL_LEN);
999 ctrl |= DESC_CTRL_IOC | DESC_CTRL_SOF | DESC_CTRL_EOF;
1000 if (entry == (B44_TX_RING_SIZE - 1))
1001 ctrl |= DESC_CTRL_EOT;
1002
1003 bp->tx_ring[entry].ctrl = cpu_to_le32(ctrl);
1004 bp->tx_ring[entry].addr = cpu_to_le32((u32) mapping+bp->dma_offset);
1005
John W. Linville9f38c632005-10-18 21:30:59 -04001006 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -07001007 b44_sync_dma_desc_for_device(bp->sdev, bp->tx_ring_dma,
1008 entry * sizeof(bp->tx_ring[0]),
1009 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 entry = NEXT_TX(entry);
1012
1013 bp->tx_prod = entry;
1014
1015 wmb();
1016
1017 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1018 if (bp->flags & B44_FLAG_BUGGY_TXPTR)
1019 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1020 if (bp->flags & B44_FLAG_REORDER_BUG)
1021 br32(bp, B44_DMATX_PTR);
1022
1023 if (TX_BUFFS_AVAIL(bp) < 1)
1024 netif_stop_queue(dev);
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 dev->trans_start = jiffies;
1027
Francois Romieuc7193692005-11-07 01:50:03 +01001028out_unlock:
1029 spin_unlock_irq(&bp->lock);
1030
1031 return rc;
1032
1033err_out:
1034 rc = NETDEV_TX_BUSY;
1035 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
1038static int b44_change_mtu(struct net_device *dev, int new_mtu)
1039{
1040 struct b44 *bp = netdev_priv(dev);
1041
1042 if (new_mtu < B44_MIN_MTU || new_mtu > B44_MAX_MTU)
1043 return -EINVAL;
1044
1045 if (!netif_running(dev)) {
1046 /* We'll just catch it later when the
1047 * device is up'd.
1048 */
1049 dev->mtu = new_mtu;
1050 return 0;
1051 }
1052
1053 spin_lock_irq(&bp->lock);
1054 b44_halt(bp);
1055 dev->mtu = new_mtu;
1056 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001057 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 spin_unlock_irq(&bp->lock);
1059
1060 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063}
1064
1065/* Free up pending packets in all rx/tx rings.
1066 *
1067 * The chip has been shut down and the driver detached from
1068 * the networking, so no interrupts or new tx packets will
1069 * end up in the driver. bp->lock is not held and we are not
1070 * in an interrupt context and thus may sleep.
1071 */
1072static void b44_free_rings(struct b44 *bp)
1073{
1074 struct ring_info *rp;
1075 int i;
1076
1077 for (i = 0; i < B44_RX_RING_SIZE; i++) {
1078 rp = &bp->rx_buffers[i];
1079
1080 if (rp->skb == NULL)
1081 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001082 ssb_dma_unmap_single(bp->sdev, rp->mapping, RX_PKT_BUF_SZ,
1083 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 dev_kfree_skb_any(rp->skb);
1085 rp->skb = NULL;
1086 }
1087
1088 /* XXX needs changes once NETIF_F_SG is set... */
1089 for (i = 0; i < B44_TX_RING_SIZE; i++) {
1090 rp = &bp->tx_buffers[i];
1091
1092 if (rp->skb == NULL)
1093 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001094 ssb_dma_unmap_single(bp->sdev, rp->mapping, rp->skb->len,
1095 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 dev_kfree_skb_any(rp->skb);
1097 rp->skb = NULL;
1098 }
1099}
1100
1101/* Initialize tx/rx rings for packet processing.
1102 *
1103 * The chip has been shut down and the driver detached from
1104 * the networking, so no interrupts or new tx packets will
Francois Romieu874a6212005-11-07 01:50:46 +01001105 * end up in the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 */
1107static void b44_init_rings(struct b44 *bp)
1108{
1109 int i;
1110
1111 b44_free_rings(bp);
1112
1113 memset(bp->rx_ring, 0, B44_RX_RING_BYTES);
1114 memset(bp->tx_ring, 0, B44_TX_RING_BYTES);
1115
John W. Linville9f38c632005-10-18 21:30:59 -04001116 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001117 ssb_dma_sync_single_for_device(bp->sdev, bp->rx_ring_dma,
1118 DMA_TABLE_BYTES,
1119 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001120
1121 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001122 ssb_dma_sync_single_for_device(bp->sdev, bp->tx_ring_dma,
1123 DMA_TABLE_BYTES,
1124 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 for (i = 0; i < bp->rx_pending; i++) {
1127 if (b44_alloc_rx_skb(bp, -1, i) < 0)
1128 break;
1129 }
1130}
1131
1132/*
1133 * Must not be invoked with interrupt sources disabled and
1134 * the hardware shutdown down.
1135 */
1136static void b44_free_consistent(struct b44 *bp)
1137{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001138 kfree(bp->rx_buffers);
1139 bp->rx_buffers = NULL;
1140 kfree(bp->tx_buffers);
1141 bp->tx_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (bp->rx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001143 if (bp->flags & B44_FLAG_RX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001144 ssb_dma_unmap_single(bp->sdev, bp->rx_ring_dma,
1145 DMA_TABLE_BYTES,
1146 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001147 kfree(bp->rx_ring);
1148 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001149 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1150 bp->rx_ring, bp->rx_ring_dma,
1151 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 bp->rx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001153 bp->flags &= ~B44_FLAG_RX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
1155 if (bp->tx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001156 if (bp->flags & B44_FLAG_TX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001157 ssb_dma_unmap_single(bp->sdev, bp->tx_ring_dma,
1158 DMA_TABLE_BYTES,
1159 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001160 kfree(bp->tx_ring);
1161 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001162 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1163 bp->tx_ring, bp->tx_ring_dma,
1164 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 bp->tx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001166 bp->flags &= ~B44_FLAG_TX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
1168}
1169
1170/*
1171 * Must not be invoked with interrupt sources disabled and
1172 * the hardware shutdown down. Can sleep.
1173 */
Michael Buesch753f4922007-09-19 14:20:30 -07001174static int b44_alloc_consistent(struct b44 *bp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 int size;
1177
1178 size = B44_RX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001179 bp->rx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 if (!bp->rx_buffers)
1181 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 size = B44_TX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001184 bp->tx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 if (!bp->tx_buffers)
1186 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 size = DMA_TABLE_BYTES;
Michael Bueschf2257632008-06-20 11:50:29 +02001189 bp->rx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->rx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001190 if (!bp->rx_ring) {
1191 /* Allocation may have failed due to pci_alloc_consistent
1192 insisting on use of GFP_DMA, which is more restrictive
1193 than necessary... */
1194 struct dma_desc *rx_ring;
1195 dma_addr_t rx_ring_dma;
1196
Michael Buesch753f4922007-09-19 14:20:30 -07001197 rx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001198 if (!rx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001199 goto out_err;
1200
Michael Bueschf2257632008-06-20 11:50:29 +02001201 rx_ring_dma = ssb_dma_map_single(bp->sdev, rx_ring,
1202 DMA_TABLE_BYTES,
1203 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001204
Michael Bueschf2257632008-06-20 11:50:29 +02001205 if (ssb_dma_mapping_error(bp->sdev, rx_ring_dma) ||
Gary Zambrano97db9ee72007-02-16 13:27:23 -08001206 rx_ring_dma + size > DMA_30BIT_MASK) {
John W. Linville9f38c632005-10-18 21:30:59 -04001207 kfree(rx_ring);
1208 goto out_err;
1209 }
1210
1211 bp->rx_ring = rx_ring;
1212 bp->rx_ring_dma = rx_ring_dma;
1213 bp->flags |= B44_FLAG_RX_RING_HACK;
1214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Michael Bueschf2257632008-06-20 11:50:29 +02001216 bp->tx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->tx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001217 if (!bp->tx_ring) {
Michael Bueschf2257632008-06-20 11:50:29 +02001218 /* Allocation may have failed due to ssb_dma_alloc_consistent
John W. Linville9f38c632005-10-18 21:30:59 -04001219 insisting on use of GFP_DMA, which is more restrictive
1220 than necessary... */
1221 struct dma_desc *tx_ring;
1222 dma_addr_t tx_ring_dma;
1223
Michael Buesch753f4922007-09-19 14:20:30 -07001224 tx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001225 if (!tx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001226 goto out_err;
1227
Michael Bueschf2257632008-06-20 11:50:29 +02001228 tx_ring_dma = ssb_dma_map_single(bp->sdev, tx_ring,
Michael Buesch753f4922007-09-19 14:20:30 -07001229 DMA_TABLE_BYTES,
1230 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001231
Michael Bueschf2257632008-06-20 11:50:29 +02001232 if (ssb_dma_mapping_error(bp->sdev, tx_ring_dma) ||
Gary Zambrano97db9ee72007-02-16 13:27:23 -08001233 tx_ring_dma + size > DMA_30BIT_MASK) {
John W. Linville9f38c632005-10-18 21:30:59 -04001234 kfree(tx_ring);
1235 goto out_err;
1236 }
1237
1238 bp->tx_ring = tx_ring;
1239 bp->tx_ring_dma = tx_ring_dma;
1240 bp->flags |= B44_FLAG_TX_RING_HACK;
1241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
1243 return 0;
1244
1245out_err:
1246 b44_free_consistent(bp);
1247 return -ENOMEM;
1248}
1249
1250/* bp->lock is held. */
1251static void b44_clear_stats(struct b44 *bp)
1252{
1253 unsigned long reg;
1254
1255 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
1256 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL)
1257 br32(bp, reg);
1258 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL)
1259 br32(bp, reg);
1260}
1261
1262/* bp->lock is held. */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001263static void b44_chip_reset(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Michael Buesch753f4922007-09-19 14:20:30 -07001265 struct ssb_device *sdev = bp->sdev;
1266
1267 if (ssb_device_is_enabled(bp->sdev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 bw32(bp, B44_RCV_LAZY, 0);
1269 bw32(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE);
Gary Zambrano40ee8c72007-02-16 13:27:27 -08001270 b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 200, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 bw32(bp, B44_DMATX_CTRL, 0);
1272 bp->tx_prod = bp->tx_cons = 0;
1273 if (br32(bp, B44_DMARX_STAT) & DMARX_STAT_EMASK) {
1274 b44_wait_bit(bp, B44_DMARX_STAT, DMARX_STAT_SIDLE,
1275 100, 0);
1276 }
1277 bw32(bp, B44_DMARX_CTRL, 0);
1278 bp->rx_prod = bp->rx_cons = 0;
Michael Buesch753f4922007-09-19 14:20:30 -07001279 } else
1280 ssb_pcicore_dev_irqvecs_enable(&sdev->bus->pcicore, sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Michael Buesch753f4922007-09-19 14:20:30 -07001282 ssb_device_enable(bp->sdev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 b44_clear_stats(bp);
1284
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001285 /*
1286 * Don't enable PHY if we are doing a partial reset
1287 * we are probably going to power down
1288 */
1289 if (reset_kind == B44_CHIP_RESET_PARTIAL)
1290 return;
1291
Michael Buesch753f4922007-09-19 14:20:30 -07001292 switch (sdev->bus->bustype) {
1293 case SSB_BUSTYPE_SSB:
1294 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
1295 (((ssb_clockspeed(sdev->bus) + (B44_MDC_RATIO / 2)) / B44_MDC_RATIO)
1296 & MDIO_CTRL_MAXF_MASK)));
1297 break;
1298 case SSB_BUSTYPE_PCI:
1299 case SSB_BUSTYPE_PCMCIA:
1300 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
1301 (0x0d & MDIO_CTRL_MAXF_MASK)));
1302 break;
1303 }
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 br32(bp, B44_MDIO_CTRL);
1306
1307 if (!(br32(bp, B44_DEVCTRL) & DEVCTRL_IPP)) {
1308 bw32(bp, B44_ENET_CTRL, ENET_CTRL_EPSEL);
1309 br32(bp, B44_ENET_CTRL);
1310 bp->flags &= ~B44_FLAG_INTERNAL_PHY;
1311 } else {
1312 u32 val = br32(bp, B44_DEVCTRL);
1313
1314 if (val & DEVCTRL_EPR) {
1315 bw32(bp, B44_DEVCTRL, (val & ~DEVCTRL_EPR));
1316 br32(bp, B44_DEVCTRL);
1317 udelay(100);
1318 }
1319 bp->flags |= B44_FLAG_INTERNAL_PHY;
1320 }
1321}
1322
1323/* bp->lock is held. */
1324static void b44_halt(struct b44 *bp)
1325{
1326 b44_disable_ints(bp);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001327 /* reset PHY */
1328 b44_phy_reset(bp);
1329 /* power down PHY */
1330 printk(KERN_INFO PFX "%s: powering down PHY\n", bp->dev->name);
1331 bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN);
1332 /* now reset the chip, but without enabling the MAC&PHY
1333 * part of it. This has to be done _after_ we shut down the PHY */
1334 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
1337/* bp->lock is held. */
1338static void __b44_set_mac_addr(struct b44 *bp)
1339{
1340 bw32(bp, B44_CAM_CTRL, 0);
1341 if (!(bp->dev->flags & IFF_PROMISC)) {
1342 u32 val;
1343
1344 __b44_cam_write(bp, bp->dev->dev_addr, 0);
1345 val = br32(bp, B44_CAM_CTRL);
1346 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1347 }
1348}
1349
1350static int b44_set_mac_addr(struct net_device *dev, void *p)
1351{
1352 struct b44 *bp = netdev_priv(dev);
1353 struct sockaddr *addr = p;
Michael Buesch753f4922007-09-19 14:20:30 -07001354 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 if (netif_running(dev))
1357 return -EBUSY;
1358
Gary Zambrano391fc092006-03-28 14:57:38 -08001359 if (!is_valid_ether_addr(addr->sa_data))
1360 return -EINVAL;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1363
1364 spin_lock_irq(&bp->lock);
Michael Buesch753f4922007-09-19 14:20:30 -07001365
1366 val = br32(bp, B44_RXCONFIG);
1367 if (!(val & RXCONFIG_CAM_ABSENT))
1368 __b44_set_mac_addr(bp);
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 spin_unlock_irq(&bp->lock);
1371
1372 return 0;
1373}
1374
1375/* Called at device open time to get the chip ready for
1376 * packet processing. Invoked with bp->lock held.
1377 */
1378static void __b44_set_rx_mode(struct net_device *);
Michael Chan5fc7d612007-01-26 23:59:57 -08001379static void b44_init_hw(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 u32 val;
1382
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001383 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Michael Chan5fc7d612007-01-26 23:59:57 -08001384 if (reset_kind == B44_FULL_RESET) {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001385 b44_phy_reset(bp);
1386 b44_setup_phy(bp);
1387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /* Enable CRC32, set proper LED modes and power on PHY */
1390 bw32(bp, B44_MAC_CTRL, MAC_CTRL_CRC32_ENAB | MAC_CTRL_PHY_LEDCTRL);
1391 bw32(bp, B44_RCV_LAZY, (1 << RCV_LAZY_FC_SHIFT));
1392
1393 /* This sets the MAC address too. */
1394 __b44_set_rx_mode(bp->dev);
1395
1396 /* MTU + eth header + possible VLAN tag + struct rx_header */
1397 bw32(bp, B44_RXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1398 bw32(bp, B44_TXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1399
1400 bw32(bp, B44_TX_WMARK, 56); /* XXX magic */
Michael Chan5fc7d612007-01-26 23:59:57 -08001401 if (reset_kind == B44_PARTIAL_RESET) {
1402 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001403 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Michael Chan5fc7d612007-01-26 23:59:57 -08001404 } else {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001405 bw32(bp, B44_DMATX_CTRL, DMATX_CTRL_ENABLE);
1406 bw32(bp, B44_DMATX_ADDR, bp->tx_ring_dma + bp->dma_offset);
1407 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001408 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001409 bw32(bp, B44_DMARX_ADDR, bp->rx_ring_dma + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001411 bw32(bp, B44_DMARX_PTR, bp->rx_pending);
1412 bp->rx_prod = bp->rx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001414 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 val = br32(bp, B44_ENET_CTRL);
1418 bw32(bp, B44_ENET_CTRL, (val | ENET_CTRL_ENABLE));
1419}
1420
1421static int b44_open(struct net_device *dev)
1422{
1423 struct b44 *bp = netdev_priv(dev);
1424 int err;
1425
Michael Buesch753f4922007-09-19 14:20:30 -07001426 err = b44_alloc_consistent(bp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (err)
Francois Romieu6c2f4262005-11-07 01:52:57 +01001428 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001430 napi_enable(&bp->napi);
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001433 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
John W. Linvillee254e9b2005-06-08 15:11:57 -04001435 b44_check_phy(bp);
1436
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001437 err = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001438 if (unlikely(err < 0)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001439 napi_disable(&bp->napi);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001440 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001441 b44_free_rings(bp);
1442 b44_free_consistent(bp);
1443 goto out;
1444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 init_timer(&bp->timer);
1447 bp->timer.expires = jiffies + HZ;
1448 bp->timer.data = (unsigned long) bp;
1449 bp->timer.function = b44_timer;
1450 add_timer(&bp->timer);
1451
1452 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01001453 netif_start_queue(dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001454out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 return err;
1456}
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458#ifdef CONFIG_NET_POLL_CONTROLLER
1459/*
1460 * Polling receive - used by netconsole and other diagnostic tools
1461 * to allow network i/o with interrupts disabled.
1462 */
1463static void b44_poll_controller(struct net_device *dev)
1464{
1465 disable_irq(dev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001466 b44_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 enable_irq(dev->irq);
1468}
1469#endif
1470
Gary Zambrano725ad802006-06-20 15:34:36 -07001471static void bwfilter_table(struct b44 *bp, u8 *pp, u32 bytes, u32 table_offset)
1472{
1473 u32 i;
1474 u32 *pattern = (u32 *) pp;
1475
1476 for (i = 0; i < bytes; i += sizeof(u32)) {
1477 bw32(bp, B44_FILT_ADDR, table_offset + i);
1478 bw32(bp, B44_FILT_DATA, pattern[i / sizeof(u32)]);
1479 }
1480}
1481
1482static int b44_magic_pattern(u8 *macaddr, u8 *ppattern, u8 *pmask, int offset)
1483{
1484 int magicsync = 6;
1485 int k, j, len = offset;
1486 int ethaddr_bytes = ETH_ALEN;
1487
1488 memset(ppattern + offset, 0xff, magicsync);
1489 for (j = 0; j < magicsync; j++)
1490 set_bit(len++, (unsigned long *) pmask);
1491
1492 for (j = 0; j < B44_MAX_PATTERNS; j++) {
1493 if ((B44_PATTERN_SIZE - len) >= ETH_ALEN)
1494 ethaddr_bytes = ETH_ALEN;
1495 else
1496 ethaddr_bytes = B44_PATTERN_SIZE - len;
1497 if (ethaddr_bytes <=0)
1498 break;
1499 for (k = 0; k< ethaddr_bytes; k++) {
1500 ppattern[offset + magicsync +
1501 (j * ETH_ALEN) + k] = macaddr[k];
1502 len++;
1503 set_bit(len, (unsigned long *) pmask);
1504 }
1505 }
1506 return len - 1;
1507}
1508
1509/* Setup magic packet patterns in the b44 WOL
1510 * pattern matching filter.
1511 */
1512static void b44_setup_pseudo_magicp(struct b44 *bp)
1513{
1514
1515 u32 val;
1516 int plen0, plen1, plen2;
1517 u8 *pwol_pattern;
1518 u8 pwol_mask[B44_PMASK_SIZE];
1519
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001520 pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL);
Gary Zambrano725ad802006-06-20 15:34:36 -07001521 if (!pwol_pattern) {
1522 printk(KERN_ERR PFX "Memory not available for WOL\n");
1523 return;
1524 }
1525
1526 /* Ipv4 magic packet pattern - pattern 0.*/
Gary Zambrano725ad802006-06-20 15:34:36 -07001527 memset(pwol_mask, 0, B44_PMASK_SIZE);
1528 plen0 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1529 B44_ETHIPV4UDP_HLEN);
1530
1531 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE, B44_PATTERN_BASE);
1532 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE, B44_PMASK_BASE);
1533
1534 /* Raw ethernet II magic packet pattern - pattern 1 */
1535 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1536 memset(pwol_mask, 0, B44_PMASK_SIZE);
1537 plen1 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1538 ETH_HLEN);
1539
1540 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1541 B44_PATTERN_BASE + B44_PATTERN_SIZE);
1542 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1543 B44_PMASK_BASE + B44_PMASK_SIZE);
1544
1545 /* Ipv6 magic packet pattern - pattern 2 */
1546 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1547 memset(pwol_mask, 0, B44_PMASK_SIZE);
1548 plen2 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1549 B44_ETHIPV6UDP_HLEN);
1550
1551 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1552 B44_PATTERN_BASE + B44_PATTERN_SIZE + B44_PATTERN_SIZE);
1553 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1554 B44_PMASK_BASE + B44_PMASK_SIZE + B44_PMASK_SIZE);
1555
1556 kfree(pwol_pattern);
1557
1558 /* set these pattern's lengths: one less than each real length */
1559 val = plen0 | (plen1 << 8) | (plen2 << 16) | WKUP_LEN_ENABLE_THREE;
1560 bw32(bp, B44_WKUP_LEN, val);
1561
1562 /* enable wakeup pattern matching */
1563 val = br32(bp, B44_DEVCTRL);
1564 bw32(bp, B44_DEVCTRL, val | DEVCTRL_PFE);
1565
1566}
Gary Zambrano52cafd92006-06-20 15:34:23 -07001567
Michael Buesch753f4922007-09-19 14:20:30 -07001568#ifdef CONFIG_B44_PCI
1569static void b44_setup_wol_pci(struct b44 *bp)
1570{
1571 u16 val;
1572
1573 if (bp->sdev->bus->bustype != SSB_BUSTYPE_SSB) {
1574 bw32(bp, SSB_TMSLOW, br32(bp, SSB_TMSLOW) | SSB_TMSLOW_PE);
1575 pci_read_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, &val);
1576 pci_write_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, val | SSB_PE);
1577 }
1578}
1579#else
1580static inline void b44_setup_wol_pci(struct b44 *bp) { }
1581#endif /* CONFIG_B44_PCI */
1582
Gary Zambrano52cafd92006-06-20 15:34:23 -07001583static void b44_setup_wol(struct b44 *bp)
1584{
1585 u32 val;
Gary Zambrano52cafd92006-06-20 15:34:23 -07001586
1587 bw32(bp, B44_RXCONFIG, RXCONFIG_ALLMULTI);
1588
1589 if (bp->flags & B44_FLAG_B0_ANDLATER) {
1590
1591 bw32(bp, B44_WKUP_LEN, WKUP_LEN_DISABLE);
1592
1593 val = bp->dev->dev_addr[2] << 24 |
1594 bp->dev->dev_addr[3] << 16 |
1595 bp->dev->dev_addr[4] << 8 |
1596 bp->dev->dev_addr[5];
1597 bw32(bp, B44_ADDR_LO, val);
1598
1599 val = bp->dev->dev_addr[0] << 8 |
1600 bp->dev->dev_addr[1];
1601 bw32(bp, B44_ADDR_HI, val);
1602
1603 val = br32(bp, B44_DEVCTRL);
1604 bw32(bp, B44_DEVCTRL, val | DEVCTRL_MPM | DEVCTRL_PFE);
1605
Gary Zambrano725ad802006-06-20 15:34:36 -07001606 } else {
1607 b44_setup_pseudo_magicp(bp);
1608 }
Michael Buesch753f4922007-09-19 14:20:30 -07001609 b44_setup_wol_pci(bp);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001610}
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612static int b44_close(struct net_device *dev)
1613{
1614 struct b44 *bp = netdev_priv(dev);
1615
1616 netif_stop_queue(dev);
1617
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001618 napi_disable(&bp->napi);
Francois Romieuba5eec92005-11-08 23:37:12 +01001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 del_timer_sync(&bp->timer);
1621
1622 spin_lock_irq(&bp->lock);
1623
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 b44_halt(bp);
1625 b44_free_rings(bp);
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08001626 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
1628 spin_unlock_irq(&bp->lock);
1629
1630 free_irq(dev->irq, dev);
1631
Gary Zambrano52cafd92006-06-20 15:34:23 -07001632 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08001633 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001634 b44_setup_wol(bp);
1635 }
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 b44_free_consistent(bp);
1638
1639 return 0;
1640}
1641
1642static struct net_device_stats *b44_get_stats(struct net_device *dev)
1643{
1644 struct b44 *bp = netdev_priv(dev);
1645 struct net_device_stats *nstat = &bp->stats;
1646 struct b44_hw_stats *hwstat = &bp->hw_stats;
1647
1648 /* Convert HW stats into netdevice stats. */
1649 nstat->rx_packets = hwstat->rx_pkts;
1650 nstat->tx_packets = hwstat->tx_pkts;
1651 nstat->rx_bytes = hwstat->rx_octets;
1652 nstat->tx_bytes = hwstat->tx_octets;
1653 nstat->tx_errors = (hwstat->tx_jabber_pkts +
1654 hwstat->tx_oversize_pkts +
1655 hwstat->tx_underruns +
1656 hwstat->tx_excessive_cols +
1657 hwstat->tx_late_cols);
1658 nstat->multicast = hwstat->tx_multicast_pkts;
1659 nstat->collisions = hwstat->tx_total_cols;
1660
1661 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1662 hwstat->rx_undersize);
1663 nstat->rx_over_errors = hwstat->rx_missed_pkts;
1664 nstat->rx_frame_errors = hwstat->rx_align_errs;
1665 nstat->rx_crc_errors = hwstat->rx_crc_errs;
1666 nstat->rx_errors = (hwstat->rx_jabber_pkts +
1667 hwstat->rx_oversize_pkts +
1668 hwstat->rx_missed_pkts +
1669 hwstat->rx_crc_align_errs +
1670 hwstat->rx_undersize +
1671 hwstat->rx_crc_errs +
1672 hwstat->rx_align_errs +
1673 hwstat->rx_symbol_errs);
1674
1675 nstat->tx_aborted_errors = hwstat->tx_underruns;
1676#if 0
1677 /* Carrier lost counter seems to be broken for some devices */
1678 nstat->tx_carrier_errors = hwstat->tx_carrier_lost;
1679#endif
1680
1681 return nstat;
1682}
1683
1684static int __b44_load_mcast(struct b44 *bp, struct net_device *dev)
1685{
1686 struct dev_mc_list *mclist;
1687 int i, num_ents;
1688
1689 num_ents = min_t(int, dev->mc_count, B44_MCAST_TABLE_SIZE);
1690 mclist = dev->mc_list;
1691 for (i = 0; mclist && i < num_ents; i++, mclist = mclist->next) {
1692 __b44_cam_write(bp, mclist->dmi_addr, i + 1);
1693 }
1694 return i+1;
1695}
1696
1697static void __b44_set_rx_mode(struct net_device *dev)
1698{
1699 struct b44 *bp = netdev_priv(dev);
1700 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
1702 val = br32(bp, B44_RXCONFIG);
1703 val &= ~(RXCONFIG_PROMISC | RXCONFIG_ALLMULTI);
Michael Buesch753f4922007-09-19 14:20:30 -07001704 if ((dev->flags & IFF_PROMISC) || (val & RXCONFIG_CAM_ABSENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 val |= RXCONFIG_PROMISC;
1706 bw32(bp, B44_RXCONFIG, val);
1707 } else {
Francois Romieu874a6212005-11-07 01:50:46 +01001708 unsigned char zero[6] = {0, 0, 0, 0, 0, 0};
Bill Helfinstinecda22aa2007-04-01 13:10:28 -04001709 int i = 1;
Francois Romieu874a6212005-11-07 01:50:46 +01001710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 __b44_set_mac_addr(bp);
1712
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001713 if ((dev->flags & IFF_ALLMULTI) ||
1714 (dev->mc_count > B44_MCAST_TABLE_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 val |= RXCONFIG_ALLMULTI;
1716 else
Francois Romieu874a6212005-11-07 01:50:46 +01001717 i = __b44_load_mcast(bp, dev);
Jeff Garzik10badc22006-04-12 18:04:32 -04001718
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001719 for (; i < 64; i++)
Jeff Garzik10badc22006-04-12 18:04:32 -04001720 __b44_cam_write(bp, zero, i);
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 bw32(bp, B44_RXCONFIG, val);
1723 val = br32(bp, B44_CAM_CTRL);
1724 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1725 }
1726}
1727
1728static void b44_set_rx_mode(struct net_device *dev)
1729{
1730 struct b44 *bp = netdev_priv(dev);
1731
1732 spin_lock_irq(&bp->lock);
1733 __b44_set_rx_mode(dev);
1734 spin_unlock_irq(&bp->lock);
1735}
1736
1737static u32 b44_get_msglevel(struct net_device *dev)
1738{
1739 struct b44 *bp = netdev_priv(dev);
1740 return bp->msg_enable;
1741}
1742
1743static void b44_set_msglevel(struct net_device *dev, u32 value)
1744{
1745 struct b44 *bp = netdev_priv(dev);
1746 bp->msg_enable = value;
1747}
1748
1749static void b44_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info)
1750{
1751 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07001752 struct ssb_bus *bus = bp->sdev->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Michael Buesch753f4922007-09-19 14:20:30 -07001754 strncpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
1755 strncpy(info->version, DRV_MODULE_VERSION, sizeof(info->driver));
1756 switch (bus->bustype) {
1757 case SSB_BUSTYPE_PCI:
1758 strncpy(info->bus_info, pci_name(bus->host_pci), sizeof(info->bus_info));
1759 break;
1760 case SSB_BUSTYPE_PCMCIA:
1761 case SSB_BUSTYPE_SSB:
1762 strncpy(info->bus_info, "SSB", sizeof(info->bus_info));
1763 break;
1764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
1767static int b44_nway_reset(struct net_device *dev)
1768{
1769 struct b44 *bp = netdev_priv(dev);
1770 u32 bmcr;
1771 int r;
1772
1773 spin_lock_irq(&bp->lock);
1774 b44_readphy(bp, MII_BMCR, &bmcr);
1775 b44_readphy(bp, MII_BMCR, &bmcr);
1776 r = -EINVAL;
1777 if (bmcr & BMCR_ANENABLE) {
1778 b44_writephy(bp, MII_BMCR,
1779 bmcr | BMCR_ANRESTART);
1780 r = 0;
1781 }
1782 spin_unlock_irq(&bp->lock);
1783
1784 return r;
1785}
1786
1787static int b44_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1788{
1789 struct b44 *bp = netdev_priv(dev);
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 cmd->supported = (SUPPORTED_Autoneg);
1792 cmd->supported |= (SUPPORTED_100baseT_Half |
1793 SUPPORTED_100baseT_Full |
1794 SUPPORTED_10baseT_Half |
1795 SUPPORTED_10baseT_Full |
1796 SUPPORTED_MII);
1797
1798 cmd->advertising = 0;
1799 if (bp->flags & B44_FLAG_ADV_10HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001800 cmd->advertising |= ADVERTISED_10baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 if (bp->flags & B44_FLAG_ADV_10FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001802 cmd->advertising |= ADVERTISED_10baseT_Full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (bp->flags & B44_FLAG_ADV_100HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001804 cmd->advertising |= ADVERTISED_100baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (bp->flags & B44_FLAG_ADV_100FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001806 cmd->advertising |= ADVERTISED_100baseT_Full;
1807 cmd->advertising |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 cmd->speed = (bp->flags & B44_FLAG_100_BASE_T) ?
1809 SPEED_100 : SPEED_10;
1810 cmd->duplex = (bp->flags & B44_FLAG_FULL_DUPLEX) ?
1811 DUPLEX_FULL : DUPLEX_HALF;
1812 cmd->port = 0;
1813 cmd->phy_address = bp->phy_addr;
1814 cmd->transceiver = (bp->flags & B44_FLAG_INTERNAL_PHY) ?
1815 XCVR_INTERNAL : XCVR_EXTERNAL;
1816 cmd->autoneg = (bp->flags & B44_FLAG_FORCE_LINK) ?
1817 AUTONEG_DISABLE : AUTONEG_ENABLE;
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001818 if (cmd->autoneg == AUTONEG_ENABLE)
1819 cmd->advertising |= ADVERTISED_Autoneg;
1820 if (!netif_running(dev)){
1821 cmd->speed = 0;
1822 cmd->duplex = 0xff;
1823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 cmd->maxtxpkt = 0;
1825 cmd->maxrxpkt = 0;
1826 return 0;
1827}
1828
1829static int b44_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1830{
1831 struct b44 *bp = netdev_priv(dev);
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 /* We do not support gigabit. */
1834 if (cmd->autoneg == AUTONEG_ENABLE) {
1835 if (cmd->advertising &
1836 (ADVERTISED_1000baseT_Half |
1837 ADVERTISED_1000baseT_Full))
1838 return -EINVAL;
1839 } else if ((cmd->speed != SPEED_100 &&
1840 cmd->speed != SPEED_10) ||
1841 (cmd->duplex != DUPLEX_HALF &&
1842 cmd->duplex != DUPLEX_FULL)) {
1843 return -EINVAL;
1844 }
1845
1846 spin_lock_irq(&bp->lock);
1847
1848 if (cmd->autoneg == AUTONEG_ENABLE) {
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001849 bp->flags &= ~(B44_FLAG_FORCE_LINK |
1850 B44_FLAG_100_BASE_T |
1851 B44_FLAG_FULL_DUPLEX |
1852 B44_FLAG_ADV_10HALF |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 B44_FLAG_ADV_10FULL |
1854 B44_FLAG_ADV_100HALF |
1855 B44_FLAG_ADV_100FULL);
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001856 if (cmd->advertising == 0) {
1857 bp->flags |= (B44_FLAG_ADV_10HALF |
1858 B44_FLAG_ADV_10FULL |
1859 B44_FLAG_ADV_100HALF |
1860 B44_FLAG_ADV_100FULL);
1861 } else {
1862 if (cmd->advertising & ADVERTISED_10baseT_Half)
1863 bp->flags |= B44_FLAG_ADV_10HALF;
1864 if (cmd->advertising & ADVERTISED_10baseT_Full)
1865 bp->flags |= B44_FLAG_ADV_10FULL;
1866 if (cmd->advertising & ADVERTISED_100baseT_Half)
1867 bp->flags |= B44_FLAG_ADV_100HALF;
1868 if (cmd->advertising & ADVERTISED_100baseT_Full)
1869 bp->flags |= B44_FLAG_ADV_100FULL;
1870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 } else {
1872 bp->flags |= B44_FLAG_FORCE_LINK;
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001873 bp->flags &= ~(B44_FLAG_100_BASE_T | B44_FLAG_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (cmd->speed == SPEED_100)
1875 bp->flags |= B44_FLAG_100_BASE_T;
1876 if (cmd->duplex == DUPLEX_FULL)
1877 bp->flags |= B44_FLAG_FULL_DUPLEX;
1878 }
1879
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001880 if (netif_running(dev))
1881 b44_setup_phy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 spin_unlock_irq(&bp->lock);
1884
1885 return 0;
1886}
1887
1888static void b44_get_ringparam(struct net_device *dev,
1889 struct ethtool_ringparam *ering)
1890{
1891 struct b44 *bp = netdev_priv(dev);
1892
1893 ering->rx_max_pending = B44_RX_RING_SIZE - 1;
1894 ering->rx_pending = bp->rx_pending;
1895
1896 /* XXX ethtool lacks a tx_max_pending, oops... */
1897}
1898
1899static int b44_set_ringparam(struct net_device *dev,
1900 struct ethtool_ringparam *ering)
1901{
1902 struct b44 *bp = netdev_priv(dev);
1903
1904 if ((ering->rx_pending > B44_RX_RING_SIZE - 1) ||
1905 (ering->rx_mini_pending != 0) ||
1906 (ering->rx_jumbo_pending != 0) ||
1907 (ering->tx_pending > B44_TX_RING_SIZE - 1))
1908 return -EINVAL;
1909
1910 spin_lock_irq(&bp->lock);
1911
1912 bp->rx_pending = ering->rx_pending;
1913 bp->tx_pending = ering->tx_pending;
1914
1915 b44_halt(bp);
1916 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001917 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 netif_wake_queue(bp->dev);
1919 spin_unlock_irq(&bp->lock);
1920
1921 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return 0;
1924}
1925
1926static void b44_get_pauseparam(struct net_device *dev,
1927 struct ethtool_pauseparam *epause)
1928{
1929 struct b44 *bp = netdev_priv(dev);
1930
1931 epause->autoneg =
1932 (bp->flags & B44_FLAG_PAUSE_AUTO) != 0;
1933 epause->rx_pause =
1934 (bp->flags & B44_FLAG_RX_PAUSE) != 0;
1935 epause->tx_pause =
1936 (bp->flags & B44_FLAG_TX_PAUSE) != 0;
1937}
1938
1939static int b44_set_pauseparam(struct net_device *dev,
1940 struct ethtool_pauseparam *epause)
1941{
1942 struct b44 *bp = netdev_priv(dev);
1943
1944 spin_lock_irq(&bp->lock);
1945 if (epause->autoneg)
1946 bp->flags |= B44_FLAG_PAUSE_AUTO;
1947 else
1948 bp->flags &= ~B44_FLAG_PAUSE_AUTO;
1949 if (epause->rx_pause)
1950 bp->flags |= B44_FLAG_RX_PAUSE;
1951 else
1952 bp->flags &= ~B44_FLAG_RX_PAUSE;
1953 if (epause->tx_pause)
1954 bp->flags |= B44_FLAG_TX_PAUSE;
1955 else
1956 bp->flags &= ~B44_FLAG_TX_PAUSE;
1957 if (bp->flags & B44_FLAG_PAUSE_AUTO) {
1958 b44_halt(bp);
1959 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001960 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 } else {
1962 __b44_set_flow_ctrl(bp, bp->flags);
1963 }
1964 spin_unlock_irq(&bp->lock);
1965
1966 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return 0;
1969}
1970
Francois Romieu33539302005-11-07 01:51:34 +01001971static void b44_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1972{
1973 switch(stringset) {
1974 case ETH_SS_STATS:
1975 memcpy(data, *b44_gstrings, sizeof(b44_gstrings));
1976 break;
1977 }
1978}
1979
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001980static int b44_get_sset_count(struct net_device *dev, int sset)
Francois Romieu33539302005-11-07 01:51:34 +01001981{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001982 switch (sset) {
1983 case ETH_SS_STATS:
1984 return ARRAY_SIZE(b44_gstrings);
1985 default:
1986 return -EOPNOTSUPP;
1987 }
Francois Romieu33539302005-11-07 01:51:34 +01001988}
1989
1990static void b44_get_ethtool_stats(struct net_device *dev,
1991 struct ethtool_stats *stats, u64 *data)
1992{
1993 struct b44 *bp = netdev_priv(dev);
1994 u32 *val = &bp->hw_stats.tx_good_octets;
1995 u32 i;
1996
1997 spin_lock_irq(&bp->lock);
1998
1999 b44_stats_update(bp);
2000
2001 for (i = 0; i < ARRAY_SIZE(b44_gstrings); i++)
2002 *data++ = *val++;
2003
2004 spin_unlock_irq(&bp->lock);
2005}
2006
Gary Zambrano52cafd92006-06-20 15:34:23 -07002007static void b44_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2008{
2009 struct b44 *bp = netdev_priv(dev);
2010
2011 wol->supported = WAKE_MAGIC;
2012 if (bp->flags & B44_FLAG_WOL_ENABLE)
2013 wol->wolopts = WAKE_MAGIC;
2014 else
2015 wol->wolopts = 0;
2016 memset(&wol->sopass, 0, sizeof(wol->sopass));
2017}
2018
2019static int b44_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2020{
2021 struct b44 *bp = netdev_priv(dev);
2022
2023 spin_lock_irq(&bp->lock);
2024 if (wol->wolopts & WAKE_MAGIC)
2025 bp->flags |= B44_FLAG_WOL_ENABLE;
2026 else
2027 bp->flags &= ~B44_FLAG_WOL_ENABLE;
2028 spin_unlock_irq(&bp->lock);
2029
2030 return 0;
2031}
2032
Jeff Garzik7282d492006-09-13 14:30:00 -04002033static const struct ethtool_ops b44_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 .get_drvinfo = b44_get_drvinfo,
2035 .get_settings = b44_get_settings,
2036 .set_settings = b44_set_settings,
2037 .nway_reset = b44_nway_reset,
2038 .get_link = ethtool_op_get_link,
Gary Zambrano52cafd92006-06-20 15:34:23 -07002039 .get_wol = b44_get_wol,
2040 .set_wol = b44_set_wol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 .get_ringparam = b44_get_ringparam,
2042 .set_ringparam = b44_set_ringparam,
2043 .get_pauseparam = b44_get_pauseparam,
2044 .set_pauseparam = b44_set_pauseparam,
2045 .get_msglevel = b44_get_msglevel,
2046 .set_msglevel = b44_set_msglevel,
Francois Romieu33539302005-11-07 01:51:34 +01002047 .get_strings = b44_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002048 .get_sset_count = b44_get_sset_count,
Francois Romieu33539302005-11-07 01:51:34 +01002049 .get_ethtool_stats = b44_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050};
2051
2052static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2053{
2054 struct mii_ioctl_data *data = if_mii(ifr);
2055 struct b44 *bp = netdev_priv(dev);
Francois Romieu34105722005-11-30 22:32:13 +01002056 int err = -EINVAL;
2057
2058 if (!netif_running(dev))
2059 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
2061 spin_lock_irq(&bp->lock);
2062 err = generic_mii_ioctl(&bp->mii_if, data, cmd, NULL);
2063 spin_unlock_irq(&bp->lock);
Francois Romieu34105722005-11-30 22:32:13 +01002064out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return err;
2066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068static int __devinit b44_get_invariants(struct b44 *bp)
2069{
Michael Buesch753f4922007-09-19 14:20:30 -07002070 struct ssb_device *sdev = bp->sdev;
2071 int err = 0;
2072 u8 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Michael Buesch753f4922007-09-19 14:20:30 -07002074 bp->dma_offset = ssb_dma_translation(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Michael Buesch753f4922007-09-19 14:20:30 -07002076 if (sdev->bus->bustype == SSB_BUSTYPE_SSB &&
2077 instance > 1) {
Larry Finger458414b2007-11-09 16:56:10 -06002078 addr = sdev->bus->sprom.et1mac;
2079 bp->phy_addr = sdev->bus->sprom.et1phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002080 } else {
Larry Finger458414b2007-11-09 16:56:10 -06002081 addr = sdev->bus->sprom.et0mac;
2082 bp->phy_addr = sdev->bus->sprom.et0phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002083 }
Michael Buesch5ea79632008-03-25 18:04:46 +01002084 /* Some ROMs have buggy PHY addresses with the high
2085 * bits set (sign extension?). Truncate them to a
2086 * valid PHY address. */
2087 bp->phy_addr &= 0x1F;
2088
Michael Buesch753f4922007-09-19 14:20:30 -07002089 memcpy(bp->dev->dev_addr, addr, 6);
Gary Zambrano391fc092006-03-28 14:57:38 -08002090
2091 if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){
2092 printk(KERN_ERR PFX "Invalid MAC address found in EEPROM\n");
2093 return -EINVAL;
2094 }
2095
John W. Linville2160de52005-09-12 10:48:55 -04002096 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, bp->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 bp->imask = IMASK_DEF;
2099
Jeff Garzik10badc22006-04-12 18:04:32 -04002100 /* XXX - really required?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 bp->flags |= B44_FLAG_BUGGY_TXPTR;
Michael Buesch753f4922007-09-19 14:20:30 -07002102 */
Gary Zambrano52cafd92006-06-20 15:34:23 -07002103
Michael Buesch753f4922007-09-19 14:20:30 -07002104 if (bp->sdev->id.revision >= 7)
2105 bp->flags |= B44_FLAG_B0_ANDLATER;
Gary Zambrano52cafd92006-06-20 15:34:23 -07002106
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 return err;
2108}
2109
Stephen Hemminger403413e2009-01-07 18:10:49 -08002110static const struct net_device_ops b44_netdev_ops = {
2111 .ndo_open = b44_open,
2112 .ndo_stop = b44_close,
2113 .ndo_start_xmit = b44_start_xmit,
2114 .ndo_get_stats = b44_get_stats,
2115 .ndo_set_multicast_list = b44_set_rx_mode,
2116 .ndo_set_mac_address = b44_set_mac_addr,
2117 .ndo_validate_addr = eth_validate_addr,
2118 .ndo_do_ioctl = b44_ioctl,
2119 .ndo_tx_timeout = b44_tx_timeout,
2120 .ndo_change_mtu = b44_change_mtu,
2121#ifdef CONFIG_NET_POLL_CONTROLLER
2122 .ndo_poll_controller = b44_poll_controller,
2123#endif
2124};
2125
Michael Buesch753f4922007-09-19 14:20:30 -07002126static int __devinit b44_init_one(struct ssb_device *sdev,
2127 const struct ssb_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 static int b44_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 struct net_device *dev;
2131 struct b44 *bp;
Joe Perches0795af52007-10-03 17:59:30 -07002132 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Michael Buesch753f4922007-09-19 14:20:30 -07002134 instance++;
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 if (b44_version_printed++ == 0)
2137 printk(KERN_INFO "%s", version);
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 dev = alloc_etherdev(sizeof(*bp));
2141 if (!dev) {
Michael Buesch753f4922007-09-19 14:20:30 -07002142 dev_err(sdev->dev, "Etherdev alloc failed, aborting.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 err = -ENOMEM;
Michael Buesch753f4922007-09-19 14:20:30 -07002144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146
Michael Buesch753f4922007-09-19 14:20:30 -07002147 SET_NETDEV_DEV(dev, sdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 /* No interesting netdevice features in this card... */
2150 dev->features |= 0;
2151
2152 bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07002153 bp->sdev = sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 bp->dev = dev;
Francois Romieu874a6212005-11-07 01:50:46 +01002155
2156 bp->msg_enable = netif_msg_init(b44_debug, B44_DEF_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
2158 spin_lock_init(&bp->lock);
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 bp->rx_pending = B44_DEF_RX_RING_PENDING;
2161 bp->tx_pending = B44_DEF_TX_RING_PENDING;
2162
Stephen Hemminger403413e2009-01-07 18:10:49 -08002163 dev->netdev_ops = &b44_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002164 netif_napi_add(dev, &bp->napi, b44_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 dev->watchdog_timeo = B44_TX_TIMEOUT;
Michael Buesch753f4922007-09-19 14:20:30 -07002166 dev->irq = sdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 SET_ETHTOOL_OPS(dev, &b44_ethtool_ops);
2168
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08002169 netif_carrier_off(dev);
2170
Michael Buesch753f4922007-09-19 14:20:30 -07002171 err = ssb_bus_powerup(sdev->bus, 0);
2172 if (err) {
2173 dev_err(sdev->dev,
2174 "Failed to powerup the bus\n");
2175 goto err_out_free_dev;
2176 }
2177 err = ssb_dma_set_mask(sdev, DMA_30BIT_MASK);
2178 if (err) {
2179 dev_err(sdev->dev,
2180 "Required 30BIT DMA mask unsupported by the system.\n");
2181 goto err_out_powerdown;
2182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 err = b44_get_invariants(bp);
2184 if (err) {
Michael Buesch753f4922007-09-19 14:20:30 -07002185 dev_err(sdev->dev,
Jeff Garzik2e8a5382006-06-27 10:47:51 -04002186 "Problem fetching invariants of chip, aborting.\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002187 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189
2190 bp->mii_if.dev = dev;
2191 bp->mii_if.mdio_read = b44_mii_read;
2192 bp->mii_if.mdio_write = b44_mii_write;
2193 bp->mii_if.phy_id = bp->phy_addr;
2194 bp->mii_if.phy_id_mask = 0x1f;
2195 bp->mii_if.reg_num_mask = 0x1f;
2196
2197 /* By default, advertise all speed/duplex settings. */
2198 bp->flags |= (B44_FLAG_ADV_10HALF | B44_FLAG_ADV_10FULL |
2199 B44_FLAG_ADV_100HALF | B44_FLAG_ADV_100FULL);
2200
2201 /* By default, auto-negotiate PAUSE. */
2202 bp->flags |= B44_FLAG_PAUSE_AUTO;
2203
2204 err = register_netdev(dev);
2205 if (err) {
Michael Buesch753f4922007-09-19 14:20:30 -07002206 dev_err(sdev->dev, "Cannot register net device, aborting.\n");
2207 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 }
2209
Michael Buesch753f4922007-09-19 14:20:30 -07002210 ssb_set_drvdata(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Jeff Garzik10badc22006-04-12 18:04:32 -04002212 /* Chip reset provides power to the b44 MAC & PCI cores, which
Gary Zambrano5c513122006-03-29 17:12:05 -05002213 * is necessary for MAC register access.
Jeff Garzik10badc22006-04-12 18:04:32 -04002214 */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002215 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Gary Zambrano5c513122006-03-29 17:12:05 -05002216
Johannes Berge1749612008-10-27 15:59:26 -07002217 printk(KERN_INFO "%s: Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n",
2218 dev->name, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 return 0;
2221
Michael Buesch753f4922007-09-19 14:20:30 -07002222err_out_powerdown:
2223 ssb_bus_may_powerdown(sdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225err_out_free_dev:
2226 free_netdev(dev);
2227
Michael Buesch753f4922007-09-19 14:20:30 -07002228out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return err;
2230}
2231
Michael Buesch753f4922007-09-19 14:20:30 -07002232static void __devexit b44_remove_one(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
Michael Buesch753f4922007-09-19 14:20:30 -07002234 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Francois Romieu874a6212005-11-07 01:50:46 +01002236 unregister_netdev(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07002237 ssb_bus_may_powerdown(sdev->bus);
Francois Romieu874a6212005-11-07 01:50:46 +01002238 free_netdev(dev);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002239 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Michael Buesch753f4922007-09-19 14:20:30 -07002240 ssb_set_drvdata(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241}
2242
Michael Buesch753f4922007-09-19 14:20:30 -07002243static int b44_suspend(struct ssb_device *sdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
Michael Buesch753f4922007-09-19 14:20:30 -07002245 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 struct b44 *bp = netdev_priv(dev);
2247
Michael Buesch753f4922007-09-19 14:20:30 -07002248 if (!netif_running(dev))
2249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 del_timer_sync(&bp->timer);
2252
Jeff Garzik10badc22006-04-12 18:04:32 -04002253 spin_lock_irq(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 b44_halt(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04002256 netif_carrier_off(bp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 netif_device_detach(bp->dev);
2258 b44_free_rings(bp);
2259
2260 spin_unlock_irq(&bp->lock);
Pavel Machek46e17852005-10-28 15:14:47 -07002261
2262 free_irq(dev->irq, dev);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002263 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08002264 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002265 b44_setup_wol(bp);
2266 }
Michael Buesch753f4922007-09-19 14:20:30 -07002267
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002268 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return 0;
2270}
2271
Michael Buesch753f4922007-09-19 14:20:30 -07002272static int b44_resume(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
Michael Buesch753f4922007-09-19 14:20:30 -07002274 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 struct b44 *bp = netdev_priv(dev);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002276 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Michael Buesch753f4922007-09-19 14:20:30 -07002278 rc = ssb_bus_powerup(sdev->bus, 0);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002279 if (rc) {
Michael Buesch753f4922007-09-19 14:20:30 -07002280 dev_err(sdev->dev,
2281 "Failed to powerup the bus\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002282 return rc;
2283 }
2284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 if (!netif_running(dev))
2286 return 0;
2287
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002288 rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
2289 if (rc) {
Pavel Machek46e17852005-10-28 15:14:47 -07002290 printk(KERN_ERR PFX "%s: request_irq failed\n", dev->name);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002291 return rc;
2292 }
Pavel Machek46e17852005-10-28 15:14:47 -07002293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 spin_lock_irq(&bp->lock);
2295
2296 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08002297 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 netif_device_attach(bp->dev);
2299 spin_unlock_irq(&bp->lock);
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01002302 netif_wake_queue(dev);
Stephen Hemmingera72a8172007-06-04 13:25:37 -07002303
2304 mod_timer(&bp->timer, jiffies + 1);
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return 0;
2307}
2308
Michael Buesch753f4922007-09-19 14:20:30 -07002309static struct ssb_driver b44_ssb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 .name = DRV_MODULE_NAME,
Michael Buesch753f4922007-09-19 14:20:30 -07002311 .id_table = b44_ssb_tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 .probe = b44_init_one,
2313 .remove = __devexit_p(b44_remove_one),
Michael Buesch753f4922007-09-19 14:20:30 -07002314 .suspend = b44_suspend,
2315 .resume = b44_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316};
2317
Michael Buesch753f4922007-09-19 14:20:30 -07002318static inline int b44_pci_init(void)
2319{
2320 int err = 0;
2321#ifdef CONFIG_B44_PCI
2322 err = ssb_pcihost_register(&b44_pci_driver);
2323#endif
2324 return err;
2325}
2326
2327static inline void b44_pci_exit(void)
2328{
2329#ifdef CONFIG_B44_PCI
2330 ssb_pcihost_unregister(&b44_pci_driver);
2331#endif
2332}
2333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334static int __init b44_init(void)
2335{
John W. Linville9f38c632005-10-18 21:30:59 -04002336 unsigned int dma_desc_align_size = dma_get_cache_alignment();
Michael Buesch753f4922007-09-19 14:20:30 -07002337 int err;
John W. Linville9f38c632005-10-18 21:30:59 -04002338
2339 /* Setup paramaters for syncing RX/TX DMA descriptors */
2340 dma_desc_align_mask = ~(dma_desc_align_size - 1);
Alan Cox22d4d772006-01-17 17:53:56 +00002341 dma_desc_sync_size = max_t(unsigned int, dma_desc_align_size, sizeof(struct dma_desc));
John W. Linville9f38c632005-10-18 21:30:59 -04002342
Michael Buesch753f4922007-09-19 14:20:30 -07002343 err = b44_pci_init();
2344 if (err)
2345 return err;
2346 err = ssb_driver_register(&b44_ssb_driver);
2347 if (err)
2348 b44_pci_exit();
2349 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350}
2351
2352static void __exit b44_cleanup(void)
2353{
Michael Buesch753f4922007-09-19 14:20:30 -07002354 ssb_driver_unregister(&b44_ssb_driver);
2355 b44_pci_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356}
2357
2358module_init(b44_init);
2359module_exit(b44_cleanup);
2360