blob: 7342308718a01213bbd9c877a1e610f9cffaba69 [file] [log] [blame]
Michael Buesch753f4922007-09-19 14:20:30 -07001/* b44.c: Broadcom 44xx/47xx Fast Ethernet device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
Michael Buesch753f4922007-09-19 14:20:30 -07004 * Copyright (C) 2004 Pekka Pietikainen (pp@ee.oulu.fi)
5 * Copyright (C) 2004 Florian Schirmer (jolt@tuxbox.org)
6 * Copyright (C) 2006 Felix Fietkau (nbd@openwrt.org)
Gary Zambrano8056bfa2006-04-10 12:05:40 -07007 * Copyright (C) 2006 Broadcom Corporation.
Michael Buesch753f4922007-09-19 14:20:30 -07008 * Copyright (C) 2007 Michael Buesch <mb@bu3sch.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Distribute under GPL.
11 */
12
Joe Perches2fc96ff2010-02-17 15:01:50 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/moduleparam.h>
18#include <linux/types.h>
19#include <linux/netdevice.h>
20#include <linux/ethtool.h>
21#include <linux/mii.h>
22#include <linux/if_ether.h>
Stephen Hemminger72f48612007-06-04 13:25:39 -070023#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/etherdevice.h>
25#include <linux/pci.h>
26#include <linux/delay.h>
27#include <linux/init.h>
Andrew Morton89358f92005-10-28 16:38:02 -040028#include <linux/dma-mapping.h>
Michael Buesch753f4922007-09-19 14:20:30 -070029#include <linux/ssb/ssb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/uaccess.h>
33#include <asm/io.h>
34#include <asm/irq.h>
35
Michael Buesch753f4922007-09-19 14:20:30 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "b44.h"
38
39#define DRV_MODULE_NAME "b44"
Michael Buesch753f4922007-09-19 14:20:30 -070040#define DRV_MODULE_VERSION "2.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define B44_DEF_MSG_ENABLE \
43 (NETIF_MSG_DRV | \
44 NETIF_MSG_PROBE | \
45 NETIF_MSG_LINK | \
46 NETIF_MSG_TIMER | \
47 NETIF_MSG_IFDOWN | \
48 NETIF_MSG_IFUP | \
49 NETIF_MSG_RX_ERR | \
50 NETIF_MSG_TX_ERR)
51
52/* length of time before we decide the hardware is borked,
53 * and dev->tx_timeout() should be called to fix the problem
54 */
55#define B44_TX_TIMEOUT (5 * HZ)
56
57/* hardware minimum and maximum for a single frame's data payload */
58#define B44_MIN_MTU 60
59#define B44_MAX_MTU 1500
60
61#define B44_RX_RING_SIZE 512
62#define B44_DEF_RX_RING_PENDING 200
63#define B44_RX_RING_BYTES (sizeof(struct dma_desc) * \
64 B44_RX_RING_SIZE)
65#define B44_TX_RING_SIZE 512
66#define B44_DEF_TX_RING_PENDING (B44_TX_RING_SIZE - 1)
67#define B44_TX_RING_BYTES (sizeof(struct dma_desc) * \
68 B44_TX_RING_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#define TX_RING_GAP(BP) \
71 (B44_TX_RING_SIZE - (BP)->tx_pending)
72#define TX_BUFFS_AVAIL(BP) \
73 (((BP)->tx_cons <= (BP)->tx_prod) ? \
74 (BP)->tx_cons + (BP)->tx_pending - (BP)->tx_prod : \
75 (BP)->tx_cons - (BP)->tx_prod - TX_RING_GAP(BP))
76#define NEXT_TX(N) (((N) + 1) & (B44_TX_RING_SIZE - 1))
77
Felix Fietkau4ca85792009-01-09 02:39:57 +000078#define RX_PKT_OFFSET (RX_HEADER_LEN + 2)
79#define RX_PKT_BUF_SZ (1536 + RX_PKT_OFFSET)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/* minimum number of free TX descriptors required to wake up TX process */
82#define B44_TX_WAKEUP_THRESH (B44_TX_RING_SIZE / 4)
83
Gary Zambrano725ad802006-06-20 15:34:36 -070084/* b44 internal pattern match filter info */
85#define B44_PATTERN_BASE 0x400
86#define B44_PATTERN_SIZE 0x80
87#define B44_PMASK_BASE 0x600
88#define B44_PMASK_SIZE 0x10
89#define B44_MAX_PATTERNS 16
90#define B44_ETHIPV6UDP_HLEN 62
91#define B44_ETHIPV4UDP_HLEN 42
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093static char version[] __devinitdata =
Michael Buesch753f4922007-09-19 14:20:30 -070094 DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION "\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Michael Buesch753f4922007-09-19 14:20:30 -070096MODULE_AUTHOR("Felix Fietkau, Florian Schirmer, Pekka Pietikainen, David S. Miller");
97MODULE_DESCRIPTION("Broadcom 44xx/47xx 10/100 PCI ethernet driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070098MODULE_LICENSE("GPL");
99MODULE_VERSION(DRV_MODULE_VERSION);
100
101static int b44_debug = -1; /* -1 == use B44_DEF_MSG_ENABLE as value */
102module_param(b44_debug, int, 0);
103MODULE_PARM_DESC(b44_debug, "B44 bitmapped debugging message enable value");
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Michael Buesch753f4922007-09-19 14:20:30 -0700106#ifdef CONFIG_B44_PCI
Alexey Dobriyana3aa1882010-01-07 11:58:11 +0000107static DEFINE_PCI_DEVICE_TABLE(b44_pci_tbl) = {
Michael Buesch753f4922007-09-19 14:20:30 -0700108 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401) },
109 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B0) },
110 { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_BCM4401B1) },
111 { 0 } /* terminate list with empty entry */
112};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113MODULE_DEVICE_TABLE(pci, b44_pci_tbl);
114
Michael Buesch753f4922007-09-19 14:20:30 -0700115static struct pci_driver b44_pci_driver = {
116 .name = DRV_MODULE_NAME,
117 .id_table = b44_pci_tbl,
118};
119#endif /* CONFIG_B44_PCI */
120
121static const struct ssb_device_id b44_ssb_tbl[] = {
122 SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_ETHERNET, SSB_ANY_REV),
123 SSB_DEVTABLE_END
124};
125MODULE_DEVICE_TABLE(ssb, b44_ssb_tbl);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static void b44_halt(struct b44 *);
128static void b44_init_rings(struct b44 *);
Michael Chan5fc7d612007-01-26 23:59:57 -0800129
130#define B44_FULL_RESET 1
131#define B44_FULL_RESET_SKIP_PHY 2
132#define B44_PARTIAL_RESET 3
Miguel Botónfedb0ee2008-01-01 01:17:54 +0100133#define B44_CHIP_RESET_FULL 4
134#define B44_CHIP_RESET_PARTIAL 5
Michael Chan5fc7d612007-01-26 23:59:57 -0800135
Gary Zambrano00e8b3a2006-06-20 15:34:26 -0700136static void b44_init_hw(struct b44 *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
John W. Linville9f38c632005-10-18 21:30:59 -0400138static int dma_desc_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{
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700152 dma_sync_single_for_device(sdev->dma_dev, dma_base + offset,
153 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400154}
155
Michael Buesch753f4922007-09-19 14:20:30 -0700156static inline void b44_sync_dma_desc_for_cpu(struct ssb_device *sdev,
157 dma_addr_t dma_base,
158 unsigned long offset,
159 enum dma_data_direction dir)
John W. Linville9f38c632005-10-18 21:30:59 -0400160{
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700161 dma_sync_single_for_cpu(sdev->dma_dev, dma_base + offset,
162 dma_desc_sync_size, dir);
John W. Linville9f38c632005-10-18 21:30:59 -0400163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static inline unsigned long br32(const struct b44 *bp, unsigned long reg)
166{
Michael Buesch753f4922007-09-19 14:20:30 -0700167 return ssb_read32(bp->sdev, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
Jeff Garzik10badc22006-04-12 18:04:32 -0400170static inline void bw32(const struct b44 *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 unsigned long reg, unsigned long val)
172{
Michael Buesch753f4922007-09-19 14:20:30 -0700173 ssb_write32(bp->sdev, reg, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176static int b44_wait_bit(struct b44 *bp, unsigned long reg,
177 u32 bit, unsigned long timeout, const int clear)
178{
179 unsigned long i;
180
181 for (i = 0; i < timeout; i++) {
182 u32 val = br32(bp, reg);
183
184 if (clear && !(val & bit))
185 break;
186 if (!clear && (val & bit))
187 break;
188 udelay(10);
189 }
190 if (i == timeout) {
Jochen Friedrichf6ca0572010-02-12 10:11:54 +0000191 if (net_ratelimit())
Joe Perches2fc96ff2010-02-17 15:01:50 +0000192 netdev_err(bp->dev, "BUG! Timeout waiting for bit %08x of register %lx to %s\n",
193 bit, reg, clear ? "clear" : "set");
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return -ENODEV;
196 }
197 return 0;
198}
199
Michael Buesch753f4922007-09-19 14:20:30 -0700200static inline void __b44_cam_read(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 u32 val;
203
Michael Buesch753f4922007-09-19 14:20:30 -0700204 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_READ |
205 (index << CAM_CTRL_INDEX_SHIFT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Michael Buesch753f4922007-09-19 14:20:30 -0700207 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Michael Buesch753f4922007-09-19 14:20:30 -0700209 val = br32(bp, B44_CAM_DATA_LO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Michael Buesch753f4922007-09-19 14:20:30 -0700211 data[2] = (val >> 24) & 0xFF;
212 data[3] = (val >> 16) & 0xFF;
213 data[4] = (val >> 8) & 0xFF;
214 data[5] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Michael Buesch753f4922007-09-19 14:20:30 -0700216 val = br32(bp, B44_CAM_DATA_HI);
217
218 data[0] = (val >> 8) & 0xFF;
219 data[1] = (val >> 0) & 0xFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Michael Buesch753f4922007-09-19 14:20:30 -0700222static inline void __b44_cam_write(struct b44 *bp, unsigned char *data, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 u32 val;
225
226 val = ((u32) data[2]) << 24;
227 val |= ((u32) data[3]) << 16;
228 val |= ((u32) data[4]) << 8;
229 val |= ((u32) data[5]) << 0;
230 bw32(bp, B44_CAM_DATA_LO, val);
Jeff Garzik10badc22006-04-12 18:04:32 -0400231 val = (CAM_DATA_HI_VALID |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 (((u32) data[0]) << 8) |
233 (((u32) data[1]) << 0));
234 bw32(bp, B44_CAM_DATA_HI, val);
235 bw32(bp, B44_CAM_CTRL, (CAM_CTRL_WRITE |
236 (index << CAM_CTRL_INDEX_SHIFT)));
Jeff Garzik10badc22006-04-12 18:04:32 -0400237 b44_wait_bit(bp, B44_CAM_CTRL, CAM_CTRL_BUSY, 100, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240static inline void __b44_disable_ints(struct b44 *bp)
241{
242 bw32(bp, B44_IMASK, 0);
243}
244
245static void b44_disable_ints(struct b44 *bp)
246{
247 __b44_disable_ints(bp);
248
249 /* Flush posted writes. */
250 br32(bp, B44_IMASK);
251}
252
253static void b44_enable_ints(struct b44 *bp)
254{
255 bw32(bp, B44_IMASK, bp->imask);
256}
257
Michael Buesch753f4922007-09-19 14:20:30 -0700258static int __b44_readphy(struct b44 *bp, int phy_addr, int reg, u32 *val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
260 int err;
261
262 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
263 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
264 (MDIO_OP_READ << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700265 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 (reg << MDIO_DATA_RA_SHIFT) |
267 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT)));
268 err = b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
269 *val = br32(bp, B44_MDIO_DATA) & MDIO_DATA_DATA;
270
271 return err;
272}
273
Michael Buesch753f4922007-09-19 14:20:30 -0700274static int __b44_writephy(struct b44 *bp, int phy_addr, int reg, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 bw32(bp, B44_EMAC_ISTAT, EMAC_INT_MII);
277 bw32(bp, B44_MDIO_DATA, (MDIO_DATA_SB_START |
278 (MDIO_OP_WRITE << MDIO_DATA_OP_SHIFT) |
Michael Buesch753f4922007-09-19 14:20:30 -0700279 (phy_addr << MDIO_DATA_PMD_SHIFT) |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 (reg << MDIO_DATA_RA_SHIFT) |
281 (MDIO_TA_VALID << MDIO_DATA_TA_SHIFT) |
282 (val & MDIO_DATA_DATA)));
283 return b44_wait_bit(bp, B44_EMAC_ISTAT, EMAC_INT_MII, 100, 0);
284}
285
Michael Buesch753f4922007-09-19 14:20:30 -0700286static inline int b44_readphy(struct b44 *bp, int reg, u32 *val)
287{
288 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
289 return 0;
290
291 return __b44_readphy(bp, bp->phy_addr, reg, val);
292}
293
294static inline int b44_writephy(struct b44 *bp, int reg, u32 val)
295{
296 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
297 return 0;
298
299 return __b44_writephy(bp, bp->phy_addr, reg, val);
300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/* miilib interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static int b44_mii_read(struct net_device *dev, int phy_id, int location)
304{
305 u32 val;
306 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700307 int rc = __b44_readphy(bp, phy_id, location, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (rc)
309 return 0xffffffff;
310 return val;
311}
312
313static void b44_mii_write(struct net_device *dev, int phy_id, int location,
314 int val)
315{
316 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -0700317 __b44_writephy(bp, phy_id, location, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320static int b44_phy_reset(struct b44 *bp)
321{
322 u32 val;
323 int err;
324
Michael Buesch753f4922007-09-19 14:20:30 -0700325 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
326 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 err = b44_writephy(bp, MII_BMCR, BMCR_RESET);
328 if (err)
329 return err;
330 udelay(100);
331 err = b44_readphy(bp, MII_BMCR, &val);
332 if (!err) {
333 if (val & BMCR_RESET) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000334 netdev_err(bp->dev, "PHY Reset would not complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 err = -ENODEV;
336 }
337 }
338
Hauke Mehrtens8850dce2010-02-20 10:55:25 +0000339 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342static void __b44_set_flow_ctrl(struct b44 *bp, u32 pause_flags)
343{
344 u32 val;
345
346 bp->flags &= ~(B44_FLAG_TX_PAUSE | B44_FLAG_RX_PAUSE);
347 bp->flags |= pause_flags;
348
349 val = br32(bp, B44_RXCONFIG);
350 if (pause_flags & B44_FLAG_RX_PAUSE)
351 val |= RXCONFIG_FLOW;
352 else
353 val &= ~RXCONFIG_FLOW;
354 bw32(bp, B44_RXCONFIG, val);
355
356 val = br32(bp, B44_MAC_FLOW);
357 if (pause_flags & B44_FLAG_TX_PAUSE)
358 val |= (MAC_FLOW_PAUSE_ENAB |
359 (0xc0 & MAC_FLOW_RX_HI_WATER));
360 else
361 val &= ~MAC_FLOW_PAUSE_ENAB;
362 bw32(bp, B44_MAC_FLOW, val);
363}
364
365static void b44_set_flow_ctrl(struct b44 *bp, u32 local, u32 remote)
366{
Jeff Garzik10badc22006-04-12 18:04:32 -0400367 u32 pause_enab = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700369 /* The driver supports only rx pause by default because
Jeff Garzik10badc22006-04-12 18:04:32 -0400370 the b44 mac tx pause mechanism generates excessive
371 pause frames.
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700372 Use ethtool to turn on b44 tx pause if necessary.
373 */
374 if ((local & ADVERTISE_PAUSE_CAP) &&
Jeff Garzik10badc22006-04-12 18:04:32 -0400375 (local & ADVERTISE_PAUSE_ASYM)){
Gary Zambrano2b474cf2006-04-10 12:02:21 -0700376 if ((remote & LPA_PAUSE_ASYM) &&
377 !(remote & LPA_PAUSE_CAP))
378 pause_enab |= B44_FLAG_RX_PAUSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380
381 __b44_set_flow_ctrl(bp, pause_enab);
382}
383
Michael Buesch753f4922007-09-19 14:20:30 -0700384#ifdef SSB_DRIVER_MIPS
385extern char *nvram_get(char *name);
386static void b44_wap54g10_workaround(struct b44 *bp)
387{
388 const char *str;
389 u32 val;
390 int err;
391
392 /*
393 * workaround for bad hardware design in Linksys WAP54G v1.0
394 * see https://dev.openwrt.org/ticket/146
395 * check and reset bit "isolate"
396 */
397 str = nvram_get("boardnum");
398 if (!str)
399 return;
400 if (simple_strtoul(str, NULL, 0) == 2) {
401 err = __b44_readphy(bp, 0, MII_BMCR, &val);
402 if (err)
403 goto error;
404 if (!(val & BMCR_ISOLATE))
405 return;
406 val &= ~BMCR_ISOLATE;
407 err = __b44_writephy(bp, 0, MII_BMCR, val);
408 if (err)
409 goto error;
410 }
411 return;
412error:
Joe Perches2fc96ff2010-02-17 15:01:50 +0000413 pr_warning("PHY: cannot reset MII transceiver isolate bit\n");
Michael Buesch753f4922007-09-19 14:20:30 -0700414}
415#else
416static inline void b44_wap54g10_workaround(struct b44 *bp)
417{
418}
419#endif
420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421static int b44_setup_phy(struct b44 *bp)
422{
423 u32 val;
424 int err;
425
Michael Buesch753f4922007-09-19 14:20:30 -0700426 b44_wap54g10_workaround(bp);
427
428 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY)
429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if ((err = b44_readphy(bp, B44_MII_ALEDCTRL, &val)) != 0)
431 goto out;
432 if ((err = b44_writephy(bp, B44_MII_ALEDCTRL,
433 val & MII_ALEDCTRL_ALLMSK)) != 0)
434 goto out;
435 if ((err = b44_readphy(bp, B44_MII_TLEDCTRL, &val)) != 0)
436 goto out;
437 if ((err = b44_writephy(bp, B44_MII_TLEDCTRL,
438 val | MII_TLEDCTRL_ENABLE)) != 0)
439 goto out;
440
441 if (!(bp->flags & B44_FLAG_FORCE_LINK)) {
442 u32 adv = ADVERTISE_CSMA;
443
444 if (bp->flags & B44_FLAG_ADV_10HALF)
445 adv |= ADVERTISE_10HALF;
446 if (bp->flags & B44_FLAG_ADV_10FULL)
447 adv |= ADVERTISE_10FULL;
448 if (bp->flags & B44_FLAG_ADV_100HALF)
449 adv |= ADVERTISE_100HALF;
450 if (bp->flags & B44_FLAG_ADV_100FULL)
451 adv |= ADVERTISE_100FULL;
452
453 if (bp->flags & B44_FLAG_PAUSE_AUTO)
454 adv |= ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM;
455
456 if ((err = b44_writephy(bp, MII_ADVERTISE, adv)) != 0)
457 goto out;
458 if ((err = b44_writephy(bp, MII_BMCR, (BMCR_ANENABLE |
459 BMCR_ANRESTART))) != 0)
460 goto out;
461 } else {
462 u32 bmcr;
463
464 if ((err = b44_readphy(bp, MII_BMCR, &bmcr)) != 0)
465 goto out;
466 bmcr &= ~(BMCR_FULLDPLX | BMCR_ANENABLE | BMCR_SPEED100);
467 if (bp->flags & B44_FLAG_100_BASE_T)
468 bmcr |= BMCR_SPEED100;
469 if (bp->flags & B44_FLAG_FULL_DUPLEX)
470 bmcr |= BMCR_FULLDPLX;
471 if ((err = b44_writephy(bp, MII_BMCR, bmcr)) != 0)
472 goto out;
473
474 /* Since we will not be negotiating there is no safe way
475 * to determine if the link partner supports flow control
476 * or not. So just disable it completely in this case.
477 */
478 b44_set_flow_ctrl(bp, 0, 0);
479 }
480
481out:
482 return err;
483}
484
485static void b44_stats_update(struct b44 *bp)
486{
487 unsigned long reg;
488 u32 *val;
489
490 val = &bp->hw_stats.tx_good_octets;
491 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL) {
492 *val++ += br32(bp, reg);
493 }
Francois Romieu33539302005-11-07 01:51:34 +0100494
495 /* Pad */
496 reg += 8*4UL;
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL) {
499 *val++ += br32(bp, reg);
500 }
501}
502
503static void b44_link_report(struct b44 *bp)
504{
505 if (!netif_carrier_ok(bp->dev)) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000506 netdev_info(bp->dev, "Link is down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 } else {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000508 netdev_info(bp->dev, "Link is up at %d Mbps, %s duplex\n",
509 (bp->flags & B44_FLAG_100_BASE_T) ? 100 : 10,
510 (bp->flags & B44_FLAG_FULL_DUPLEX) ? "full" : "half");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Joe Perches2fc96ff2010-02-17 15:01:50 +0000512 netdev_info(bp->dev, "Flow control is %s for TX and %s for RX\n",
513 (bp->flags & B44_FLAG_TX_PAUSE) ? "on" : "off",
514 (bp->flags & B44_FLAG_RX_PAUSE) ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516}
517
518static void b44_check_phy(struct b44 *bp)
519{
520 u32 bmsr, aux;
521
Michael Buesch753f4922007-09-19 14:20:30 -0700522 if (bp->phy_addr == B44_PHY_ADDR_NO_PHY) {
523 bp->flags |= B44_FLAG_100_BASE_T;
524 bp->flags |= B44_FLAG_FULL_DUPLEX;
525 if (!netif_carrier_ok(bp->dev)) {
526 u32 val = br32(bp, B44_TX_CTRL);
527 val |= TX_CTRL_DUPLEX;
528 bw32(bp, B44_TX_CTRL, val);
529 netif_carrier_on(bp->dev);
530 b44_link_report(bp);
531 }
532 return;
533 }
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (!b44_readphy(bp, MII_BMSR, &bmsr) &&
536 !b44_readphy(bp, B44_MII_AUXCTRL, &aux) &&
537 (bmsr != 0xffff)) {
538 if (aux & MII_AUXCTRL_SPEED)
539 bp->flags |= B44_FLAG_100_BASE_T;
540 else
541 bp->flags &= ~B44_FLAG_100_BASE_T;
542 if (aux & MII_AUXCTRL_DUPLEX)
543 bp->flags |= B44_FLAG_FULL_DUPLEX;
544 else
545 bp->flags &= ~B44_FLAG_FULL_DUPLEX;
546
547 if (!netif_carrier_ok(bp->dev) &&
548 (bmsr & BMSR_LSTATUS)) {
549 u32 val = br32(bp, B44_TX_CTRL);
550 u32 local_adv, remote_adv;
551
552 if (bp->flags & B44_FLAG_FULL_DUPLEX)
553 val |= TX_CTRL_DUPLEX;
554 else
555 val &= ~TX_CTRL_DUPLEX;
556 bw32(bp, B44_TX_CTRL, val);
557
558 if (!(bp->flags & B44_FLAG_FORCE_LINK) &&
559 !b44_readphy(bp, MII_ADVERTISE, &local_adv) &&
560 !b44_readphy(bp, MII_LPA, &remote_adv))
561 b44_set_flow_ctrl(bp, local_adv, remote_adv);
562
563 /* Link now up */
564 netif_carrier_on(bp->dev);
565 b44_link_report(bp);
566 } else if (netif_carrier_ok(bp->dev) && !(bmsr & BMSR_LSTATUS)) {
567 /* Link now down */
568 netif_carrier_off(bp->dev);
569 b44_link_report(bp);
570 }
571
572 if (bmsr & BMSR_RFAULT)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000573 netdev_warn(bp->dev, "Remote fault detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (bmsr & BMSR_JCD)
Joe Perches2fc96ff2010-02-17 15:01:50 +0000575 netdev_warn(bp->dev, "Jabber detected in PHY\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
577}
578
579static void b44_timer(unsigned long __opaque)
580{
581 struct b44 *bp = (struct b44 *) __opaque;
582
583 spin_lock_irq(&bp->lock);
584
585 b44_check_phy(bp);
586
587 b44_stats_update(bp);
588
589 spin_unlock_irq(&bp->lock);
590
Stephen Hemmingera72a8172007-06-04 13:25:37 -0700591 mod_timer(&bp->timer, round_jiffies(jiffies + HZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static void b44_tx(struct b44 *bp)
595{
596 u32 cur, cons;
597
598 cur = br32(bp, B44_DMATX_STAT) & DMATX_STAT_CDMASK;
599 cur /= sizeof(struct dma_desc);
600
601 /* XXX needs updating when NETIF_F_SG is supported */
602 for (cons = bp->tx_cons; cons != cur; cons = NEXT_TX(cons)) {
603 struct ring_info *rp = &bp->tx_buffers[cons];
604 struct sk_buff *skb = rp->skb;
605
Eric Sesterhenn5d9428d2006-04-02 13:52:48 +0200606 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700608 dma_unmap_single(bp->sdev->dma_dev,
609 rp->mapping,
610 skb->len,
611 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 rp->skb = NULL;
613 dev_kfree_skb_irq(skb);
614 }
615
616 bp->tx_cons = cons;
617 if (netif_queue_stopped(bp->dev) &&
618 TX_BUFFS_AVAIL(bp) > B44_TX_WAKEUP_THRESH)
619 netif_wake_queue(bp->dev);
620
621 bw32(bp, B44_GPTIMER, 0);
622}
623
624/* Works like this. This chip writes a 'struct rx_header" 30 bytes
625 * before the DMA address you give it. So we allocate 30 more bytes
626 * for the RX buffer, DMA map all of it, skb_reserve the 30 bytes, then
627 * point the chip at 30 bytes past where the rx_header will go.
628 */
629static int b44_alloc_rx_skb(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
630{
631 struct dma_desc *dp;
632 struct ring_info *src_map, *map;
633 struct rx_header *rh;
634 struct sk_buff *skb;
635 dma_addr_t mapping;
636 int dest_idx;
637 u32 ctrl;
638
639 src_map = NULL;
640 if (src_idx >= 0)
641 src_map = &bp->rx_buffers[src_idx];
642 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
643 map = &bp->rx_buffers[dest_idx];
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700644 skb = netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (skb == NULL)
646 return -ENOMEM;
647
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700648 mapping = dma_map_single(bp->sdev->dma_dev, skb->data,
649 RX_PKT_BUF_SZ,
650 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /* Hardware bug work-around, the chip is unable to do PCI DMA
653 to/from anything above 1GB :-( */
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700654 if (dma_mapping_error(bp->sdev->dma_dev, mapping) ||
Yang Hongyang28b76792009-04-06 19:01:17 -0700655 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 /* Sigh... */
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700657 if (!dma_mapping_error(bp->sdev->dma_dev, mapping))
658 dma_unmap_single(bp->sdev->dma_dev, mapping,
Michael Bueschf2257632008-06-20 11:50:29 +0200659 RX_PKT_BUF_SZ, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 dev_kfree_skb_any(skb);
Stephen Hemmingerbf0dcbd2007-06-04 13:25:40 -0700661 skb = __netdev_alloc_skb(bp->dev, RX_PKT_BUF_SZ, GFP_ATOMIC|GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (skb == NULL)
663 return -ENOMEM;
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700664 mapping = dma_map_single(bp->sdev->dma_dev, skb->data,
665 RX_PKT_BUF_SZ,
666 DMA_FROM_DEVICE);
667 if (dma_mapping_error(bp->sdev->dma_dev, mapping) ||
668 mapping + RX_PKT_BUF_SZ > DMA_BIT_MASK(30)) {
669 if (!dma_mapping_error(bp->sdev->dma_dev, mapping))
670 dma_unmap_single(bp->sdev->dma_dev, mapping, RX_PKT_BUF_SZ,DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 dev_kfree_skb_any(skb);
672 return -ENOMEM;
673 }
Eric Dumazeta58c8912009-01-15 15:29:35 -0800674 bp->force_copybreak = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
676
Stephen Hemminger72f48612007-06-04 13:25:39 -0700677 rh = (struct rx_header *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 rh->len = 0;
680 rh->flags = 0;
681
682 map->skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700683 map->mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (src_map != NULL)
686 src_map->skb = NULL;
687
Felix Fietkau4ca85792009-01-09 02:39:57 +0000688 ctrl = (DESC_CTRL_LEN & RX_PKT_BUF_SZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 if (dest_idx == (B44_RX_RING_SIZE - 1))
690 ctrl |= DESC_CTRL_EOT;
691
692 dp = &bp->rx_ring[dest_idx];
693 dp->ctrl = cpu_to_le32(ctrl);
Felix Fietkau4ca85792009-01-09 02:39:57 +0000694 dp->addr = cpu_to_le32((u32) mapping + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
John W. Linville9f38c632005-10-18 21:30:59 -0400696 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700697 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000698 dest_idx * sizeof(*dp),
Michael Buesch753f4922007-09-19 14:20:30 -0700699 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return RX_PKT_BUF_SZ;
702}
703
704static void b44_recycle_rx(struct b44 *bp, int src_idx, u32 dest_idx_unmasked)
705{
706 struct dma_desc *src_desc, *dest_desc;
707 struct ring_info *src_map, *dest_map;
708 struct rx_header *rh;
709 int dest_idx;
Al Viroa7bed27d2007-01-29 15:36:54 -0500710 __le32 ctrl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 dest_idx = dest_idx_unmasked & (B44_RX_RING_SIZE - 1);
713 dest_desc = &bp->rx_ring[dest_idx];
714 dest_map = &bp->rx_buffers[dest_idx];
715 src_desc = &bp->rx_ring[src_idx];
716 src_map = &bp->rx_buffers[src_idx];
717
718 dest_map->skb = src_map->skb;
719 rh = (struct rx_header *) src_map->skb->data;
720 rh->len = 0;
721 rh->flags = 0;
Michael Buesch753f4922007-09-19 14:20:30 -0700722 dest_map->mapping = src_map->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
John W. Linville9f38c632005-10-18 21:30:59 -0400724 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700725 b44_sync_dma_desc_for_cpu(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000726 src_idx * sizeof(*src_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700727 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ctrl = src_desc->ctrl;
730 if (dest_idx == (B44_RX_RING_SIZE - 1))
731 ctrl |= cpu_to_le32(DESC_CTRL_EOT);
732 else
733 ctrl &= cpu_to_le32(~DESC_CTRL_EOT);
734
735 dest_desc->ctrl = ctrl;
736 dest_desc->addr = src_desc->addr;
John W. Linville9f38c632005-10-18 21:30:59 -0400737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 src_map->skb = NULL;
739
John W. Linville9f38c632005-10-18 21:30:59 -0400740 if (bp->flags & B44_FLAG_RX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700741 b44_sync_dma_desc_for_device(bp->sdev, bp->rx_ring_dma,
Michael Buesch5d4d9e82009-04-03 00:01:30 +0000742 dest_idx * sizeof(*dest_desc),
Michael Buesch753f4922007-09-19 14:20:30 -0700743 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -0400744
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700745 dma_sync_single_for_device(bp->sdev->dma_dev, dest_map->mapping,
746 RX_PKT_BUF_SZ,
747 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750static int b44_rx(struct b44 *bp, int budget)
751{
752 int received;
753 u32 cons, prod;
754
755 received = 0;
756 prod = br32(bp, B44_DMARX_STAT) & DMARX_STAT_CDMASK;
757 prod /= sizeof(struct dma_desc);
758 cons = bp->rx_cons;
759
760 while (cons != prod && budget > 0) {
761 struct ring_info *rp = &bp->rx_buffers[cons];
762 struct sk_buff *skb = rp->skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700763 dma_addr_t map = rp->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct rx_header *rh;
765 u16 len;
766
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700767 dma_sync_single_for_cpu(bp->sdev->dma_dev, map,
768 RX_PKT_BUF_SZ,
769 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 rh = (struct rx_header *) skb->data;
Al Viroa7bed27d2007-01-29 15:36:54 -0500771 len = le16_to_cpu(rh->len);
Stephen Hemminger72f48612007-06-04 13:25:39 -0700772 if ((len > (RX_PKT_BUF_SZ - RX_PKT_OFFSET)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 (rh->flags & cpu_to_le16(RX_FLAG_ERRORS))) {
774 drop_it:
775 b44_recycle_rx(bp, cons, bp->rx_prod);
776 drop_it_no_recycle:
Eric Dumazet553e2332009-05-27 10:34:50 +0000777 bp->dev->stats.rx_dropped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 goto next_pkt;
779 }
780
781 if (len == 0) {
782 int i = 0;
783
784 do {
785 udelay(2);
786 barrier();
Al Viroa7bed27d2007-01-29 15:36:54 -0500787 len = le16_to_cpu(rh->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 } while (len == 0 && i++ < 5);
789 if (len == 0)
790 goto drop_it;
791 }
792
793 /* Omit CRC. */
794 len -= 4;
795
Eric Dumazeta58c8912009-01-15 15:29:35 -0800796 if (!bp->force_copybreak && len > RX_COPY_THRESHOLD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 int skb_size;
798 skb_size = b44_alloc_rx_skb(bp, cons, bp->rx_prod);
799 if (skb_size < 0)
800 goto drop_it;
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700801 dma_unmap_single(bp->sdev->dma_dev, map,
802 skb_size, DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* Leave out rx_header */
Felix Fietkau4ca85792009-01-09 02:39:57 +0000804 skb_put(skb, len + RX_PKT_OFFSET);
805 skb_pull(skb, RX_PKT_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 } else {
807 struct sk_buff *copy_skb;
808
809 b44_recycle_rx(bp, cons, bp->rx_prod);
Hauke Mehrtens53639202010-02-20 10:55:26 +0000810 copy_skb = netdev_alloc_skb(bp->dev, len + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 if (copy_skb == NULL)
812 goto drop_it_no_recycle;
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 skb_reserve(copy_skb, 2);
815 skb_put(copy_skb, len);
816 /* DMA sync done above, copy just the actual packet */
Stephen Hemminger72f48612007-06-04 13:25:39 -0700817 skb_copy_from_linear_data_offset(skb, RX_PKT_OFFSET,
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300818 copy_skb->data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 skb = copy_skb;
820 }
Eric Dumazetbc8acf22010-09-02 13:07:41 -0700821 skb_checksum_none_assert(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 skb->protocol = eth_type_trans(skb, bp->dev);
823 netif_receive_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 received++;
825 budget--;
826 next_pkt:
827 bp->rx_prod = (bp->rx_prod + 1) &
828 (B44_RX_RING_SIZE - 1);
829 cons = (cons + 1) & (B44_RX_RING_SIZE - 1);
830 }
831
832 bp->rx_cons = cons;
833 bw32(bp, B44_DMARX_PTR, cons * sizeof(struct dma_desc));
834
835 return received;
836}
837
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700838static int b44_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700840 struct b44 *bp = container_of(napi, struct b44, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700841 int work_done;
Dongdong Denge99b1f02009-09-16 16:10:47 +0000842 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Dongdong Denge99b1f02009-09-16 16:10:47 +0000844 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if (bp->istat & (ISTAT_TX | ISTAT_TO)) {
847 /* spin_lock(&bp->tx_lock); */
848 b44_tx(bp);
849 /* spin_unlock(&bp->tx_lock); */
850 }
Dongdong Denge99b1f02009-09-16 16:10:47 +0000851 spin_unlock_irqrestore(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700853 work_done = 0;
854 if (bp->istat & ISTAT_RX)
855 work_done += b44_rx(bp, budget);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 if (bp->istat & ISTAT_ERRORS) {
Francois Romieud15e9c42006-12-17 23:03:15 +0100858 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 b44_halt(bp);
860 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800861 b44_init_hw(bp, B44_FULL_RESET_SKIP_PHY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 netif_wake_queue(bp->dev);
Francois Romieud15e9c42006-12-17 23:03:15 +0100863 spin_unlock_irqrestore(&bp->lock, flags);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700864 work_done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 }
866
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700867 if (work_done < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800868 napi_complete(napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 b44_enable_ints(bp);
870 }
871
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700872 return work_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
David Howells7d12e782006-10-05 14:55:46 +0100875static irqreturn_t b44_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
877 struct net_device *dev = dev_id;
878 struct b44 *bp = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 u32 istat, imask;
880 int handled = 0;
881
Francois Romieu65b984f2005-11-07 01:52:06 +0100882 spin_lock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
884 istat = br32(bp, B44_ISTAT);
885 imask = br32(bp, B44_IMASK);
886
Johannes Berge78181f2006-11-06 23:17:20 +0100887 /* The interrupt mask register controls which interrupt bits
888 * will actually raise an interrupt to the CPU when set by hw/firmware,
889 * but doesn't mask off the bits.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891 istat &= imask;
892 if (istat) {
893 handled = 1;
Francois Romieuba5eec92005-11-08 23:37:12 +0100894
895 if (unlikely(!netif_running(dev))) {
Joe Perches2fc96ff2010-02-17 15:01:50 +0000896 netdev_info(dev, "late interrupt\n");
Francois Romieuba5eec92005-11-08 23:37:12 +0100897 goto irq_ack;
898 }
899
Ben Hutchings288379f2009-01-19 16:43:59 -0800900 if (napi_schedule_prep(&bp->napi)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 /* NOTE: These writes are posted by the readback of
902 * the ISTAT register below.
903 */
904 bp->istat = istat;
905 __b44_disable_ints(bp);
Ben Hutchings288379f2009-01-19 16:43:59 -0800906 __napi_schedule(&bp->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 }
908
Francois Romieuba5eec92005-11-08 23:37:12 +0100909irq_ack:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 bw32(bp, B44_ISTAT, istat);
911 br32(bp, B44_ISTAT);
912 }
Francois Romieu65b984f2005-11-07 01:52:06 +0100913 spin_unlock(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 return IRQ_RETVAL(handled);
915}
916
917static void b44_tx_timeout(struct net_device *dev)
918{
919 struct b44 *bp = netdev_priv(dev);
920
Joe Perches2fc96ff2010-02-17 15:01:50 +0000921 netdev_err(dev, "transmit timed out, resetting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 spin_lock_irq(&bp->lock);
924
925 b44_halt(bp);
926 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -0800927 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 spin_unlock_irq(&bp->lock);
930
931 b44_enable_ints(bp);
932
933 netif_wake_queue(dev);
934}
935
Stephen Hemminger613573252009-08-31 19:50:58 +0000936static netdev_tx_t b44_start_xmit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 struct b44 *bp = netdev_priv(dev);
Francois Romieuc7193692005-11-07 01:50:03 +0100939 int rc = NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 dma_addr_t mapping;
941 u32 len, entry, ctrl;
Dongdong Deng22580f82009-08-13 19:12:31 +0000942 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 len = skb->len;
Dongdong Deng22580f82009-08-13 19:12:31 +0000945 spin_lock_irqsave(&bp->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /* This is a hard error, log it. */
948 if (unlikely(TX_BUFFS_AVAIL(bp) < 1)) {
949 netif_stop_queue(dev);
Joe Perches2fc96ff2010-02-17 15:01:50 +0000950 netdev_err(dev, "BUG! Tx Ring full when queue awake!\n");
Francois Romieuc7193692005-11-07 01:50:03 +0100951 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700954 mapping = dma_map_single(bp->sdev->dma_dev, skb->data, len, DMA_TO_DEVICE);
955 if (dma_mapping_error(bp->sdev->dma_dev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700956 struct sk_buff *bounce_skb;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* Chip can't handle DMA to/from >1GB, use bounce buffer */
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700959 if (!dma_mapping_error(bp->sdev->dma_dev, mapping))
960 dma_unmap_single(bp->sdev->dma_dev, mapping, len,
Michael Bueschf2257632008-06-20 11:50:29 +0200961 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
David S. Miller9034f772009-02-10 01:56:45 -0800963 bounce_skb = __netdev_alloc_skb(dev, len, GFP_ATOMIC | GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 if (!bounce_skb)
Francois Romieuc7193692005-11-07 01:50:03 +0100965 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -0700967 mapping = dma_map_single(bp->sdev->dma_dev, bounce_skb->data,
968 len, DMA_TO_DEVICE);
969 if (dma_mapping_error(bp->sdev->dma_dev, mapping) || mapping + len > DMA_BIT_MASK(30)) {
970 if (!dma_mapping_error(bp->sdev->dma_dev, mapping))
971 dma_unmap_single(bp->sdev->dma_dev, mapping,
Michael Bueschf2257632008-06-20 11:50:29 +0200972 len, DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 dev_kfree_skb_any(bounce_skb);
Francois Romieuc7193692005-11-07 01:50:03 +0100974 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
976
Stephen Hemmingerf65a7172007-06-04 13:25:38 -0700977 skb_copy_from_linear_data(skb, skb_put(bounce_skb, len), len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 dev_kfree_skb_any(skb);
979 skb = bounce_skb;
980 }
981
982 entry = bp->tx_prod;
983 bp->tx_buffers[entry].skb = skb;
Michael Buesch753f4922007-09-19 14:20:30 -0700984 bp->tx_buffers[entry].mapping = mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986 ctrl = (len & DESC_CTRL_LEN);
987 ctrl |= DESC_CTRL_IOC | DESC_CTRL_SOF | DESC_CTRL_EOF;
988 if (entry == (B44_TX_RING_SIZE - 1))
989 ctrl |= DESC_CTRL_EOT;
990
991 bp->tx_ring[entry].ctrl = cpu_to_le32(ctrl);
992 bp->tx_ring[entry].addr = cpu_to_le32((u32) mapping+bp->dma_offset);
993
John W. Linville9f38c632005-10-18 21:30:59 -0400994 if (bp->flags & B44_FLAG_TX_RING_HACK)
Michael Buesch753f4922007-09-19 14:20:30 -0700995 b44_sync_dma_desc_for_device(bp->sdev, bp->tx_ring_dma,
996 entry * sizeof(bp->tx_ring[0]),
997 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -0400998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 entry = NEXT_TX(entry);
1000
1001 bp->tx_prod = entry;
1002
1003 wmb();
1004
1005 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1006 if (bp->flags & B44_FLAG_BUGGY_TXPTR)
1007 bw32(bp, B44_DMATX_PTR, entry * sizeof(struct dma_desc));
1008 if (bp->flags & B44_FLAG_REORDER_BUG)
1009 br32(bp, B44_DMATX_PTR);
1010
1011 if (TX_BUFFS_AVAIL(bp) < 1)
1012 netif_stop_queue(dev);
1013
Francois Romieuc7193692005-11-07 01:50:03 +01001014out_unlock:
Dongdong Deng22580f82009-08-13 19:12:31 +00001015 spin_unlock_irqrestore(&bp->lock, flags);
Francois Romieuc7193692005-11-07 01:50:03 +01001016
1017 return rc;
1018
1019err_out:
1020 rc = NETDEV_TX_BUSY;
1021 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
1024static int b44_change_mtu(struct net_device *dev, int new_mtu)
1025{
1026 struct b44 *bp = netdev_priv(dev);
1027
1028 if (new_mtu < B44_MIN_MTU || new_mtu > B44_MAX_MTU)
1029 return -EINVAL;
1030
1031 if (!netif_running(dev)) {
1032 /* We'll just catch it later when the
1033 * device is up'd.
1034 */
1035 dev->mtu = new_mtu;
1036 return 0;
1037 }
1038
1039 spin_lock_irq(&bp->lock);
1040 b44_halt(bp);
1041 dev->mtu = new_mtu;
1042 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001043 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 spin_unlock_irq(&bp->lock);
1045
1046 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return 0;
1049}
1050
1051/* Free up pending packets in all rx/tx rings.
1052 *
1053 * The chip has been shut down and the driver detached from
1054 * the networking, so no interrupts or new tx packets will
1055 * end up in the driver. bp->lock is not held and we are not
1056 * in an interrupt context and thus may sleep.
1057 */
1058static void b44_free_rings(struct b44 *bp)
1059{
1060 struct ring_info *rp;
1061 int i;
1062
1063 for (i = 0; i < B44_RX_RING_SIZE; i++) {
1064 rp = &bp->rx_buffers[i];
1065
1066 if (rp->skb == NULL)
1067 continue;
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001068 dma_unmap_single(bp->sdev->dma_dev, rp->mapping, RX_PKT_BUF_SZ,
1069 DMA_FROM_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 dev_kfree_skb_any(rp->skb);
1071 rp->skb = NULL;
1072 }
1073
1074 /* XXX needs changes once NETIF_F_SG is set... */
1075 for (i = 0; i < B44_TX_RING_SIZE; i++) {
1076 rp = &bp->tx_buffers[i];
1077
1078 if (rp->skb == NULL)
1079 continue;
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001080 dma_unmap_single(bp->sdev->dma_dev, rp->mapping, rp->skb->len,
1081 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 dev_kfree_skb_any(rp->skb);
1083 rp->skb = NULL;
1084 }
1085}
1086
1087/* Initialize tx/rx rings for packet processing.
1088 *
1089 * The chip has been shut down and the driver detached from
1090 * the networking, so no interrupts or new tx packets will
Francois Romieu874a6212005-11-07 01:50:46 +01001091 * end up in the driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 */
1093static void b44_init_rings(struct b44 *bp)
1094{
1095 int i;
1096
1097 b44_free_rings(bp);
1098
1099 memset(bp->rx_ring, 0, B44_RX_RING_BYTES);
1100 memset(bp->tx_ring, 0, B44_TX_RING_BYTES);
1101
John W. Linville9f38c632005-10-18 21:30:59 -04001102 if (bp->flags & B44_FLAG_RX_RING_HACK)
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001103 dma_sync_single_for_device(bp->sdev->dma_dev, bp->rx_ring_dma,
1104 DMA_TABLE_BYTES, DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001105
1106 if (bp->flags & B44_FLAG_TX_RING_HACK)
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001107 dma_sync_single_for_device(bp->sdev->dma_dev, bp->tx_ring_dma,
1108 DMA_TABLE_BYTES, DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 for (i = 0; i < bp->rx_pending; i++) {
1111 if (b44_alloc_rx_skb(bp, -1, i) < 0)
1112 break;
1113 }
1114}
1115
1116/*
1117 * Must not be invoked with interrupt sources disabled and
1118 * the hardware shutdown down.
1119 */
1120static void b44_free_consistent(struct b44 *bp)
1121{
Jesper Juhlb4558ea2005-10-28 16:53:13 -04001122 kfree(bp->rx_buffers);
1123 bp->rx_buffers = NULL;
1124 kfree(bp->tx_buffers);
1125 bp->tx_buffers = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (bp->rx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001127 if (bp->flags & B44_FLAG_RX_RING_HACK) {
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001128 dma_unmap_single(bp->sdev->dma_dev, bp->rx_ring_dma,
1129 DMA_TABLE_BYTES, DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001130 kfree(bp->rx_ring);
1131 } else
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001132 dma_free_coherent(bp->sdev->dma_dev, DMA_TABLE_BYTES,
1133 bp->rx_ring, bp->rx_ring_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 bp->rx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001135 bp->flags &= ~B44_FLAG_RX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
1137 if (bp->tx_ring) {
John W. Linville9f38c632005-10-18 21:30:59 -04001138 if (bp->flags & B44_FLAG_TX_RING_HACK) {
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001139 dma_unmap_single(bp->sdev->dma_dev, bp->tx_ring_dma,
1140 DMA_TABLE_BYTES, DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001141 kfree(bp->tx_ring);
1142 } else
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001143 dma_free_coherent(bp->sdev->dma_dev, DMA_TABLE_BYTES,
1144 bp->tx_ring, bp->tx_ring_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 bp->tx_ring = NULL;
John W. Linville9f38c632005-10-18 21:30:59 -04001146 bp->flags &= ~B44_FLAG_TX_RING_HACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148}
1149
1150/*
1151 * Must not be invoked with interrupt sources disabled and
1152 * the hardware shutdown down. Can sleep.
1153 */
Michael Buesch753f4922007-09-19 14:20:30 -07001154static int b44_alloc_consistent(struct b44 *bp, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
1156 int size;
1157
1158 size = B44_RX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001159 bp->rx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if (!bp->rx_buffers)
1161 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 size = B44_TX_RING_SIZE * sizeof(struct ring_info);
Michael Buesch753f4922007-09-19 14:20:30 -07001164 bp->tx_buffers = kzalloc(size, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 if (!bp->tx_buffers)
1166 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
1168 size = DMA_TABLE_BYTES;
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001169 bp->rx_ring = dma_alloc_coherent(bp->sdev->dma_dev, size,
1170 &bp->rx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001171 if (!bp->rx_ring) {
1172 /* Allocation may have failed due to pci_alloc_consistent
1173 insisting on use of GFP_DMA, which is more restrictive
1174 than necessary... */
1175 struct dma_desc *rx_ring;
1176 dma_addr_t rx_ring_dma;
1177
Michael Buesch753f4922007-09-19 14:20:30 -07001178 rx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001179 if (!rx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001180 goto out_err;
1181
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001182 rx_ring_dma = dma_map_single(bp->sdev->dma_dev, rx_ring,
1183 DMA_TABLE_BYTES,
1184 DMA_BIDIRECTIONAL);
John W. Linville9f38c632005-10-18 21:30:59 -04001185
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001186 if (dma_mapping_error(bp->sdev->dma_dev, rx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001187 rx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001188 kfree(rx_ring);
1189 goto out_err;
1190 }
1191
1192 bp->rx_ring = rx_ring;
1193 bp->rx_ring_dma = rx_ring_dma;
1194 bp->flags |= B44_FLAG_RX_RING_HACK;
1195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001197 bp->tx_ring = dma_alloc_coherent(bp->sdev->dma_dev, size,
1198 &bp->tx_ring_dma, gfp);
John W. Linville9f38c632005-10-18 21:30:59 -04001199 if (!bp->tx_ring) {
Michael Bueschf2257632008-06-20 11:50:29 +02001200 /* Allocation may have failed due to ssb_dma_alloc_consistent
John W. Linville9f38c632005-10-18 21:30:59 -04001201 insisting on use of GFP_DMA, which is more restrictive
1202 than necessary... */
1203 struct dma_desc *tx_ring;
1204 dma_addr_t tx_ring_dma;
1205
Michael Buesch753f4922007-09-19 14:20:30 -07001206 tx_ring = kzalloc(size, gfp);
Francois Romieu874a6212005-11-07 01:50:46 +01001207 if (!tx_ring)
John W. Linville9f38c632005-10-18 21:30:59 -04001208 goto out_err;
1209
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001210 tx_ring_dma = dma_map_single(bp->sdev->dma_dev, tx_ring,
1211 DMA_TABLE_BYTES,
1212 DMA_TO_DEVICE);
John W. Linville9f38c632005-10-18 21:30:59 -04001213
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07001214 if (dma_mapping_error(bp->sdev->dma_dev, tx_ring_dma) ||
Yang Hongyang28b76792009-04-06 19:01:17 -07001215 tx_ring_dma + size > DMA_BIT_MASK(30)) {
John W. Linville9f38c632005-10-18 21:30:59 -04001216 kfree(tx_ring);
1217 goto out_err;
1218 }
1219
1220 bp->tx_ring = tx_ring;
1221 bp->tx_ring_dma = tx_ring_dma;
1222 bp->flags |= B44_FLAG_TX_RING_HACK;
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 return 0;
1226
1227out_err:
1228 b44_free_consistent(bp);
1229 return -ENOMEM;
1230}
1231
1232/* bp->lock is held. */
1233static void b44_clear_stats(struct b44 *bp)
1234{
1235 unsigned long reg;
1236
1237 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
1238 for (reg = B44_TX_GOOD_O; reg <= B44_TX_PAUSE; reg += 4UL)
1239 br32(bp, reg);
1240 for (reg = B44_RX_GOOD_O; reg <= B44_RX_NPAUSE; reg += 4UL)
1241 br32(bp, reg);
1242}
1243
1244/* bp->lock is held. */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001245static void b44_chip_reset(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Michael Buesch753f4922007-09-19 14:20:30 -07001247 struct ssb_device *sdev = bp->sdev;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001248 bool was_enabled;
Michael Buesch753f4922007-09-19 14:20:30 -07001249
Michael Bueschf8af11a2009-02-26 22:33:00 -08001250 was_enabled = ssb_device_is_enabled(bp->sdev);
1251
1252 ssb_device_enable(bp->sdev, 0);
1253 ssb_pcicore_dev_irqvecs_enable(&sdev->bus->pcicore, sdev);
1254
1255 if (was_enabled) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 bw32(bp, B44_RCV_LAZY, 0);
1257 bw32(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE);
Gary Zambrano40ee8c72007-02-16 13:27:27 -08001258 b44_wait_bit(bp, B44_ENET_CTRL, ENET_CTRL_DISABLE, 200, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 bw32(bp, B44_DMATX_CTRL, 0);
1260 bp->tx_prod = bp->tx_cons = 0;
1261 if (br32(bp, B44_DMARX_STAT) & DMARX_STAT_EMASK) {
1262 b44_wait_bit(bp, B44_DMARX_STAT, DMARX_STAT_SIDLE,
1263 100, 0);
1264 }
1265 bw32(bp, B44_DMARX_CTRL, 0);
1266 bp->rx_prod = bp->rx_cons = 0;
Michael Bueschf8af11a2009-02-26 22:33:00 -08001267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 b44_clear_stats(bp);
1270
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001271 /*
1272 * Don't enable PHY if we are doing a partial reset
1273 * we are probably going to power down
1274 */
1275 if (reset_kind == B44_CHIP_RESET_PARTIAL)
1276 return;
1277
Michael Buesch753f4922007-09-19 14:20:30 -07001278 switch (sdev->bus->bustype) {
1279 case SSB_BUSTYPE_SSB:
1280 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
Julia Lawall39506a52009-08-01 09:51:06 +00001281 (DIV_ROUND_CLOSEST(ssb_clockspeed(sdev->bus),
1282 B44_MDC_RATIO)
Michael Buesch753f4922007-09-19 14:20:30 -07001283 & MDIO_CTRL_MAXF_MASK)));
1284 break;
1285 case SSB_BUSTYPE_PCI:
Michael Buesch753f4922007-09-19 14:20:30 -07001286 bw32(bp, B44_MDIO_CTRL, (MDIO_CTRL_PREAMBLE |
1287 (0x0d & MDIO_CTRL_MAXF_MASK)));
1288 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001289 case SSB_BUSTYPE_PCMCIA:
1290 case SSB_BUSTYPE_SDIO:
1291 WARN_ON(1); /* A device with this bus does not exist. */
1292 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001293 }
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 br32(bp, B44_MDIO_CTRL);
1296
1297 if (!(br32(bp, B44_DEVCTRL) & DEVCTRL_IPP)) {
1298 bw32(bp, B44_ENET_CTRL, ENET_CTRL_EPSEL);
1299 br32(bp, B44_ENET_CTRL);
1300 bp->flags &= ~B44_FLAG_INTERNAL_PHY;
1301 } else {
1302 u32 val = br32(bp, B44_DEVCTRL);
1303
1304 if (val & DEVCTRL_EPR) {
1305 bw32(bp, B44_DEVCTRL, (val & ~DEVCTRL_EPR));
1306 br32(bp, B44_DEVCTRL);
1307 udelay(100);
1308 }
1309 bp->flags |= B44_FLAG_INTERNAL_PHY;
1310 }
1311}
1312
1313/* bp->lock is held. */
1314static void b44_halt(struct b44 *bp)
1315{
1316 b44_disable_ints(bp);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001317 /* reset PHY */
1318 b44_phy_reset(bp);
1319 /* power down PHY */
Joe Perches2fc96ff2010-02-17 15:01:50 +00001320 netdev_info(bp->dev, "powering down PHY\n");
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001321 bw32(bp, B44_MAC_CTRL, MAC_CTRL_PHY_PDOWN);
1322 /* now reset the chip, but without enabling the MAC&PHY
1323 * part of it. This has to be done _after_ we shut down the PHY */
1324 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325}
1326
1327/* bp->lock is held. */
1328static void __b44_set_mac_addr(struct b44 *bp)
1329{
1330 bw32(bp, B44_CAM_CTRL, 0);
1331 if (!(bp->dev->flags & IFF_PROMISC)) {
1332 u32 val;
1333
1334 __b44_cam_write(bp, bp->dev->dev_addr, 0);
1335 val = br32(bp, B44_CAM_CTRL);
1336 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1337 }
1338}
1339
1340static int b44_set_mac_addr(struct net_device *dev, void *p)
1341{
1342 struct b44 *bp = netdev_priv(dev);
1343 struct sockaddr *addr = p;
Michael Buesch753f4922007-09-19 14:20:30 -07001344 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
1346 if (netif_running(dev))
1347 return -EBUSY;
1348
Gary Zambrano391fc092006-03-28 14:57:38 -08001349 if (!is_valid_ether_addr(addr->sa_data))
1350 return -EINVAL;
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
1353
1354 spin_lock_irq(&bp->lock);
Michael Buesch753f4922007-09-19 14:20:30 -07001355
1356 val = br32(bp, B44_RXCONFIG);
1357 if (!(val & RXCONFIG_CAM_ABSENT))
1358 __b44_set_mac_addr(bp);
1359
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 spin_unlock_irq(&bp->lock);
1361
1362 return 0;
1363}
1364
1365/* Called at device open time to get the chip ready for
1366 * packet processing. Invoked with bp->lock held.
1367 */
1368static void __b44_set_rx_mode(struct net_device *);
Michael Chan5fc7d612007-01-26 23:59:57 -08001369static void b44_init_hw(struct b44 *bp, int reset_kind)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 u32 val;
1372
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001373 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Michael Chan5fc7d612007-01-26 23:59:57 -08001374 if (reset_kind == B44_FULL_RESET) {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001375 b44_phy_reset(bp);
1376 b44_setup_phy(bp);
1377 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 /* Enable CRC32, set proper LED modes and power on PHY */
1380 bw32(bp, B44_MAC_CTRL, MAC_CTRL_CRC32_ENAB | MAC_CTRL_PHY_LEDCTRL);
1381 bw32(bp, B44_RCV_LAZY, (1 << RCV_LAZY_FC_SHIFT));
1382
1383 /* This sets the MAC address too. */
1384 __b44_set_rx_mode(bp->dev);
1385
1386 /* MTU + eth header + possible VLAN tag + struct rx_header */
1387 bw32(bp, B44_RXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1388 bw32(bp, B44_TXMAXLEN, bp->dev->mtu + ETH_HLEN + 8 + RX_HEADER_LEN);
1389
1390 bw32(bp, B44_TX_WMARK, 56); /* XXX magic */
Michael Chan5fc7d612007-01-26 23:59:57 -08001391 if (reset_kind == B44_PARTIAL_RESET) {
1392 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001393 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Michael Chan5fc7d612007-01-26 23:59:57 -08001394 } else {
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001395 bw32(bp, B44_DMATX_CTRL, DMATX_CTRL_ENABLE);
1396 bw32(bp, B44_DMATX_ADDR, bp->tx_ring_dma + bp->dma_offset);
1397 bw32(bp, B44_DMARX_CTRL, (DMARX_CTRL_ENABLE |
Stephen Hemminger72f48612007-06-04 13:25:39 -07001398 (RX_PKT_OFFSET << DMARX_CTRL_ROSHIFT)));
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001399 bw32(bp, B44_DMARX_ADDR, bp->rx_ring_dma + bp->dma_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001401 bw32(bp, B44_DMARX_PTR, bp->rx_pending);
1402 bp->rx_prod = bp->rx_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001404 bw32(bp, B44_MIB_CTRL, MIB_CTRL_CLR_ON_READ);
Gary Zambrano00e8b3a2006-06-20 15:34:26 -07001405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 val = br32(bp, B44_ENET_CTRL);
1408 bw32(bp, B44_ENET_CTRL, (val | ENET_CTRL_ENABLE));
1409}
1410
1411static int b44_open(struct net_device *dev)
1412{
1413 struct b44 *bp = netdev_priv(dev);
1414 int err;
1415
Michael Buesch753f4922007-09-19 14:20:30 -07001416 err = b44_alloc_consistent(bp, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (err)
Francois Romieu6c2f4262005-11-07 01:52:57 +01001418 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001420 napi_enable(&bp->napi);
1421
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001423 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
John W. Linvillee254e9b2005-06-08 15:11:57 -04001425 b44_check_phy(bp);
1426
Thomas Gleixner1fb9df52006-07-01 19:29:39 -07001427 err = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001428 if (unlikely(err < 0)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001429 napi_disable(&bp->napi);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01001430 b44_chip_reset(bp, B44_CHIP_RESET_PARTIAL);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001431 b44_free_rings(bp);
1432 b44_free_consistent(bp);
1433 goto out;
1434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 init_timer(&bp->timer);
1437 bp->timer.expires = jiffies + HZ;
1438 bp->timer.data = (unsigned long) bp;
1439 bp->timer.function = b44_timer;
1440 add_timer(&bp->timer);
1441
1442 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01001443 netif_start_queue(dev);
Francois Romieu6c2f4262005-11-07 01:52:57 +01001444out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return err;
1446}
1447
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448#ifdef CONFIG_NET_POLL_CONTROLLER
1449/*
1450 * Polling receive - used by netconsole and other diagnostic tools
1451 * to allow network i/o with interrupts disabled.
1452 */
1453static void b44_poll_controller(struct net_device *dev)
1454{
1455 disable_irq(dev->irq);
David Howells7d12e782006-10-05 14:55:46 +01001456 b44_interrupt(dev->irq, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 enable_irq(dev->irq);
1458}
1459#endif
1460
Gary Zambrano725ad802006-06-20 15:34:36 -07001461static void bwfilter_table(struct b44 *bp, u8 *pp, u32 bytes, u32 table_offset)
1462{
1463 u32 i;
1464 u32 *pattern = (u32 *) pp;
1465
1466 for (i = 0; i < bytes; i += sizeof(u32)) {
1467 bw32(bp, B44_FILT_ADDR, table_offset + i);
1468 bw32(bp, B44_FILT_DATA, pattern[i / sizeof(u32)]);
1469 }
1470}
1471
1472static int b44_magic_pattern(u8 *macaddr, u8 *ppattern, u8 *pmask, int offset)
1473{
1474 int magicsync = 6;
1475 int k, j, len = offset;
1476 int ethaddr_bytes = ETH_ALEN;
1477
1478 memset(ppattern + offset, 0xff, magicsync);
1479 for (j = 0; j < magicsync; j++)
1480 set_bit(len++, (unsigned long *) pmask);
1481
1482 for (j = 0; j < B44_MAX_PATTERNS; j++) {
1483 if ((B44_PATTERN_SIZE - len) >= ETH_ALEN)
1484 ethaddr_bytes = ETH_ALEN;
1485 else
1486 ethaddr_bytes = B44_PATTERN_SIZE - len;
1487 if (ethaddr_bytes <=0)
1488 break;
1489 for (k = 0; k< ethaddr_bytes; k++) {
1490 ppattern[offset + magicsync +
1491 (j * ETH_ALEN) + k] = macaddr[k];
Stanislav Brabece0188822009-12-08 21:00:22 -08001492 set_bit(len++, (unsigned long *) pmask);
Gary Zambrano725ad802006-06-20 15:34:36 -07001493 }
1494 }
1495 return len - 1;
1496}
1497
1498/* Setup magic packet patterns in the b44 WOL
1499 * pattern matching filter.
1500 */
1501static void b44_setup_pseudo_magicp(struct b44 *bp)
1502{
1503
1504 u32 val;
1505 int plen0, plen1, plen2;
1506 u8 *pwol_pattern;
1507 u8 pwol_mask[B44_PMASK_SIZE];
1508
Yoann Padioleaudd00cc42007-07-19 01:49:03 -07001509 pwol_pattern = kzalloc(B44_PATTERN_SIZE, GFP_KERNEL);
Gary Zambrano725ad802006-06-20 15:34:36 -07001510 if (!pwol_pattern) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00001511 pr_err("Memory not available for WOL\n");
Gary Zambrano725ad802006-06-20 15:34:36 -07001512 return;
1513 }
1514
1515 /* Ipv4 magic packet pattern - pattern 0.*/
Gary Zambrano725ad802006-06-20 15:34:36 -07001516 memset(pwol_mask, 0, B44_PMASK_SIZE);
1517 plen0 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1518 B44_ETHIPV4UDP_HLEN);
1519
1520 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE, B44_PATTERN_BASE);
1521 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE, B44_PMASK_BASE);
1522
1523 /* Raw ethernet II magic packet pattern - pattern 1 */
1524 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1525 memset(pwol_mask, 0, B44_PMASK_SIZE);
1526 plen1 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1527 ETH_HLEN);
1528
1529 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1530 B44_PATTERN_BASE + B44_PATTERN_SIZE);
1531 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1532 B44_PMASK_BASE + B44_PMASK_SIZE);
1533
1534 /* Ipv6 magic packet pattern - pattern 2 */
1535 memset(pwol_pattern, 0, B44_PATTERN_SIZE);
1536 memset(pwol_mask, 0, B44_PMASK_SIZE);
1537 plen2 = b44_magic_pattern(bp->dev->dev_addr, pwol_pattern, pwol_mask,
1538 B44_ETHIPV6UDP_HLEN);
1539
1540 bwfilter_table(bp, pwol_pattern, B44_PATTERN_SIZE,
1541 B44_PATTERN_BASE + B44_PATTERN_SIZE + B44_PATTERN_SIZE);
1542 bwfilter_table(bp, pwol_mask, B44_PMASK_SIZE,
1543 B44_PMASK_BASE + B44_PMASK_SIZE + B44_PMASK_SIZE);
1544
1545 kfree(pwol_pattern);
1546
1547 /* set these pattern's lengths: one less than each real length */
1548 val = plen0 | (plen1 << 8) | (plen2 << 16) | WKUP_LEN_ENABLE_THREE;
1549 bw32(bp, B44_WKUP_LEN, val);
1550
1551 /* enable wakeup pattern matching */
1552 val = br32(bp, B44_DEVCTRL);
1553 bw32(bp, B44_DEVCTRL, val | DEVCTRL_PFE);
1554
1555}
Gary Zambrano52cafd92006-06-20 15:34:23 -07001556
Michael Buesch753f4922007-09-19 14:20:30 -07001557#ifdef CONFIG_B44_PCI
1558static void b44_setup_wol_pci(struct b44 *bp)
1559{
1560 u16 val;
1561
1562 if (bp->sdev->bus->bustype != SSB_BUSTYPE_SSB) {
1563 bw32(bp, SSB_TMSLOW, br32(bp, SSB_TMSLOW) | SSB_TMSLOW_PE);
1564 pci_read_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, &val);
1565 pci_write_config_word(bp->sdev->bus->host_pci, SSB_PMCSR, val | SSB_PE);
1566 }
1567}
1568#else
1569static inline void b44_setup_wol_pci(struct b44 *bp) { }
1570#endif /* CONFIG_B44_PCI */
1571
Gary Zambrano52cafd92006-06-20 15:34:23 -07001572static void b44_setup_wol(struct b44 *bp)
1573{
1574 u32 val;
Gary Zambrano52cafd92006-06-20 15:34:23 -07001575
1576 bw32(bp, B44_RXCONFIG, RXCONFIG_ALLMULTI);
1577
1578 if (bp->flags & B44_FLAG_B0_ANDLATER) {
1579
1580 bw32(bp, B44_WKUP_LEN, WKUP_LEN_DISABLE);
1581
1582 val = bp->dev->dev_addr[2] << 24 |
1583 bp->dev->dev_addr[3] << 16 |
1584 bp->dev->dev_addr[4] << 8 |
1585 bp->dev->dev_addr[5];
1586 bw32(bp, B44_ADDR_LO, val);
1587
1588 val = bp->dev->dev_addr[0] << 8 |
1589 bp->dev->dev_addr[1];
1590 bw32(bp, B44_ADDR_HI, val);
1591
1592 val = br32(bp, B44_DEVCTRL);
1593 bw32(bp, B44_DEVCTRL, val | DEVCTRL_MPM | DEVCTRL_PFE);
1594
Gary Zambrano725ad802006-06-20 15:34:36 -07001595 } else {
1596 b44_setup_pseudo_magicp(bp);
1597 }
Michael Buesch753f4922007-09-19 14:20:30 -07001598 b44_setup_wol_pci(bp);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001599}
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601static int b44_close(struct net_device *dev)
1602{
1603 struct b44 *bp = netdev_priv(dev);
1604
1605 netif_stop_queue(dev);
1606
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001607 napi_disable(&bp->napi);
Francois Romieuba5eec92005-11-08 23:37:12 +01001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 del_timer_sync(&bp->timer);
1610
1611 spin_lock_irq(&bp->lock);
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 b44_halt(bp);
1614 b44_free_rings(bp);
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08001615 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
1617 spin_unlock_irq(&bp->lock);
1618
1619 free_irq(dev->irq, dev);
1620
Gary Zambrano52cafd92006-06-20 15:34:23 -07001621 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08001622 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07001623 b44_setup_wol(bp);
1624 }
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 b44_free_consistent(bp);
1627
1628 return 0;
1629}
1630
1631static struct net_device_stats *b44_get_stats(struct net_device *dev)
1632{
1633 struct b44 *bp = netdev_priv(dev);
Eric Dumazet553e2332009-05-27 10:34:50 +00001634 struct net_device_stats *nstat = &dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 struct b44_hw_stats *hwstat = &bp->hw_stats;
1636
1637 /* Convert HW stats into netdevice stats. */
1638 nstat->rx_packets = hwstat->rx_pkts;
1639 nstat->tx_packets = hwstat->tx_pkts;
1640 nstat->rx_bytes = hwstat->rx_octets;
1641 nstat->tx_bytes = hwstat->tx_octets;
1642 nstat->tx_errors = (hwstat->tx_jabber_pkts +
1643 hwstat->tx_oversize_pkts +
1644 hwstat->tx_underruns +
1645 hwstat->tx_excessive_cols +
1646 hwstat->tx_late_cols);
1647 nstat->multicast = hwstat->tx_multicast_pkts;
1648 nstat->collisions = hwstat->tx_total_cols;
1649
1650 nstat->rx_length_errors = (hwstat->rx_oversize_pkts +
1651 hwstat->rx_undersize);
1652 nstat->rx_over_errors = hwstat->rx_missed_pkts;
1653 nstat->rx_frame_errors = hwstat->rx_align_errs;
1654 nstat->rx_crc_errors = hwstat->rx_crc_errs;
1655 nstat->rx_errors = (hwstat->rx_jabber_pkts +
1656 hwstat->rx_oversize_pkts +
1657 hwstat->rx_missed_pkts +
1658 hwstat->rx_crc_align_errs +
1659 hwstat->rx_undersize +
1660 hwstat->rx_crc_errs +
1661 hwstat->rx_align_errs +
1662 hwstat->rx_symbol_errs);
1663
1664 nstat->tx_aborted_errors = hwstat->tx_underruns;
1665#if 0
1666 /* Carrier lost counter seems to be broken for some devices */
1667 nstat->tx_carrier_errors = hwstat->tx_carrier_lost;
1668#endif
1669
1670 return nstat;
1671}
1672
1673static int __b44_load_mcast(struct b44 *bp, struct net_device *dev)
1674{
Jiri Pirko22bedad32010-04-01 21:22:57 +00001675 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 int i, num_ents;
1677
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001678 num_ents = min_t(int, netdev_mc_count(dev), B44_MCAST_TABLE_SIZE);
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001679 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001680 netdev_for_each_mc_addr(ha, dev) {
Jiri Pirko0ddf4772010-02-20 00:13:58 +00001681 if (i == num_ents)
1682 break;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001683 __b44_cam_write(bp, ha->addr, i++ + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685 return i+1;
1686}
1687
1688static void __b44_set_rx_mode(struct net_device *dev)
1689{
1690 struct b44 *bp = netdev_priv(dev);
1691 u32 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 val = br32(bp, B44_RXCONFIG);
1694 val &= ~(RXCONFIG_PROMISC | RXCONFIG_ALLMULTI);
Michael Buesch753f4922007-09-19 14:20:30 -07001695 if ((dev->flags & IFF_PROMISC) || (val & RXCONFIG_CAM_ABSENT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 val |= RXCONFIG_PROMISC;
1697 bw32(bp, B44_RXCONFIG, val);
1698 } else {
Francois Romieu874a6212005-11-07 01:50:46 +01001699 unsigned char zero[6] = {0, 0, 0, 0, 0, 0};
Bill Helfinstinecda22aa2007-04-01 13:10:28 -04001700 int i = 1;
Francois Romieu874a6212005-11-07 01:50:46 +01001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 __b44_set_mac_addr(bp);
1703
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001704 if ((dev->flags & IFF_ALLMULTI) ||
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001705 (netdev_mc_count(dev) > B44_MCAST_TABLE_SIZE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 val |= RXCONFIG_ALLMULTI;
1707 else
Francois Romieu874a6212005-11-07 01:50:46 +01001708 i = __b44_load_mcast(bp, dev);
Jeff Garzik10badc22006-04-12 18:04:32 -04001709
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001710 for (; i < 64; i++)
Jeff Garzik10badc22006-04-12 18:04:32 -04001711 __b44_cam_write(bp, zero, i);
Jeff Garzik2f614fe2006-10-05 07:10:38 -04001712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 bw32(bp, B44_RXCONFIG, val);
1714 val = br32(bp, B44_CAM_CTRL);
1715 bw32(bp, B44_CAM_CTRL, val | CAM_CTRL_ENABLE);
1716 }
1717}
1718
1719static void b44_set_rx_mode(struct net_device *dev)
1720{
1721 struct b44 *bp = netdev_priv(dev);
1722
1723 spin_lock_irq(&bp->lock);
1724 __b44_set_rx_mode(dev);
1725 spin_unlock_irq(&bp->lock);
1726}
1727
1728static u32 b44_get_msglevel(struct net_device *dev)
1729{
1730 struct b44 *bp = netdev_priv(dev);
1731 return bp->msg_enable;
1732}
1733
1734static void b44_set_msglevel(struct net_device *dev, u32 value)
1735{
1736 struct b44 *bp = netdev_priv(dev);
1737 bp->msg_enable = value;
1738}
1739
1740static void b44_get_drvinfo (struct net_device *dev, struct ethtool_drvinfo *info)
1741{
1742 struct b44 *bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07001743 struct ssb_bus *bus = bp->sdev->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
roel kluin27e09552009-07-17 08:01:54 +00001745 strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver));
1746 strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version));
Michael Buesch753f4922007-09-19 14:20:30 -07001747 switch (bus->bustype) {
1748 case SSB_BUSTYPE_PCI:
roel kluin27e09552009-07-17 08:01:54 +00001749 strlcpy(info->bus_info, pci_name(bus->host_pci), sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001750 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001751 case SSB_BUSTYPE_SSB:
roel kluin27e09552009-07-17 08:01:54 +00001752 strlcpy(info->bus_info, "SSB", sizeof(info->bus_info));
Michael Buesch753f4922007-09-19 14:20:30 -07001753 break;
Michael Buesch98a1e2a2009-09-08 19:33:31 +02001754 case SSB_BUSTYPE_PCMCIA:
1755 case SSB_BUSTYPE_SDIO:
1756 WARN_ON(1); /* A device with this bus does not exist. */
1757 break;
Michael Buesch753f4922007-09-19 14:20:30 -07001758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
1761static int b44_nway_reset(struct net_device *dev)
1762{
1763 struct b44 *bp = netdev_priv(dev);
1764 u32 bmcr;
1765 int r;
1766
1767 spin_lock_irq(&bp->lock);
1768 b44_readphy(bp, MII_BMCR, &bmcr);
1769 b44_readphy(bp, MII_BMCR, &bmcr);
1770 r = -EINVAL;
1771 if (bmcr & BMCR_ANENABLE) {
1772 b44_writephy(bp, MII_BMCR,
1773 bmcr | BMCR_ANRESTART);
1774 r = 0;
1775 }
1776 spin_unlock_irq(&bp->lock);
1777
1778 return r;
1779}
1780
1781static int b44_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1782{
1783 struct b44 *bp = netdev_priv(dev);
1784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 cmd->supported = (SUPPORTED_Autoneg);
1786 cmd->supported |= (SUPPORTED_100baseT_Half |
1787 SUPPORTED_100baseT_Full |
1788 SUPPORTED_10baseT_Half |
1789 SUPPORTED_10baseT_Full |
1790 SUPPORTED_MII);
1791
1792 cmd->advertising = 0;
1793 if (bp->flags & B44_FLAG_ADV_10HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001794 cmd->advertising |= ADVERTISED_10baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 if (bp->flags & B44_FLAG_ADV_10FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001796 cmd->advertising |= ADVERTISED_10baseT_Full;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 if (bp->flags & B44_FLAG_ADV_100HALF)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001798 cmd->advertising |= ADVERTISED_100baseT_Half;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (bp->flags & B44_FLAG_ADV_100FULL)
Matthew Wilcoxadf6e002005-10-04 11:25:17 -06001800 cmd->advertising |= ADVERTISED_100baseT_Full;
1801 cmd->advertising |= ADVERTISED_Pause | ADVERTISED_Asym_Pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 cmd->speed = (bp->flags & B44_FLAG_100_BASE_T) ?
1803 SPEED_100 : SPEED_10;
1804 cmd->duplex = (bp->flags & B44_FLAG_FULL_DUPLEX) ?
1805 DUPLEX_FULL : DUPLEX_HALF;
1806 cmd->port = 0;
1807 cmd->phy_address = bp->phy_addr;
1808 cmd->transceiver = (bp->flags & B44_FLAG_INTERNAL_PHY) ?
1809 XCVR_INTERNAL : XCVR_EXTERNAL;
1810 cmd->autoneg = (bp->flags & B44_FLAG_FORCE_LINK) ?
1811 AUTONEG_DISABLE : AUTONEG_ENABLE;
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001812 if (cmd->autoneg == AUTONEG_ENABLE)
1813 cmd->advertising |= ADVERTISED_Autoneg;
1814 if (!netif_running(dev)){
1815 cmd->speed = 0;
1816 cmd->duplex = 0xff;
1817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 cmd->maxtxpkt = 0;
1819 cmd->maxrxpkt = 0;
1820 return 0;
1821}
1822
1823static int b44_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1824{
1825 struct b44 *bp = netdev_priv(dev);
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 /* We do not support gigabit. */
1828 if (cmd->autoneg == AUTONEG_ENABLE) {
1829 if (cmd->advertising &
1830 (ADVERTISED_1000baseT_Half |
1831 ADVERTISED_1000baseT_Full))
1832 return -EINVAL;
1833 } else if ((cmd->speed != SPEED_100 &&
1834 cmd->speed != SPEED_10) ||
1835 (cmd->duplex != DUPLEX_HALF &&
1836 cmd->duplex != DUPLEX_FULL)) {
1837 return -EINVAL;
1838 }
1839
1840 spin_lock_irq(&bp->lock);
1841
1842 if (cmd->autoneg == AUTONEG_ENABLE) {
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001843 bp->flags &= ~(B44_FLAG_FORCE_LINK |
1844 B44_FLAG_100_BASE_T |
1845 B44_FLAG_FULL_DUPLEX |
1846 B44_FLAG_ADV_10HALF |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 B44_FLAG_ADV_10FULL |
1848 B44_FLAG_ADV_100HALF |
1849 B44_FLAG_ADV_100FULL);
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001850 if (cmd->advertising == 0) {
1851 bp->flags |= (B44_FLAG_ADV_10HALF |
1852 B44_FLAG_ADV_10FULL |
1853 B44_FLAG_ADV_100HALF |
1854 B44_FLAG_ADV_100FULL);
1855 } else {
1856 if (cmd->advertising & ADVERTISED_10baseT_Half)
1857 bp->flags |= B44_FLAG_ADV_10HALF;
1858 if (cmd->advertising & ADVERTISED_10baseT_Full)
1859 bp->flags |= B44_FLAG_ADV_10FULL;
1860 if (cmd->advertising & ADVERTISED_100baseT_Half)
1861 bp->flags |= B44_FLAG_ADV_100HALF;
1862 if (cmd->advertising & ADVERTISED_100baseT_Full)
1863 bp->flags |= B44_FLAG_ADV_100FULL;
1864 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 } else {
1866 bp->flags |= B44_FLAG_FORCE_LINK;
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001867 bp->flags &= ~(B44_FLAG_100_BASE_T | B44_FLAG_FULL_DUPLEX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (cmd->speed == SPEED_100)
1869 bp->flags |= B44_FLAG_100_BASE_T;
1870 if (cmd->duplex == DUPLEX_FULL)
1871 bp->flags |= B44_FLAG_FULL_DUPLEX;
1872 }
1873
Gary Zambrano47b9c3b12006-06-20 15:34:15 -07001874 if (netif_running(dev))
1875 b44_setup_phy(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 spin_unlock_irq(&bp->lock);
1878
1879 return 0;
1880}
1881
1882static void b44_get_ringparam(struct net_device *dev,
1883 struct ethtool_ringparam *ering)
1884{
1885 struct b44 *bp = netdev_priv(dev);
1886
1887 ering->rx_max_pending = B44_RX_RING_SIZE - 1;
1888 ering->rx_pending = bp->rx_pending;
1889
1890 /* XXX ethtool lacks a tx_max_pending, oops... */
1891}
1892
1893static int b44_set_ringparam(struct net_device *dev,
1894 struct ethtool_ringparam *ering)
1895{
1896 struct b44 *bp = netdev_priv(dev);
1897
1898 if ((ering->rx_pending > B44_RX_RING_SIZE - 1) ||
1899 (ering->rx_mini_pending != 0) ||
1900 (ering->rx_jumbo_pending != 0) ||
1901 (ering->tx_pending > B44_TX_RING_SIZE - 1))
1902 return -EINVAL;
1903
1904 spin_lock_irq(&bp->lock);
1905
1906 bp->rx_pending = ering->rx_pending;
1907 bp->tx_pending = ering->tx_pending;
1908
1909 b44_halt(bp);
1910 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001911 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 netif_wake_queue(bp->dev);
1913 spin_unlock_irq(&bp->lock);
1914
1915 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 return 0;
1918}
1919
1920static void b44_get_pauseparam(struct net_device *dev,
1921 struct ethtool_pauseparam *epause)
1922{
1923 struct b44 *bp = netdev_priv(dev);
1924
1925 epause->autoneg =
1926 (bp->flags & B44_FLAG_PAUSE_AUTO) != 0;
1927 epause->rx_pause =
1928 (bp->flags & B44_FLAG_RX_PAUSE) != 0;
1929 epause->tx_pause =
1930 (bp->flags & B44_FLAG_TX_PAUSE) != 0;
1931}
1932
1933static int b44_set_pauseparam(struct net_device *dev,
1934 struct ethtool_pauseparam *epause)
1935{
1936 struct b44 *bp = netdev_priv(dev);
1937
1938 spin_lock_irq(&bp->lock);
1939 if (epause->autoneg)
1940 bp->flags |= B44_FLAG_PAUSE_AUTO;
1941 else
1942 bp->flags &= ~B44_FLAG_PAUSE_AUTO;
1943 if (epause->rx_pause)
1944 bp->flags |= B44_FLAG_RX_PAUSE;
1945 else
1946 bp->flags &= ~B44_FLAG_RX_PAUSE;
1947 if (epause->tx_pause)
1948 bp->flags |= B44_FLAG_TX_PAUSE;
1949 else
1950 bp->flags &= ~B44_FLAG_TX_PAUSE;
1951 if (bp->flags & B44_FLAG_PAUSE_AUTO) {
1952 b44_halt(bp);
1953 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08001954 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 } else {
1956 __b44_set_flow_ctrl(bp, bp->flags);
1957 }
1958 spin_unlock_irq(&bp->lock);
1959
1960 b44_enable_ints(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return 0;
1963}
1964
Francois Romieu33539302005-11-07 01:51:34 +01001965static void b44_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1966{
1967 switch(stringset) {
1968 case ETH_SS_STATS:
1969 memcpy(data, *b44_gstrings, sizeof(b44_gstrings));
1970 break;
1971 }
1972}
1973
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001974static int b44_get_sset_count(struct net_device *dev, int sset)
Francois Romieu33539302005-11-07 01:51:34 +01001975{
Jeff Garzikb9f2c042007-10-03 18:07:32 -07001976 switch (sset) {
1977 case ETH_SS_STATS:
1978 return ARRAY_SIZE(b44_gstrings);
1979 default:
1980 return -EOPNOTSUPP;
1981 }
Francois Romieu33539302005-11-07 01:51:34 +01001982}
1983
1984static void b44_get_ethtool_stats(struct net_device *dev,
1985 struct ethtool_stats *stats, u64 *data)
1986{
1987 struct b44 *bp = netdev_priv(dev);
1988 u32 *val = &bp->hw_stats.tx_good_octets;
1989 u32 i;
1990
1991 spin_lock_irq(&bp->lock);
1992
1993 b44_stats_update(bp);
1994
1995 for (i = 0; i < ARRAY_SIZE(b44_gstrings); i++)
1996 *data++ = *val++;
1997
1998 spin_unlock_irq(&bp->lock);
1999}
2000
Gary Zambrano52cafd92006-06-20 15:34:23 -07002001static void b44_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2002{
2003 struct b44 *bp = netdev_priv(dev);
2004
2005 wol->supported = WAKE_MAGIC;
2006 if (bp->flags & B44_FLAG_WOL_ENABLE)
2007 wol->wolopts = WAKE_MAGIC;
2008 else
2009 wol->wolopts = 0;
2010 memset(&wol->sopass, 0, sizeof(wol->sopass));
2011}
2012
2013static int b44_set_wol(struct net_device *dev, struct ethtool_wolinfo *wol)
2014{
2015 struct b44 *bp = netdev_priv(dev);
2016
2017 spin_lock_irq(&bp->lock);
2018 if (wol->wolopts & WAKE_MAGIC)
2019 bp->flags |= B44_FLAG_WOL_ENABLE;
2020 else
2021 bp->flags &= ~B44_FLAG_WOL_ENABLE;
2022 spin_unlock_irq(&bp->lock);
2023
2024 return 0;
2025}
2026
Jeff Garzik7282d492006-09-13 14:30:00 -04002027static const struct ethtool_ops b44_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 .get_drvinfo = b44_get_drvinfo,
2029 .get_settings = b44_get_settings,
2030 .set_settings = b44_set_settings,
2031 .nway_reset = b44_nway_reset,
2032 .get_link = ethtool_op_get_link,
Gary Zambrano52cafd92006-06-20 15:34:23 -07002033 .get_wol = b44_get_wol,
2034 .set_wol = b44_set_wol,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 .get_ringparam = b44_get_ringparam,
2036 .set_ringparam = b44_set_ringparam,
2037 .get_pauseparam = b44_get_pauseparam,
2038 .set_pauseparam = b44_set_pauseparam,
2039 .get_msglevel = b44_get_msglevel,
2040 .set_msglevel = b44_set_msglevel,
Francois Romieu33539302005-11-07 01:51:34 +01002041 .get_strings = b44_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -07002042 .get_sset_count = b44_get_sset_count,
Francois Romieu33539302005-11-07 01:51:34 +01002043 .get_ethtool_stats = b44_get_ethtool_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044};
2045
2046static int b44_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
2047{
2048 struct mii_ioctl_data *data = if_mii(ifr);
2049 struct b44 *bp = netdev_priv(dev);
Francois Romieu34105722005-11-30 22:32:13 +01002050 int err = -EINVAL;
2051
2052 if (!netif_running(dev))
2053 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 spin_lock_irq(&bp->lock);
2056 err = generic_mii_ioctl(&bp->mii_if, data, cmd, NULL);
2057 spin_unlock_irq(&bp->lock);
Francois Romieu34105722005-11-30 22:32:13 +01002058out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return err;
2060}
2061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062static int __devinit b44_get_invariants(struct b44 *bp)
2063{
Michael Buesch753f4922007-09-19 14:20:30 -07002064 struct ssb_device *sdev = bp->sdev;
2065 int err = 0;
2066 u8 *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Michael Buesch753f4922007-09-19 14:20:30 -07002068 bp->dma_offset = ssb_dma_translation(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Michael Buesch753f4922007-09-19 14:20:30 -07002070 if (sdev->bus->bustype == SSB_BUSTYPE_SSB &&
2071 instance > 1) {
Larry Finger458414b2007-11-09 16:56:10 -06002072 addr = sdev->bus->sprom.et1mac;
2073 bp->phy_addr = sdev->bus->sprom.et1phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002074 } else {
Larry Finger458414b2007-11-09 16:56:10 -06002075 addr = sdev->bus->sprom.et0mac;
2076 bp->phy_addr = sdev->bus->sprom.et0phyaddr;
Michael Buesch753f4922007-09-19 14:20:30 -07002077 }
Michael Buesch5ea79632008-03-25 18:04:46 +01002078 /* Some ROMs have buggy PHY addresses with the high
2079 * bits set (sign extension?). Truncate them to a
2080 * valid PHY address. */
2081 bp->phy_addr &= 0x1F;
2082
Michael Buesch753f4922007-09-19 14:20:30 -07002083 memcpy(bp->dev->dev_addr, addr, 6);
Gary Zambrano391fc092006-03-28 14:57:38 -08002084
2085 if (!is_valid_ether_addr(&bp->dev->dev_addr[0])){
Joe Perches2fc96ff2010-02-17 15:01:50 +00002086 pr_err("Invalid MAC address found in EEPROM\n");
Gary Zambrano391fc092006-03-28 14:57:38 -08002087 return -EINVAL;
2088 }
2089
John W. Linville2160de52005-09-12 10:48:55 -04002090 memcpy(bp->dev->perm_addr, bp->dev->dev_addr, bp->dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 bp->imask = IMASK_DEF;
2093
Jeff Garzik10badc22006-04-12 18:04:32 -04002094 /* XXX - really required?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 bp->flags |= B44_FLAG_BUGGY_TXPTR;
Michael Buesch753f4922007-09-19 14:20:30 -07002096 */
Gary Zambrano52cafd92006-06-20 15:34:23 -07002097
Michael Buesch753f4922007-09-19 14:20:30 -07002098 if (bp->sdev->id.revision >= 7)
2099 bp->flags |= B44_FLAG_B0_ANDLATER;
Gary Zambrano52cafd92006-06-20 15:34:23 -07002100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 return err;
2102}
2103
Stephen Hemminger403413e2009-01-07 18:10:49 -08002104static const struct net_device_ops b44_netdev_ops = {
2105 .ndo_open = b44_open,
2106 .ndo_stop = b44_close,
2107 .ndo_start_xmit = b44_start_xmit,
2108 .ndo_get_stats = b44_get_stats,
2109 .ndo_set_multicast_list = b44_set_rx_mode,
2110 .ndo_set_mac_address = b44_set_mac_addr,
2111 .ndo_validate_addr = eth_validate_addr,
2112 .ndo_do_ioctl = b44_ioctl,
2113 .ndo_tx_timeout = b44_tx_timeout,
2114 .ndo_change_mtu = b44_change_mtu,
2115#ifdef CONFIG_NET_POLL_CONTROLLER
2116 .ndo_poll_controller = b44_poll_controller,
2117#endif
2118};
2119
Michael Buesch753f4922007-09-19 14:20:30 -07002120static int __devinit b44_init_one(struct ssb_device *sdev,
2121 const struct ssb_device_id *ent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 static int b44_version_printed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 struct net_device *dev;
2125 struct b44 *bp;
Joe Perches0795af52007-10-03 17:59:30 -07002126 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Michael Buesch753f4922007-09-19 14:20:30 -07002128 instance++;
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (b44_version_printed++ == 0)
Joe Perches2fc96ff2010-02-17 15:01:50 +00002131 pr_info("%s", version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 dev = alloc_etherdev(sizeof(*bp));
2135 if (!dev) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002136 dev_err(sdev->dev, "Etherdev alloc failed, aborting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 err = -ENOMEM;
Michael Buesch753f4922007-09-19 14:20:30 -07002138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 }
2140
Michael Buesch753f4922007-09-19 14:20:30 -07002141 SET_NETDEV_DEV(dev, sdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* No interesting netdevice features in this card... */
2144 dev->features |= 0;
2145
2146 bp = netdev_priv(dev);
Michael Buesch753f4922007-09-19 14:20:30 -07002147 bp->sdev = sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 bp->dev = dev;
Eric Dumazeta58c8912009-01-15 15:29:35 -08002149 bp->force_copybreak = 0;
Francois Romieu874a6212005-11-07 01:50:46 +01002150
2151 bp->msg_enable = netif_msg_init(b44_debug, B44_DEF_MSG_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 spin_lock_init(&bp->lock);
2154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 bp->rx_pending = B44_DEF_RX_RING_PENDING;
2156 bp->tx_pending = B44_DEF_TX_RING_PENDING;
2157
Stephen Hemminger403413e2009-01-07 18:10:49 -08002158 dev->netdev_ops = &b44_netdev_ops;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002159 netif_napi_add(dev, &bp->napi, b44_poll, 64);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 dev->watchdog_timeo = B44_TX_TIMEOUT;
Michael Buesch753f4922007-09-19 14:20:30 -07002161 dev->irq = sdev->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 SET_ETHTOOL_OPS(dev, &b44_ethtool_ops);
2163
Stephen Hemmingerc35ca392006-01-20 21:13:17 -08002164 netif_carrier_off(dev);
2165
Michael Buesch753f4922007-09-19 14:20:30 -07002166 err = ssb_bus_powerup(sdev->bus, 0);
2167 if (err) {
2168 dev_err(sdev->dev,
2169 "Failed to powerup the bus\n");
2170 goto err_out_free_dev;
2171 }
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07002172
2173 if (dma_set_mask(sdev->dma_dev, DMA_BIT_MASK(30)) ||
2174 dma_set_coherent_mask(sdev->dma_dev, DMA_BIT_MASK(30))) {
Michael Buesch753f4922007-09-19 14:20:30 -07002175 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002176 "Required 30BIT DMA mask unsupported by the system\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002177 goto err_out_powerdown;
2178 }
FUJITA Tomonori39a6f4b2010-06-03 19:37:40 -07002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 err = b44_get_invariants(bp);
2181 if (err) {
Michael Buesch753f4922007-09-19 14:20:30 -07002182 dev_err(sdev->dev,
Joe Perches2fc96ff2010-02-17 15:01:50 +00002183 "Problem fetching invariants of chip, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002184 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186
2187 bp->mii_if.dev = dev;
2188 bp->mii_if.mdio_read = b44_mii_read;
2189 bp->mii_if.mdio_write = b44_mii_write;
2190 bp->mii_if.phy_id = bp->phy_addr;
2191 bp->mii_if.phy_id_mask = 0x1f;
2192 bp->mii_if.reg_num_mask = 0x1f;
2193
2194 /* By default, advertise all speed/duplex settings. */
2195 bp->flags |= (B44_FLAG_ADV_10HALF | B44_FLAG_ADV_10FULL |
2196 B44_FLAG_ADV_100HALF | B44_FLAG_ADV_100FULL);
2197
2198 /* By default, auto-negotiate PAUSE. */
2199 bp->flags |= B44_FLAG_PAUSE_AUTO;
2200
2201 err = register_netdev(dev);
2202 if (err) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002203 dev_err(sdev->dev, "Cannot register net device, aborting\n");
Michael Buesch753f4922007-09-19 14:20:30 -07002204 goto err_out_powerdown;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 }
2206
Michael Buesch753f4922007-09-19 14:20:30 -07002207 ssb_set_drvdata(sdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Jeff Garzik10badc22006-04-12 18:04:32 -04002209 /* Chip reset provides power to the b44 MAC & PCI cores, which
Gary Zambrano5c513122006-03-29 17:12:05 -05002210 * is necessary for MAC register access.
Jeff Garzik10badc22006-04-12 18:04:32 -04002211 */
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002212 b44_chip_reset(bp, B44_CHIP_RESET_FULL);
Gary Zambrano5c513122006-03-29 17:12:05 -05002213
Hauke Mehrtens8850dce2010-02-20 10:55:25 +00002214 /* do a phy reset to test if there is an active phy */
2215 if (b44_phy_reset(bp) < 0)
2216 bp->phy_addr = B44_PHY_ADDR_NO_PHY;
2217
Joe Perches2fc96ff2010-02-17 15:01:50 +00002218 netdev_info(dev, "Broadcom 44xx/47xx 10/100BaseT Ethernet %pM\n",
2219 dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 return 0;
2222
Michael Buesch753f4922007-09-19 14:20:30 -07002223err_out_powerdown:
2224 ssb_bus_may_powerdown(sdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226err_out_free_dev:
2227 free_netdev(dev);
2228
Michael Buesch753f4922007-09-19 14:20:30 -07002229out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 return err;
2231}
2232
Michael Buesch753f4922007-09-19 14:20:30 -07002233static void __devexit b44_remove_one(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
Michael Buesch753f4922007-09-19 14:20:30 -07002235 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
Francois Romieu874a6212005-11-07 01:50:46 +01002237 unregister_netdev(dev);
Michael Buesche92aa632009-02-26 22:35:02 -08002238 ssb_device_disable(sdev, 0);
Michael Buesch753f4922007-09-19 14:20:30 -07002239 ssb_bus_may_powerdown(sdev->bus);
Francois Romieu874a6212005-11-07 01:50:46 +01002240 free_netdev(dev);
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002241 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Michael Buesch753f4922007-09-19 14:20:30 -07002242 ssb_set_drvdata(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
Michael Buesch753f4922007-09-19 14:20:30 -07002245static int b44_suspend(struct ssb_device *sdev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246{
Michael Buesch753f4922007-09-19 14:20:30 -07002247 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 struct b44 *bp = netdev_priv(dev);
2249
Michael Buesch753f4922007-09-19 14:20:30 -07002250 if (!netif_running(dev))
2251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 del_timer_sync(&bp->timer);
2254
Jeff Garzik10badc22006-04-12 18:04:32 -04002255 spin_lock_irq(&bp->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 b44_halt(bp);
Jeff Garzik10badc22006-04-12 18:04:32 -04002258 netif_carrier_off(bp->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 netif_device_detach(bp->dev);
2260 b44_free_rings(bp);
2261
2262 spin_unlock_irq(&bp->lock);
Pavel Machek46e17852005-10-28 15:14:47 -07002263
2264 free_irq(dev->irq, dev);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002265 if (bp->flags & B44_FLAG_WOL_ENABLE) {
Michael Chan5fc7d612007-01-26 23:59:57 -08002266 b44_init_hw(bp, B44_PARTIAL_RESET);
Gary Zambrano52cafd92006-06-20 15:34:23 -07002267 b44_setup_wol(bp);
2268 }
Michael Buesch753f4922007-09-19 14:20:30 -07002269
Miguel Botónfedb0ee2008-01-01 01:17:54 +01002270 ssb_pcihost_set_power_state(sdev, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 return 0;
2272}
2273
Michael Buesch753f4922007-09-19 14:20:30 -07002274static int b44_resume(struct ssb_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275{
Michael Buesch753f4922007-09-19 14:20:30 -07002276 struct net_device *dev = ssb_get_drvdata(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 struct b44 *bp = netdev_priv(dev);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002278 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Michael Buesch753f4922007-09-19 14:20:30 -07002280 rc = ssb_bus_powerup(sdev->bus, 0);
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002281 if (rc) {
Michael Buesch753f4922007-09-19 14:20:30 -07002282 dev_err(sdev->dev,
2283 "Failed to powerup the bus\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002284 return rc;
2285 }
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (!netif_running(dev))
2288 return 0;
2289
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002290 rc = request_irq(dev->irq, b44_interrupt, IRQF_SHARED, dev->name, dev);
2291 if (rc) {
Joe Perches2fc96ff2010-02-17 15:01:50 +00002292 netdev_err(dev, "request_irq failed\n");
Dmitriy Monakhov90afd0e2007-01-27 00:00:03 -08002293 return rc;
2294 }
Pavel Machek46e17852005-10-28 15:14:47 -07002295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 spin_lock_irq(&bp->lock);
2297
2298 b44_init_rings(bp);
Michael Chan5fc7d612007-01-26 23:59:57 -08002299 b44_init_hw(bp, B44_FULL_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 netif_device_attach(bp->dev);
2301 spin_unlock_irq(&bp->lock);
2302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 b44_enable_ints(bp);
Mark Lordd9e2d182005-11-30 22:30:23 +01002304 netif_wake_queue(dev);
Stephen Hemmingera72a8172007-06-04 13:25:37 -07002305
2306 mod_timer(&bp->timer, jiffies + 1);
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return 0;
2309}
2310
Michael Buesch753f4922007-09-19 14:20:30 -07002311static struct ssb_driver b44_ssb_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 .name = DRV_MODULE_NAME,
Michael Buesch753f4922007-09-19 14:20:30 -07002313 .id_table = b44_ssb_tbl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 .probe = b44_init_one,
2315 .remove = __devexit_p(b44_remove_one),
Michael Buesch753f4922007-09-19 14:20:30 -07002316 .suspend = b44_suspend,
2317 .resume = b44_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318};
2319
Michael Buesch753f4922007-09-19 14:20:30 -07002320static inline int b44_pci_init(void)
2321{
2322 int err = 0;
2323#ifdef CONFIG_B44_PCI
2324 err = ssb_pcihost_register(&b44_pci_driver);
2325#endif
2326 return err;
2327}
2328
2329static inline void b44_pci_exit(void)
2330{
2331#ifdef CONFIG_B44_PCI
2332 ssb_pcihost_unregister(&b44_pci_driver);
2333#endif
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336static int __init b44_init(void)
2337{
John W. Linville9f38c632005-10-18 21:30:59 -04002338 unsigned int dma_desc_align_size = dma_get_cache_alignment();
Michael Buesch753f4922007-09-19 14:20:30 -07002339 int err;
John W. Linville9f38c632005-10-18 21:30:59 -04002340
2341 /* Setup paramaters for syncing RX/TX DMA descriptors */
Alan Cox22d4d772006-01-17 17:53:56 +00002342 dma_desc_sync_size = max_t(unsigned int, dma_desc_align_size, sizeof(struct dma_desc));
John W. Linville9f38c632005-10-18 21:30:59 -04002343
Michael Buesch753f4922007-09-19 14:20:30 -07002344 err = b44_pci_init();
2345 if (err)
2346 return err;
2347 err = ssb_driver_register(&b44_ssb_driver);
2348 if (err)
2349 b44_pci_exit();
2350 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
2352
2353static void __exit b44_cleanup(void)
2354{
Michael Buesch753f4922007-09-19 14:20:30 -07002355 ssb_driver_unregister(&b44_ssb_driver);
2356 b44_pci_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
2359module_init(b44_init);
2360module_exit(b44_cleanup);
2361