blob: 332c60356285688fe7807b0f692fcce9a9c153ff [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/uaccess.h>
32#include <asm/io.h>
33#include <asm/irq.h>
34
Michael Buesch753f4922007-09-19 14:20:30 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "b44.h"
37
38#define DRV_MODULE_NAME "b44"
Michael Buesch753f4922007-09-19 14:20:30 -070039#define DRV_MODULE_VERSION "2.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define B44_DEF_MSG_ENABLE \
42 (NETIF_MSG_DRV | \
43 NETIF_MSG_PROBE | \
44 NETIF_MSG_LINK | \
45 NETIF_MSG_TIMER | \
46 NETIF_MSG_IFDOWN | \
47 NETIF_MSG_IFUP | \
48 NETIF_MSG_RX_ERR | \
49 NETIF_MSG_TX_ERR)
50
51/* length of time before we decide the hardware is borked,
52 * and dev->tx_timeout() should be called to fix the problem
53 */
54#define B44_TX_TIMEOUT (5 * HZ)
55
56/* hardware minimum and maximum for a single frame's data payload */
57#define B44_MIN_MTU 60
58#define B44_MAX_MTU 1500
59
60#define B44_RX_RING_SIZE 512
61#define B44_DEF_RX_RING_PENDING 200
62#define B44_RX_RING_BYTES (sizeof(struct dma_desc) * \
63 B44_RX_RING_SIZE)
64#define B44_TX_RING_SIZE 512
65#define B44_DEF_TX_RING_PENDING (B44_TX_RING_SIZE - 1)
66#define B44_TX_RING_BYTES (sizeof(struct dma_desc) * \
67 B44_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define TX_RING_GAP(BP) \
70 (B44_TX_RING_SIZE - (BP)->tx_pending)
71#define TX_BUFFS_AVAIL(BP) \
72 (((BP)->tx_cons <= (BP)->tx_prod) ? \
73 (BP)->tx_cons + (BP)->tx_pending - (BP)->tx_prod : \
74 (BP)->tx_cons - (BP)->tx_prod - TX_RING_GAP(BP))
75#define NEXT_TX(N) (((N) + 1) & (B44_TX_RING_SIZE - 1))
76
Felix Fietkau4ca85792009-01-09 02:39:57 +000077#define RX_PKT_OFFSET (RX_HEADER_LEN + 2)
78#define RX_PKT_BUF_SZ (1536 + RX_PKT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* minimum number of free TX descriptors required to wake up TX process */
81#define B44_TX_WAKEUP_THRESH (B44_TX_RING_SIZE / 4)
82
Gary Zambrano725ad802006-06-20 15:34:36 -070083/* b44 internal pattern match filter info */
84#define B44_PATTERN_BASE 0x400
85#define B44_PATTERN_SIZE 0x80
86#define B44_PMASK_BASE 0x600
87#define B44_PMASK_SIZE 0x10
88#define B44_MAX_PATTERNS 16
89#define B44_ETHIPV6UDP_HLEN 62
90#define B44_ETHIPV4UDP_HLEN 42
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static char version[] __devinitdata =
Michael Buesch753f4922007-09-19 14:20:30 -070093 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Michael Buesch753f4922007-09-19 14:20:30 -070095MODULE_AUTHOR("Felix Fietkau, Florian Schirmer, Pekka Pietikainen, David S. Miller");
96MODULE_DESCRIPTION("Broadcom 44xx/47xx 10/100 PCI ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097MODULE_LICENSE("GPL");
98MODULE_VERSION(DRV_MODULE_VERSION);
99
100static int b44_debug = -1; /* -1 == use B44_DEF_MSG_ENABLE as value */
101module_param(b44_debug, int, 0);
102MODULE_PARM_DESC(b44_debug, "B44 bitmapped debugging message enable value");
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Michael Buesch753f4922007-09-19 14:20:30 -0700105#ifdef CONFIG_B44_PCI
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000106static DEFINE_PCI_DEVICE_TABLE(b44_pci_tbl) = {
Michael Buesch753f4922007-09-19 14:20:30 -0700107 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401) },
108 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B0) },
109 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B1) },
110 { 0 } /* terminate list with empty entry */
111};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112MODULE_DEVICE_TABLE(pci, b44_pci_tbl);
113
Michael Buesch753f4922007-09-19 14:20:30 -0700114static struct pci_driver b44_pci_driver = {
115 .name = DRV_MODULE_NAME,
116 .id_table = b44_pci_tbl,
117};
118#endif /* CONFIG_B44_PCI */
119
120static const struct ssb_device_id b44_ssb_tbl[] = {
121 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_ETHERNET, SSB_ANY_REV),
122 SSB_DEVTABLE_END
123};
124MODULE_DEVICE_TABLE(ssb, b44_ssb_tbl);
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126static void b44_halt(struct b44 *);
127static void b44_init_rings(struct b44 *);
Michael Chan5fc7d612007-01-26 23:59:57 -0800128
129#define B44_FULL_RESET 1
130#define B44_FULL_RESET_SKIP_PHY 2
131#define B44_PARTIAL_RESET 3
Miguel Botónfedb0ee2008-01-01 01:17:54 +0100132#define B44_CHIP_RESET_FULL 4
133#define B44_CHIP_RESET_PARTIAL 5
Michael Chan5fc7d612007-01-26 23:59:57 -0800134
Gary Zambrano00e8b3a2006-06-20 15:34:26 -0700135static void b44_init_hw(struct b44 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
John W. Linville9f38c632005-10-18 21:30:59 -0400137static int dma_desc_align_mask;
138static int dma_desc_sync_size;
Michael Buesch753f4922007-09-19 14:20:30 -0700139static int instance;
John W. Linville9f38c632005-10-18 21:30:59 -0400140
Francois Romieu33539302005-11-07 01:51:34 +0100141static const char b44_gstrings[][ETH_GSTRING_LEN] = {
142#define _B44(x...) # x,
143B44_STAT_REG_DECLARE
144#undef _B44
145};
146
Michael Buesch753f4922007-09-19 14:20:30 -0700147static inline void b44_sync_dma_desc_for_device(struct ssb_device *sdev,
148 dma_addr_t dma_base,
149 unsigned long offset,
150 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400151{
Michael Bueschf2257632008-06-20 11:50:29 +0200152 ssb_dma_sync_single_range_for_device(sdev, dma_base,
153 offset & dma_desc_align_mask,
154 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400155}
156
Michael Buesch753f4922007-09-19 14:20:30 -0700157static inline void b44_sync_dma_desc_for_cpu(struct ssb_device *sdev,
158 dma_addr_t dma_base,
159 unsigned long offset,
160 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400161{
Michael Bueschf2257632008-06-20 11:50:29 +0200162 ssb_dma_sync_single_range_for_cpu(sdev, dma_base,
163 offset & dma_desc_align_mask,
164 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static inline unsigned long br32(const struct b44 *bp, unsigned long reg)
168{
Michael Buesch753f4922007-09-19 14:20:30 -0700169 return ssb_read32(bp->sdev, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Jeff Garzik10badc22006-04-12 18:04:32 -0400172static inline void bw32(const struct b44 *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned long reg, unsigned long val)
174{
Michael Buesch753f4922007-09-19 14:20:30 -0700175 ssb_write32(bp->sdev, reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178static int b44_wait_bit(struct b44 *bp, unsigned long reg,
179 u32 bit, unsigned long timeout, const int clear)
180{
181 unsigned long i;
182
183 for (i = 0; i < timeout; i++) {
184 u32 val = br32(bp, reg);
185
186 if (clear && !(val & bit))
187 break;
188 if (!clear && (val & bit))
189 break;
190 udelay(10);
191 }
192 if (i == timeout) {
Jochen Friedrichf6ca0572010-02-12 10:11:54 +0000193 if (net_ratelimit())
Joe Perches2fc96ff2010-02-17 15:01:50 +0000194 netdev_err(bp->dev, "BUG! Timeout waiting for bit %08x of register %lx to %s\n",
195 bit, reg, clear ? "clear" : "set");
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return -ENODEV;
198 }
199 return 0;
200}
201
Michael Buesch753f4922007-09-19 14:20:30 -0700202static inline void __b44_cam_read(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 u32 val;
205
Michael Buesch753f4922007-09-19 14:20:30 -0700206 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_READ |
207 (index << CAM_CTRL_INDEX_SHIFT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Michael Buesch753f4922007-09-19 14:20:30 -0700209 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Michael Buesch753f4922007-09-19 14:20:30 -0700211 val = br32(bp, B44_CAM_DATA_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Michael Buesch753f4922007-09-19 14:20:30 -0700213 data[2] = (val >> 24) & 0xFF;
214 data[3] = (val >> 16) & 0xFF;
215 data[4] = (val >> 8) & 0xFF;
216 data[5] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Michael Buesch753f4922007-09-19 14:20:30 -0700218 val = br32(bp, B44_CAM_DATA_HI);
219
220 data[0] = (val >> 8) & 0xFF;
221 data[1] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Michael Buesch753f4922007-09-19 14:20:30 -0700224static inline void __b44_cam_write(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 u32 val;
227
228 val = ((u32) data[2]) << 24;
229 val |= ((u32) data[3]) << 16;
230 val |= ((u32) data[4]) << 8;
231 val |= ((u32) data[5]) << 0;
232 bw32(bp, B44_CAM_DATA_LO, val);
Jeff Garzik10badc22006-04-12 18:04:32 -0400233 val = (CAM_DATA_HI_VALID |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 (((u32) data[0]) << 8) |
235 (((u32) data[1]) << 0));
236 bw32(bp, B44_CAM_DATA_HI, val);
237 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_WRITE |
238 (index << CAM_CTRL_INDEX_SHIFT)));
Jeff Garzik10badc22006-04-12 18:04:32 -0400239 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242static inline void __b44_disable_ints(struct b44 *bp)
243{
244 bw32(bp, B44_IMASK, 0);
245}
246
247static void b44_disable_ints(struct b44 *bp)
248{
249 __b44_disable_ints(bp);
250
251 /* Flush posted writes. */
252 br32(bp, B44_IMASK);
253}
254
255static void b44_enable_ints(struct b44 *bp)
256{
257 bw32(bp, B44_IMASK, bp->imask);
258}
259
Michael Buesch753f4922007-09-19 14:20:30 -0700260static int __b44_readphy(struct b44 *bp, int phy_addr, int reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 int err;
263
264 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
265 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
266 (MDIO_OP_READ << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700267 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 (reg << MDIO_DATA_RA_SHIFT) |
269 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT)));
270 err = b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
271 *val = br32(bp, B44_MDIO_DATA) & MDIO_DATA_DATA;
272
273 return err;
274}
275
Michael Buesch753f4922007-09-19 14:20:30 -0700276static int __b44_writephy(struct b44 *bp, int phy_addr, int reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
279 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
280 (MDIO_OP_WRITE << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700281 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 (reg << MDIO_DATA_RA_SHIFT) |
283 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT) |
284 (val & MDIO_DATA_DATA)));
285 return b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
286}
287
Michael Buesch753f4922007-09-19 14:20:30 -0700288static inline int b44_readphy(struct b44 *bp, int reg, u32 *val)
289{
290 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
291 return 0;
292
293 return __b44_readphy(bp, bp->phy_addr, reg, val);
294}
295
296static inline int b44_writephy(struct b44 *bp, int reg, u32 val)
297{
298 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
299 return 0;
300
301 return __b44_writephy(bp, bp->phy_addr, reg, val);
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/* miilib interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305static int b44_mii_read(struct net_device *dev, int phy_id, int location)
306{
307 u32 val;
308 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700309 int rc = __b44_readphy(bp, phy_id, location, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (rc)
311 return 0xffffffff;
312 return val;
313}
314
315static void b44_mii_write(struct net_device *dev, int phy_id, int location,
316 int val)
317{
318 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700319 __b44_writephy(bp, phy_id, location, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static int b44_phy_reset(struct b44 *bp)
323{
324 u32 val;
325 int err;
326
Michael Buesch753f4922007-09-19 14:20:30 -0700327 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
328 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 err = b44_writephy(bp, MII_BMCR, BMCR_RESET);
330 if (err)
331 return err;
332 udelay(100);
333 err = b44_readphy(bp, MII_BMCR, &val);
334 if (!err) {
335 if (val & BMCR_RESET) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000336 netdev_err(bp->dev, "PHY Reset would not complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 err = -ENODEV;
338 }
339 }
340
Hauke Mehrtens8850dce2010-02-20 10:55:25 +0000341 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static void __b44_set_flow_ctrl(struct b44 *bp, u32 pause_flags)
345{
346 u32 val;
347
348 bp->flags &= ~(B44_FLAG_TX_PAUSE | B44_FLAG_RX_PAUSE);
349 bp->flags |= pause_flags;
350
351 val = br32(bp, B44_RXCONFIG);
352 if (pause_flags & B44_FLAG_RX_PAUSE)
353 val |= RXCONFIG_FLOW;
354 else
355 val &= ~RXCONFIG_FLOW;
356 bw32(bp, B44_RXCONFIG, val);
357
358 val = br32(bp, B44_MAC_FLOW);
359 if (pause_flags & B44_FLAG_TX_PAUSE)
360 val |= (MAC_FLOW_PAUSE_ENAB |
361 (0xc0 & MAC_FLOW_RX_HI_WATER));
362 else
363 val &= ~MAC_FLOW_PAUSE_ENAB;
364 bw32(bp, B44_MAC_FLOW, val);
365}
366
367static void b44_set_flow_ctrl(struct b44 *bp, u32 local, u32 remote)
368{
Jeff Garzik10badc22006-04-12 18:04:32 -0400369 u32 pause_enab = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700371 /* The driver supports only rx pause by default because
Jeff Garzik10badc22006-04-12 18:04:32 -0400372 the b44 mac tx pause mechanism generates excessive
373 pause frames.
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700374 Use ethtool to turn on b44 tx pause if necessary.
375 */
376 if ((local & ADVERTISE_PAUSE_CAP) &&
Jeff Garzik10badc22006-04-12 18:04:32 -0400377 (local & ADVERTISE_PAUSE_ASYM)){
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700378 if ((remote & LPA_PAUSE_ASYM) &&
379 !(remote & LPA_PAUSE_CAP))
380 pause_enab |= B44_FLAG_RX_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
382
383 __b44_set_flow_ctrl(bp, pause_enab);
384}
385
Michael Buesch753f4922007-09-19 14:20:30 -0700386#ifdef SSB_DRIVER_MIPS
387extern char *nvram_get(char *name);
388static void b44_wap54g10_workaround(struct b44 *bp)
389{
390 const char *str;
391 u32 val;
392 int err;
393
394 /*
395 * workaround for bad hardware design in Linksys WAP54G v1.0
396 * see https://dev.openwrt.org/ticket/146
397 * check and reset bit "isolate"
398 */
399 str = nvram_get("boardnum");
400 if (!str)
401 return;
402 if (simple_strtoul(str, NULL, 0) == 2) {
403 err = __b44_readphy(bp, 0, MII_BMCR, &val);
404 if (err)
405 goto error;
406 if (!(val & BMCR_ISOLATE))
407 return;
408 val &= ~BMCR_ISOLATE;
409 err = __b44_writephy(bp, 0, MII_BMCR, val);
410 if (err)
411 goto error;
412 }
413 return;
414error:
Joe Perches2fc96ff2010-02-17 15:01:50 +0000415 pr_warning("PHY: cannot reset MII transceiver isolate bit\n");
Michael Buesch753f4922007-09-19 14:20:30 -0700416}
417#else
418static inline void b44_wap54g10_workaround(struct b44 *bp)
419{
420}
421#endif
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423static int b44_setup_phy(struct b44 *bp)
424{
425 u32 val;
426 int err;
427
Michael Buesch753f4922007-09-19 14:20:30 -0700428 b44_wap54g10_workaround(bp);
429
430 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
431 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if ((err = b44_readphy(bp, B44_MII_ALEDCTRL, &val)) != 0)
433 goto out;
434 if ((err = b44_writephy(bp, B44_MII_ALEDCTRL,
435 val & MII_ALEDCTRL_ALLMSK)) != 0)
436 goto out;
437 if ((err = b44_readphy(bp, B44_MII_TLEDCTRL, &val)) != 0)
438 goto out;
439 if ((err = b44_writephy(bp, B44_MII_TLEDCTRL,
440 val | MII_TLEDCTRL_ENABLE)) != 0)
441 goto out;
442
443 if (!(bp->flags & B44_FLAG_FORCE_LINK)) {
444 u32 adv = ADVERTISE_CSMA;
445
446 if (bp->flags & B44_FLAG_ADV_10HALF)
447 adv |= ADVERTISE_10HALF;
448 if (bp->flags & B44_FLAG_ADV_10FULL)
449 adv |= ADVERTISE_10FULL;
450 if (bp->flags & B44_FLAG_ADV_100HALF)
451 adv |= ADVERTISE_100HALF;
452 if (bp->flags & B44_FLAG_ADV_100FULL)
453 adv |= ADVERTISE_100FULL;
454
455 if (bp->flags & B44_FLAG_PAUSE_AUTO)
456 adv |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
457
458 if ((err = b44_writephy(bp, MII_ADVERTISE, adv)) != 0)
459 goto out;
460 if ((err = b44_writephy(bp, MII_BMCR, (BMCR_ANENABLE |
461 BMCR_ANRESTART))) != 0)
462 goto out;
463 } else {
464 u32 bmcr;
465
466 if ((err = b44_readphy(bp, MII_BMCR, &bmcr)) != 0)
467 goto out;
468 bmcr &= ~(BMCR_FULLDPLX | BMCR_ANENABLE | BMCR_SPEED100);
469 if (bp->flags & B44_FLAG_100_BASE_T)
470 bmcr |= BMCR_SPEED100;
471 if (bp->flags & B44_FLAG_FULL_DUPLEX)
472 bmcr |= BMCR_FULLDPLX;
473 if ((err = b44_writephy(bp, MII_BMCR, bmcr)) != 0)
474 goto out;
475
476 /* Since we will not be negotiating there is no safe way
477 * to determine if the link partner supports flow control
478 * or not. So just disable it completely in this case.
479 */
480 b44_set_flow_ctrl(bp, 0, 0);
481 }
482
483out:
484 return err;
485}
486
487static void b44_stats_update(struct b44 *bp)
488{
489 unsigned long reg;
490 u32 *val;
491
492 val = &bp->hw_stats.tx_good_octets;
493 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL) {
494 *val++ += br32(bp, reg);
495 }
Francois Romieu33539302005-11-07 01:51:34 +0100496
497 /* Pad */
498 reg += 8*4UL;
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL) {
501 *val++ += br32(bp, reg);
502 }
503}
504
505static void b44_link_report(struct b44 *bp)
506{
507 if (!netif_carrier_ok(bp->dev)) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000508 netdev_info(bp->dev, "Link is down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 } else {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000510 netdev_info(bp->dev, "Link is up at %d Mbps, %s duplex\n",
511 (bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10,
512 (bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Joe Perches2fc96ff2010-02-17 15:01:50 +0000514 netdev_info(bp->dev, "Flow control is %s for TX and %s for RX\n",
515 (bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
516 (bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518}
519
520static void b44_check_phy(struct b44 *bp)
521{
522 u32 bmsr, aux;
523
Michael Buesch753f4922007-09-19 14:20:30 -0700524 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY) {
525 bp->flags |= B44_FLAG_100_BASE_T;
526 bp->flags |= B44_FLAG_FULL_DUPLEX;
527 if (!netif_carrier_ok(bp->dev)) {
528 u32 val = br32(bp, B44_TX_CTRL);
529 val |= TX_CTRL_DUPLEX;
530 bw32(bp, B44_TX_CTRL, val);
531 netif_carrier_on(bp->dev);
532 b44_link_report(bp);
533 }
534 return;
535 }
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!b44_readphy(bp, MII_BMSR, &bmsr) &&
538 !b44_readphy(bp, B44_MII_AUXCTRL, &aux) &&
539 (bmsr != 0xffff)) {
540 if (aux & MII_AUXCTRL_SPEED)
541 bp->flags |= B44_FLAG_100_BASE_T;
542 else
543 bp->flags &= ~B44_FLAG_100_BASE_T;
544 if (aux & MII_AUXCTRL_DUPLEX)
545 bp->flags |= B44_FLAG_FULL_DUPLEX;
546 else
547 bp->flags &= ~B44_FLAG_FULL_DUPLEX;
548
549 if (!netif_carrier_ok(bp->dev) &&
550 (bmsr & BMSR_LSTATUS)) {
551 u32 val = br32(bp, B44_TX_CTRL);
552 u32 local_adv, remote_adv;
553
554 if (bp->flags & B44_FLAG_FULL_DUPLEX)
555 val |= TX_CTRL_DUPLEX;
556 else
557 val &= ~TX_CTRL_DUPLEX;
558 bw32(bp, B44_TX_CTRL, val);
559
560 if (!(bp->flags & B44_FLAG_FORCE_LINK) &&
561 !b44_readphy(bp, MII_ADVERTISE, &local_adv) &&
562 !b44_readphy(bp, MII_LPA, &remote_adv))
563 b44_set_flow_ctrl(bp, local_adv, remote_adv);
564
565 /* Link now up */
566 netif_carrier_on(bp->dev);
567 b44_link_report(bp);
568 } else if (netif_carrier_ok(bp->dev) && !(bmsr & BMSR_LSTATUS)) {
569 /* Link now down */
570 netif_carrier_off(bp->dev);
571 b44_link_report(bp);
572 }
573
574 if (bmsr & BMSR_RFAULT)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000575 netdev_warn(bp->dev, "Remote fault detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (bmsr & BMSR_JCD)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000577 netdev_warn(bp->dev, "Jabber detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579}
580
581static void b44_timer(unsigned long __opaque)
582{
583 struct b44 *bp = (struct b44 *) __opaque;
584
585 spin_lock_irq(&bp->lock);
586
587 b44_check_phy(bp);
588
589 b44_stats_update(bp);
590
591 spin_unlock_irq(&bp->lock);
592
Stephen Hemmingera72a8172007-06-04 13:25:37 -0700593 mod_timer(&bp->timer, round_jiffies(jiffies + HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
596static void b44_tx(struct b44 *bp)
597{
598 u32 cur, cons;
599
600 cur = br32(bp, B44_DMATX_STAT) & DMATX_STAT_CDMASK;
601 cur /= sizeof(struct dma_desc);
602
603 /* XXX needs updating when NETIF_F_SG is supported */
604 for (cons = bp->tx_cons; cons != cur; cons = NEXT_TX(cons)) {
605 struct ring_info *rp = &bp->tx_buffers[cons];
606 struct sk_buff *skb = rp->skb;
607
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200608 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Michael Bueschf2257632008-06-20 11:50:29 +0200610 ssb_dma_unmap_single(bp->sdev,
611 rp->mapping,
612 skb->len,
613 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 rp->skb = NULL;
615 dev_kfree_skb_irq(skb);
616 }
617
618 bp->tx_cons = cons;
619 if (netif_queue_stopped(bp->dev) &&
620 TX_BUFFS_AVAIL(bp) > B44_TX_WAKEUP_THRESH)
621 netif_wake_queue(bp->dev);
622
623 bw32(bp, B44_GPTIMER, 0);
624}
625
626/* Works like this. This chip writes a 'struct rx_header" 30 bytes
627 * before the DMA address you give it. So we allocate 30 more bytes
628 * for the RX buffer, DMA map all of it, skb_reserve the 30 bytes, then
629 * point the chip at 30 bytes past where the rx_header will go.
630 */
631static int b44_alloc_rx_skb(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
632{
633 struct dma_desc *dp;
634 struct ring_info *src_map, *map;
635 struct rx_header *rh;
636 struct sk_buff *skb;
637 dma_addr_t mapping;
638 int dest_idx;
639 u32 ctrl;
640
641 src_map = NULL;
642 if (src_idx >= 0)
643 src_map = &bp->rx_buffers[src_idx];
644 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
645 map = &bp->rx_buffers[dest_idx];
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700646 skb = netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (skb == NULL)
648 return -ENOMEM;
649
Michael Bueschf2257632008-06-20 11:50:29 +0200650 mapping = ssb_dma_map_single(bp->sdev, skb->data,
651 RX_PKT_BUF_SZ,
652 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 /* Hardware bug work-around, the chip is unable to do PCI DMA
655 to/from anything above 1GB :-( */
Michael Bueschf2257632008-06-20 11:50:29 +0200656 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Yang Hongyang28b76792009-04-06 19:01:17 -0700657 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /* Sigh... */
Michael Bueschf2257632008-06-20 11:50:29 +0200659 if (!ssb_dma_mapping_error(bp->sdev, mapping))
660 ssb_dma_unmap_single(bp->sdev, mapping,
661 RX_PKT_BUF_SZ, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 dev_kfree_skb_any(skb);
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700663 skb = __netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ, GFP_ATOMIC|GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (skb == NULL)
665 return -ENOMEM;
Michael Bueschf2257632008-06-20 11:50:29 +0200666 mapping = ssb_dma_map_single(bp->sdev, skb->data,
667 RX_PKT_BUF_SZ,
668 DMA_FROM_DEVICE);
669 if (ssb_dma_mapping_error(bp->sdev, mapping) ||
Yang Hongyang28b76792009-04-06 19:01:17 -0700670 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
Michael Bueschf2257632008-06-20 11:50:29 +0200671 if (!ssb_dma_mapping_error(bp->sdev, mapping))
672 ssb_dma_unmap_single(bp->sdev, mapping, RX_PKT_BUF_SZ,DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 dev_kfree_skb_any(skb);
674 return -ENOMEM;
675 }
Eric Dumazeta58c8912009-01-15 15:29:35 -0800676 bp->force_copybreak = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678
Stephen Hemminger72f48612007-06-04 13:25:39 -0700679 rh = (struct rx_header *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 rh->len = 0;
682 rh->flags = 0;
683
684 map->skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700685 map->mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 if (src_map != NULL)
688 src_map->skb = NULL;
689
Felix Fietkau4ca85792009-01-09 02:39:57 +0000690 ctrl = (DESC_CTRL_LEN & RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (dest_idx == (B44_RX_RING_SIZE - 1))
692 ctrl |= DESC_CTRL_EOT;
693
694 dp = &bp->rx_ring[dest_idx];
695 dp->ctrl = cpu_to_le32(ctrl);
Felix Fietkau4ca85792009-01-09 02:39:57 +0000696 dp->addr = cpu_to_le32((u32) mapping + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
John W. Linville9f38c632005-10-18 21:30:59 -0400698 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700699 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000700 dest_idx * sizeof(*dp),
Michael Buesch753f4922007-09-19 14:20:30 -0700701 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return RX_PKT_BUF_SZ;
704}
705
706static void b44_recycle_rx(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
707{
708 struct dma_desc *src_desc, *dest_desc;
709 struct ring_info *src_map, *dest_map;
710 struct rx_header *rh;
711 int dest_idx;
Al Viroa7bed272007-01-29 15:36:54 -0500712 __le32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
715 dest_desc = &bp->rx_ring[dest_idx];
716 dest_map = &bp->rx_buffers[dest_idx];
717 src_desc = &bp->rx_ring[src_idx];
718 src_map = &bp->rx_buffers[src_idx];
719
720 dest_map->skb = src_map->skb;
721 rh = (struct rx_header *) src_map->skb->data;
722 rh->len = 0;
723 rh->flags = 0;
Michael Buesch753f4922007-09-19 14:20:30 -0700724 dest_map->mapping = src_map->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
John W. Linville9f38c632005-10-18 21:30:59 -0400726 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700727 b44_sync_dma_desc_for_cpu(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000728 src_idx * sizeof(*src_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700729 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ctrl = src_desc->ctrl;
732 if (dest_idx == (B44_RX_RING_SIZE - 1))
733 ctrl |= cpu_to_le32(DESC_CTRL_EOT);
734 else
735 ctrl &= cpu_to_le32(~DESC_CTRL_EOT);
736
737 dest_desc->ctrl = ctrl;
738 dest_desc->addr = src_desc->addr;
John W. Linville9f38c632005-10-18 21:30:59 -0400739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 src_map->skb = NULL;
741
John W. Linville9f38c632005-10-18 21:30:59 -0400742 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700743 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000744 dest_idx * sizeof(*dest_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700745 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400746
Michael Buesch37efa232009-04-06 09:52:27 +0000747 ssb_dma_sync_single_for_device(bp->sdev, dest_map->mapping,
Michael Bueschf2257632008-06-20 11:50:29 +0200748 RX_PKT_BUF_SZ,
749 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752static int b44_rx(struct b44 *bp, int budget)
753{
754 int received;
755 u32 cons, prod;
756
757 received = 0;
758 prod = br32(bp, B44_DMARX_STAT) & DMARX_STAT_CDMASK;
759 prod /= sizeof(struct dma_desc);
760 cons = bp->rx_cons;
761
762 while (cons != prod && budget > 0) {
763 struct ring_info *rp = &bp->rx_buffers[cons];
764 struct sk_buff *skb = rp->skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700765 dma_addr_t map = rp->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct rx_header *rh;
767 u16 len;
768
Michael Bueschf2257632008-06-20 11:50:29 +0200769 ssb_dma_sync_single_for_cpu(bp->sdev, map,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 RX_PKT_BUF_SZ,
Michael Buesch753f4922007-09-19 14:20:30 -0700771 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 rh = (struct rx_header *) skb->data;
Al Viroa7bed272007-01-29 15:36:54 -0500773 len = le16_to_cpu(rh->len);
Stephen Hemminger72f48612007-06-04 13:25:39 -0700774 if ((len > (RX_PKT_BUF_SZ - RX_PKT_OFFSET)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 (rh->flags & cpu_to_le16(RX_FLAG_ERRORS))) {
776 drop_it:
777 b44_recycle_rx(bp, cons, bp->rx_prod);
778 drop_it_no_recycle:
Eric Dumazet553e2332009-05-27 10:34:50 +0000779 bp->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 goto next_pkt;
781 }
782
783 if (len == 0) {
784 int i = 0;
785
786 do {
787 udelay(2);
788 barrier();
Al Viroa7bed272007-01-29 15:36:54 -0500789 len = le16_to_cpu(rh->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 } while (len == 0 && i++ < 5);
791 if (len == 0)
792 goto drop_it;
793 }
794
795 /* Omit CRC. */
796 len -= 4;
797
Eric Dumazeta58c8912009-01-15 15:29:35 -0800798 if (!bp->force_copybreak && len > RX_COPY_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 int skb_size;
800 skb_size = b44_alloc_rx_skb(bp, cons, bp->rx_prod);
801 if (skb_size < 0)
802 goto drop_it;
Michael Bueschf2257632008-06-20 11:50:29 +0200803 ssb_dma_unmap_single(bp->sdev, map,
804 skb_size, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /* Leave out rx_header */
Felix Fietkau4ca85792009-01-09 02:39:57 +0000806 skb_put(skb, len + RX_PKT_OFFSET);
807 skb_pull(skb, RX_PKT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 } else {
809 struct sk_buff *copy_skb;
810
811 b44_recycle_rx(bp, cons, bp->rx_prod);
Hauke Mehrtens53639202010-02-20 10:55:26 +0000812 copy_skb = netdev_alloc_skb(bp->dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (copy_skb == NULL)
814 goto drop_it_no_recycle;
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 skb_reserve(copy_skb, 2);
817 skb_put(copy_skb, len);
818 /* DMA sync done above, copy just the actual packet */
Stephen Hemminger72f48612007-06-04 13:25:39 -0700819 skb_copy_from_linear_data_offset(skb, RX_PKT_OFFSET,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300820 copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 skb = copy_skb;
822 }
823 skb->ip_summed = CHECKSUM_NONE;
824 skb->protocol = eth_type_trans(skb, bp->dev);
825 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 received++;
827 budget--;
828 next_pkt:
829 bp->rx_prod = (bp->rx_prod + 1) &
830 (B44_RX_RING_SIZE - 1);
831 cons = (cons + 1) & (B44_RX_RING_SIZE - 1);
832 }
833
834 bp->rx_cons = cons;
835 bw32(bp, B44_DMARX_PTR, cons * sizeof(struct dma_desc));
836
837 return received;
838}
839
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700840static int b44_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700842 struct b44 *bp = container_of(napi, struct b44, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700843 int work_done;
Dongdong Denge99b1f02009-09-16 16:10:47 +0000844 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Dongdong Denge99b1f02009-09-16 16:10:47 +0000846 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 if (bp->istat & (ISTAT_TX | ISTAT_TO)) {
849 /* spin_lock(&bp->tx_lock); */
850 b44_tx(bp);
851 /* spin_unlock(&bp->tx_lock); */
852 }
Dongdong Denge99b1f02009-09-16 16:10:47 +0000853 spin_unlock_irqrestore(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700855 work_done = 0;
856 if (bp->istat & ISTAT_RX)
857 work_done += b44_rx(bp, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 if (bp->istat & ISTAT_ERRORS) {
Francois Romieud15e9c42006-12-17 23:03:15 +0100860 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 b44_halt(bp);
862 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800863 b44_init_hw(bp, B44_FULL_RESET_SKIP_PHY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 netif_wake_queue(bp->dev);
Francois Romieud15e9c42006-12-17 23:03:15 +0100865 spin_unlock_irqrestore(&bp->lock, flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700866 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700869 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800870 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 b44_enable_ints(bp);
872 }
873
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700874 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
David Howells7d12e782006-10-05 14:55:46 +0100877static irqreturn_t b44_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 struct net_device *dev = dev_id;
880 struct b44 *bp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 u32 istat, imask;
882 int handled = 0;
883
Francois Romieu65b984f2005-11-07 01:52:06 +0100884 spin_lock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 istat = br32(bp, B44_ISTAT);
887 imask = br32(bp, B44_IMASK);
888
Johannes Berge78181f2006-11-06 23:17:20 +0100889 /* The interrupt mask register controls which interrupt bits
890 * will actually raise an interrupt to the CPU when set by hw/firmware,
891 * but doesn't mask off the bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 */
893 istat &= imask;
894 if (istat) {
895 handled = 1;
Francois Romieuba5eec92005-11-08 23:37:12 +0100896
897 if (unlikely(!netif_running(dev))) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000898 netdev_info(dev, "late interrupt\n");
Francois Romieuba5eec92005-11-08 23:37:12 +0100899 goto irq_ack;
900 }
901
Ben Hutchings288379f2009-01-19 16:43:59 -0800902 if (napi_schedule_prep(&bp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /* NOTE: These writes are posted by the readback of
904 * the ISTAT register below.
905 */
906 bp->istat = istat;
907 __b44_disable_ints(bp);
Ben Hutchings288379f2009-01-19 16:43:59 -0800908 __napi_schedule(&bp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
Francois Romieuba5eec92005-11-08 23:37:12 +0100911irq_ack:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 bw32(bp, B44_ISTAT, istat);
913 br32(bp, B44_ISTAT);
914 }
Francois Romieu65b984f2005-11-07 01:52:06 +0100915 spin_unlock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 return IRQ_RETVAL(handled);
917}
918
919static void b44_tx_timeout(struct net_device *dev)
920{
921 struct b44 *bp = netdev_priv(dev);
922
Joe Perches2fc96ff2010-02-17 15:01:50 +0000923 netdev_err(dev, "transmit timed out, resetting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925 spin_lock_irq(&bp->lock);
926
927 b44_halt(bp);
928 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800929 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 spin_unlock_irq(&bp->lock);
932
933 b44_enable_ints(bp);
934
935 netif_wake_queue(dev);
936}
937
Stephen Hemminger613573252009-08-31 19:50:58 +0000938static netdev_tx_t b44_start_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 struct b44 *bp = netdev_priv(dev);
Francois Romieuc7193692005-11-07 01:50:03 +0100941 int rc = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 dma_addr_t mapping;
943 u32 len, entry, ctrl;
Dongdong Deng22580f82009-08-13 19:12:31 +0000944 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 len = skb->len;
Dongdong Deng22580f82009-08-13 19:12:31 +0000947 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948
949 /* This is a hard error, log it. */
950 if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) {
951 netif_stop_queue(dev);
Joe Perches2fc96ff2010-02-17 15:01:50 +0000952 netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
Francois Romieuc7193692005-11-07 01:50:03 +0100953 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
955
Michael Bueschf2257632008-06-20 11:50:29 +0200956 mapping = ssb_dma_map_single(bp->sdev, skb->data, len, DMA_TO_DEVICE);
Yang Hongyang28b76792009-04-06 19:01:17 -0700957 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700958 struct sk_buff *bounce_skb;
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /* Chip can't handle DMA to/from >1GB, use bounce buffer */
Michael Bueschf2257632008-06-20 11:50:29 +0200961 if (!ssb_dma_mapping_error(bp->sdev, mapping))
962 ssb_dma_unmap_single(bp->sdev, mapping, len,
963 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
David S. Miller9034f772009-02-10 01:56:45 -0800965 bounce_skb = __netdev_alloc_skb(dev, len, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!bounce_skb)
Francois Romieuc7193692005-11-07 01:50:03 +0100967 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Michael Bueschf2257632008-06-20 11:50:29 +0200969 mapping = ssb_dma_map_single(bp->sdev, bounce_skb->data,
970 len, DMA_TO_DEVICE);
Yang Hongyang28b76792009-04-06 19:01:17 -0700971 if (ssb_dma_mapping_error(bp->sdev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
Michael Bueschf2257632008-06-20 11:50:29 +0200972 if (!ssb_dma_mapping_error(bp->sdev, mapping))
973 ssb_dma_unmap_single(bp->sdev, mapping,
974 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 dev_kfree_skb_any(bounce_skb);
Francois Romieuc7193692005-11-07 01:50:03 +0100976 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700979 skb_copy_from_linear_data(skb, skb_put(bounce_skb, len), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 dev_kfree_skb_any(skb);
981 skb = bounce_skb;
982 }
983
984 entry = bp->tx_prod;
985 bp->tx_buffers[entry].skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700986 bp->tx_buffers[entry].mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 ctrl = (len & DESC_CTRL_LEN);
989 ctrl |= DESC_CTRL_IOC | DESC_CTRL_SOF | DESC_CTRL_EOF;
990 if (entry == (B44_TX_RING_SIZE - 1))
991 ctrl |= DESC_CTRL_EOT;
992
993 bp->tx_ring[entry].ctrl = cpu_to_le32(ctrl);
994 bp->tx_ring[entry].addr = cpu_to_le32((u32) mapping+bp->dma_offset);
995
John W. Linville9f38c632005-10-18 21:30:59 -0400996 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700997 b44_sync_dma_desc_for_device(bp->sdev, bp->tx_ring_dma,
998 entry * sizeof(bp->tx_ring[0]),
999 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 entry = NEXT_TX(entry);
1002
1003 bp->tx_prod = entry;
1004
1005 wmb();
1006
1007 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1008 if (bp->flags & B44_FLAG_BUGGY_TXPTR)
1009 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1010 if (bp->flags & B44_FLAG_REORDER_BUG)
1011 br32(bp, B44_DMATX_PTR);
1012
1013 if (TX_BUFFS_AVAIL(bp) < 1)
1014 netif_stop_queue(dev);
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 dev->trans_start = jiffies;
1017
Francois Romieuc7193692005-11-07 01:50:03 +01001018out_unlock:
Dongdong Deng22580f82009-08-13 19:12:31 +00001019 spin_unlock_irqrestore(&bp->lock, flags);
Francois Romieuc7193692005-11-07 01:50:03 +01001020
1021 return rc;
1022
1023err_out:
1024 rc = NETDEV_TX_BUSY;
1025 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028static int b44_change_mtu(struct net_device *dev, int new_mtu)
1029{
1030 struct b44 *bp = netdev_priv(dev);
1031
1032 if (new_mtu < B44_MIN_MTU || new_mtu > B44_MAX_MTU)
1033 return -EINVAL;
1034
1035 if (!netif_running(dev)) {
1036 /* We'll just catch it later when the
1037 * device is up'd.
1038 */
1039 dev->mtu = new_mtu;
1040 return 0;
1041 }
1042
1043 spin_lock_irq(&bp->lock);
1044 b44_halt(bp);
1045 dev->mtu = new_mtu;
1046 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001047 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 spin_unlock_irq(&bp->lock);
1049
1050 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 return 0;
1053}
1054
1055/* Free up pending packets in all rx/tx rings.
1056 *
1057 * The chip has been shut down and the driver detached from
1058 * the networking, so no interrupts or new tx packets will
1059 * end up in the driver. bp->lock is not held and we are not
1060 * in an interrupt context and thus may sleep.
1061 */
1062static void b44_free_rings(struct b44 *bp)
1063{
1064 struct ring_info *rp;
1065 int i;
1066
1067 for (i = 0; i < B44_RX_RING_SIZE; i++) {
1068 rp = &bp->rx_buffers[i];
1069
1070 if (rp->skb == NULL)
1071 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001072 ssb_dma_unmap_single(bp->sdev, rp->mapping, RX_PKT_BUF_SZ,
1073 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 dev_kfree_skb_any(rp->skb);
1075 rp->skb = NULL;
1076 }
1077
1078 /* XXX needs changes once NETIF_F_SG is set... */
1079 for (i = 0; i < B44_TX_RING_SIZE; i++) {
1080 rp = &bp->tx_buffers[i];
1081
1082 if (rp->skb == NULL)
1083 continue;
Michael Bueschf2257632008-06-20 11:50:29 +02001084 ssb_dma_unmap_single(bp->sdev, rp->mapping, rp->skb->len,
1085 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dev_kfree_skb_any(rp->skb);
1087 rp->skb = NULL;
1088 }
1089}
1090
1091/* Initialize tx/rx rings for packet processing.
1092 *
1093 * The chip has been shut down and the driver detached from
1094 * the networking, so no interrupts or new tx packets will
Francois Romieu874a6212005-11-07 01:50:46 +01001095 * end up in the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 */
1097static void b44_init_rings(struct b44 *bp)
1098{
1099 int i;
1100
1101 b44_free_rings(bp);
1102
1103 memset(bp->rx_ring, 0, B44_RX_RING_BYTES);
1104 memset(bp->tx_ring, 0, B44_TX_RING_BYTES);
1105
John W. Linville9f38c632005-10-18 21:30:59 -04001106 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001107 ssb_dma_sync_single_for_device(bp->sdev, bp->rx_ring_dma,
1108 DMA_TABLE_BYTES,
1109 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001110
1111 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Bueschf2257632008-06-20 11:50:29 +02001112 ssb_dma_sync_single_for_device(bp->sdev, bp->tx_ring_dma,
1113 DMA_TABLE_BYTES,
1114 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 for (i = 0; i < bp->rx_pending; i++) {
1117 if (b44_alloc_rx_skb(bp, -1, i) < 0)
1118 break;
1119 }
1120}
1121
1122/*
1123 * Must not be invoked with interrupt sources disabled and
1124 * the hardware shutdown down.
1125 */
1126static void b44_free_consistent(struct b44 *bp)
1127{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001128 kfree(bp->rx_buffers);
1129 bp->rx_buffers = NULL;
1130 kfree(bp->tx_buffers);
1131 bp->tx_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (bp->rx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001133 if (bp->flags & B44_FLAG_RX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001134 ssb_dma_unmap_single(bp->sdev, bp->rx_ring_dma,
1135 DMA_TABLE_BYTES,
1136 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001137 kfree(bp->rx_ring);
1138 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001139 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1140 bp->rx_ring, bp->rx_ring_dma,
1141 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 bp->rx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001143 bp->flags &= ~B44_FLAG_RX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145 if (bp->tx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001146 if (bp->flags & B44_FLAG_TX_RING_HACK) {
Michael Bueschf2257632008-06-20 11:50:29 +02001147 ssb_dma_unmap_single(bp->sdev, bp->tx_ring_dma,
1148 DMA_TABLE_BYTES,
1149 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001150 kfree(bp->tx_ring);
1151 } else
Michael Bueschf2257632008-06-20 11:50:29 +02001152 ssb_dma_free_consistent(bp->sdev, DMA_TABLE_BYTES,
1153 bp->tx_ring, bp->tx_ring_dma,
1154 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 bp->tx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001156 bp->flags &= ~B44_FLAG_TX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158}
1159
1160/*
1161 * Must not be invoked with interrupt sources disabled and
1162 * the hardware shutdown down. Can sleep.
1163 */
Michael Buesch753f4922007-09-19 14:20:30 -07001164static int b44_alloc_consistent(struct b44 *bp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 int size;
1167
1168 size = B44_RX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001169 bp->rx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (!bp->rx_buffers)
1171 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
1173 size = B44_TX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001174 bp->tx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 if (!bp->tx_buffers)
1176 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 size = DMA_TABLE_BYTES;
Michael Bueschf2257632008-06-20 11:50:29 +02001179 bp->rx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->rx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001180 if (!bp->rx_ring) {
1181 /* Allocation may have failed due to pci_alloc_consistent
1182 insisting on use of GFP_DMA, which is more restrictive
1183 than necessary... */
1184 struct dma_desc *rx_ring;
1185 dma_addr_t rx_ring_dma;
1186
Michael Buesch753f4922007-09-19 14:20:30 -07001187 rx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001188 if (!rx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001189 goto out_err;
1190
Michael Bueschf2257632008-06-20 11:50:29 +02001191 rx_ring_dma = ssb_dma_map_single(bp->sdev, rx_ring,
1192 DMA_TABLE_BYTES,
1193 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001194
Michael Bueschf2257632008-06-20 11:50:29 +02001195 if (ssb_dma_mapping_error(bp->sdev, rx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001196 rx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001197 kfree(rx_ring);
1198 goto out_err;
1199 }
1200
1201 bp->rx_ring = rx_ring;
1202 bp->rx_ring_dma = rx_ring_dma;
1203 bp->flags |= B44_FLAG_RX_RING_HACK;
1204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Michael Bueschf2257632008-06-20 11:50:29 +02001206 bp->tx_ring = ssb_dma_alloc_consistent(bp->sdev, size, &bp->tx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001207 if (!bp->tx_ring) {
Michael Bueschf2257632008-06-20 11:50:29 +02001208 /* Allocation may have failed due to ssb_dma_alloc_consistent
John W. Linville9f38c632005-10-18 21:30:59 -04001209 insisting on use of GFP_DMA, which is more restrictive
1210 than necessary... */
1211 struct dma_desc *tx_ring;
1212 dma_addr_t tx_ring_dma;
1213
Michael Buesch753f4922007-09-19 14:20:30 -07001214 tx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001215 if (!tx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001216 goto out_err;
1217
Michael Bueschf2257632008-06-20 11:50:29 +02001218 tx_ring_dma = ssb_dma_map_single(bp->sdev, tx_ring,
Michael Buesch753f4922007-09-19 14:20:30 -07001219 DMA_TABLE_BYTES,
1220 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001221
Michael Bueschf2257632008-06-20 11:50:29 +02001222 if (ssb_dma_mapping_error(bp->sdev, tx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001223 tx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001224 kfree(tx_ring);
1225 goto out_err;
1226 }
1227
1228 bp->tx_ring = tx_ring;
1229 bp->tx_ring_dma = tx_ring_dma;
1230 bp->flags |= B44_FLAG_TX_RING_HACK;
1231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 return 0;
1234
1235out_err:
1236 b44_free_consistent(bp);
1237 return -ENOMEM;
1238}
1239
1240/* bp->lock is held. */
1241static void b44_clear_stats(struct b44 *bp)
1242{
1243 unsigned long reg;
1244
1245 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
1246 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL)
1247 br32(bp, reg);
1248 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL)
1249 br32(bp, reg);
1250}
1251
1252/* bp->lock is held. */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001253static void b44_chip_reset(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Michael Buesch753f4922007-09-19 14:20:30 -07001255 struct ssb_device *sdev = bp->sdev;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001256 bool was_enabled;
Michael Buesch753f4922007-09-19 14:20:30 -07001257
Michael Bueschf8af11a2009-02-26 22:33:00 -08001258 was_enabled = ssb_device_is_enabled(bp->sdev);
1259
1260 ssb_device_enable(bp->sdev, 0);
1261 ssb_pcicore_dev_irqvecs_enable(&sdev->bus->pcicore, sdev);
1262
1263 if (was_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 bw32(bp, B44_RCV_LAZY, 0);
1265 bw32(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE);
Gary Zambrano40ee8c72007-02-16 13:27:27 -08001266 b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 200, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 bw32(bp, B44_DMATX_CTRL, 0);
1268 bp->tx_prod = bp->tx_cons = 0;
1269 if (br32(bp, B44_DMARX_STAT) & DMARX_STAT_EMASK) {
1270 b44_wait_bit(bp, B44_DMARX_STAT, DMARX_STAT_SIDLE,
1271 100, 0);
1272 }
1273 bw32(bp, B44_DMARX_CTRL, 0);
1274 bp->rx_prod = bp->rx_cons = 0;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 b44_clear_stats(bp);
1278
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001279 /*
1280 * Don't enable PHY if we are doing a partial reset
1281 * we are probably going to power down
1282 */
1283 if (reset_kind == B44_CHIP_RESET_PARTIAL)
1284 return;
1285
Michael Buesch753f4922007-09-19 14:20:30 -07001286 switch (sdev->bus->bustype) {
1287 case SSB_BUSTYPE_SSB:
1288 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
Julia Lawall39506a52009-08-01 09:51:06 +00001289 (DIV_ROUND_CLOSEST(ssb_clockspeed(sdev->bus),
1290 B44_MDC_RATIO)
Michael Buesch753f4922007-09-19 14:20:30 -07001291 & MDIO_CTRL_MAXF_MASK)));
1292 break;
1293 case SSB_BUSTYPE_PCI:
Michael Buesch753f4922007-09-19 14:20:30 -07001294 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
1295 (0x0d & MDIO_CTRL_MAXF_MASK)));
1296 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001297 case SSB_BUSTYPE_PCMCIA:
1298 case SSB_BUSTYPE_SDIO:
1299 WARN_ON(1); /* A device with this bus does not exist. */
1300 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001301 }
1302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 br32(bp, B44_MDIO_CTRL);
1304
1305 if (!(br32(bp, B44_DEVCTRL) & DEVCTRL_IPP)) {
1306 bw32(bp, B44_ENET_CTRL, ENET_CTRL_EPSEL);
1307 br32(bp, B44_ENET_CTRL);
1308 bp->flags &= ~B44_FLAG_INTERNAL_PHY;
1309 } else {
1310 u32 val = br32(bp, B44_DEVCTRL);
1311
1312 if (val & DEVCTRL_EPR) {
1313 bw32(bp, B44_DEVCTRL, (val & ~DEVCTRL_EPR));
1314 br32(bp, B44_DEVCTRL);
1315 udelay(100);
1316 }
1317 bp->flags |= B44_FLAG_INTERNAL_PHY;
1318 }
1319}
1320
1321/* bp->lock is held. */
1322static void b44_halt(struct b44 *bp)
1323{
1324 b44_disable_ints(bp);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001325 /* reset PHY */
1326 b44_phy_reset(bp);
1327 /* power down PHY */
Joe Perches2fc96ff2010-02-17 15:01:50 +00001328 netdev_info(bp->dev, "powering down PHY\n");
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001329 bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN);
1330 /* now reset the chip, but without enabling the MAC&PHY
1331 * part of it. This has to be done _after_ we shut down the PHY */
1332 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333}
1334
1335/* bp->lock is held. */
1336static void __b44_set_mac_addr(struct b44 *bp)
1337{
1338 bw32(bp, B44_CAM_CTRL, 0);
1339 if (!(bp->dev->flags & IFF_PROMISC)) {
1340 u32 val;
1341
1342 __b44_cam_write(bp, bp->dev->dev_addr, 0);
1343 val = br32(bp, B44_CAM_CTRL);
1344 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1345 }
1346}
1347
1348static int b44_set_mac_addr(struct net_device *dev, void *p)
1349{
1350 struct b44 *bp = netdev_priv(dev);
1351 struct sockaddr *addr = p;
Michael Buesch753f4922007-09-19 14:20:30 -07001352 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
1354 if (netif_running(dev))
1355 return -EBUSY;
1356
Gary Zambrano391fc092006-03-28 14:57:38 -08001357 if (!is_valid_ether_addr(addr->sa_data))
1358 return -EINVAL;
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1361
1362 spin_lock_irq(&bp->lock);
Michael Buesch753f4922007-09-19 14:20:30 -07001363
1364 val = br32(bp, B44_RXCONFIG);
1365 if (!(val & RXCONFIG_CAM_ABSENT))
1366 __b44_set_mac_addr(bp);
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 spin_unlock_irq(&bp->lock);
1369
1370 return 0;
1371}
1372
1373/* Called at device open time to get the chip ready for
1374 * packet processing. Invoked with bp->lock held.
1375 */
1376static void __b44_set_rx_mode(struct net_device *);
Michael Chan5fc7d612007-01-26 23:59:57 -08001377static void b44_init_hw(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 u32 val;
1380
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001381 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Michael Chan5fc7d612007-01-26 23:59:57 -08001382 if (reset_kind == B44_FULL_RESET) {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001383 b44_phy_reset(bp);
1384 b44_setup_phy(bp);
1385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
1387 /* Enable CRC32, set proper LED modes and power on PHY */
1388 bw32(bp, B44_MAC_CTRL, MAC_CTRL_CRC32_ENAB | MAC_CTRL_PHY_LEDCTRL);
1389 bw32(bp, B44_RCV_LAZY, (1 << RCV_LAZY_FC_SHIFT));
1390
1391 /* This sets the MAC address too. */
1392 __b44_set_rx_mode(bp->dev);
1393
1394 /* MTU + eth header + possible VLAN tag + struct rx_header */
1395 bw32(bp, B44_RXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1396 bw32(bp, B44_TXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1397
1398 bw32(bp, B44_TX_WMARK, 56); /* XXX magic */
Michael Chan5fc7d612007-01-26 23:59:57 -08001399 if (reset_kind == B44_PARTIAL_RESET) {
1400 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001401 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Michael Chan5fc7d612007-01-26 23:59:57 -08001402 } else {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001403 bw32(bp, B44_DMATX_CTRL, DMATX_CTRL_ENABLE);
1404 bw32(bp, B44_DMATX_ADDR, bp->tx_ring_dma + bp->dma_offset);
1405 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001406 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001407 bw32(bp, B44_DMARX_ADDR, bp->rx_ring_dma + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001409 bw32(bp, B44_DMARX_PTR, bp->rx_pending);
1410 bp->rx_prod = bp->rx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001412 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 val = br32(bp, B44_ENET_CTRL);
1416 bw32(bp, B44_ENET_CTRL, (val | ENET_CTRL_ENABLE));
1417}
1418
1419static int b44_open(struct net_device *dev)
1420{
1421 struct b44 *bp = netdev_priv(dev);
1422 int err;
1423
Michael Buesch753f4922007-09-19 14:20:30 -07001424 err = b44_alloc_consistent(bp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 if (err)
Francois Romieu6c2f4262005-11-07 01:52:57 +01001426 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001428 napi_enable(&bp->napi);
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001431 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
John W. Linvillee254e9b2005-06-08 15:11:57 -04001433 b44_check_phy(bp);
1434
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001435 err = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001436 if (unlikely(err < 0)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001437 napi_disable(&bp->napi);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001438 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001439 b44_free_rings(bp);
1440 b44_free_consistent(bp);
1441 goto out;
1442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 init_timer(&bp->timer);
1445 bp->timer.expires = jiffies + HZ;
1446 bp->timer.data = (unsigned long) bp;
1447 bp->timer.function = b44_timer;
1448 add_timer(&bp->timer);
1449
1450 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01001451 netif_start_queue(dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001452out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return err;
1454}
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456#ifdef CONFIG_NET_POLL_CONTROLLER
1457/*
1458 * Polling receive - used by netconsole and other diagnostic tools
1459 * to allow network i/o with interrupts disabled.
1460 */
1461static void b44_poll_controller(struct net_device *dev)
1462{
1463 disable_irq(dev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001464 b44_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 enable_irq(dev->irq);
1466}
1467#endif
1468
Gary Zambrano725ad802006-06-20 15:34:36 -07001469static void bwfilter_table(struct b44 *bp, u8 *pp, u32 bytes, u32 table_offset)
1470{
1471 u32 i;
1472 u32 *pattern = (u32 *) pp;
1473
1474 for (i = 0; i < bytes; i += sizeof(u32)) {
1475 bw32(bp, B44_FILT_ADDR, table_offset + i);
1476 bw32(bp, B44_FILT_DATA, pattern[i / sizeof(u32)]);
1477 }
1478}
1479
1480static int b44_magic_pattern(u8 *macaddr, u8 *ppattern, u8 *pmask, int offset)
1481{
1482 int magicsync = 6;
1483 int k, j, len = offset;
1484 int ethaddr_bytes = ETH_ALEN;
1485
1486 memset(ppattern + offset, 0xff, magicsync);
1487 for (j = 0; j < magicsync; j++)
1488 set_bit(len++, (unsigned long *) pmask);
1489
1490 for (j = 0; j < B44_MAX_PATTERNS; j++) {
1491 if ((B44_PATTERN_SIZE - len) >= ETH_ALEN)
1492 ethaddr_bytes = ETH_ALEN;
1493 else
1494 ethaddr_bytes = B44_PATTERN_SIZE - len;
1495 if (ethaddr_bytes <=0)
1496 break;
1497 for (k = 0; k< ethaddr_bytes; k++) {
1498 ppattern[offset + magicsync +
1499 (j * ETH_ALEN) + k] = macaddr[k];
Stanislav Brabece0188822009-12-08 21:00:22 -08001500 set_bit(len++, (unsigned long *) pmask);
Gary Zambrano725ad802006-06-20 15:34:36 -07001501 }
1502 }
1503 return len - 1;
1504}
1505
1506/* Setup magic packet patterns in the b44 WOL
1507 * pattern matching filter.
1508 */
1509static void b44_setup_pseudo_magicp(struct b44 *bp)
1510{
1511
1512 u32 val;
1513 int plen0, plen1, plen2;
1514 u8 *pwol_pattern;
1515 u8 pwol_mask[B44_PMASK_SIZE];
1516
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001517 pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL);
Gary Zambrano725ad802006-06-20 15:34:36 -07001518 if (!pwol_pattern) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00001519 pr_err("Memory not available for WOL\n");
Gary Zambrano725ad802006-06-20 15:34:36 -07001520 return;
1521 }
1522
1523 /* Ipv4 magic packet pattern - pattern 0.*/
Gary Zambrano725ad802006-06-20 15:34:36 -07001524 memset(pwol_mask, 0, B44_PMASK_SIZE);
1525 plen0 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1526 B44_ETHIPV4UDP_HLEN);
1527
1528 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE, B44_PATTERN_BASE);
1529 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE, B44_PMASK_BASE);
1530
1531 /* Raw ethernet II magic packet pattern - pattern 1 */
1532 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1533 memset(pwol_mask, 0, B44_PMASK_SIZE);
1534 plen1 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1535 ETH_HLEN);
1536
1537 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1538 B44_PATTERN_BASE + B44_PATTERN_SIZE);
1539 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1540 B44_PMASK_BASE + B44_PMASK_SIZE);
1541
1542 /* Ipv6 magic packet pattern - pattern 2 */
1543 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1544 memset(pwol_mask, 0, B44_PMASK_SIZE);
1545 plen2 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1546 B44_ETHIPV6UDP_HLEN);
1547
1548 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1549 B44_PATTERN_BASE + B44_PATTERN_SIZE + B44_PATTERN_SIZE);
1550 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1551 B44_PMASK_BASE + B44_PMASK_SIZE + B44_PMASK_SIZE);
1552
1553 kfree(pwol_pattern);
1554
1555 /* set these pattern's lengths: one less than each real length */
1556 val = plen0 | (plen1 << 8) | (plen2 << 16) | WKUP_LEN_ENABLE_THREE;
1557 bw32(bp, B44_WKUP_LEN, val);
1558
1559 /* enable wakeup pattern matching */
1560 val = br32(bp, B44_DEVCTRL);
1561 bw32(bp, B44_DEVCTRL, val | DEVCTRL_PFE);
1562
1563}
Gary Zambrano52cafd92006-06-20 15:34:23 -07001564
Michael Buesch753f4922007-09-19 14:20:30 -07001565#ifdef CONFIG_B44_PCI
1566static void b44_setup_wol_pci(struct b44 *bp)
1567{
1568 u16 val;
1569
1570 if (bp->sdev->bus->bustype != SSB_BUSTYPE_SSB) {
1571 bw32(bp, SSB_TMSLOW, br32(bp, SSB_TMSLOW) | SSB_TMSLOW_PE);
1572 pci_read_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, &val);
1573 pci_write_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, val | SSB_PE);
1574 }
1575}
1576#else
1577static inline void b44_setup_wol_pci(struct b44 *bp) { }
1578#endif /* CONFIG_B44_PCI */
1579
Gary Zambrano52cafd92006-06-20 15:34:23 -07001580static void b44_setup_wol(struct b44 *bp)
1581{
1582 u32 val;
Gary Zambrano52cafd92006-06-20 15:34:23 -07001583
1584 bw32(bp, B44_RXCONFIG, RXCONFIG_ALLMULTI);
1585
1586 if (bp->flags & B44_FLAG_B0_ANDLATER) {
1587
1588 bw32(bp, B44_WKUP_LEN, WKUP_LEN_DISABLE);
1589
1590 val = bp->dev->dev_addr[2] << 24 |
1591 bp->dev->dev_addr[3] << 16 |
1592 bp->dev->dev_addr[4] << 8 |
1593 bp->dev->dev_addr[5];
1594 bw32(bp, B44_ADDR_LO, val);
1595
1596 val = bp->dev->dev_addr[0] << 8 |
1597 bp->dev->dev_addr[1];
1598 bw32(bp, B44_ADDR_HI, val);
1599
1600 val = br32(bp, B44_DEVCTRL);
1601 bw32(bp, B44_DEVCTRL, val | DEVCTRL_MPM | DEVCTRL_PFE);
1602
Gary Zambrano725ad802006-06-20 15:34:36 -07001603 } else {
1604 b44_setup_pseudo_magicp(bp);
1605 }
Michael Buesch753f4922007-09-19 14:20:30 -07001606 b44_setup_wol_pci(bp);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609static int b44_close(struct net_device *dev)
1610{
1611 struct b44 *bp = netdev_priv(dev);
1612
1613 netif_stop_queue(dev);
1614
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001615 napi_disable(&bp->napi);
Francois Romieuba5eec92005-11-08 23:37:12 +01001616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 del_timer_sync(&bp->timer);
1618
1619 spin_lock_irq(&bp->lock);
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 b44_halt(bp);
1622 b44_free_rings(bp);
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08001623 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 spin_unlock_irq(&bp->lock);
1626
1627 free_irq(dev->irq, dev);
1628
Gary Zambrano52cafd92006-06-20 15:34:23 -07001629 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08001630 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001631 b44_setup_wol(bp);
1632 }
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 b44_free_consistent(bp);
1635
1636 return 0;
1637}
1638
1639static struct net_device_stats *b44_get_stats(struct net_device *dev)
1640{
1641 struct b44 *bp = netdev_priv(dev);
Eric Dumazet553e2332009-05-27 10:34:50 +00001642 struct net_device_stats *nstat = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 struct b44_hw_stats *hwstat = &bp->hw_stats;
1644
1645 /* Convert HW stats into netdevice stats. */
1646 nstat->rx_packets = hwstat->rx_pkts;
1647 nstat->tx_packets = hwstat->tx_pkts;
1648 nstat->rx_bytes = hwstat->rx_octets;
1649 nstat->tx_bytes = hwstat->tx_octets;
1650 nstat->tx_errors = (hwstat->tx_jabber_pkts +
1651 hwstat->tx_oversize_pkts +
1652 hwstat->tx_underruns +
1653 hwstat->tx_excessive_cols +
1654 hwstat->tx_late_cols);
1655 nstat->multicast = hwstat->tx_multicast_pkts;
1656 nstat->collisions = hwstat->tx_total_cols;
1657
1658 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1659 hwstat->rx_undersize);
1660 nstat->rx_over_errors = hwstat->rx_missed_pkts;
1661 nstat->rx_frame_errors = hwstat->rx_align_errs;
1662 nstat->rx_crc_errors = hwstat->rx_crc_errs;
1663 nstat->rx_errors = (hwstat->rx_jabber_pkts +
1664 hwstat->rx_oversize_pkts +
1665 hwstat->rx_missed_pkts +
1666 hwstat->rx_crc_align_errs +
1667 hwstat->rx_undersize +
1668 hwstat->rx_crc_errs +
1669 hwstat->rx_align_errs +
1670 hwstat->rx_symbol_errs);
1671
1672 nstat->tx_aborted_errors = hwstat->tx_underruns;
1673#if 0
1674 /* Carrier lost counter seems to be broken for some devices */
1675 nstat->tx_carrier_errors = hwstat->tx_carrier_lost;
1676#endif
1677
1678 return nstat;
1679}
1680
1681static int __b44_load_mcast(struct b44 *bp, struct net_device *dev)
1682{
1683 struct dev_mc_list *mclist;
1684 int i, num_ents;
1685
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001686 num_ents = min_t(int, netdev_mc_count(dev), B44_MCAST_TABLE_SIZE);
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001687 i = 0;
1688 netdev_for_each_mc_addr(mclist, dev) {
1689 if (i == num_ents)
1690 break;
1691 __b44_cam_write(bp, mclist->dmi_addr, i++ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 return i+1;
1694}
1695
1696static void __b44_set_rx_mode(struct net_device *dev)
1697{
1698 struct b44 *bp = netdev_priv(dev);
1699 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 val = br32(bp, B44_RXCONFIG);
1702 val &= ~(RXCONFIG_PROMISC | RXCONFIG_ALLMULTI);
Michael Buesch753f4922007-09-19 14:20:30 -07001703 if ((dev->flags & IFF_PROMISC) || (val & RXCONFIG_CAM_ABSENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 val |= RXCONFIG_PROMISC;
1705 bw32(bp, B44_RXCONFIG, val);
1706 } else {
Francois Romieu874a6212005-11-07 01:50:46 +01001707 unsigned char zero[6] = {0, 0, 0, 0, 0, 0};
Bill Helfinstinecda22aa2007-04-01 13:10:28 -04001708 int i = 1;
Francois Romieu874a6212005-11-07 01:50:46 +01001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 __b44_set_mac_addr(bp);
1711
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001712 if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001713 (netdev_mc_count(dev) > B44_MCAST_TABLE_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 val |= RXCONFIG_ALLMULTI;
1715 else
Francois Romieu874a6212005-11-07 01:50:46 +01001716 i = __b44_load_mcast(bp, dev);
Jeff Garzik10badc22006-04-12 18:04:32 -04001717
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001718 for (; i < 64; i++)
Jeff Garzik10badc22006-04-12 18:04:32 -04001719 __b44_cam_write(bp, zero, i);
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 bw32(bp, B44_RXCONFIG, val);
1722 val = br32(bp, B44_CAM_CTRL);
1723 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1724 }
1725}
1726
1727static void b44_set_rx_mode(struct net_device *dev)
1728{
1729 struct b44 *bp = netdev_priv(dev);
1730
1731 spin_lock_irq(&bp->lock);
1732 __b44_set_rx_mode(dev);
1733 spin_unlock_irq(&bp->lock);
1734}
1735
1736static u32 b44_get_msglevel(struct net_device *dev)
1737{
1738 struct b44 *bp = netdev_priv(dev);
1739 return bp->msg_enable;
1740}
1741
1742static void b44_set_msglevel(struct net_device *dev, u32 value)
1743{
1744 struct b44 *bp = netdev_priv(dev);
1745 bp->msg_enable = value;
1746}
1747
1748static void b44_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info)
1749{
1750 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07001751 struct ssb_bus *bus = bp->sdev->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
roel kluin27e09552009-07-17 08:01:54 +00001753 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
1754 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
Michael Buesch753f4922007-09-19 14:20:30 -07001755 switch (bus->bustype) {
1756 case SSB_BUSTYPE_PCI:
roel kluin27e09552009-07-17 08:01:54 +00001757 strlcpy(info->bus_info, pci_name(bus->host_pci), sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001758 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001759 case SSB_BUSTYPE_SSB:
roel kluin27e09552009-07-17 08:01:54 +00001760 strlcpy(info->bus_info, "SSB", sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001761 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001762 case SSB_BUSTYPE_PCMCIA:
1763 case SSB_BUSTYPE_SDIO:
1764 WARN_ON(1); /* A device with this bus does not exist. */
1765 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767}
1768
1769static int b44_nway_reset(struct net_device *dev)
1770{
1771 struct b44 *bp = netdev_priv(dev);
1772 u32 bmcr;
1773 int r;
1774
1775 spin_lock_irq(&bp->lock);
1776 b44_readphy(bp, MII_BMCR, &bmcr);
1777 b44_readphy(bp, MII_BMCR, &bmcr);
1778 r = -EINVAL;
1779 if (bmcr & BMCR_ANENABLE) {
1780 b44_writephy(bp, MII_BMCR,
1781 bmcr | BMCR_ANRESTART);
1782 r = 0;
1783 }
1784 spin_unlock_irq(&bp->lock);
1785
1786 return r;
1787}
1788
1789static int b44_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1790{
1791 struct b44 *bp = netdev_priv(dev);
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 cmd->supported = (SUPPORTED_Autoneg);
1794 cmd->supported |= (SUPPORTED_100baseT_Half |
1795 SUPPORTED_100baseT_Full |
1796 SUPPORTED_10baseT_Half |
1797 SUPPORTED_10baseT_Full |
1798 SUPPORTED_MII);
1799
1800 cmd->advertising = 0;
1801 if (bp->flags & B44_FLAG_ADV_10HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001802 cmd->advertising |= ADVERTISED_10baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (bp->flags & B44_FLAG_ADV_10FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001804 cmd->advertising |= ADVERTISED_10baseT_Full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (bp->flags & B44_FLAG_ADV_100HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001806 cmd->advertising |= ADVERTISED_100baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (bp->flags & B44_FLAG_ADV_100FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001808 cmd->advertising |= ADVERTISED_100baseT_Full;
1809 cmd->advertising |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 cmd->speed = (bp->flags & B44_FLAG_100_BASE_T) ?
1811 SPEED_100 : SPEED_10;
1812 cmd->duplex = (bp->flags & B44_FLAG_FULL_DUPLEX) ?
1813 DUPLEX_FULL : DUPLEX_HALF;
1814 cmd->port = 0;
1815 cmd->phy_address = bp->phy_addr;
1816 cmd->transceiver = (bp->flags & B44_FLAG_INTERNAL_PHY) ?
1817 XCVR_INTERNAL : XCVR_EXTERNAL;
1818 cmd->autoneg = (bp->flags & B44_FLAG_FORCE_LINK) ?
1819 AUTONEG_DISABLE : AUTONEG_ENABLE;
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001820 if (cmd->autoneg == AUTONEG_ENABLE)
1821 cmd->advertising |= ADVERTISED_Autoneg;
1822 if (!netif_running(dev)){
1823 cmd->speed = 0;
1824 cmd->duplex = 0xff;
1825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 cmd->maxtxpkt = 0;
1827 cmd->maxrxpkt = 0;
1828 return 0;
1829}
1830
1831static int b44_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1832{
1833 struct b44 *bp = netdev_priv(dev);
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 /* We do not support gigabit. */
1836 if (cmd->autoneg == AUTONEG_ENABLE) {
1837 if (cmd->advertising &
1838 (ADVERTISED_1000baseT_Half |
1839 ADVERTISED_1000baseT_Full))
1840 return -EINVAL;
1841 } else if ((cmd->speed != SPEED_100 &&
1842 cmd->speed != SPEED_10) ||
1843 (cmd->duplex != DUPLEX_HALF &&
1844 cmd->duplex != DUPLEX_FULL)) {
1845 return -EINVAL;
1846 }
1847
1848 spin_lock_irq(&bp->lock);
1849
1850 if (cmd->autoneg == AUTONEG_ENABLE) {
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001851 bp->flags &= ~(B44_FLAG_FORCE_LINK |
1852 B44_FLAG_100_BASE_T |
1853 B44_FLAG_FULL_DUPLEX |
1854 B44_FLAG_ADV_10HALF |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 B44_FLAG_ADV_10FULL |
1856 B44_FLAG_ADV_100HALF |
1857 B44_FLAG_ADV_100FULL);
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001858 if (cmd->advertising == 0) {
1859 bp->flags |= (B44_FLAG_ADV_10HALF |
1860 B44_FLAG_ADV_10FULL |
1861 B44_FLAG_ADV_100HALF |
1862 B44_FLAG_ADV_100FULL);
1863 } else {
1864 if (cmd->advertising & ADVERTISED_10baseT_Half)
1865 bp->flags |= B44_FLAG_ADV_10HALF;
1866 if (cmd->advertising & ADVERTISED_10baseT_Full)
1867 bp->flags |= B44_FLAG_ADV_10FULL;
1868 if (cmd->advertising & ADVERTISED_100baseT_Half)
1869 bp->flags |= B44_FLAG_ADV_100HALF;
1870 if (cmd->advertising & ADVERTISED_100baseT_Full)
1871 bp->flags |= B44_FLAG_ADV_100FULL;
1872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 } else {
1874 bp->flags |= B44_FLAG_FORCE_LINK;
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001875 bp->flags &= ~(B44_FLAG_100_BASE_T | B44_FLAG_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (cmd->speed == SPEED_100)
1877 bp->flags |= B44_FLAG_100_BASE_T;
1878 if (cmd->duplex == DUPLEX_FULL)
1879 bp->flags |= B44_FLAG_FULL_DUPLEX;
1880 }
1881
Gary Zambrano47b9c3b2006-06-20 15:34:15 -07001882 if (netif_running(dev))
1883 b44_setup_phy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885 spin_unlock_irq(&bp->lock);
1886
1887 return 0;
1888}
1889
1890static void b44_get_ringparam(struct net_device *dev,
1891 struct ethtool_ringparam *ering)
1892{
1893 struct b44 *bp = netdev_priv(dev);
1894
1895 ering->rx_max_pending = B44_RX_RING_SIZE - 1;
1896 ering->rx_pending = bp->rx_pending;
1897
1898 /* XXX ethtool lacks a tx_max_pending, oops... */
1899}
1900
1901static int b44_set_ringparam(struct net_device *dev,
1902 struct ethtool_ringparam *ering)
1903{
1904 struct b44 *bp = netdev_priv(dev);
1905
1906 if ((ering->rx_pending > B44_RX_RING_SIZE - 1) ||
1907 (ering->rx_mini_pending != 0) ||
1908 (ering->rx_jumbo_pending != 0) ||
1909 (ering->tx_pending > B44_TX_RING_SIZE - 1))
1910 return -EINVAL;
1911
1912 spin_lock_irq(&bp->lock);
1913
1914 bp->rx_pending = ering->rx_pending;
1915 bp->tx_pending = ering->tx_pending;
1916
1917 b44_halt(bp);
1918 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001919 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 netif_wake_queue(bp->dev);
1921 spin_unlock_irq(&bp->lock);
1922
1923 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 return 0;
1926}
1927
1928static void b44_get_pauseparam(struct net_device *dev,
1929 struct ethtool_pauseparam *epause)
1930{
1931 struct b44 *bp = netdev_priv(dev);
1932
1933 epause->autoneg =
1934 (bp->flags & B44_FLAG_PAUSE_AUTO) != 0;
1935 epause->rx_pause =
1936 (bp->flags & B44_FLAG_RX_PAUSE) != 0;
1937 epause->tx_pause =
1938 (bp->flags & B44_FLAG_TX_PAUSE) != 0;
1939}
1940
1941static int b44_set_pauseparam(struct net_device *dev,
1942 struct ethtool_pauseparam *epause)
1943{
1944 struct b44 *bp = netdev_priv(dev);
1945
1946 spin_lock_irq(&bp->lock);
1947 if (epause->autoneg)
1948 bp->flags |= B44_FLAG_PAUSE_AUTO;
1949 else
1950 bp->flags &= ~B44_FLAG_PAUSE_AUTO;
1951 if (epause->rx_pause)
1952 bp->flags |= B44_FLAG_RX_PAUSE;
1953 else
1954 bp->flags &= ~B44_FLAG_RX_PAUSE;
1955 if (epause->tx_pause)
1956 bp->flags |= B44_FLAG_TX_PAUSE;
1957 else
1958 bp->flags &= ~B44_FLAG_TX_PAUSE;
1959 if (bp->flags & B44_FLAG_PAUSE_AUTO) {
1960 b44_halt(bp);
1961 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001962 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 } else {
1964 __b44_set_flow_ctrl(bp, bp->flags);
1965 }
1966 spin_unlock_irq(&bp->lock);
1967
1968 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return 0;
1971}
1972
Francois Romieu33539302005-11-07 01:51:34 +01001973static void b44_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1974{
1975 switch(stringset) {
1976 case ETH_SS_STATS:
1977 memcpy(data, *b44_gstrings, sizeof(b44_gstrings));
1978 break;
1979 }
1980}
1981
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001982static int b44_get_sset_count(struct net_device *dev, int sset)
Francois Romieu33539302005-11-07 01:51:34 +01001983{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001984 switch (sset) {
1985 case ETH_SS_STATS:
1986 return ARRAY_SIZE(b44_gstrings);
1987 default:
1988 return -EOPNOTSUPP;
1989 }
Francois Romieu33539302005-11-07 01:51:34 +01001990}
1991
1992static void b44_get_ethtool_stats(struct net_device *dev,
1993 struct ethtool_stats *stats, u64 *data)
1994{
1995 struct b44 *bp = netdev_priv(dev);
1996 u32 *val = &bp->hw_stats.tx_good_octets;
1997 u32 i;
1998
1999 spin_lock_irq(&bp->lock);
2000
2001 b44_stats_update(bp);
2002
2003 for (i = 0; i < ARRAY_SIZE(b44_gstrings); i++)
2004 *data++ = *val++;
2005
2006 spin_unlock_irq(&bp->lock);
2007}
2008
Gary Zambrano52cafd92006-06-20 15:34:23 -07002009static void b44_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2010{
2011 struct b44 *bp = netdev_priv(dev);
2012
2013 wol->supported = WAKE_MAGIC;
2014 if (bp->flags & B44_FLAG_WOL_ENABLE)
2015 wol->wolopts = WAKE_MAGIC;
2016 else
2017 wol->wolopts = 0;
2018 memset(&wol->sopass, 0, sizeof(wol->sopass));
2019}
2020
2021static int b44_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2022{
2023 struct b44 *bp = netdev_priv(dev);
2024
2025 spin_lock_irq(&bp->lock);
2026 if (wol->wolopts & WAKE_MAGIC)
2027 bp->flags |= B44_FLAG_WOL_ENABLE;
2028 else
2029 bp->flags &= ~B44_FLAG_WOL_ENABLE;
2030 spin_unlock_irq(&bp->lock);
2031
2032 return 0;
2033}
2034
Jeff Garzik7282d492006-09-13 14:30:00 -04002035static const struct ethtool_ops b44_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .get_drvinfo = b44_get_drvinfo,
2037 .get_settings = b44_get_settings,
2038 .set_settings = b44_set_settings,
2039 .nway_reset = b44_nway_reset,
2040 .get_link = ethtool_op_get_link,
Gary Zambrano52cafd92006-06-20 15:34:23 -07002041 .get_wol = b44_get_wol,
2042 .set_wol = b44_set_wol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 .get_ringparam = b44_get_ringparam,
2044 .set_ringparam = b44_set_ringparam,
2045 .get_pauseparam = b44_get_pauseparam,
2046 .set_pauseparam = b44_set_pauseparam,
2047 .get_msglevel = b44_get_msglevel,
2048 .set_msglevel = b44_set_msglevel,
Francois Romieu33539302005-11-07 01:51:34 +01002049 .get_strings = b44_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002050 .get_sset_count = b44_get_sset_count,
Francois Romieu33539302005-11-07 01:51:34 +01002051 .get_ethtool_stats = b44_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052};
2053
2054static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2055{
2056 struct mii_ioctl_data *data = if_mii(ifr);
2057 struct b44 *bp = netdev_priv(dev);
Francois Romieu34105722005-11-30 22:32:13 +01002058 int err = -EINVAL;
2059
2060 if (!netif_running(dev))
2061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
2063 spin_lock_irq(&bp->lock);
2064 err = generic_mii_ioctl(&bp->mii_if, data, cmd, NULL);
2065 spin_unlock_irq(&bp->lock);
Francois Romieu34105722005-11-30 22:32:13 +01002066out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 return err;
2068}
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070static int __devinit b44_get_invariants(struct b44 *bp)
2071{
Michael Buesch753f4922007-09-19 14:20:30 -07002072 struct ssb_device *sdev = bp->sdev;
2073 int err = 0;
2074 u8 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Michael Buesch753f4922007-09-19 14:20:30 -07002076 bp->dma_offset = ssb_dma_translation(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Michael Buesch753f4922007-09-19 14:20:30 -07002078 if (sdev->bus->bustype == SSB_BUSTYPE_SSB &&
2079 instance > 1) {
Larry Finger458414b2007-11-09 16:56:10 -06002080 addr = sdev->bus->sprom.et1mac;
2081 bp->phy_addr = sdev->bus->sprom.et1phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002082 } else {
Larry Finger458414b2007-11-09 16:56:10 -06002083 addr = sdev->bus->sprom.et0mac;
2084 bp->phy_addr = sdev->bus->sprom.et0phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002085 }
Michael Buesch5ea79632008-03-25 18:04:46 +01002086 /* Some ROMs have buggy PHY addresses with the high
2087 * bits set (sign extension?). Truncate them to a
2088 * valid PHY address. */
2089 bp->phy_addr &= 0x1F;
2090
Michael Buesch753f4922007-09-19 14:20:30 -07002091 memcpy(bp->dev->dev_addr, addr, 6);
Gary Zambrano391fc092006-03-28 14:57:38 -08002092
2093 if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){
Joe Perches2fc96ff2010-02-17 15:01:50 +00002094 pr_err("Invalid MAC address found in EEPROM\n");
Gary Zambrano391fc092006-03-28 14:57:38 -08002095 return -EINVAL;
2096 }
2097
John W. Linville2160de52005-09-12 10:48:55 -04002098 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, bp->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 bp->imask = IMASK_DEF;
2101
Jeff Garzik10badc22006-04-12 18:04:32 -04002102 /* XXX - really required?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 bp->flags |= B44_FLAG_BUGGY_TXPTR;
Michael Buesch753f4922007-09-19 14:20:30 -07002104 */
Gary Zambrano52cafd92006-06-20 15:34:23 -07002105
Michael Buesch753f4922007-09-19 14:20:30 -07002106 if (bp->sdev->id.revision >= 7)
2107 bp->flags |= B44_FLAG_B0_ANDLATER;
Gary Zambrano52cafd92006-06-20 15:34:23 -07002108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 return err;
2110}
2111
Stephen Hemminger403413e2009-01-07 18:10:49 -08002112static const struct net_device_ops b44_netdev_ops = {
2113 .ndo_open = b44_open,
2114 .ndo_stop = b44_close,
2115 .ndo_start_xmit = b44_start_xmit,
2116 .ndo_get_stats = b44_get_stats,
2117 .ndo_set_multicast_list = b44_set_rx_mode,
2118 .ndo_set_mac_address = b44_set_mac_addr,
2119 .ndo_validate_addr = eth_validate_addr,
2120 .ndo_do_ioctl = b44_ioctl,
2121 .ndo_tx_timeout = b44_tx_timeout,
2122 .ndo_change_mtu = b44_change_mtu,
2123#ifdef CONFIG_NET_POLL_CONTROLLER
2124 .ndo_poll_controller = b44_poll_controller,
2125#endif
2126};
2127
Michael Buesch753f4922007-09-19 14:20:30 -07002128static int __devinit b44_init_one(struct ssb_device *sdev,
2129 const struct ssb_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 static int b44_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct net_device *dev;
2133 struct b44 *bp;
Joe Perches0795af52007-10-03 17:59:30 -07002134 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
Michael Buesch753f4922007-09-19 14:20:30 -07002136 instance++;
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 if (b44_version_printed++ == 0)
Joe Perches2fc96ff2010-02-17 15:01:50 +00002139 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 dev = alloc_etherdev(sizeof(*bp));
2143 if (!dev) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002144 dev_err(sdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 err = -ENOMEM;
Michael Buesch753f4922007-09-19 14:20:30 -07002146 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 }
2148
Michael Buesch753f4922007-09-19 14:20:30 -07002149 SET_NETDEV_DEV(dev, sdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /* No interesting netdevice features in this card... */
2152 dev->features |= 0;
2153
2154 bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07002155 bp->sdev = sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 bp->dev = dev;
Eric Dumazeta58c8912009-01-15 15:29:35 -08002157 bp->force_copybreak = 0;
Francois Romieu874a6212005-11-07 01:50:46 +01002158
2159 bp->msg_enable = netif_msg_init(b44_debug, B44_DEF_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
2161 spin_lock_init(&bp->lock);
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 bp->rx_pending = B44_DEF_RX_RING_PENDING;
2164 bp->tx_pending = B44_DEF_TX_RING_PENDING;
2165
Stephen Hemminger403413e2009-01-07 18:10:49 -08002166 dev->netdev_ops = &b44_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002167 netif_napi_add(dev, &bp->napi, b44_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 dev->watchdog_timeo = B44_TX_TIMEOUT;
Michael Buesch753f4922007-09-19 14:20:30 -07002169 dev->irq = sdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 SET_ETHTOOL_OPS(dev, &b44_ethtool_ops);
2171
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08002172 netif_carrier_off(dev);
2173
Michael Buesch753f4922007-09-19 14:20:30 -07002174 err = ssb_bus_powerup(sdev->bus, 0);
2175 if (err) {
2176 dev_err(sdev->dev,
2177 "Failed to powerup the bus\n");
2178 goto err_out_free_dev;
2179 }
Yang Hongyang28b76792009-04-06 19:01:17 -07002180 err = ssb_dma_set_mask(sdev, DMA_BIT_MASK(30));
Michael Buesch753f4922007-09-19 14:20:30 -07002181 if (err) {
2182 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002183 "Required 30BIT DMA mask unsupported by the system\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002184 goto err_out_powerdown;
2185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 err = b44_get_invariants(bp);
2187 if (err) {
Michael Buesch753f4922007-09-19 14:20:30 -07002188 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002189 "Problem fetching invariants of chip, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002190 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 }
2192
2193 bp->mii_if.dev = dev;
2194 bp->mii_if.mdio_read = b44_mii_read;
2195 bp->mii_if.mdio_write = b44_mii_write;
2196 bp->mii_if.phy_id = bp->phy_addr;
2197 bp->mii_if.phy_id_mask = 0x1f;
2198 bp->mii_if.reg_num_mask = 0x1f;
2199
2200 /* By default, advertise all speed/duplex settings. */
2201 bp->flags |= (B44_FLAG_ADV_10HALF | B44_FLAG_ADV_10FULL |
2202 B44_FLAG_ADV_100HALF | B44_FLAG_ADV_100FULL);
2203
2204 /* By default, auto-negotiate PAUSE. */
2205 bp->flags |= B44_FLAG_PAUSE_AUTO;
2206
2207 err = register_netdev(dev);
2208 if (err) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002209 dev_err(sdev->dev, "Cannot register net device, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002210 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
2212
Michael Buesch753f4922007-09-19 14:20:30 -07002213 ssb_set_drvdata(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Jeff Garzik10badc22006-04-12 18:04:32 -04002215 /* Chip reset provides power to the b44 MAC & PCI cores, which
Gary Zambrano5c513122006-03-29 17:12:05 -05002216 * is necessary for MAC register access.
Jeff Garzik10badc22006-04-12 18:04:32 -04002217 */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002218 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Gary Zambrano5c513122006-03-29 17:12:05 -05002219
Hauke Mehrtens8850dce2010-02-20 10:55:25 +00002220 /* do a phy reset to test if there is an active phy */
2221 if (b44_phy_reset(bp) < 0)
2222 bp->phy_addr = B44_PHY_ADDR_NO_PHY;
2223
Joe Perches2fc96ff2010-02-17 15:01:50 +00002224 netdev_info(dev, "Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n",
2225 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 return 0;
2228
Michael Buesch753f4922007-09-19 14:20:30 -07002229err_out_powerdown:
2230 ssb_bus_may_powerdown(sdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
2232err_out_free_dev:
2233 free_netdev(dev);
2234
Michael Buesch753f4922007-09-19 14:20:30 -07002235out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 return err;
2237}
2238
Michael Buesch753f4922007-09-19 14:20:30 -07002239static void __devexit b44_remove_one(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Michael Buesch753f4922007-09-19 14:20:30 -07002241 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Francois Romieu874a6212005-11-07 01:50:46 +01002243 unregister_netdev(dev);
Michael Buesche92aa632009-02-26 22:35:02 -08002244 ssb_device_disable(sdev, 0);
Michael Buesch753f4922007-09-19 14:20:30 -07002245 ssb_bus_may_powerdown(sdev->bus);
Francois Romieu874a6212005-11-07 01:50:46 +01002246 free_netdev(dev);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002247 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Michael Buesch753f4922007-09-19 14:20:30 -07002248 ssb_set_drvdata(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249}
2250
Michael Buesch753f4922007-09-19 14:20:30 -07002251static int b44_suspend(struct ssb_device *sdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
Michael Buesch753f4922007-09-19 14:20:30 -07002253 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 struct b44 *bp = netdev_priv(dev);
2255
Michael Buesch753f4922007-09-19 14:20:30 -07002256 if (!netif_running(dev))
2257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 del_timer_sync(&bp->timer);
2260
Jeff Garzik10badc22006-04-12 18:04:32 -04002261 spin_lock_irq(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 b44_halt(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04002264 netif_carrier_off(bp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 netif_device_detach(bp->dev);
2266 b44_free_rings(bp);
2267
2268 spin_unlock_irq(&bp->lock);
Pavel Machek46e17852005-10-28 15:14:47 -07002269
2270 free_irq(dev->irq, dev);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002271 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08002272 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002273 b44_setup_wol(bp);
2274 }
Michael Buesch753f4922007-09-19 14:20:30 -07002275
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002276 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 return 0;
2278}
2279
Michael Buesch753f4922007-09-19 14:20:30 -07002280static int b44_resume(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
Michael Buesch753f4922007-09-19 14:20:30 -07002282 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 struct b44 *bp = netdev_priv(dev);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002284 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Michael Buesch753f4922007-09-19 14:20:30 -07002286 rc = ssb_bus_powerup(sdev->bus, 0);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002287 if (rc) {
Michael Buesch753f4922007-09-19 14:20:30 -07002288 dev_err(sdev->dev,
2289 "Failed to powerup the bus\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002290 return rc;
2291 }
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 if (!netif_running(dev))
2294 return 0;
2295
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002296 rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
2297 if (rc) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002298 netdev_err(dev, "request_irq failed\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002299 return rc;
2300 }
Pavel Machek46e17852005-10-28 15:14:47 -07002301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 spin_lock_irq(&bp->lock);
2303
2304 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08002305 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 netif_device_attach(bp->dev);
2307 spin_unlock_irq(&bp->lock);
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01002310 netif_wake_queue(dev);
Stephen Hemmingera72a8172007-06-04 13:25:37 -07002311
2312 mod_timer(&bp->timer, jiffies + 1);
2313
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return 0;
2315}
2316
Michael Buesch753f4922007-09-19 14:20:30 -07002317static struct ssb_driver b44_ssb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 .name = DRV_MODULE_NAME,
Michael Buesch753f4922007-09-19 14:20:30 -07002319 .id_table = b44_ssb_tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 .probe = b44_init_one,
2321 .remove = __devexit_p(b44_remove_one),
Michael Buesch753f4922007-09-19 14:20:30 -07002322 .suspend = b44_suspend,
2323 .resume = b44_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324};
2325
Michael Buesch753f4922007-09-19 14:20:30 -07002326static inline int b44_pci_init(void)
2327{
2328 int err = 0;
2329#ifdef CONFIG_B44_PCI
2330 err = ssb_pcihost_register(&b44_pci_driver);
2331#endif
2332 return err;
2333}
2334
2335static inline void b44_pci_exit(void)
2336{
2337#ifdef CONFIG_B44_PCI
2338 ssb_pcihost_unregister(&b44_pci_driver);
2339#endif
2340}
2341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342static int __init b44_init(void)
2343{
John W. Linville9f38c632005-10-18 21:30:59 -04002344 unsigned int dma_desc_align_size = dma_get_cache_alignment();
Michael Buesch753f4922007-09-19 14:20:30 -07002345 int err;
John W. Linville9f38c632005-10-18 21:30:59 -04002346
2347 /* Setup paramaters for syncing RX/TX DMA descriptors */
2348 dma_desc_align_mask = ~(dma_desc_align_size - 1);
Alan Cox22d4d772006-01-17 17:53:56 +00002349 dma_desc_sync_size = max_t(unsigned int, dma_desc_align_size, sizeof(struct dma_desc));
John W. Linville9f38c632005-10-18 21:30:59 -04002350
Michael Buesch753f4922007-09-19 14:20:30 -07002351 err = b44_pci_init();
2352 if (err)
2353 return err;
2354 err = ssb_driver_register(&b44_ssb_driver);
2355 if (err)
2356 b44_pci_exit();
2357 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
2360static void __exit b44_cleanup(void)
2361{
Michael Buesch753f4922007-09-19 14:20:30 -07002362 ssb_driver_unregister(&b44_ssb_driver);
2363 b44_pci_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364}
2365
2366module_init(b44_init);
2367module_exit(b44_cleanup);
2368