blob: 293f9c16e7860b87944812c104a50804245326fe [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
Joe Perches2fc96ff2010-02-17 15:01:50 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/types.h>
19#include <linux/netdevice.h>
20#include <linux/ethtool.h>
21#include <linux/mii.h>
22#include <linux/if_ether.h>
Stephen Hemminger72f48612007-06-04 13:25:39 -070023#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/etherdevice.h>
25#include <linux/pci.h>
26#include <linux/delay.h>
27#include <linux/init.h>
Andrew Morton89358f92005-10-28 16:38:02 -040028#include <linux/dma-mapping.h>
Michael Buesch753f4922007-09-19 14:20:30 -070029#include <linux/ssb/ssb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/uaccess.h>
33#include <asm/io.h>
34#include <asm/irq.h>
35
Michael Buesch753f4922007-09-19 14:20:30 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "b44.h"
38
39#define DRV_MODULE_NAME "b44"
Michael Buesch753f4922007-09-19 14:20:30 -070040#define DRV_MODULE_VERSION "2.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define B44_DEF_MSG_ENABLE \
43 (NETIF_MSG_DRV | \
44 NETIF_MSG_PROBE | \
45 NETIF_MSG_LINK | \
46 NETIF_MSG_TIMER | \
47 NETIF_MSG_IFDOWN | \
48 NETIF_MSG_IFUP | \
49 NETIF_MSG_RX_ERR | \
50 NETIF_MSG_TX_ERR)
51
52/* length of time before we decide the hardware is borked,
53 * and dev->tx_timeout() should be called to fix the problem
54 */
55#define B44_TX_TIMEOUT (5 * HZ)
56
57/* hardware minimum and maximum for a single frame's data payload */
58#define B44_MIN_MTU 60
59#define B44_MAX_MTU 1500
60
61#define B44_RX_RING_SIZE 512
62#define B44_DEF_RX_RING_PENDING 200
63#define B44_RX_RING_BYTES (sizeof(struct dma_desc) * \
64 B44_RX_RING_SIZE)
65#define B44_TX_RING_SIZE 512
66#define B44_DEF_TX_RING_PENDING (B44_TX_RING_SIZE - 1)
67#define B44_TX_RING_BYTES (sizeof(struct dma_desc) * \
68 B44_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#define TX_RING_GAP(BP) \
71 (B44_TX_RING_SIZE - (BP)->tx_pending)
72#define TX_BUFFS_AVAIL(BP) \
73 (((BP)->tx_cons <= (BP)->tx_prod) ? \
74 (BP)->tx_cons + (BP)->tx_pending - (BP)->tx_prod : \
75 (BP)->tx_cons - (BP)->tx_prod - TX_RING_GAP(BP))
76#define NEXT_TX(N) (((N) + 1) & (B44_TX_RING_SIZE - 1))
77
Felix Fietkau4ca85792009-01-09 02:39:57 +000078#define RX_PKT_OFFSET (RX_HEADER_LEN + 2)
79#define RX_PKT_BUF_SZ (1536 + RX_PKT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* minimum number of free TX descriptors required to wake up TX process */
82#define B44_TX_WAKEUP_THRESH (B44_TX_RING_SIZE / 4)
83
Gary Zambrano725ad802006-06-20 15:34:36 -070084/* b44 internal pattern match filter info */
85#define B44_PATTERN_BASE 0x400
86#define B44_PATTERN_SIZE 0x80
87#define B44_PMASK_BASE 0x600
88#define B44_PMASK_SIZE 0x10
89#define B44_MAX_PATTERNS 16
90#define B44_ETHIPV6UDP_HLEN 62
91#define B44_ETHIPV4UDP_HLEN 42
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static char version[] __devinitdata =
Michael Buesch753f4922007-09-19 14:20:30 -070094 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Michael Buesch753f4922007-09-19 14:20:30 -070096MODULE_AUTHOR("Felix Fietkau, Florian Schirmer, Pekka Pietikainen, David S. Miller");
97MODULE_DESCRIPTION("Broadcom 44xx/47xx 10/100 PCI ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098MODULE_LICENSE("GPL");
99MODULE_VERSION(DRV_MODULE_VERSION);
100
101static int b44_debug = -1; /* -1 == use B44_DEF_MSG_ENABLE as value */
102module_param(b44_debug, int, 0);
103MODULE_PARM_DESC(b44_debug, "B44 bitmapped debugging message enable value");
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Michael Buesch753f4922007-09-19 14:20:30 -0700106#ifdef CONFIG_B44_PCI
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000107static DEFINE_PCI_DEVICE_TABLE(b44_pci_tbl) = {
Michael Buesch753f4922007-09-19 14:20:30 -0700108 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401) },
109 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B0) },
110 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B1) },
111 { 0 } /* terminate list with empty entry */
112};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113MODULE_DEVICE_TABLE(pci, b44_pci_tbl);
114
Michael Buesch753f4922007-09-19 14:20:30 -0700115static struct pci_driver b44_pci_driver = {
116 .name = DRV_MODULE_NAME,
117 .id_table = b44_pci_tbl,
118};
119#endif /* CONFIG_B44_PCI */
120
121static const struct ssb_device_id b44_ssb_tbl[] = {
122 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_ETHERNET, SSB_ANY_REV),
123 SSB_DEVTABLE_END
124};
125MODULE_DEVICE_TABLE(ssb, b44_ssb_tbl);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void b44_halt(struct b44 *);
128static void b44_init_rings(struct b44 *);
Michael Chan5fc7d612007-01-26 23:59:57 -0800129
130#define B44_FULL_RESET 1
131#define B44_FULL_RESET_SKIP_PHY 2
132#define B44_PARTIAL_RESET 3
Miguel Botónfedb0ee2008-01-01 01:17:54 +0100133#define B44_CHIP_RESET_FULL 4
134#define B44_CHIP_RESET_PARTIAL 5
Michael Chan5fc7d612007-01-26 23:59:57 -0800135
Gary Zambrano00e8b3a2006-06-20 15:34:26 -0700136static void b44_init_hw(struct b44 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
John W. Linville9f38c632005-10-18 21:30:59 -0400138static int dma_desc_align_mask;
139static int dma_desc_sync_size;
Michael Buesch753f4922007-09-19 14:20:30 -0700140static int instance;
John W. Linville9f38c632005-10-18 21:30:59 -0400141
Francois Romieu33539302005-11-07 01:51:34 +0100142static const char b44_gstrings[][ETH_GSTRING_LEN] = {
143#define _B44(x...) # x,
144B44_STAT_REG_DECLARE
145#undef _B44
146};
147
Michael Buesch753f4922007-09-19 14:20:30 -0700148static inline void b44_sync_dma_desc_for_device(struct ssb_device *sdev,
149 dma_addr_t dma_base,
150 unsigned long offset,
151 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400152{
Michael Bueschf2257632008-06-20 11:50:29 +0200153 ssb_dma_sync_single_range_for_device(sdev, dma_base,
154 offset & dma_desc_align_mask,
155 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400156}
157
Michael Buesch753f4922007-09-19 14:20:30 -0700158static inline void b44_sync_dma_desc_for_cpu(struct ssb_device *sdev,
159 dma_addr_t dma_base,
160 unsigned long offset,
161 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400162{
Michael Bueschf2257632008-06-20 11:50:29 +0200163 ssb_dma_sync_single_range_for_cpu(sdev, dma_base,
164 offset & dma_desc_align_mask,
165 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168static inline unsigned long br32(const struct b44 *bp, unsigned long reg)
169{
Michael Buesch753f4922007-09-19 14:20:30 -0700170 return ssb_read32(bp->sdev, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Jeff Garzik10badc22006-04-12 18:04:32 -0400173static inline void bw32(const struct b44 *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 unsigned long reg, unsigned long val)
175{
Michael Buesch753f4922007-09-19 14:20:30 -0700176 ssb_write32(bp->sdev, reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177}
178
179static int b44_wait_bit(struct b44 *bp, unsigned long reg,
180 u32 bit, unsigned long timeout, const int clear)
181{
182 unsigned long i;
183
184 for (i = 0; i < timeout; i++) {
185 u32 val = br32(bp, reg);
186
187 if (clear && !(val & bit))
188 break;
189 if (!clear && (val & bit))
190 break;
191 udelay(10);
192 }
193 if (i == timeout) {
Jochen Friedrichf6ca0572010-02-12 10:11:54 +0000194 if (net_ratelimit())
Joe Perches2fc96ff2010-02-17 15:01:50 +0000195 netdev_err(bp->dev, "BUG! Timeout waiting for bit %08x of register %lx to %s\n",
196 bit, reg, clear ? "clear" : "set");
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return -ENODEV;
199 }
200 return 0;
201}
202
Michael Buesch753f4922007-09-19 14:20:30 -0700203static inline void __b44_cam_read(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
205 u32 val;
206
Michael Buesch753f4922007-09-19 14:20:30 -0700207 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_READ |
208 (index << CAM_CTRL_INDEX_SHIFT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Michael Buesch753f4922007-09-19 14:20:30 -0700210 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Michael Buesch753f4922007-09-19 14:20:30 -0700212 val = br32(bp, B44_CAM_DATA_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Michael Buesch753f4922007-09-19 14:20:30 -0700214 data[2] = (val >> 24) & 0xFF;
215 data[3] = (val >> 16) & 0xFF;
216 data[4] = (val >> 8) & 0xFF;
217 data[5] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Michael Buesch753f4922007-09-19 14:20:30 -0700219 val = br32(bp, B44_CAM_DATA_HI);
220
221 data[0] = (val >> 8) & 0xFF;
222 data[1] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Michael Buesch753f4922007-09-19 14:20:30 -0700225static inline void __b44_cam_write(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 u32 val;
228
229 val = ((u32) data[2]) << 24;
230 val |= ((u32) data[3]) << 16;
231 val |= ((u32) data[4]) << 8;
232 val |= ((u32) data[5]) << 0;
233 bw32(bp, B44_CAM_DATA_LO, val);
Jeff Garzik10badc22006-04-12 18:04:32 -0400234 val = (CAM_DATA_HI_VALID |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 (((u32) data[0]) << 8) |
236 (((u32) data[1]) << 0));
237 bw32(bp, B44_CAM_DATA_HI, val);
238 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_WRITE |
239 (index << CAM_CTRL_INDEX_SHIFT)));
Jeff Garzik10badc22006-04-12 18:04:32 -0400240 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243static inline void __b44_disable_ints(struct b44 *bp)
244{
245 bw32(bp, B44_IMASK, 0);
246}
247
248static void b44_disable_ints(struct b44 *bp)
249{
250 __b44_disable_ints(bp);
251
252 /* Flush posted writes. */
253 br32(bp, B44_IMASK);
254}
255
256static void b44_enable_ints(struct b44 *bp)
257{
258 bw32(bp, B44_IMASK, bp->imask);
259}
260
Michael Buesch753f4922007-09-19 14:20:30 -0700261static int __b44_readphy(struct b44 *bp, int phy_addr, int reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 int err;
264
265 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
266 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
267 (MDIO_OP_READ << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700268 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 (reg << MDIO_DATA_RA_SHIFT) |
270 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT)));
271 err = b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
272 *val = br32(bp, B44_MDIO_DATA) & MDIO_DATA_DATA;
273
274 return err;
275}
276
Michael Buesch753f4922007-09-19 14:20:30 -0700277static int __b44_writephy(struct b44 *bp, int phy_addr, int reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
279 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
280 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
281 (MDIO_OP_WRITE << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700282 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 (reg << MDIO_DATA_RA_SHIFT) |
284 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT) |
285 (val & MDIO_DATA_DATA)));
286 return b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
287}
288
Michael Buesch753f4922007-09-19 14:20:30 -0700289static inline int b44_readphy(struct b44 *bp, int reg, u32 *val)
290{
291 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
292 return 0;
293
294 return __b44_readphy(bp, bp->phy_addr, reg, val);
295}
296
297static inline int b44_writephy(struct b44 *bp, int reg, u32 val)
298{
299 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
300 return 0;
301
302 return __b44_writephy(bp, bp->phy_addr, reg, val);
303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/* miilib interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306static int b44_mii_read(struct net_device *dev, int phy_id, int location)
307{
308 u32 val;
309 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700310 int rc = __b44_readphy(bp, phy_id, location, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (rc)
312 return 0xffffffff;
313 return val;
314}
315
316static void b44_mii_write(struct net_device *dev, int phy_id, int location,
317 int val)
318{
319 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700320 __b44_writephy(bp, phy_id, location, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323static int b44_phy_reset(struct b44 *bp)
324{
325 u32 val;
326 int err;
327
Michael Buesch753f4922007-09-19 14:20:30 -0700328 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 err = b44_writephy(bp, MII_BMCR, BMCR_RESET);
331 if (err)
332 return err;
333 udelay(100);
334 err = b44_readphy(bp, MII_BMCR, &val);
335 if (!err) {
336 if (val & BMCR_RESET) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000337 netdev_err(bp->dev, "PHY Reset would not complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 err = -ENODEV;
339 }
340 }
341
Hauke Mehrtens8850dce2010-02-20 10:55:25 +0000342 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
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:
Joe Perches2fc96ff2010-02-17 15:01:50 +0000416 pr_warning("PHY: cannot reset MII transceiver isolate bit\n");
Michael Buesch753f4922007-09-19 14:20:30 -0700417}
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)) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000509 netdev_info(bp->dev, "Link is down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000511 netdev_info(bp->dev, "Link is up at %d Mbps, %s duplex\n",
512 (bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10,
513 (bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Joe Perches2fc96ff2010-02-17 15:01:50 +0000515 netdev_info(bp->dev, "Flow control is %s for TX and %s for RX\n",
516 (bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
517 (bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519}
520
521static void b44_check_phy(struct b44 *bp)
522{
523 u32 bmsr, aux;
524
Michael Buesch753f4922007-09-19 14:20:30 -0700525 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY) {
526 bp->flags |= B44_FLAG_100_BASE_T;
527 bp->flags |= B44_FLAG_FULL_DUPLEX;
528 if (!netif_carrier_ok(bp->dev)) {
529 u32 val = br32(bp, B44_TX_CTRL);
530 val |= TX_CTRL_DUPLEX;
531 bw32(bp, B44_TX_CTRL, val);
532 netif_carrier_on(bp->dev);
533 b44_link_report(bp);
534 }
535 return;
536 }
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (!b44_readphy(bp, MII_BMSR, &bmsr) &&
539 !b44_readphy(bp, B44_MII_AUXCTRL, &aux) &&
540 (bmsr != 0xffff)) {
541 if (aux & MII_AUXCTRL_SPEED)
542 bp->flags |= B44_FLAG_100_BASE_T;
543 else
544 bp->flags &= ~B44_FLAG_100_BASE_T;
545 if (aux & MII_AUXCTRL_DUPLEX)
546 bp->flags |= B44_FLAG_FULL_DUPLEX;
547 else
548 bp->flags &= ~B44_FLAG_FULL_DUPLEX;
549
550 if (!netif_carrier_ok(bp->dev) &&
551 (bmsr & BMSR_LSTATUS)) {
552 u32 val = br32(bp, B44_TX_CTRL);
553 u32 local_adv, remote_adv;
554
555 if (bp->flags & B44_FLAG_FULL_DUPLEX)
556 val |= TX_CTRL_DUPLEX;
557 else
558 val &= ~TX_CTRL_DUPLEX;
559 bw32(bp, B44_TX_CTRL, val);
560
561 if (!(bp->flags & B44_FLAG_FORCE_LINK) &&
562 !b44_readphy(bp, MII_ADVERTISE, &local_adv) &&
563 !b44_readphy(bp, MII_LPA, &remote_adv))
564 b44_set_flow_ctrl(bp, local_adv, remote_adv);
565
566 /* Link now up */
567 netif_carrier_on(bp->dev);
568 b44_link_report(bp);
569 } else if (netif_carrier_ok(bp->dev) && !(bmsr & BMSR_LSTATUS)) {
570 /* Link now down */
571 netif_carrier_off(bp->dev);
572 b44_link_report(bp);
573 }
574
575 if (bmsr & BMSR_RFAULT)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000576 netdev_warn(bp->dev, "Remote fault detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (bmsr & BMSR_JCD)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000578 netdev_warn(bp->dev, "Jabber detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 }
580}
581
582static void b44_timer(unsigned long __opaque)
583{
584 struct b44 *bp = (struct b44 *) __opaque;
585
586 spin_lock_irq(&bp->lock);
587
588 b44_check_phy(bp);
589
590 b44_stats_update(bp);
591
592 spin_unlock_irq(&bp->lock);
593
Stephen Hemmingera72a8172007-06-04 13:25:37 -0700594 mod_timer(&bp->timer, round_jiffies(jiffies + HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597static void b44_tx(struct b44 *bp)
598{
599 u32 cur, cons;
600
601 cur = br32(bp, B44_DMATX_STAT) & DMATX_STAT_CDMASK;
602 cur /= sizeof(struct dma_desc);
603
604 /* XXX needs updating when NETIF_F_SG is supported */
605 for (cons = bp->tx_cons; cons != cur; cons = NEXT_TX(cons)) {
606 struct ring_info *rp = &bp->tx_buffers[cons];
607 struct sk_buff *skb = rp->skb;
608
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200609 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Michael Bueschf2257632008-06-20 11:50:29 +0200611 ssb_dma_unmap_single(bp->sdev,
612 rp->mapping,
613 skb->len,
614 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 rp->skb = NULL;
616 dev_kfree_skb_irq(skb);
617 }
618
619 bp->tx_cons = cons;
620 if (netif_queue_stopped(bp->dev) &&
621 TX_BUFFS_AVAIL(bp) > B44_TX_WAKEUP_THRESH)
622 netif_wake_queue(bp->dev);
623
624 bw32(bp, B44_GPTIMER, 0);
625}
626
627/* Works like this. This chip writes a 'struct rx_header" 30 bytes
628 * before the DMA address you give it. So we allocate 30 more bytes
629 * for the RX buffer, DMA map all of it, skb_reserve the 30 bytes, then
630 * point the chip at 30 bytes past where the rx_header will go.
631 */
632static int b44_alloc_rx_skb(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
633{
634 struct dma_desc *dp;
635 struct ring_info *src_map, *map;
636 struct rx_header *rh;
637 struct sk_buff *skb;
638 dma_addr_t mapping;
639 int dest_idx;
640 u32 ctrl;
641
642 src_map = NULL;
643 if (src_idx >= 0)
644 src_map = &bp->rx_buffers[src_idx];
645 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
646 map = &bp->rx_buffers[dest_idx];
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700647 skb = netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (skb == NULL)
649 return -ENOMEM;
650
Michael Bueschf2257632008-06-20 11:50:29 +0200651 mapping = ssb_dma_map_single(bp->sdev, skb->data,
652 RX_PKT_BUF_SZ,
653 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 /* Hardware bug work-around, the chip is unable to do PCI DMA
656 to/from anything above 1GB :-( */
Michael Bueschf2257632008-06-20 11:50:29 +0200657 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Yang Hongyang28b76792009-04-06 19:01:17 -0700658 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 /* Sigh... */
Michael Bueschf2257632008-06-20 11:50:29 +0200660 if (!ssb_dma_mapping_error(bp->sdev, mapping))
661 ssb_dma_unmap_single(bp->sdev, mapping,
662 RX_PKT_BUF_SZ, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dev_kfree_skb_any(skb);
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700664 skb = __netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ, GFP_ATOMIC|GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 if (skb == NULL)
666 return -ENOMEM;
Michael Bueschf2257632008-06-20 11:50:29 +0200667 mapping = ssb_dma_map_single(bp->sdev, skb->data,
668 RX_PKT_BUF_SZ,
669 DMA_FROM_DEVICE);
670 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Yang Hongyang28b76792009-04-06 19:01:17 -0700671 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
Michael Bueschf2257632008-06-20 11:50:29 +0200672 if (!ssb_dma_mapping_error(bp->sdev, mapping))
673 ssb_dma_unmap_single(bp->sdev, mapping, RX_PKT_BUF_SZ,DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 dev_kfree_skb_any(skb);
675 return -ENOMEM;
676 }
Eric Dumazeta58c8912009-01-15 15:29:35 -0800677 bp->force_copybreak = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679
Stephen Hemminger72f48612007-06-04 13:25:39 -0700680 rh = (struct rx_header *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 rh->len = 0;
683 rh->flags = 0;
684
685 map->skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700686 map->mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (src_map != NULL)
689 src_map->skb = NULL;
690
Felix Fietkau4ca85792009-01-09 02:39:57 +0000691 ctrl = (DESC_CTRL_LEN & RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (dest_idx == (B44_RX_RING_SIZE - 1))
693 ctrl |= DESC_CTRL_EOT;
694
695 dp = &bp->rx_ring[dest_idx];
696 dp->ctrl = cpu_to_le32(ctrl);
Felix Fietkau4ca85792009-01-09 02:39:57 +0000697 dp->addr = cpu_to_le32((u32) mapping + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
John W. Linville9f38c632005-10-18 21:30:59 -0400699 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700700 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000701 dest_idx * sizeof(*dp),
Michael Buesch753f4922007-09-19 14:20:30 -0700702 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return RX_PKT_BUF_SZ;
705}
706
707static void b44_recycle_rx(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
708{
709 struct dma_desc *src_desc, *dest_desc;
710 struct ring_info *src_map, *dest_map;
711 struct rx_header *rh;
712 int dest_idx;
Al Viroa7bed272007-01-29 15:36:54 -0500713 __le32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
716 dest_desc = &bp->rx_ring[dest_idx];
717 dest_map = &bp->rx_buffers[dest_idx];
718 src_desc = &bp->rx_ring[src_idx];
719 src_map = &bp->rx_buffers[src_idx];
720
721 dest_map->skb = src_map->skb;
722 rh = (struct rx_header *) src_map->skb->data;
723 rh->len = 0;
724 rh->flags = 0;
Michael Buesch753f4922007-09-19 14:20:30 -0700725 dest_map->mapping = src_map->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
John W. Linville9f38c632005-10-18 21:30:59 -0400727 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700728 b44_sync_dma_desc_for_cpu(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000729 src_idx * sizeof(*src_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700730 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 ctrl = src_desc->ctrl;
733 if (dest_idx == (B44_RX_RING_SIZE - 1))
734 ctrl |= cpu_to_le32(DESC_CTRL_EOT);
735 else
736 ctrl &= cpu_to_le32(~DESC_CTRL_EOT);
737
738 dest_desc->ctrl = ctrl;
739 dest_desc->addr = src_desc->addr;
John W. Linville9f38c632005-10-18 21:30:59 -0400740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 src_map->skb = NULL;
742
John W. Linville9f38c632005-10-18 21:30:59 -0400743 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700744 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000745 dest_idx * sizeof(*dest_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700746 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400747
Michael Buesch37efa232009-04-06 09:52:27 +0000748 ssb_dma_sync_single_for_device(bp->sdev, dest_map->mapping,
Michael Bueschf2257632008-06-20 11:50:29 +0200749 RX_PKT_BUF_SZ,
750 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753static int b44_rx(struct b44 *bp, int budget)
754{
755 int received;
756 u32 cons, prod;
757
758 received = 0;
759 prod = br32(bp, B44_DMARX_STAT) & DMARX_STAT_CDMASK;
760 prod /= sizeof(struct dma_desc);
761 cons = bp->rx_cons;
762
763 while (cons != prod && budget > 0) {
764 struct ring_info *rp = &bp->rx_buffers[cons];
765 struct sk_buff *skb = rp->skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700766 dma_addr_t map = rp->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 struct rx_header *rh;
768 u16 len;
769
Michael Bueschf2257632008-06-20 11:50:29 +0200770 ssb_dma_sync_single_for_cpu(bp->sdev, map,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 RX_PKT_BUF_SZ,
Michael Buesch753f4922007-09-19 14:20:30 -0700772 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 rh = (struct rx_header *) skb->data;
Al Viroa7bed272007-01-29 15:36:54 -0500774 len = le16_to_cpu(rh->len);
Stephen Hemminger72f48612007-06-04 13:25:39 -0700775 if ((len > (RX_PKT_BUF_SZ - RX_PKT_OFFSET)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 (rh->flags & cpu_to_le16(RX_FLAG_ERRORS))) {
777 drop_it:
778 b44_recycle_rx(bp, cons, bp->rx_prod);
779 drop_it_no_recycle:
Eric Dumazet553e2332009-05-27 10:34:50 +0000780 bp->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 goto next_pkt;
782 }
783
784 if (len == 0) {
785 int i = 0;
786
787 do {
788 udelay(2);
789 barrier();
Al Viroa7bed272007-01-29 15:36:54 -0500790 len = le16_to_cpu(rh->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 } while (len == 0 && i++ < 5);
792 if (len == 0)
793 goto drop_it;
794 }
795
796 /* Omit CRC. */
797 len -= 4;
798
Eric Dumazeta58c8912009-01-15 15:29:35 -0800799 if (!bp->force_copybreak && len > RX_COPY_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 int skb_size;
801 skb_size = b44_alloc_rx_skb(bp, cons, bp->rx_prod);
802 if (skb_size < 0)
803 goto drop_it;
Michael Bueschf2257632008-06-20 11:50:29 +0200804 ssb_dma_unmap_single(bp->sdev, map,
805 skb_size, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Leave out rx_header */
Felix Fietkau4ca85792009-01-09 02:39:57 +0000807 skb_put(skb, len + RX_PKT_OFFSET);
808 skb_pull(skb, RX_PKT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 } else {
810 struct sk_buff *copy_skb;
811
812 b44_recycle_rx(bp, cons, bp->rx_prod);
Hauke Mehrtens53639202010-02-20 10:55:26 +0000813 copy_skb = netdev_alloc_skb(bp->dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (copy_skb == NULL)
815 goto drop_it_no_recycle;
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 skb_reserve(copy_skb, 2);
818 skb_put(copy_skb, len);
819 /* DMA sync done above, copy just the actual packet */
Stephen Hemminger72f48612007-06-04 13:25:39 -0700820 skb_copy_from_linear_data_offset(skb, RX_PKT_OFFSET,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300821 copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 skb = copy_skb;
823 }
824 skb->ip_summed = CHECKSUM_NONE;
825 skb->protocol = eth_type_trans(skb, bp->dev);
826 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 received++;
828 budget--;
829 next_pkt:
830 bp->rx_prod = (bp->rx_prod + 1) &
831 (B44_RX_RING_SIZE - 1);
832 cons = (cons + 1) & (B44_RX_RING_SIZE - 1);
833 }
834
835 bp->rx_cons = cons;
836 bw32(bp, B44_DMARX_PTR, cons * sizeof(struct dma_desc));
837
838 return received;
839}
840
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700841static int b44_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700843 struct b44 *bp = container_of(napi, struct b44, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700844 int work_done;
Dongdong Denge99b1f02009-09-16 16:10:47 +0000845 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Dongdong Denge99b1f02009-09-16 16:10:47 +0000847 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 if (bp->istat & (ISTAT_TX | ISTAT_TO)) {
850 /* spin_lock(&bp->tx_lock); */
851 b44_tx(bp);
852 /* spin_unlock(&bp->tx_lock); */
853 }
Dongdong Denge99b1f02009-09-16 16:10:47 +0000854 spin_unlock_irqrestore(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700856 work_done = 0;
857 if (bp->istat & ISTAT_RX)
858 work_done += b44_rx(bp, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 if (bp->istat & ISTAT_ERRORS) {
Francois Romieud15e9c42006-12-17 23:03:15 +0100861 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 b44_halt(bp);
863 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800864 b44_init_hw(bp, B44_FULL_RESET_SKIP_PHY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 netif_wake_queue(bp->dev);
Francois Romieud15e9c42006-12-17 23:03:15 +0100866 spin_unlock_irqrestore(&bp->lock, flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700867 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 }
869
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700870 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800871 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 b44_enable_ints(bp);
873 }
874
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700875 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876}
877
David Howells7d12e782006-10-05 14:55:46 +0100878static irqreturn_t b44_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
880 struct net_device *dev = dev_id;
881 struct b44 *bp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 u32 istat, imask;
883 int handled = 0;
884
Francois Romieu65b984f2005-11-07 01:52:06 +0100885 spin_lock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 istat = br32(bp, B44_ISTAT);
888 imask = br32(bp, B44_IMASK);
889
Johannes Berge78181f2006-11-06 23:17:20 +0100890 /* The interrupt mask register controls which interrupt bits
891 * will actually raise an interrupt to the CPU when set by hw/firmware,
892 * but doesn't mask off the bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 */
894 istat &= imask;
895 if (istat) {
896 handled = 1;
Francois Romieuba5eec92005-11-08 23:37:12 +0100897
898 if (unlikely(!netif_running(dev))) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000899 netdev_info(dev, "late interrupt\n");
Francois Romieuba5eec92005-11-08 23:37:12 +0100900 goto irq_ack;
901 }
902
Ben Hutchings288379f2009-01-19 16:43:59 -0800903 if (napi_schedule_prep(&bp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 /* NOTE: These writes are posted by the readback of
905 * the ISTAT register below.
906 */
907 bp->istat = istat;
908 __b44_disable_ints(bp);
Ben Hutchings288379f2009-01-19 16:43:59 -0800909 __napi_schedule(&bp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911
Francois Romieuba5eec92005-11-08 23:37:12 +0100912irq_ack:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 bw32(bp, B44_ISTAT, istat);
914 br32(bp, B44_ISTAT);
915 }
Francois Romieu65b984f2005-11-07 01:52:06 +0100916 spin_unlock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return IRQ_RETVAL(handled);
918}
919
920static void b44_tx_timeout(struct net_device *dev)
921{
922 struct b44 *bp = netdev_priv(dev);
923
Joe Perches2fc96ff2010-02-17 15:01:50 +0000924 netdev_err(dev, "transmit timed out, resetting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
926 spin_lock_irq(&bp->lock);
927
928 b44_halt(bp);
929 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800930 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 spin_unlock_irq(&bp->lock);
933
934 b44_enable_ints(bp);
935
936 netif_wake_queue(dev);
937}
938
Stephen Hemminger613573252009-08-31 19:50:58 +0000939static netdev_tx_t b44_start_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
941 struct b44 *bp = netdev_priv(dev);
Francois Romieuc7193692005-11-07 01:50:03 +0100942 int rc = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 dma_addr_t mapping;
944 u32 len, entry, ctrl;
Dongdong Deng22580f82009-08-13 19:12:31 +0000945 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 len = skb->len;
Dongdong Deng22580f82009-08-13 19:12:31 +0000948 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 /* This is a hard error, log it. */
951 if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) {
952 netif_stop_queue(dev);
Joe Perches2fc96ff2010-02-17 15:01:50 +0000953 netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
Francois Romieuc7193692005-11-07 01:50:03 +0100954 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956
Michael Bueschf2257632008-06-20 11:50:29 +0200957 mapping = ssb_dma_map_single(bp->sdev, skb->data, len, DMA_TO_DEVICE);
Yang Hongyang28b76792009-04-06 19:01:17 -0700958 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700959 struct sk_buff *bounce_skb;
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /* Chip can't handle DMA to/from >1GB, use bounce buffer */
Michael Bueschf2257632008-06-20 11:50:29 +0200962 if (!ssb_dma_mapping_error(bp->sdev, mapping))
963 ssb_dma_unmap_single(bp->sdev, mapping, len,
964 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
David S. Miller9034f772009-02-10 01:56:45 -0800966 bounce_skb = __netdev_alloc_skb(dev, len, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (!bounce_skb)
Francois Romieuc7193692005-11-07 01:50:03 +0100968 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Michael Bueschf2257632008-06-20 11:50:29 +0200970 mapping = ssb_dma_map_single(bp->sdev, bounce_skb->data,
971 len, DMA_TO_DEVICE);
Yang Hongyang28b76792009-04-06 19:01:17 -0700972 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
Michael Bueschf2257632008-06-20 11:50:29 +0200973 if (!ssb_dma_mapping_error(bp->sdev, mapping))
974 ssb_dma_unmap_single(bp->sdev, mapping,
975 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 dev_kfree_skb_any(bounce_skb);
Francois Romieuc7193692005-11-07 01:50:03 +0100977 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
979
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700980 skb_copy_from_linear_data(skb, skb_put(bounce_skb, len), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 dev_kfree_skb_any(skb);
982 skb = bounce_skb;
983 }
984
985 entry = bp->tx_prod;
986 bp->tx_buffers[entry].skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700987 bp->tx_buffers[entry].mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 ctrl = (len & DESC_CTRL_LEN);
990 ctrl |= DESC_CTRL_IOC | DESC_CTRL_SOF | DESC_CTRL_EOF;
991 if (entry == (B44_TX_RING_SIZE - 1))
992 ctrl |= DESC_CTRL_EOT;
993
994 bp->tx_ring[entry].ctrl = cpu_to_le32(ctrl);
995 bp->tx_ring[entry].addr = cpu_to_le32((u32) mapping+bp->dma_offset);
996
John W. Linville9f38c632005-10-18 21:30:59 -0400997 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700998 b44_sync_dma_desc_for_device(bp->sdev, bp->tx_ring_dma,
999 entry * sizeof(bp->tx_ring[0]),
1000 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 entry = NEXT_TX(entry);
1003
1004 bp->tx_prod = entry;
1005
1006 wmb();
1007
1008 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1009 if (bp->flags & B44_FLAG_BUGGY_TXPTR)
1010 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1011 if (bp->flags & B44_FLAG_REORDER_BUG)
1012 br32(bp, B44_DMATX_PTR);
1013
1014 if (TX_BUFFS_AVAIL(bp) < 1)
1015 netif_stop_queue(dev);
1016
Francois Romieuc7193692005-11-07 01:50:03 +01001017out_unlock:
Dongdong Deng22580f82009-08-13 19:12:31 +00001018 spin_unlock_irqrestore(&bp->lock, flags);
Francois Romieuc7193692005-11-07 01:50:03 +01001019
1020 return rc;
1021
1022err_out:
1023 rc = NETDEV_TX_BUSY;
1024 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025}
1026
1027static int b44_change_mtu(struct net_device *dev, int new_mtu)
1028{
1029 struct b44 *bp = netdev_priv(dev);
1030
1031 if (new_mtu < B44_MIN_MTU || new_mtu > B44_MAX_MTU)
1032 return -EINVAL;
1033
1034 if (!netif_running(dev)) {
1035 /* We'll just catch it later when the
1036 * device is up'd.
1037 */
1038 dev->mtu = new_mtu;
1039 return 0;
1040 }
1041
1042 spin_lock_irq(&bp->lock);
1043 b44_halt(bp);
1044 dev->mtu = new_mtu;
1045 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001046 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 spin_unlock_irq(&bp->lock);
1048
1049 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return 0;
1052}
1053
1054/* Free up pending packets in all rx/tx rings.
1055 *
1056 * The chip has been shut down and the driver detached from
1057 * the networking, so no interrupts or new tx packets will
1058 * end up in the driver. bp->lock is not held and we are not
1059 * in an interrupt context and thus may sleep.
1060 */
1061static void b44_free_rings(struct b44 *bp)
1062{
1063 struct ring_info *rp;
1064 int i;
1065
1066 for (i = 0; i < B44_RX_RING_SIZE; i++) {
1067 rp = &bp->rx_buffers[i];
1068
1069 if (rp->skb == NULL)
1070 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001071 ssb_dma_unmap_single(bp->sdev, rp->mapping, RX_PKT_BUF_SZ,
1072 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 dev_kfree_skb_any(rp->skb);
1074 rp->skb = NULL;
1075 }
1076
1077 /* XXX needs changes once NETIF_F_SG is set... */
1078 for (i = 0; i < B44_TX_RING_SIZE; i++) {
1079 rp = &bp->tx_buffers[i];
1080
1081 if (rp->skb == NULL)
1082 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001083 ssb_dma_unmap_single(bp->sdev, rp->mapping, rp->skb->len,
1084 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 dev_kfree_skb_any(rp->skb);
1086 rp->skb = NULL;
1087 }
1088}
1089
1090/* Initialize tx/rx rings for packet processing.
1091 *
1092 * The chip has been shut down and the driver detached from
1093 * the networking, so no interrupts or new tx packets will
Francois Romieu874a6212005-11-07 01:50:46 +01001094 * end up in the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
1096static void b44_init_rings(struct b44 *bp)
1097{
1098 int i;
1099
1100 b44_free_rings(bp);
1101
1102 memset(bp->rx_ring, 0, B44_RX_RING_BYTES);
1103 memset(bp->tx_ring, 0, B44_TX_RING_BYTES);
1104
John W. Linville9f38c632005-10-18 21:30:59 -04001105 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001106 ssb_dma_sync_single_for_device(bp->sdev, bp->rx_ring_dma,
1107 DMA_TABLE_BYTES,
1108 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001109
1110 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001111 ssb_dma_sync_single_for_device(bp->sdev, bp->tx_ring_dma,
1112 DMA_TABLE_BYTES,
1113 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 for (i = 0; i < bp->rx_pending; i++) {
1116 if (b44_alloc_rx_skb(bp, -1, i) < 0)
1117 break;
1118 }
1119}
1120
1121/*
1122 * Must not be invoked with interrupt sources disabled and
1123 * the hardware shutdown down.
1124 */
1125static void b44_free_consistent(struct b44 *bp)
1126{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001127 kfree(bp->rx_buffers);
1128 bp->rx_buffers = NULL;
1129 kfree(bp->tx_buffers);
1130 bp->tx_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 if (bp->rx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001132 if (bp->flags & B44_FLAG_RX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001133 ssb_dma_unmap_single(bp->sdev, bp->rx_ring_dma,
1134 DMA_TABLE_BYTES,
1135 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001136 kfree(bp->rx_ring);
1137 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001138 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1139 bp->rx_ring, bp->rx_ring_dma,
1140 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 bp->rx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001142 bp->flags &= ~B44_FLAG_RX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 }
1144 if (bp->tx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001145 if (bp->flags & B44_FLAG_TX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001146 ssb_dma_unmap_single(bp->sdev, bp->tx_ring_dma,
1147 DMA_TABLE_BYTES,
1148 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001149 kfree(bp->tx_ring);
1150 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001151 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1152 bp->tx_ring, bp->tx_ring_dma,
1153 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 bp->tx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001155 bp->flags &= ~B44_FLAG_TX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157}
1158
1159/*
1160 * Must not be invoked with interrupt sources disabled and
1161 * the hardware shutdown down. Can sleep.
1162 */
Michael Buesch753f4922007-09-19 14:20:30 -07001163static int b44_alloc_consistent(struct b44 *bp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 int size;
1166
1167 size = B44_RX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001168 bp->rx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (!bp->rx_buffers)
1170 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 size = B44_TX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001173 bp->tx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (!bp->tx_buffers)
1175 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 size = DMA_TABLE_BYTES;
Michael Bueschf2257632008-06-20 11:50:29 +02001178 bp->rx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->rx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001179 if (!bp->rx_ring) {
1180 /* Allocation may have failed due to pci_alloc_consistent
1181 insisting on use of GFP_DMA, which is more restrictive
1182 than necessary... */
1183 struct dma_desc *rx_ring;
1184 dma_addr_t rx_ring_dma;
1185
Michael Buesch753f4922007-09-19 14:20:30 -07001186 rx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001187 if (!rx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001188 goto out_err;
1189
Michael Bueschf2257632008-06-20 11:50:29 +02001190 rx_ring_dma = ssb_dma_map_single(bp->sdev, rx_ring,
1191 DMA_TABLE_BYTES,
1192 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001193
Michael Bueschf2257632008-06-20 11:50:29 +02001194 if (ssb_dma_mapping_error(bp->sdev, rx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001195 rx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001196 kfree(rx_ring);
1197 goto out_err;
1198 }
1199
1200 bp->rx_ring = rx_ring;
1201 bp->rx_ring_dma = rx_ring_dma;
1202 bp->flags |= B44_FLAG_RX_RING_HACK;
1203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Michael Bueschf2257632008-06-20 11:50:29 +02001205 bp->tx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->tx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001206 if (!bp->tx_ring) {
Michael Bueschf2257632008-06-20 11:50:29 +02001207 /* Allocation may have failed due to ssb_dma_alloc_consistent
John W. Linville9f38c632005-10-18 21:30:59 -04001208 insisting on use of GFP_DMA, which is more restrictive
1209 than necessary... */
1210 struct dma_desc *tx_ring;
1211 dma_addr_t tx_ring_dma;
1212
Michael Buesch753f4922007-09-19 14:20:30 -07001213 tx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001214 if (!tx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001215 goto out_err;
1216
Michael Bueschf2257632008-06-20 11:50:29 +02001217 tx_ring_dma = ssb_dma_map_single(bp->sdev, tx_ring,
Michael Buesch753f4922007-09-19 14:20:30 -07001218 DMA_TABLE_BYTES,
1219 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001220
Michael Bueschf2257632008-06-20 11:50:29 +02001221 if (ssb_dma_mapping_error(bp->sdev, tx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001222 tx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001223 kfree(tx_ring);
1224 goto out_err;
1225 }
1226
1227 bp->tx_ring = tx_ring;
1228 bp->tx_ring_dma = tx_ring_dma;
1229 bp->flags |= B44_FLAG_TX_RING_HACK;
1230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 return 0;
1233
1234out_err:
1235 b44_free_consistent(bp);
1236 return -ENOMEM;
1237}
1238
1239/* bp->lock is held. */
1240static void b44_clear_stats(struct b44 *bp)
1241{
1242 unsigned long reg;
1243
1244 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
1245 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL)
1246 br32(bp, reg);
1247 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL)
1248 br32(bp, reg);
1249}
1250
1251/* bp->lock is held. */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001252static void b44_chip_reset(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253{
Michael Buesch753f4922007-09-19 14:20:30 -07001254 struct ssb_device *sdev = bp->sdev;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001255 bool was_enabled;
Michael Buesch753f4922007-09-19 14:20:30 -07001256
Michael Bueschf8af11a2009-02-26 22:33:00 -08001257 was_enabled = ssb_device_is_enabled(bp->sdev);
1258
1259 ssb_device_enable(bp->sdev, 0);
1260 ssb_pcicore_dev_irqvecs_enable(&sdev->bus->pcicore, sdev);
1261
1262 if (was_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 bw32(bp, B44_RCV_LAZY, 0);
1264 bw32(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE);
Gary Zambrano40ee8c72007-02-16 13:27:27 -08001265 b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 200, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 bw32(bp, B44_DMATX_CTRL, 0);
1267 bp->tx_prod = bp->tx_cons = 0;
1268 if (br32(bp, B44_DMARX_STAT) & DMARX_STAT_EMASK) {
1269 b44_wait_bit(bp, B44_DMARX_STAT, DMARX_STAT_SIDLE,
1270 100, 0);
1271 }
1272 bw32(bp, B44_DMARX_CTRL, 0);
1273 bp->rx_prod = bp->rx_cons = 0;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001274 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 b44_clear_stats(bp);
1277
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001278 /*
1279 * Don't enable PHY if we are doing a partial reset
1280 * we are probably going to power down
1281 */
1282 if (reset_kind == B44_CHIP_RESET_PARTIAL)
1283 return;
1284
Michael Buesch753f4922007-09-19 14:20:30 -07001285 switch (sdev->bus->bustype) {
1286 case SSB_BUSTYPE_SSB:
1287 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
Julia Lawall39506a52009-08-01 09:51:06 +00001288 (DIV_ROUND_CLOSEST(ssb_clockspeed(sdev->bus),
1289 B44_MDC_RATIO)
Michael Buesch753f4922007-09-19 14:20:30 -07001290 & MDIO_CTRL_MAXF_MASK)));
1291 break;
1292 case SSB_BUSTYPE_PCI:
Michael Buesch753f4922007-09-19 14:20:30 -07001293 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
1294 (0x0d & MDIO_CTRL_MAXF_MASK)));
1295 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001296 case SSB_BUSTYPE_PCMCIA:
1297 case SSB_BUSTYPE_SDIO:
1298 WARN_ON(1); /* A device with this bus does not exist. */
1299 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001300 }
1301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 br32(bp, B44_MDIO_CTRL);
1303
1304 if (!(br32(bp, B44_DEVCTRL) & DEVCTRL_IPP)) {
1305 bw32(bp, B44_ENET_CTRL, ENET_CTRL_EPSEL);
1306 br32(bp, B44_ENET_CTRL);
1307 bp->flags &= ~B44_FLAG_INTERNAL_PHY;
1308 } else {
1309 u32 val = br32(bp, B44_DEVCTRL);
1310
1311 if (val & DEVCTRL_EPR) {
1312 bw32(bp, B44_DEVCTRL, (val & ~DEVCTRL_EPR));
1313 br32(bp, B44_DEVCTRL);
1314 udelay(100);
1315 }
1316 bp->flags |= B44_FLAG_INTERNAL_PHY;
1317 }
1318}
1319
1320/* bp->lock is held. */
1321static void b44_halt(struct b44 *bp)
1322{
1323 b44_disable_ints(bp);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001324 /* reset PHY */
1325 b44_phy_reset(bp);
1326 /* power down PHY */
Joe Perches2fc96ff2010-02-17 15:01:50 +00001327 netdev_info(bp->dev, "powering down PHY\n");
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001328 bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN);
1329 /* now reset the chip, but without enabling the MAC&PHY
1330 * part of it. This has to be done _after_ we shut down the PHY */
1331 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
1333
1334/* bp->lock is held. */
1335static void __b44_set_mac_addr(struct b44 *bp)
1336{
1337 bw32(bp, B44_CAM_CTRL, 0);
1338 if (!(bp->dev->flags & IFF_PROMISC)) {
1339 u32 val;
1340
1341 __b44_cam_write(bp, bp->dev->dev_addr, 0);
1342 val = br32(bp, B44_CAM_CTRL);
1343 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1344 }
1345}
1346
1347static int b44_set_mac_addr(struct net_device *dev, void *p)
1348{
1349 struct b44 *bp = netdev_priv(dev);
1350 struct sockaddr *addr = p;
Michael Buesch753f4922007-09-19 14:20:30 -07001351 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 if (netif_running(dev))
1354 return -EBUSY;
1355
Gary Zambrano391fc092006-03-28 14:57:38 -08001356 if (!is_valid_ether_addr(addr->sa_data))
1357 return -EINVAL;
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1360
1361 spin_lock_irq(&bp->lock);
Michael Buesch753f4922007-09-19 14:20:30 -07001362
1363 val = br32(bp, B44_RXCONFIG);
1364 if (!(val & RXCONFIG_CAM_ABSENT))
1365 __b44_set_mac_addr(bp);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 spin_unlock_irq(&bp->lock);
1368
1369 return 0;
1370}
1371
1372/* Called at device open time to get the chip ready for
1373 * packet processing. Invoked with bp->lock held.
1374 */
1375static void __b44_set_rx_mode(struct net_device *);
Michael Chan5fc7d612007-01-26 23:59:57 -08001376static void b44_init_hw(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
1378 u32 val;
1379
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001380 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Michael Chan5fc7d612007-01-26 23:59:57 -08001381 if (reset_kind == B44_FULL_RESET) {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001382 b44_phy_reset(bp);
1383 b44_setup_phy(bp);
1384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /* Enable CRC32, set proper LED modes and power on PHY */
1387 bw32(bp, B44_MAC_CTRL, MAC_CTRL_CRC32_ENAB | MAC_CTRL_PHY_LEDCTRL);
1388 bw32(bp, B44_RCV_LAZY, (1 << RCV_LAZY_FC_SHIFT));
1389
1390 /* This sets the MAC address too. */
1391 __b44_set_rx_mode(bp->dev);
1392
1393 /* MTU + eth header + possible VLAN tag + struct rx_header */
1394 bw32(bp, B44_RXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1395 bw32(bp, B44_TXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1396
1397 bw32(bp, B44_TX_WMARK, 56); /* XXX magic */
Michael Chan5fc7d612007-01-26 23:59:57 -08001398 if (reset_kind == B44_PARTIAL_RESET) {
1399 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001400 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Michael Chan5fc7d612007-01-26 23:59:57 -08001401 } else {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001402 bw32(bp, B44_DMATX_CTRL, DMATX_CTRL_ENABLE);
1403 bw32(bp, B44_DMATX_ADDR, bp->tx_ring_dma + bp->dma_offset);
1404 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001405 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001406 bw32(bp, B44_DMARX_ADDR, bp->rx_ring_dma + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001408 bw32(bp, B44_DMARX_PTR, bp->rx_pending);
1409 bp->rx_prod = bp->rx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001411 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 val = br32(bp, B44_ENET_CTRL);
1415 bw32(bp, B44_ENET_CTRL, (val | ENET_CTRL_ENABLE));
1416}
1417
1418static int b44_open(struct net_device *dev)
1419{
1420 struct b44 *bp = netdev_priv(dev);
1421 int err;
1422
Michael Buesch753f4922007-09-19 14:20:30 -07001423 err = b44_alloc_consistent(bp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (err)
Francois Romieu6c2f4262005-11-07 01:52:57 +01001425 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001427 napi_enable(&bp->napi);
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001430 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
John W. Linvillee254e9b2005-06-08 15:11:57 -04001432 b44_check_phy(bp);
1433
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001434 err = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001435 if (unlikely(err < 0)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001436 napi_disable(&bp->napi);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001437 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001438 b44_free_rings(bp);
1439 b44_free_consistent(bp);
1440 goto out;
1441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 init_timer(&bp->timer);
1444 bp->timer.expires = jiffies + HZ;
1445 bp->timer.data = (unsigned long) bp;
1446 bp->timer.function = b44_timer;
1447 add_timer(&bp->timer);
1448
1449 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01001450 netif_start_queue(dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001451out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return err;
1453}
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455#ifdef CONFIG_NET_POLL_CONTROLLER
1456/*
1457 * Polling receive - used by netconsole and other diagnostic tools
1458 * to allow network i/o with interrupts disabled.
1459 */
1460static void b44_poll_controller(struct net_device *dev)
1461{
1462 disable_irq(dev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001463 b44_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 enable_irq(dev->irq);
1465}
1466#endif
1467
Gary Zambrano725ad802006-06-20 15:34:36 -07001468static void bwfilter_table(struct b44 *bp, u8 *pp, u32 bytes, u32 table_offset)
1469{
1470 u32 i;
1471 u32 *pattern = (u32 *) pp;
1472
1473 for (i = 0; i < bytes; i += sizeof(u32)) {
1474 bw32(bp, B44_FILT_ADDR, table_offset + i);
1475 bw32(bp, B44_FILT_DATA, pattern[i / sizeof(u32)]);
1476 }
1477}
1478
1479static int b44_magic_pattern(u8 *macaddr, u8 *ppattern, u8 *pmask, int offset)
1480{
1481 int magicsync = 6;
1482 int k, j, len = offset;
1483 int ethaddr_bytes = ETH_ALEN;
1484
1485 memset(ppattern + offset, 0xff, magicsync);
1486 for (j = 0; j < magicsync; j++)
1487 set_bit(len++, (unsigned long *) pmask);
1488
1489 for (j = 0; j < B44_MAX_PATTERNS; j++) {
1490 if ((B44_PATTERN_SIZE - len) >= ETH_ALEN)
1491 ethaddr_bytes = ETH_ALEN;
1492 else
1493 ethaddr_bytes = B44_PATTERN_SIZE - len;
1494 if (ethaddr_bytes <=0)
1495 break;
1496 for (k = 0; k< ethaddr_bytes; k++) {
1497 ppattern[offset + magicsync +
1498 (j * ETH_ALEN) + k] = macaddr[k];
Stanislav Brabece0188822009-12-08 21:00:22 -08001499 set_bit(len++, (unsigned long *) pmask);
Gary Zambrano725ad802006-06-20 15:34:36 -07001500 }
1501 }
1502 return len - 1;
1503}
1504
1505/* Setup magic packet patterns in the b44 WOL
1506 * pattern matching filter.
1507 */
1508static void b44_setup_pseudo_magicp(struct b44 *bp)
1509{
1510
1511 u32 val;
1512 int plen0, plen1, plen2;
1513 u8 *pwol_pattern;
1514 u8 pwol_mask[B44_PMASK_SIZE];
1515
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001516 pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL);
Gary Zambrano725ad802006-06-20 15:34:36 -07001517 if (!pwol_pattern) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00001518 pr_err("Memory not available for WOL\n");
Gary Zambrano725ad802006-06-20 15:34:36 -07001519 return;
1520 }
1521
1522 /* Ipv4 magic packet pattern - pattern 0.*/
Gary Zambrano725ad802006-06-20 15:34:36 -07001523 memset(pwol_mask, 0, B44_PMASK_SIZE);
1524 plen0 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1525 B44_ETHIPV4UDP_HLEN);
1526
1527 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE, B44_PATTERN_BASE);
1528 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE, B44_PMASK_BASE);
1529
1530 /* Raw ethernet II magic packet pattern - pattern 1 */
1531 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1532 memset(pwol_mask, 0, B44_PMASK_SIZE);
1533 plen1 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1534 ETH_HLEN);
1535
1536 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1537 B44_PATTERN_BASE + B44_PATTERN_SIZE);
1538 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1539 B44_PMASK_BASE + B44_PMASK_SIZE);
1540
1541 /* Ipv6 magic packet pattern - pattern 2 */
1542 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1543 memset(pwol_mask, 0, B44_PMASK_SIZE);
1544 plen2 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1545 B44_ETHIPV6UDP_HLEN);
1546
1547 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1548 B44_PATTERN_BASE + B44_PATTERN_SIZE + B44_PATTERN_SIZE);
1549 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1550 B44_PMASK_BASE + B44_PMASK_SIZE + B44_PMASK_SIZE);
1551
1552 kfree(pwol_pattern);
1553
1554 /* set these pattern's lengths: one less than each real length */
1555 val = plen0 | (plen1 << 8) | (plen2 << 16) | WKUP_LEN_ENABLE_THREE;
1556 bw32(bp, B44_WKUP_LEN, val);
1557
1558 /* enable wakeup pattern matching */
1559 val = br32(bp, B44_DEVCTRL);
1560 bw32(bp, B44_DEVCTRL, val | DEVCTRL_PFE);
1561
1562}
Gary Zambrano52cafd92006-06-20 15:34:23 -07001563
Michael Buesch753f4922007-09-19 14:20:30 -07001564#ifdef CONFIG_B44_PCI
1565static void b44_setup_wol_pci(struct b44 *bp)
1566{
1567 u16 val;
1568
1569 if (bp->sdev->bus->bustype != SSB_BUSTYPE_SSB) {
1570 bw32(bp, SSB_TMSLOW, br32(bp, SSB_TMSLOW) | SSB_TMSLOW_PE);
1571 pci_read_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, &val);
1572 pci_write_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, val | SSB_PE);
1573 }
1574}
1575#else
1576static inline void b44_setup_wol_pci(struct b44 *bp) { }
1577#endif /* CONFIG_B44_PCI */
1578
Gary Zambrano52cafd92006-06-20 15:34:23 -07001579static void b44_setup_wol(struct b44 *bp)
1580{
1581 u32 val;
Gary Zambrano52cafd92006-06-20 15:34:23 -07001582
1583 bw32(bp, B44_RXCONFIG, RXCONFIG_ALLMULTI);
1584
1585 if (bp->flags & B44_FLAG_B0_ANDLATER) {
1586
1587 bw32(bp, B44_WKUP_LEN, WKUP_LEN_DISABLE);
1588
1589 val = bp->dev->dev_addr[2] << 24 |
1590 bp->dev->dev_addr[3] << 16 |
1591 bp->dev->dev_addr[4] << 8 |
1592 bp->dev->dev_addr[5];
1593 bw32(bp, B44_ADDR_LO, val);
1594
1595 val = bp->dev->dev_addr[0] << 8 |
1596 bp->dev->dev_addr[1];
1597 bw32(bp, B44_ADDR_HI, val);
1598
1599 val = br32(bp, B44_DEVCTRL);
1600 bw32(bp, B44_DEVCTRL, val | DEVCTRL_MPM | DEVCTRL_PFE);
1601
Gary Zambrano725ad802006-06-20 15:34:36 -07001602 } else {
1603 b44_setup_pseudo_magicp(bp);
1604 }
Michael Buesch753f4922007-09-19 14:20:30 -07001605 b44_setup_wol_pci(bp);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001606}
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608static int b44_close(struct net_device *dev)
1609{
1610 struct b44 *bp = netdev_priv(dev);
1611
1612 netif_stop_queue(dev);
1613
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001614 napi_disable(&bp->napi);
Francois Romieuba5eec92005-11-08 23:37:12 +01001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 del_timer_sync(&bp->timer);
1617
1618 spin_lock_irq(&bp->lock);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 b44_halt(bp);
1621 b44_free_rings(bp);
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08001622 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
1624 spin_unlock_irq(&bp->lock);
1625
1626 free_irq(dev->irq, dev);
1627
Gary Zambrano52cafd92006-06-20 15:34:23 -07001628 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08001629 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001630 b44_setup_wol(bp);
1631 }
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 b44_free_consistent(bp);
1634
1635 return 0;
1636}
1637
1638static struct net_device_stats *b44_get_stats(struct net_device *dev)
1639{
1640 struct b44 *bp = netdev_priv(dev);
Eric Dumazet553e2332009-05-27 10:34:50 +00001641 struct net_device_stats *nstat = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 struct b44_hw_stats *hwstat = &bp->hw_stats;
1643
1644 /* Convert HW stats into netdevice stats. */
1645 nstat->rx_packets = hwstat->rx_pkts;
1646 nstat->tx_packets = hwstat->tx_pkts;
1647 nstat->rx_bytes = hwstat->rx_octets;
1648 nstat->tx_bytes = hwstat->tx_octets;
1649 nstat->tx_errors = (hwstat->tx_jabber_pkts +
1650 hwstat->tx_oversize_pkts +
1651 hwstat->tx_underruns +
1652 hwstat->tx_excessive_cols +
1653 hwstat->tx_late_cols);
1654 nstat->multicast = hwstat->tx_multicast_pkts;
1655 nstat->collisions = hwstat->tx_total_cols;
1656
1657 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1658 hwstat->rx_undersize);
1659 nstat->rx_over_errors = hwstat->rx_missed_pkts;
1660 nstat->rx_frame_errors = hwstat->rx_align_errs;
1661 nstat->rx_crc_errors = hwstat->rx_crc_errs;
1662 nstat->rx_errors = (hwstat->rx_jabber_pkts +
1663 hwstat->rx_oversize_pkts +
1664 hwstat->rx_missed_pkts +
1665 hwstat->rx_crc_align_errs +
1666 hwstat->rx_undersize +
1667 hwstat->rx_crc_errs +
1668 hwstat->rx_align_errs +
1669 hwstat->rx_symbol_errs);
1670
1671 nstat->tx_aborted_errors = hwstat->tx_underruns;
1672#if 0
1673 /* Carrier lost counter seems to be broken for some devices */
1674 nstat->tx_carrier_errors = hwstat->tx_carrier_lost;
1675#endif
1676
1677 return nstat;
1678}
1679
1680static int __b44_load_mcast(struct b44 *bp, struct net_device *dev)
1681{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001682 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 int i, num_ents;
1684
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001685 num_ents = min_t(int, netdev_mc_count(dev), B44_MCAST_TABLE_SIZE);
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001686 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001687 netdev_for_each_mc_addr(ha, dev) {
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001688 if (i == num_ents)
1689 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001690 __b44_cam_write(bp, ha->addr, i++ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692 return i+1;
1693}
1694
1695static void __b44_set_rx_mode(struct net_device *dev)
1696{
1697 struct b44 *bp = netdev_priv(dev);
1698 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 val = br32(bp, B44_RXCONFIG);
1701 val &= ~(RXCONFIG_PROMISC | RXCONFIG_ALLMULTI);
Michael Buesch753f4922007-09-19 14:20:30 -07001702 if ((dev->flags & IFF_PROMISC) || (val & RXCONFIG_CAM_ABSENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 val |= RXCONFIG_PROMISC;
1704 bw32(bp, B44_RXCONFIG, val);
1705 } else {
Francois Romieu874a6212005-11-07 01:50:46 +01001706 unsigned char zero[6] = {0, 0, 0, 0, 0, 0};
Bill Helfinstinecda22aa2007-04-01 13:10:28 -04001707 int i = 1;
Francois Romieu874a6212005-11-07 01:50:46 +01001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 __b44_set_mac_addr(bp);
1710
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001711 if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001712 (netdev_mc_count(dev) > B44_MCAST_TABLE_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 val |= RXCONFIG_ALLMULTI;
1714 else
Francois Romieu874a6212005-11-07 01:50:46 +01001715 i = __b44_load_mcast(bp, dev);
Jeff Garzik10badc22006-04-12 18:04:32 -04001716
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001717 for (; i < 64; i++)
Jeff Garzik10badc22006-04-12 18:04:32 -04001718 __b44_cam_write(bp, zero, i);
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 bw32(bp, B44_RXCONFIG, val);
1721 val = br32(bp, B44_CAM_CTRL);
1722 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1723 }
1724}
1725
1726static void b44_set_rx_mode(struct net_device *dev)
1727{
1728 struct b44 *bp = netdev_priv(dev);
1729
1730 spin_lock_irq(&bp->lock);
1731 __b44_set_rx_mode(dev);
1732 spin_unlock_irq(&bp->lock);
1733}
1734
1735static u32 b44_get_msglevel(struct net_device *dev)
1736{
1737 struct b44 *bp = netdev_priv(dev);
1738 return bp->msg_enable;
1739}
1740
1741static void b44_set_msglevel(struct net_device *dev, u32 value)
1742{
1743 struct b44 *bp = netdev_priv(dev);
1744 bp->msg_enable = value;
1745}
1746
1747static void b44_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info)
1748{
1749 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07001750 struct ssb_bus *bus = bp->sdev->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
roel kluin27e09552009-07-17 08:01:54 +00001752 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
1753 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
Michael Buesch753f4922007-09-19 14:20:30 -07001754 switch (bus->bustype) {
1755 case SSB_BUSTYPE_PCI:
roel kluin27e09552009-07-17 08:01:54 +00001756 strlcpy(info->bus_info, pci_name(bus->host_pci), sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001757 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001758 case SSB_BUSTYPE_SSB:
roel kluin27e09552009-07-17 08:01:54 +00001759 strlcpy(info->bus_info, "SSB", sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001760 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001761 case SSB_BUSTYPE_PCMCIA:
1762 case SSB_BUSTYPE_SDIO:
1763 WARN_ON(1); /* A device with this bus does not exist. */
1764 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
1768static int b44_nway_reset(struct net_device *dev)
1769{
1770 struct b44 *bp = netdev_priv(dev);
1771 u32 bmcr;
1772 int r;
1773
1774 spin_lock_irq(&bp->lock);
1775 b44_readphy(bp, MII_BMCR, &bmcr);
1776 b44_readphy(bp, MII_BMCR, &bmcr);
1777 r = -EINVAL;
1778 if (bmcr & BMCR_ANENABLE) {
1779 b44_writephy(bp, MII_BMCR,
1780 bmcr | BMCR_ANRESTART);
1781 r = 0;
1782 }
1783 spin_unlock_irq(&bp->lock);
1784
1785 return r;
1786}
1787
1788static int b44_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1789{
1790 struct b44 *bp = netdev_priv(dev);
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 cmd->supported = (SUPPORTED_Autoneg);
1793 cmd->supported |= (SUPPORTED_100baseT_Half |
1794 SUPPORTED_100baseT_Full |
1795 SUPPORTED_10baseT_Half |
1796 SUPPORTED_10baseT_Full |
1797 SUPPORTED_MII);
1798
1799 cmd->advertising = 0;
1800 if (bp->flags & B44_FLAG_ADV_10HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001801 cmd->advertising |= ADVERTISED_10baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (bp->flags & B44_FLAG_ADV_10FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001803 cmd->advertising |= ADVERTISED_10baseT_Full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (bp->flags & B44_FLAG_ADV_100HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001805 cmd->advertising |= ADVERTISED_100baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 if (bp->flags & B44_FLAG_ADV_100FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001807 cmd->advertising |= ADVERTISED_100baseT_Full;
1808 cmd->advertising |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 cmd->speed = (bp->flags & B44_FLAG_100_BASE_T) ?
1810 SPEED_100 : SPEED_10;
1811 cmd->duplex = (bp->flags & B44_FLAG_FULL_DUPLEX) ?
1812 DUPLEX_FULL : DUPLEX_HALF;
1813 cmd->port = 0;
1814 cmd->phy_address = bp->phy_addr;
1815 cmd->transceiver = (bp->flags & B44_FLAG_INTERNAL_PHY) ?
1816 XCVR_INTERNAL : XCVR_EXTERNAL;
1817 cmd->autoneg = (bp->flags & B44_FLAG_FORCE_LINK) ?
1818 AUTONEG_DISABLE : AUTONEG_ENABLE;
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001819 if (cmd->autoneg == AUTONEG_ENABLE)
1820 cmd->advertising |= ADVERTISED_Autoneg;
1821 if (!netif_running(dev)){
1822 cmd->speed = 0;
1823 cmd->duplex = 0xff;
1824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 cmd->maxtxpkt = 0;
1826 cmd->maxrxpkt = 0;
1827 return 0;
1828}
1829
1830static int b44_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1831{
1832 struct b44 *bp = netdev_priv(dev);
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* We do not support gigabit. */
1835 if (cmd->autoneg == AUTONEG_ENABLE) {
1836 if (cmd->advertising &
1837 (ADVERTISED_1000baseT_Half |
1838 ADVERTISED_1000baseT_Full))
1839 return -EINVAL;
1840 } else if ((cmd->speed != SPEED_100 &&
1841 cmd->speed != SPEED_10) ||
1842 (cmd->duplex != DUPLEX_HALF &&
1843 cmd->duplex != DUPLEX_FULL)) {
1844 return -EINVAL;
1845 }
1846
1847 spin_lock_irq(&bp->lock);
1848
1849 if (cmd->autoneg == AUTONEG_ENABLE) {
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001850 bp->flags &= ~(B44_FLAG_FORCE_LINK |
1851 B44_FLAG_100_BASE_T |
1852 B44_FLAG_FULL_DUPLEX |
1853 B44_FLAG_ADV_10HALF |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 B44_FLAG_ADV_10FULL |
1855 B44_FLAG_ADV_100HALF |
1856 B44_FLAG_ADV_100FULL);
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001857 if (cmd->advertising == 0) {
1858 bp->flags |= (B44_FLAG_ADV_10HALF |
1859 B44_FLAG_ADV_10FULL |
1860 B44_FLAG_ADV_100HALF |
1861 B44_FLAG_ADV_100FULL);
1862 } else {
1863 if (cmd->advertising & ADVERTISED_10baseT_Half)
1864 bp->flags |= B44_FLAG_ADV_10HALF;
1865 if (cmd->advertising & ADVERTISED_10baseT_Full)
1866 bp->flags |= B44_FLAG_ADV_10FULL;
1867 if (cmd->advertising & ADVERTISED_100baseT_Half)
1868 bp->flags |= B44_FLAG_ADV_100HALF;
1869 if (cmd->advertising & ADVERTISED_100baseT_Full)
1870 bp->flags |= B44_FLAG_ADV_100FULL;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 } else {
1873 bp->flags |= B44_FLAG_FORCE_LINK;
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001874 bp->flags &= ~(B44_FLAG_100_BASE_T | B44_FLAG_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (cmd->speed == SPEED_100)
1876 bp->flags |= B44_FLAG_100_BASE_T;
1877 if (cmd->duplex == DUPLEX_FULL)
1878 bp->flags |= B44_FLAG_FULL_DUPLEX;
1879 }
1880
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001881 if (netif_running(dev))
1882 b44_setup_phy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
1884 spin_unlock_irq(&bp->lock);
1885
1886 return 0;
1887}
1888
1889static void b44_get_ringparam(struct net_device *dev,
1890 struct ethtool_ringparam *ering)
1891{
1892 struct b44 *bp = netdev_priv(dev);
1893
1894 ering->rx_max_pending = B44_RX_RING_SIZE - 1;
1895 ering->rx_pending = bp->rx_pending;
1896
1897 /* XXX ethtool lacks a tx_max_pending, oops... */
1898}
1899
1900static int b44_set_ringparam(struct net_device *dev,
1901 struct ethtool_ringparam *ering)
1902{
1903 struct b44 *bp = netdev_priv(dev);
1904
1905 if ((ering->rx_pending > B44_RX_RING_SIZE - 1) ||
1906 (ering->rx_mini_pending != 0) ||
1907 (ering->rx_jumbo_pending != 0) ||
1908 (ering->tx_pending > B44_TX_RING_SIZE - 1))
1909 return -EINVAL;
1910
1911 spin_lock_irq(&bp->lock);
1912
1913 bp->rx_pending = ering->rx_pending;
1914 bp->tx_pending = ering->tx_pending;
1915
1916 b44_halt(bp);
1917 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001918 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 netif_wake_queue(bp->dev);
1920 spin_unlock_irq(&bp->lock);
1921
1922 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return 0;
1925}
1926
1927static void b44_get_pauseparam(struct net_device *dev,
1928 struct ethtool_pauseparam *epause)
1929{
1930 struct b44 *bp = netdev_priv(dev);
1931
1932 epause->autoneg =
1933 (bp->flags & B44_FLAG_PAUSE_AUTO) != 0;
1934 epause->rx_pause =
1935 (bp->flags & B44_FLAG_RX_PAUSE) != 0;
1936 epause->tx_pause =
1937 (bp->flags & B44_FLAG_TX_PAUSE) != 0;
1938}
1939
1940static int b44_set_pauseparam(struct net_device *dev,
1941 struct ethtool_pauseparam *epause)
1942{
1943 struct b44 *bp = netdev_priv(dev);
1944
1945 spin_lock_irq(&bp->lock);
1946 if (epause->autoneg)
1947 bp->flags |= B44_FLAG_PAUSE_AUTO;
1948 else
1949 bp->flags &= ~B44_FLAG_PAUSE_AUTO;
1950 if (epause->rx_pause)
1951 bp->flags |= B44_FLAG_RX_PAUSE;
1952 else
1953 bp->flags &= ~B44_FLAG_RX_PAUSE;
1954 if (epause->tx_pause)
1955 bp->flags |= B44_FLAG_TX_PAUSE;
1956 else
1957 bp->flags &= ~B44_FLAG_TX_PAUSE;
1958 if (bp->flags & B44_FLAG_PAUSE_AUTO) {
1959 b44_halt(bp);
1960 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001961 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 } else {
1963 __b44_set_flow_ctrl(bp, bp->flags);
1964 }
1965 spin_unlock_irq(&bp->lock);
1966
1967 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return 0;
1970}
1971
Francois Romieu33539302005-11-07 01:51:34 +01001972static void b44_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1973{
1974 switch(stringset) {
1975 case ETH_SS_STATS:
1976 memcpy(data, *b44_gstrings, sizeof(b44_gstrings));
1977 break;
1978 }
1979}
1980
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001981static int b44_get_sset_count(struct net_device *dev, int sset)
Francois Romieu33539302005-11-07 01:51:34 +01001982{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001983 switch (sset) {
1984 case ETH_SS_STATS:
1985 return ARRAY_SIZE(b44_gstrings);
1986 default:
1987 return -EOPNOTSUPP;
1988 }
Francois Romieu33539302005-11-07 01:51:34 +01001989}
1990
1991static void b44_get_ethtool_stats(struct net_device *dev,
1992 struct ethtool_stats *stats, u64 *data)
1993{
1994 struct b44 *bp = netdev_priv(dev);
1995 u32 *val = &bp->hw_stats.tx_good_octets;
1996 u32 i;
1997
1998 spin_lock_irq(&bp->lock);
1999
2000 b44_stats_update(bp);
2001
2002 for (i = 0; i < ARRAY_SIZE(b44_gstrings); i++)
2003 *data++ = *val++;
2004
2005 spin_unlock_irq(&bp->lock);
2006}
2007
Gary Zambrano52cafd92006-06-20 15:34:23 -07002008static void b44_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2009{
2010 struct b44 *bp = netdev_priv(dev);
2011
2012 wol->supported = WAKE_MAGIC;
2013 if (bp->flags & B44_FLAG_WOL_ENABLE)
2014 wol->wolopts = WAKE_MAGIC;
2015 else
2016 wol->wolopts = 0;
2017 memset(&wol->sopass, 0, sizeof(wol->sopass));
2018}
2019
2020static int b44_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2021{
2022 struct b44 *bp = netdev_priv(dev);
2023
2024 spin_lock_irq(&bp->lock);
2025 if (wol->wolopts & WAKE_MAGIC)
2026 bp->flags |= B44_FLAG_WOL_ENABLE;
2027 else
2028 bp->flags &= ~B44_FLAG_WOL_ENABLE;
2029 spin_unlock_irq(&bp->lock);
2030
2031 return 0;
2032}
2033
Jeff Garzik7282d492006-09-13 14:30:00 -04002034static const struct ethtool_ops b44_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 .get_drvinfo = b44_get_drvinfo,
2036 .get_settings = b44_get_settings,
2037 .set_settings = b44_set_settings,
2038 .nway_reset = b44_nway_reset,
2039 .get_link = ethtool_op_get_link,
Gary Zambrano52cafd92006-06-20 15:34:23 -07002040 .get_wol = b44_get_wol,
2041 .set_wol = b44_set_wol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 .get_ringparam = b44_get_ringparam,
2043 .set_ringparam = b44_set_ringparam,
2044 .get_pauseparam = b44_get_pauseparam,
2045 .set_pauseparam = b44_set_pauseparam,
2046 .get_msglevel = b44_get_msglevel,
2047 .set_msglevel = b44_set_msglevel,
Francois Romieu33539302005-11-07 01:51:34 +01002048 .get_strings = b44_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002049 .get_sset_count = b44_get_sset_count,
Francois Romieu33539302005-11-07 01:51:34 +01002050 .get_ethtool_stats = b44_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051};
2052
2053static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2054{
2055 struct mii_ioctl_data *data = if_mii(ifr);
2056 struct b44 *bp = netdev_priv(dev);
Francois Romieu34105722005-11-30 22:32:13 +01002057 int err = -EINVAL;
2058
2059 if (!netif_running(dev))
2060 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
2062 spin_lock_irq(&bp->lock);
2063 err = generic_mii_ioctl(&bp->mii_if, data, cmd, NULL);
2064 spin_unlock_irq(&bp->lock);
Francois Romieu34105722005-11-30 22:32:13 +01002065out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return err;
2067}
2068
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069static int __devinit b44_get_invariants(struct b44 *bp)
2070{
Michael Buesch753f4922007-09-19 14:20:30 -07002071 struct ssb_device *sdev = bp->sdev;
2072 int err = 0;
2073 u8 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Michael Buesch753f4922007-09-19 14:20:30 -07002075 bp->dma_offset = ssb_dma_translation(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Michael Buesch753f4922007-09-19 14:20:30 -07002077 if (sdev->bus->bustype == SSB_BUSTYPE_SSB &&
2078 instance > 1) {
Larry Finger458414b2007-11-09 16:56:10 -06002079 addr = sdev->bus->sprom.et1mac;
2080 bp->phy_addr = sdev->bus->sprom.et1phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002081 } else {
Larry Finger458414b2007-11-09 16:56:10 -06002082 addr = sdev->bus->sprom.et0mac;
2083 bp->phy_addr = sdev->bus->sprom.et0phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002084 }
Michael Buesch5ea79632008-03-25 18:04:46 +01002085 /* Some ROMs have buggy PHY addresses with the high
2086 * bits set (sign extension?). Truncate them to a
2087 * valid PHY address. */
2088 bp->phy_addr &= 0x1F;
2089
Michael Buesch753f4922007-09-19 14:20:30 -07002090 memcpy(bp->dev->dev_addr, addr, 6);
Gary Zambrano391fc092006-03-28 14:57:38 -08002091
2092 if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){
Joe Perches2fc96ff2010-02-17 15:01:50 +00002093 pr_err("Invalid MAC address found in EEPROM\n");
Gary Zambrano391fc092006-03-28 14:57:38 -08002094 return -EINVAL;
2095 }
2096
John W. Linville2160de52005-09-12 10:48:55 -04002097 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, bp->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 bp->imask = IMASK_DEF;
2100
Jeff Garzik10badc22006-04-12 18:04:32 -04002101 /* XXX - really required?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 bp->flags |= B44_FLAG_BUGGY_TXPTR;
Michael Buesch753f4922007-09-19 14:20:30 -07002103 */
Gary Zambrano52cafd92006-06-20 15:34:23 -07002104
Michael Buesch753f4922007-09-19 14:20:30 -07002105 if (bp->sdev->id.revision >= 7)
2106 bp->flags |= B44_FLAG_B0_ANDLATER;
Gary Zambrano52cafd92006-06-20 15:34:23 -07002107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return err;
2109}
2110
Stephen Hemminger403413e2009-01-07 18:10:49 -08002111static const struct net_device_ops b44_netdev_ops = {
2112 .ndo_open = b44_open,
2113 .ndo_stop = b44_close,
2114 .ndo_start_xmit = b44_start_xmit,
2115 .ndo_get_stats = b44_get_stats,
2116 .ndo_set_multicast_list = b44_set_rx_mode,
2117 .ndo_set_mac_address = b44_set_mac_addr,
2118 .ndo_validate_addr = eth_validate_addr,
2119 .ndo_do_ioctl = b44_ioctl,
2120 .ndo_tx_timeout = b44_tx_timeout,
2121 .ndo_change_mtu = b44_change_mtu,
2122#ifdef CONFIG_NET_POLL_CONTROLLER
2123 .ndo_poll_controller = b44_poll_controller,
2124#endif
2125};
2126
Michael Buesch753f4922007-09-19 14:20:30 -07002127static int __devinit b44_init_one(struct ssb_device *sdev,
2128 const struct ssb_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 static int b44_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 struct net_device *dev;
2132 struct b44 *bp;
Joe Perches0795af52007-10-03 17:59:30 -07002133 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
Michael Buesch753f4922007-09-19 14:20:30 -07002135 instance++;
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 if (b44_version_printed++ == 0)
Joe Perches2fc96ff2010-02-17 15:01:50 +00002138 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 dev = alloc_etherdev(sizeof(*bp));
2142 if (!dev) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002143 dev_err(sdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 err = -ENOMEM;
Michael Buesch753f4922007-09-19 14:20:30 -07002145 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
2147
Michael Buesch753f4922007-09-19 14:20:30 -07002148 SET_NETDEV_DEV(dev, sdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 /* No interesting netdevice features in this card... */
2151 dev->features |= 0;
2152
2153 bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07002154 bp->sdev = sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 bp->dev = dev;
Eric Dumazeta58c8912009-01-15 15:29:35 -08002156 bp->force_copybreak = 0;
Francois Romieu874a6212005-11-07 01:50:46 +01002157
2158 bp->msg_enable = netif_msg_init(b44_debug, B44_DEF_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 spin_lock_init(&bp->lock);
2161
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 bp->rx_pending = B44_DEF_RX_RING_PENDING;
2163 bp->tx_pending = B44_DEF_TX_RING_PENDING;
2164
Stephen Hemminger403413e2009-01-07 18:10:49 -08002165 dev->netdev_ops = &b44_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002166 netif_napi_add(dev, &bp->napi, b44_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 dev->watchdog_timeo = B44_TX_TIMEOUT;
Michael Buesch753f4922007-09-19 14:20:30 -07002168 dev->irq = sdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 SET_ETHTOOL_OPS(dev, &b44_ethtool_ops);
2170
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08002171 netif_carrier_off(dev);
2172
Michael Buesch753f4922007-09-19 14:20:30 -07002173 err = ssb_bus_powerup(sdev->bus, 0);
2174 if (err) {
2175 dev_err(sdev->dev,
2176 "Failed to powerup the bus\n");
2177 goto err_out_free_dev;
2178 }
Yang Hongyang28b76792009-04-06 19:01:17 -07002179 err = ssb_dma_set_mask(sdev, DMA_BIT_MASK(30));
Michael Buesch753f4922007-09-19 14:20:30 -07002180 if (err) {
2181 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002182 "Required 30BIT DMA mask unsupported by the system\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002183 goto err_out_powerdown;
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 err = b44_get_invariants(bp);
2186 if (err) {
Michael Buesch753f4922007-09-19 14:20:30 -07002187 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002188 "Problem fetching invariants of chip, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002189 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 }
2191
2192 bp->mii_if.dev = dev;
2193 bp->mii_if.mdio_read = b44_mii_read;
2194 bp->mii_if.mdio_write = b44_mii_write;
2195 bp->mii_if.phy_id = bp->phy_addr;
2196 bp->mii_if.phy_id_mask = 0x1f;
2197 bp->mii_if.reg_num_mask = 0x1f;
2198
2199 /* By default, advertise all speed/duplex settings. */
2200 bp->flags |= (B44_FLAG_ADV_10HALF | B44_FLAG_ADV_10FULL |
2201 B44_FLAG_ADV_100HALF | B44_FLAG_ADV_100FULL);
2202
2203 /* By default, auto-negotiate PAUSE. */
2204 bp->flags |= B44_FLAG_PAUSE_AUTO;
2205
2206 err = register_netdev(dev);
2207 if (err) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002208 dev_err(sdev->dev, "Cannot register net device, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002209 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
Michael Buesch753f4922007-09-19 14:20:30 -07002212 ssb_set_drvdata(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
Jeff Garzik10badc22006-04-12 18:04:32 -04002214 /* Chip reset provides power to the b44 MAC & PCI cores, which
Gary Zambrano5c513122006-03-29 17:12:05 -05002215 * is necessary for MAC register access.
Jeff Garzik10badc22006-04-12 18:04:32 -04002216 */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002217 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Gary Zambrano5c513122006-03-29 17:12:05 -05002218
Hauke Mehrtens8850dce2010-02-20 10:55:25 +00002219 /* do a phy reset to test if there is an active phy */
2220 if (b44_phy_reset(bp) < 0)
2221 bp->phy_addr = B44_PHY_ADDR_NO_PHY;
2222
Joe Perches2fc96ff2010-02-17 15:01:50 +00002223 netdev_info(dev, "Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n",
2224 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 return 0;
2227
Michael Buesch753f4922007-09-19 14:20:30 -07002228err_out_powerdown:
2229 ssb_bus_may_powerdown(sdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231err_out_free_dev:
2232 free_netdev(dev);
2233
Michael Buesch753f4922007-09-19 14:20:30 -07002234out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return err;
2236}
2237
Michael Buesch753f4922007-09-19 14:20:30 -07002238static void __devexit b44_remove_one(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239{
Michael Buesch753f4922007-09-19 14:20:30 -07002240 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Francois Romieu874a6212005-11-07 01:50:46 +01002242 unregister_netdev(dev);
Michael Buesche92aa632009-02-26 22:35:02 -08002243 ssb_device_disable(sdev, 0);
Michael Buesch753f4922007-09-19 14:20:30 -07002244 ssb_bus_may_powerdown(sdev->bus);
Francois Romieu874a6212005-11-07 01:50:46 +01002245 free_netdev(dev);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002246 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Michael Buesch753f4922007-09-19 14:20:30 -07002247 ssb_set_drvdata(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}
2249
Michael Buesch753f4922007-09-19 14:20:30 -07002250static int b44_suspend(struct ssb_device *sdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Michael Buesch753f4922007-09-19 14:20:30 -07002252 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 struct b44 *bp = netdev_priv(dev);
2254
Michael Buesch753f4922007-09-19 14:20:30 -07002255 if (!netif_running(dev))
2256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 del_timer_sync(&bp->timer);
2259
Jeff Garzik10badc22006-04-12 18:04:32 -04002260 spin_lock_irq(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 b44_halt(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04002263 netif_carrier_off(bp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 netif_device_detach(bp->dev);
2265 b44_free_rings(bp);
2266
2267 spin_unlock_irq(&bp->lock);
Pavel Machek46e17852005-10-28 15:14:47 -07002268
2269 free_irq(dev->irq, dev);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002270 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08002271 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002272 b44_setup_wol(bp);
2273 }
Michael Buesch753f4922007-09-19 14:20:30 -07002274
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002275 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return 0;
2277}
2278
Michael Buesch753f4922007-09-19 14:20:30 -07002279static int b44_resume(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
Michael Buesch753f4922007-09-19 14:20:30 -07002281 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 struct b44 *bp = netdev_priv(dev);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002283 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Michael Buesch753f4922007-09-19 14:20:30 -07002285 rc = ssb_bus_powerup(sdev->bus, 0);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002286 if (rc) {
Michael Buesch753f4922007-09-19 14:20:30 -07002287 dev_err(sdev->dev,
2288 "Failed to powerup the bus\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002289 return rc;
2290 }
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 if (!netif_running(dev))
2293 return 0;
2294
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002295 rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
2296 if (rc) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002297 netdev_err(dev, "request_irq failed\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002298 return rc;
2299 }
Pavel Machek46e17852005-10-28 15:14:47 -07002300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 spin_lock_irq(&bp->lock);
2302
2303 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08002304 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 netif_device_attach(bp->dev);
2306 spin_unlock_irq(&bp->lock);
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01002309 netif_wake_queue(dev);
Stephen Hemmingera72a8172007-06-04 13:25:37 -07002310
2311 mod_timer(&bp->timer, jiffies + 1);
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 return 0;
2314}
2315
Michael Buesch753f4922007-09-19 14:20:30 -07002316static struct ssb_driver b44_ssb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 .name = DRV_MODULE_NAME,
Michael Buesch753f4922007-09-19 14:20:30 -07002318 .id_table = b44_ssb_tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 .probe = b44_init_one,
2320 .remove = __devexit_p(b44_remove_one),
Michael Buesch753f4922007-09-19 14:20:30 -07002321 .suspend = b44_suspend,
2322 .resume = b44_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323};
2324
Michael Buesch753f4922007-09-19 14:20:30 -07002325static inline int b44_pci_init(void)
2326{
2327 int err = 0;
2328#ifdef CONFIG_B44_PCI
2329 err = ssb_pcihost_register(&b44_pci_driver);
2330#endif
2331 return err;
2332}
2333
2334static inline void b44_pci_exit(void)
2335{
2336#ifdef CONFIG_B44_PCI
2337 ssb_pcihost_unregister(&b44_pci_driver);
2338#endif
2339}
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341static int __init b44_init(void)
2342{
John W. Linville9f38c632005-10-18 21:30:59 -04002343 unsigned int dma_desc_align_size = dma_get_cache_alignment();
Michael Buesch753f4922007-09-19 14:20:30 -07002344 int err;
John W. Linville9f38c632005-10-18 21:30:59 -04002345
2346 /* Setup paramaters for syncing RX/TX DMA descriptors */
2347 dma_desc_align_mask = ~(dma_desc_align_size - 1);
Alan Cox22d4d772006-01-17 17:53:56 +00002348 dma_desc_sync_size = max_t(unsigned int, dma_desc_align_size, sizeof(struct dma_desc));
John W. Linville9f38c632005-10-18 21:30:59 -04002349
Michael Buesch753f4922007-09-19 14:20:30 -07002350 err = b44_pci_init();
2351 if (err)
2352 return err;
2353 err = ssb_driver_register(&b44_ssb_driver);
2354 if (err)
2355 b44_pci_exit();
2356 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
2359static void __exit b44_cleanup(void)
2360{
Michael Buesch753f4922007-09-19 14:20:30 -07002361 ssb_driver_unregister(&b44_ssb_driver);
2362 b44_pci_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363}
2364
2365module_init(b44_init);
2366module_exit(b44_cleanup);
2367