]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/pasemi_mac.c
net: convert print_mac to %pM
[net-next-2.6.git] / drivers / net / pasemi_mac.c
CommitLineData
f5cd7872
OJ
1/*
2 * Copyright (C) 2006-2007 PA Semi, Inc
3 *
4 * Driver for the PA Semi PWRficient onchip 1G/10G Ethernet MACs
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20#include <linux/init.h>
21#include <linux/module.h>
22#include <linux/pci.h>
23#include <linux/interrupt.h>
24#include <linux/dmaengine.h>
25#include <linux/delay.h>
26#include <linux/netdevice.h>
27#include <linux/etherdevice.h>
28#include <asm/dma-mapping.h>
29#include <linux/in.h>
30#include <linux/skbuff.h>
31
32#include <linux/ip.h>
33#include <linux/tcp.h>
34#include <net/checksum.h>
28ae79f5 35#include <linux/inet_lro.h>
f5cd7872 36
771f7404 37#include <asm/irq.h>
af289e80 38#include <asm/firmware.h>
40afa531 39#include <asm/pasemi_dma.h>
771f7404 40
f5cd7872
OJ
41#include "pasemi_mac.h"
42
8dc121a4
OJ
43/* We have our own align, since ppc64 in general has it at 0 because
44 * of design flaws in some of the server bridge chips. However, for
45 * PWRficient doing the unaligned copies is more expensive than doing
46 * unaligned DMA, so make sure the data is aligned instead.
47 */
48#define LOCAL_SKB_ALIGN 2
f5cd7872
OJ
49
50/* TODO list
51 *
f5cd7872
OJ
52 * - Multicast support
53 * - Large MTU support
7ddeae2c
OJ
54 * - SW LRO
55 * - Multiqueue RX/TX
f5cd7872
OJ
56 */
57
28ae79f5
OJ
58#define LRO_MAX_AGGR 64
59
ef1ea0b4 60#define PE_MIN_MTU 64
8d636d8b 61#define PE_MAX_MTU 9000
ef1ea0b4
OJ
62#define PE_DEF_MTU ETH_DATA_LEN
63
ceb51361
OJ
64#define DEFAULT_MSG_ENABLE \
65 (NETIF_MSG_DRV | \
66 NETIF_MSG_PROBE | \
67 NETIF_MSG_LINK | \
68 NETIF_MSG_TIMER | \
69 NETIF_MSG_IFDOWN | \
70 NETIF_MSG_IFUP | \
71 NETIF_MSG_RX_ERR | \
72 NETIF_MSG_TX_ERR)
73
ceb51361
OJ
74MODULE_LICENSE("GPL");
75MODULE_AUTHOR ("Olof Johansson <olof@lixom.net>");
76MODULE_DESCRIPTION("PA Semi PWRficient Ethernet driver");
77
78static int debug = -1; /* -1 == use DEFAULT_MSG_ENABLE as value */
79module_param(debug, int, 0);
80MODULE_PARM_DESC(debug, "PA Semi MAC bitmapped debugging message enable value");
f5cd7872 81
e37c772e
OJ
82extern const struct ethtool_ops pasemi_mac_ethtool_ops;
83
af289e80
OJ
84static int translation_enabled(void)
85{
86#if defined(CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE)
87 return 1;
88#else
89 return firmware_has_feature(FW_FEATURE_LPAR);
90#endif
91}
92
34c20624 93static void write_iob_reg(unsigned int reg, unsigned int val)
a85b9422 94{
34c20624 95 pasemi_write_iob_reg(reg, val);
a85b9422
OJ
96}
97
5c15332b 98static unsigned int read_mac_reg(const struct pasemi_mac *mac, unsigned int reg)
a85b9422 99{
34c20624 100 return pasemi_read_mac_reg(mac->dma_if, reg);
a85b9422
OJ
101}
102
5c15332b 103static void write_mac_reg(const struct pasemi_mac *mac, unsigned int reg,
a85b9422
OJ
104 unsigned int val)
105{
34c20624 106 pasemi_write_mac_reg(mac->dma_if, reg, val);
a85b9422
OJ
107}
108
34c20624 109static unsigned int read_dma_reg(unsigned int reg)
a85b9422 110{
34c20624 111 return pasemi_read_dma_reg(reg);
a85b9422
OJ
112}
113
34c20624 114static void write_dma_reg(unsigned int reg, unsigned int val)
a85b9422 115{
34c20624 116 pasemi_write_dma_reg(reg, val);
a85b9422
OJ
117}
118
5c15332b 119static struct pasemi_mac_rxring *rx_ring(const struct pasemi_mac *mac)
72b05b99
OJ
120{
121 return mac->rx;
122}
123
5c15332b 124static struct pasemi_mac_txring *tx_ring(const struct pasemi_mac *mac)
72b05b99
OJ
125{
126 return mac->tx;
127}
128
5c15332b
OJ
129static inline void prefetch_skb(const struct sk_buff *skb)
130{
131 const void *d = skb;
132
133 prefetch(d);
134 prefetch(d+64);
135 prefetch(d+128);
136 prefetch(d+192);
137}
138
34c20624
OJ
139static int mac_to_intf(struct pasemi_mac *mac)
140{
141 struct pci_dev *pdev = mac->pdev;
142 u32 tmp;
143 int nintf, off, i, j;
144 int devfn = pdev->devfn;
145
146 tmp = read_dma_reg(PAS_DMA_CAP_IFI);
147 nintf = (tmp & PAS_DMA_CAP_IFI_NIN_M) >> PAS_DMA_CAP_IFI_NIN_S;
148 off = (tmp & PAS_DMA_CAP_IFI_IOFF_M) >> PAS_DMA_CAP_IFI_IOFF_S;
149
150 /* IOFF contains the offset to the registers containing the
151 * DMA interface-to-MAC-pci-id mappings, and NIN contains number
152 * of total interfaces. Each register contains 4 devfns.
153 * Just do a linear search until we find the devfn of the MAC
154 * we're trying to look up.
155 */
156
157 for (i = 0; i < (nintf+3)/4; i++) {
158 tmp = read_dma_reg(off+4*i);
159 for (j = 0; j < 4; j++) {
160 if (((tmp >> (8*j)) & 0xff) == devfn)
161 return i*4 + j;
162 }
163 }
164 return -1;
165}
166
ef1ea0b4
OJ
167static void pasemi_mac_intf_disable(struct pasemi_mac *mac)
168{
169 unsigned int flags;
170
171 flags = read_mac_reg(mac, PAS_MAC_CFG_PCFG);
172 flags &= ~PAS_MAC_CFG_PCFG_PE;
173 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags);
174}
175
176static void pasemi_mac_intf_enable(struct pasemi_mac *mac)
177{
178 unsigned int flags;
179
180 flags = read_mac_reg(mac, PAS_MAC_CFG_PCFG);
181 flags |= PAS_MAC_CFG_PCFG_PE;
182 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags);
183}
184
f5cd7872
OJ
185static int pasemi_get_mac_addr(struct pasemi_mac *mac)
186{
187 struct pci_dev *pdev = mac->pdev;
188 struct device_node *dn = pci_device_to_OF_node(pdev);
1af7f056 189 int len;
f5cd7872
OJ
190 const u8 *maddr;
191 u8 addr[6];
192
193 if (!dn) {
194 dev_dbg(&pdev->dev,
195 "No device node for mac, not configuring\n");
196 return -ENOENT;
197 }
198
1af7f056 199 maddr = of_get_property(dn, "local-mac-address", &len);
200
201 if (maddr && len == 6) {
202 memcpy(mac->mac_addr, maddr, 6);
203 return 0;
204 }
205
206 /* Some old versions of firmware mistakenly uses mac-address
207 * (and as a string) instead of a byte array in local-mac-address.
208 */
a5fd22eb 209
a5fd22eb 210 if (maddr == NULL)
9028780a 211 maddr = of_get_property(dn, "mac-address", NULL);
a5fd22eb 212
f5cd7872
OJ
213 if (maddr == NULL) {
214 dev_warn(&pdev->dev,
215 "no mac address in device tree, not configuring\n");
216 return -ENOENT;
217 }
218
219 if (sscanf(maddr, "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx", &addr[0],
220 &addr[1], &addr[2], &addr[3], &addr[4], &addr[5]) != 6) {
221 dev_warn(&pdev->dev,
222 "can't parse mac address, not configuring\n");
223 return -EINVAL;
224 }
225
1af7f056 226 memcpy(mac->mac_addr, addr, 6);
227
f5cd7872
OJ
228 return 0;
229}
230
5cea73b0
OJ
231static int pasemi_mac_set_mac_addr(struct net_device *dev, void *p)
232{
233 struct pasemi_mac *mac = netdev_priv(dev);
234 struct sockaddr *addr = p;
235 unsigned int adr0, adr1;
236
237 if (!is_valid_ether_addr(addr->sa_data))
238 return -EINVAL;
239
240 memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
241
242 adr0 = dev->dev_addr[2] << 24 |
243 dev->dev_addr[3] << 16 |
244 dev->dev_addr[4] << 8 |
245 dev->dev_addr[5];
246 adr1 = read_mac_reg(mac, PAS_MAC_CFG_ADR1);
247 adr1 &= ~0xffff;
248 adr1 |= dev->dev_addr[0] << 8 | dev->dev_addr[1];
249
250 pasemi_mac_intf_disable(mac);
251 write_mac_reg(mac, PAS_MAC_CFG_ADR0, adr0);
252 write_mac_reg(mac, PAS_MAC_CFG_ADR1, adr1);
253 pasemi_mac_intf_enable(mac);
254
255 return 0;
256}
257
28ae79f5
OJ
258static int get_skb_hdr(struct sk_buff *skb, void **iphdr,
259 void **tcph, u64 *hdr_flags, void *data)
260{
261 u64 macrx = (u64) data;
262 unsigned int ip_len;
263 struct iphdr *iph;
264
265 /* IPv4 header checksum failed */
266 if ((macrx & XCT_MACRX_HTY_M) != XCT_MACRX_HTY_IPV4_OK)
267 return -1;
268
269 /* non tcp packet */
270 skb_reset_network_header(skb);
271 iph = ip_hdr(skb);
272 if (iph->protocol != IPPROTO_TCP)
273 return -1;
274
275 ip_len = ip_hdrlen(skb);
276 skb_set_transport_header(skb, ip_len);
277 *tcph = tcp_hdr(skb);
278
279 /* check if ip header and tcp header are complete */
77321233 280 if (ntohs(iph->tot_len) < ip_len + tcp_hdrlen(skb))
28ae79f5
OJ
281 return -1;
282
283 *hdr_flags = LRO_IPV4 | LRO_TCP;
284 *iphdr = iph;
285
286 return 0;
287}
288
ad3c20d1 289static int pasemi_mac_unmap_tx_skb(struct pasemi_mac *mac,
7e9916e9 290 const int nfrags,
ad3c20d1 291 struct sk_buff *skb,
5c15332b 292 const dma_addr_t *dmas)
ad3c20d1
OJ
293{
294 int f;
5c15332b 295 struct pci_dev *pdev = mac->dma_pdev;
ad3c20d1 296
5c15332b 297 pci_unmap_single(pdev, dmas[0], skb_headlen(skb), PCI_DMA_TODEVICE);
ad3c20d1
OJ
298
299 for (f = 0; f < nfrags; f++) {
300 skb_frag_t *frag = &skb_shinfo(skb)->frags[f];
301
5c15332b 302 pci_unmap_page(pdev, dmas[f+1], frag->size, PCI_DMA_TODEVICE);
ad3c20d1
OJ
303 }
304 dev_kfree_skb_irq(skb);
305
306 /* Freed descriptor slot + main SKB ptr + nfrags additional ptrs,
307 * aligned up to a power of 2
308 */
309 return (nfrags + 3) & ~1;
310}
311
8d636d8b
OJ
312static struct pasemi_mac_csring *pasemi_mac_setup_csring(struct pasemi_mac *mac)
313{
314 struct pasemi_mac_csring *ring;
315 u32 val;
316 unsigned int cfg;
317 int chno;
318
319 ring = pasemi_dma_alloc_chan(TXCHAN, sizeof(struct pasemi_mac_csring),
320 offsetof(struct pasemi_mac_csring, chan));
321
322 if (!ring) {
323 dev_err(&mac->pdev->dev, "Can't allocate checksum channel\n");
324 goto out_chan;
325 }
326
327 chno = ring->chan.chno;
328
329 ring->size = CS_RING_SIZE;
330 ring->next_to_fill = 0;
331
332 /* Allocate descriptors */
333 if (pasemi_dma_alloc_ring(&ring->chan, CS_RING_SIZE))
334 goto out_ring_desc;
335
336 write_dma_reg(PAS_DMA_TXCHAN_BASEL(chno),
337 PAS_DMA_TXCHAN_BASEL_BRBL(ring->chan.ring_dma));
338 val = PAS_DMA_TXCHAN_BASEU_BRBH(ring->chan.ring_dma >> 32);
339 val |= PAS_DMA_TXCHAN_BASEU_SIZ(CS_RING_SIZE >> 3);
340
341 write_dma_reg(PAS_DMA_TXCHAN_BASEU(chno), val);
342
343 ring->events[0] = pasemi_dma_alloc_flag();
344 ring->events[1] = pasemi_dma_alloc_flag();
345 if (ring->events[0] < 0 || ring->events[1] < 0)
346 goto out_flags;
347
348 pasemi_dma_clear_flag(ring->events[0]);
349 pasemi_dma_clear_flag(ring->events[1]);
350
351 ring->fun = pasemi_dma_alloc_fun();
352 if (ring->fun < 0)
353 goto out_fun;
354
355 cfg = PAS_DMA_TXCHAN_CFG_TY_FUNC | PAS_DMA_TXCHAN_CFG_UP |
356 PAS_DMA_TXCHAN_CFG_TATTR(ring->fun) |
357 PAS_DMA_TXCHAN_CFG_LPSQ | PAS_DMA_TXCHAN_CFG_LPDQ;
358
359 if (translation_enabled())
360 cfg |= PAS_DMA_TXCHAN_CFG_TRD | PAS_DMA_TXCHAN_CFG_TRR;
361
362 write_dma_reg(PAS_DMA_TXCHAN_CFG(chno), cfg);
363
364 /* enable channel */
365 pasemi_dma_start_chan(&ring->chan, PAS_DMA_TXCHAN_TCMDSTA_SZ |
366 PAS_DMA_TXCHAN_TCMDSTA_DB |
367 PAS_DMA_TXCHAN_TCMDSTA_DE |
368 PAS_DMA_TXCHAN_TCMDSTA_DA);
369
370 return ring;
371
372out_fun:
373out_flags:
374 if (ring->events[0] >= 0)
375 pasemi_dma_free_flag(ring->events[0]);
376 if (ring->events[1] >= 0)
377 pasemi_dma_free_flag(ring->events[1]);
378 pasemi_dma_free_ring(&ring->chan);
379out_ring_desc:
380 pasemi_dma_free_chan(&ring->chan);
381out_chan:
382
383 return NULL;
384}
385
386static void pasemi_mac_setup_csrings(struct pasemi_mac *mac)
387{
388 int i;
389 mac->cs[0] = pasemi_mac_setup_csring(mac);
390 if (mac->type == MAC_TYPE_XAUI)
391 mac->cs[1] = pasemi_mac_setup_csring(mac);
392 else
393 mac->cs[1] = 0;
394
395 for (i = 0; i < MAX_CS; i++)
396 if (mac->cs[i])
397 mac->num_cs++;
398}
399
400static void pasemi_mac_free_csring(struct pasemi_mac_csring *csring)
401{
402 pasemi_dma_stop_chan(&csring->chan);
403 pasemi_dma_free_flag(csring->events[0]);
404 pasemi_dma_free_flag(csring->events[1]);
405 pasemi_dma_free_ring(&csring->chan);
406 pasemi_dma_free_chan(&csring->chan);
1724ac2e 407 pasemi_dma_free_fun(csring->fun);
8d636d8b
OJ
408}
409
5c15332b 410static int pasemi_mac_setup_rx_resources(const struct net_device *dev)
f5cd7872
OJ
411{
412 struct pasemi_mac_rxring *ring;
413 struct pasemi_mac *mac = netdev_priv(dev);
34c20624 414 int chno;
af289e80 415 unsigned int cfg;
f5cd7872 416
34c20624
OJ
417 ring = pasemi_dma_alloc_chan(RXCHAN, sizeof(struct pasemi_mac_rxring),
418 offsetof(struct pasemi_mac_rxring, chan));
f5cd7872 419
34c20624
OJ
420 if (!ring) {
421 dev_err(&mac->pdev->dev, "Can't allocate RX channel\n");
422 goto out_chan;
423 }
424 chno = ring->chan.chno;
f5cd7872
OJ
425
426 spin_lock_init(&ring->lock);
427
021fa22e 428 ring->size = RX_RING_SIZE;
fc9e4d2a 429 ring->ring_info = kzalloc(sizeof(struct pasemi_mac_buffer) *
f5cd7872
OJ
430 RX_RING_SIZE, GFP_KERNEL);
431
fc9e4d2a
OJ
432 if (!ring->ring_info)
433 goto out_ring_info;
f5cd7872
OJ
434
435 /* Allocate descriptors */
34c20624 436 if (pasemi_dma_alloc_ring(&ring->chan, RX_RING_SIZE))
fc9e4d2a 437 goto out_ring_desc;
f5cd7872 438
f5cd7872
OJ
439 ring->buffers = dma_alloc_coherent(&mac->dma_pdev->dev,
440 RX_RING_SIZE * sizeof(u64),
441 &ring->buf_dma, GFP_KERNEL);
442 if (!ring->buffers)
34c20624 443 goto out_ring_desc;
f5cd7872
OJ
444
445 memset(ring->buffers, 0, RX_RING_SIZE * sizeof(u64));
446
34c20624
OJ
447 write_dma_reg(PAS_DMA_RXCHAN_BASEL(chno),
448 PAS_DMA_RXCHAN_BASEL_BRBL(ring->chan.ring_dma));
f5cd7872 449
34c20624
OJ
450 write_dma_reg(PAS_DMA_RXCHAN_BASEU(chno),
451 PAS_DMA_RXCHAN_BASEU_BRBH(ring->chan.ring_dma >> 32) |
452 PAS_DMA_RXCHAN_BASEU_SIZ(RX_RING_SIZE >> 3));
f5cd7872 453
5c15332b 454 cfg = PAS_DMA_RXCHAN_CFG_HBU(2);
af289e80
OJ
455
456 if (translation_enabled())
457 cfg |= PAS_DMA_RXCHAN_CFG_CTR;
458
34c20624 459 write_dma_reg(PAS_DMA_RXCHAN_CFG(chno), cfg);
f5cd7872 460
34c20624
OJ
461 write_dma_reg(PAS_DMA_RXINT_BASEL(mac->dma_if),
462 PAS_DMA_RXINT_BASEL_BRBL(ring->buf_dma));
f5cd7872 463
34c20624
OJ
464 write_dma_reg(PAS_DMA_RXINT_BASEU(mac->dma_if),
465 PAS_DMA_RXINT_BASEU_BRBH(ring->buf_dma >> 32) |
466 PAS_DMA_RXINT_BASEU_SIZ(RX_RING_SIZE >> 3));
f5cd7872 467
5c15332b 468 cfg = PAS_DMA_RXINT_CFG_DHL(2) | PAS_DMA_RXINT_CFG_L2 |
af289e80
OJ
469 PAS_DMA_RXINT_CFG_LW | PAS_DMA_RXINT_CFG_RBP |
470 PAS_DMA_RXINT_CFG_HEN;
471
472 if (translation_enabled())
473 cfg |= PAS_DMA_RXINT_CFG_ITRR | PAS_DMA_RXINT_CFG_ITR;
474
34c20624 475 write_dma_reg(PAS_DMA_RXINT_CFG(mac->dma_if), cfg);
c0efd52b 476
f5cd7872
OJ
477 ring->next_to_fill = 0;
478 ring->next_to_clean = 0;
72b05b99 479 ring->mac = mac;
f5cd7872
OJ
480 mac->rx = ring;
481
482 return 0;
483
fc9e4d2a
OJ
484out_ring_desc:
485 kfree(ring->ring_info);
486out_ring_info:
34c20624
OJ
487 pasemi_dma_free_chan(&ring->chan);
488out_chan:
f5cd7872
OJ
489 return -ENOMEM;
490}
491
72b05b99 492static struct pasemi_mac_txring *
5c15332b 493pasemi_mac_setup_tx_resources(const struct net_device *dev)
f5cd7872
OJ
494{
495 struct pasemi_mac *mac = netdev_priv(dev);
496 u32 val;
f5cd7872 497 struct pasemi_mac_txring *ring;
af289e80 498 unsigned int cfg;
34c20624 499 int chno;
f5cd7872 500
34c20624
OJ
501 ring = pasemi_dma_alloc_chan(TXCHAN, sizeof(struct pasemi_mac_txring),
502 offsetof(struct pasemi_mac_txring, chan));
503
504 if (!ring) {
505 dev_err(&mac->pdev->dev, "Can't allocate TX channel\n");
506 goto out_chan;
507 }
508
509 chno = ring->chan.chno;
f5cd7872
OJ
510
511 spin_lock_init(&ring->lock);
512
021fa22e 513 ring->size = TX_RING_SIZE;
fc9e4d2a 514 ring->ring_info = kzalloc(sizeof(struct pasemi_mac_buffer) *
f5cd7872 515 TX_RING_SIZE, GFP_KERNEL);
fc9e4d2a
OJ
516 if (!ring->ring_info)
517 goto out_ring_info;
f5cd7872
OJ
518
519 /* Allocate descriptors */
34c20624 520 if (pasemi_dma_alloc_ring(&ring->chan, TX_RING_SIZE))
fc9e4d2a 521 goto out_ring_desc;
f5cd7872 522
34c20624
OJ
523 write_dma_reg(PAS_DMA_TXCHAN_BASEL(chno),
524 PAS_DMA_TXCHAN_BASEL_BRBL(ring->chan.ring_dma));
525 val = PAS_DMA_TXCHAN_BASEU_BRBH(ring->chan.ring_dma >> 32);
fc9e4d2a 526 val |= PAS_DMA_TXCHAN_BASEU_SIZ(TX_RING_SIZE >> 3);
f5cd7872 527
34c20624 528 write_dma_reg(PAS_DMA_TXCHAN_BASEU(chno), val);
f5cd7872 529
af289e80
OJ
530 cfg = PAS_DMA_TXCHAN_CFG_TY_IFACE |
531 PAS_DMA_TXCHAN_CFG_TATTR(mac->dma_if) |
532 PAS_DMA_TXCHAN_CFG_UP |
8d636d8b 533 PAS_DMA_TXCHAN_CFG_WT(4);
af289e80
OJ
534
535 if (translation_enabled())
536 cfg |= PAS_DMA_TXCHAN_CFG_TRD | PAS_DMA_TXCHAN_CFG_TRR;
537
34c20624 538 write_dma_reg(PAS_DMA_TXCHAN_CFG(chno), cfg);
f5cd7872 539
021fa22e 540 ring->next_to_fill = 0;
f5cd7872 541 ring->next_to_clean = 0;
72b05b99 542 ring->mac = mac;
f5cd7872 543
72b05b99 544 return ring;
f5cd7872 545
fc9e4d2a
OJ
546out_ring_desc:
547 kfree(ring->ring_info);
548out_ring_info:
34c20624
OJ
549 pasemi_dma_free_chan(&ring->chan);
550out_chan:
72b05b99 551 return NULL;
f5cd7872
OJ
552}
553
72b05b99 554static void pasemi_mac_free_tx_resources(struct pasemi_mac *mac)
f5cd7872 555{
72b05b99 556 struct pasemi_mac_txring *txring = tx_ring(mac);
ad3c20d1 557 unsigned int i, j;
f5cd7872 558 struct pasemi_mac_buffer *info;
ad3c20d1 559 dma_addr_t dmas[MAX_SKB_FRAGS+1];
7e9916e9 560 int freed, nfrags;
ad5da10a 561 int start, limit;
fc9e4d2a 562
72b05b99
OJ
563 start = txring->next_to_clean;
564 limit = txring->next_to_fill;
ad5da10a
OJ
565
566 /* Compensate for when fill has wrapped and clean has not */
567 if (start > limit)
568 limit += TX_RING_SIZE;
569
570 for (i = start; i < limit; i += freed) {
72b05b99 571 info = &txring->ring_info[(i+1) & (TX_RING_SIZE-1)];
fc9e4d2a 572 if (info->dma && info->skb) {
7e9916e9
OJ
573 nfrags = skb_shinfo(info->skb)->nr_frags;
574 for (j = 0; j <= nfrags; j++)
72b05b99
OJ
575 dmas[j] = txring->ring_info[(i+1+j) &
576 (TX_RING_SIZE-1)].dma;
7e9916e9
OJ
577 freed = pasemi_mac_unmap_tx_skb(mac, nfrags,
578 info->skb, dmas);
ad3c20d1
OJ
579 } else
580 freed = 2;
f5cd7872
OJ
581 }
582
72b05b99 583 kfree(txring->ring_info);
34c20624
OJ
584 pasemi_dma_free_chan(&txring->chan);
585
f5cd7872
OJ
586}
587
ef1ea0b4 588static void pasemi_mac_free_rx_buffers(struct pasemi_mac *mac)
f5cd7872 589{
72b05b99 590 struct pasemi_mac_rxring *rx = rx_ring(mac);
f5cd7872
OJ
591 unsigned int i;
592 struct pasemi_mac_buffer *info;
f5cd7872
OJ
593
594 for (i = 0; i < RX_RING_SIZE; i++) {
72b05b99 595 info = &RX_DESC_INFO(rx, i);
fc9e4d2a
OJ
596 if (info->skb && info->dma) {
597 pci_unmap_single(mac->dma_pdev,
598 info->dma,
599 info->skb->len,
600 PCI_DMA_FROMDEVICE);
601 dev_kfree_skb_any(info->skb);
f5cd7872 602 }
fc9e4d2a
OJ
603 info->dma = 0;
604 info->skb = NULL;
f5cd7872
OJ
605 }
606
fc9e4d2a 607 for (i = 0; i < RX_RING_SIZE; i++)
ef1ea0b4
OJ
608 RX_BUFF(rx, i) = 0;
609}
610
611static void pasemi_mac_free_rx_resources(struct pasemi_mac *mac)
612{
613 pasemi_mac_free_rx_buffers(mac);
fc9e4d2a 614
f5cd7872 615 dma_free_coherent(&mac->dma_pdev->dev, RX_RING_SIZE * sizeof(u64),
72b05b99 616 rx_ring(mac)->buffers, rx_ring(mac)->buf_dma);
f5cd7872 617
72b05b99 618 kfree(rx_ring(mac)->ring_info);
34c20624 619 pasemi_dma_free_chan(&rx_ring(mac)->chan);
f5cd7872
OJ
620 mac->rx = NULL;
621}
622
5c15332b
OJ
623static void pasemi_mac_replenish_rx_ring(const struct net_device *dev,
624 const int limit)
f5cd7872 625{
5c15332b 626 const struct pasemi_mac *mac = netdev_priv(dev);
72b05b99 627 struct pasemi_mac_rxring *rx = rx_ring(mac);
b5254eee 628 int fill, count;
f5cd7872 629
cd4ceb24 630 if (limit <= 0)
f5cd7872
OJ
631 return;
632
72b05b99 633 fill = rx_ring(mac)->next_to_fill;
928773c2 634 for (count = 0; count < limit; count++) {
72b05b99
OJ
635 struct pasemi_mac_buffer *info = &RX_DESC_INFO(rx, fill);
636 u64 *buff = &RX_BUFF(rx, fill);
f5cd7872
OJ
637 struct sk_buff *skb;
638 dma_addr_t dma;
639
fc9e4d2a
OJ
640 /* Entry in use? */
641 WARN_ON(*buff);
642
ef1ea0b4 643 skb = dev_alloc_skb(mac->bufsz);
5d894944 644 skb_reserve(skb, LOCAL_SKB_ALIGN);
f5cd7872 645
9f05cfe2 646 if (unlikely(!skb))
f5cd7872 647 break;
f5cd7872 648
8dc121a4 649 dma = pci_map_single(mac->dma_pdev, skb->data,
ef1ea0b4 650 mac->bufsz - LOCAL_SKB_ALIGN,
f5cd7872
OJ
651 PCI_DMA_FROMDEVICE);
652
8d8bb39b 653 if (unlikely(pci_dma_mapping_error(mac->dma_pdev, dma))) {
f5cd7872 654 dev_kfree_skb_irq(info->skb);
f5cd7872
OJ
655 break;
656 }
657
658 info->skb = skb;
659 info->dma = dma;
ef1ea0b4 660 *buff = XCT_RXB_LEN(mac->bufsz) | XCT_RXB_ADDR(dma);
fc9e4d2a 661 fill++;
f5cd7872
OJ
662 }
663
664 wmb();
665
34c20624 666 write_dma_reg(PAS_DMA_RXINT_INCR(mac->dma_if), count);
f5cd7872 667
72b05b99 668 rx_ring(mac)->next_to_fill = (rx_ring(mac)->next_to_fill + count) &
b5254eee 669 (RX_RING_SIZE - 1);
f5cd7872
OJ
670}
671
5c15332b 672static void pasemi_mac_restart_rx_intr(const struct pasemi_mac *mac)
1b0335ea 673{
906674ab 674 struct pasemi_mac_rxring *rx = rx_ring(mac);
52a94351 675 unsigned int reg, pcnt;
1b0335ea
OJ
676 /* Re-enable packet count interrupts: finally
677 * ack the packet count interrupt we got in rx_intr.
678 */
679
906674ab 680 pcnt = *rx->chan.status & PAS_STATUS_PCNT_M;
1b0335ea 681
52a94351 682 reg = PAS_IOB_DMA_RXCH_RESET_PCNT(pcnt) | PAS_IOB_DMA_RXCH_RESET_PINTC;
1b0335ea 683
906674ab
OJ
684 if (*rx->chan.status & PAS_STATUS_TIMER)
685 reg |= PAS_IOB_DMA_RXCH_RESET_TINTC;
686
34c20624 687 write_iob_reg(PAS_IOB_DMA_RXCH_RESET(mac->rx->chan.chno), reg);
1b0335ea
OJ
688}
689
5c15332b 690static void pasemi_mac_restart_tx_intr(const struct pasemi_mac *mac)
1b0335ea 691{
52a94351 692 unsigned int reg, pcnt;
1b0335ea
OJ
693
694 /* Re-enable packet count interrupts */
34c20624 695 pcnt = *tx_ring(mac)->chan.status & PAS_STATUS_PCNT_M;
1b0335ea 696
52a94351 697 reg = PAS_IOB_DMA_TXCH_RESET_PCNT(pcnt) | PAS_IOB_DMA_TXCH_RESET_PINTC;
1b0335ea 698
34c20624 699 write_iob_reg(PAS_IOB_DMA_TXCH_RESET(tx_ring(mac)->chan.chno), reg);
1b0335ea
OJ
700}
701
702
5c15332b
OJ
703static inline void pasemi_mac_rx_error(const struct pasemi_mac *mac,
704 const u64 macrx)
69c29d89
OJ
705{
706 unsigned int rcmdsta, ccmdsta;
34c20624 707 struct pasemi_dmachan *chan = &rx_ring(mac)->chan;
69c29d89
OJ
708
709 if (!netif_msg_rx_err(mac))
710 return;
711
34c20624
OJ
712 rcmdsta = read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if));
713 ccmdsta = read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(chan->chno));
69c29d89
OJ
714
715 printk(KERN_ERR "pasemi_mac: rx error. macrx %016lx, rx status %lx\n",
34c20624 716 macrx, *chan->status);
69c29d89
OJ
717
718 printk(KERN_ERR "pasemi_mac: rcmdsta %08x ccmdsta %08x\n",
719 rcmdsta, ccmdsta);
720}
721
5c15332b
OJ
722static inline void pasemi_mac_tx_error(const struct pasemi_mac *mac,
723 const u64 mactx)
69c29d89
OJ
724{
725 unsigned int cmdsta;
34c20624 726 struct pasemi_dmachan *chan = &tx_ring(mac)->chan;
69c29d89
OJ
727
728 if (!netif_msg_tx_err(mac))
729 return;
730
34c20624 731 cmdsta = read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(chan->chno));
69c29d89
OJ
732
733 printk(KERN_ERR "pasemi_mac: tx error. mactx 0x%016lx, "\
34c20624 734 "tx status 0x%016lx\n", mactx, *chan->status);
69c29d89
OJ
735
736 printk(KERN_ERR "pasemi_mac: tcmdsta 0x%08x\n", cmdsta);
737}
738
5c15332b
OJ
739static int pasemi_mac_clean_rx(struct pasemi_mac_rxring *rx,
740 const int limit)
f5cd7872 741{
5c15332b 742 const struct pasemi_dmachan *chan = &rx->chan;
72b05b99 743 struct pasemi_mac *mac = rx->mac;
5c15332b 744 struct pci_dev *pdev = mac->dma_pdev;
cd4ceb24 745 unsigned int n;
5c15332b 746 int count, buf_index, tot_bytes, packets;
cd4ceb24
OJ
747 struct pasemi_mac_buffer *info;
748 struct sk_buff *skb;
b5254eee 749 unsigned int len;
5c15332b 750 u64 macrx, eval;
cd4ceb24 751 dma_addr_t dma;
5c15332b
OJ
752
753 tot_bytes = 0;
754 packets = 0;
f5cd7872 755
72b05b99 756 spin_lock(&rx->lock);
f5cd7872 757
72b05b99 758 n = rx->next_to_clean;
f5cd7872 759
72b05b99 760 prefetch(&RX_DESC(rx, n));
b5254eee
OJ
761
762 for (count = 0; count < limit; count++) {
72b05b99 763 macrx = RX_DESC(rx, n);
5c15332b 764 prefetch(&RX_DESC(rx, n+4));
f5cd7872 765
69c29d89 766 if ((macrx & XCT_MACRX_E) ||
34c20624 767 (*chan->status & PAS_STATUS_ERROR))
69c29d89
OJ
768 pasemi_mac_rx_error(mac, macrx);
769
cd4ceb24 770 if (!(macrx & XCT_MACRX_O))
f5cd7872
OJ
771 break;
772
f5cd7872
OJ
773 info = NULL;
774
b5254eee 775 BUG_ON(!(macrx & XCT_MACRX_RR_8BRES));
f5cd7872 776
72b05b99 777 eval = (RX_DESC(rx, n+1) & XCT_RXRES_8B_EVAL_M) >>
b5254eee
OJ
778 XCT_RXRES_8B_EVAL_S;
779 buf_index = eval-1;
780
72b05b99
OJ
781 dma = (RX_DESC(rx, n+2) & XCT_PTR_ADDR_M);
782 info = &RX_DESC_INFO(rx, buf_index);
fc9e4d2a 783
9f05cfe2 784 skb = info->skb;
f5cd7872 785
5c15332b 786 prefetch_skb(skb);
f5cd7872 787
cd4ceb24 788 len = (macrx & XCT_MACRX_LLEN_M) >> XCT_MACRX_LLEN_S;
f5cd7872 789
ef1ea0b4 790 pci_unmap_single(pdev, dma, mac->bufsz - LOCAL_SKB_ALIGN,
5c15332b 791 PCI_DMA_FROMDEVICE);
32bee776
OJ
792
793 if (macrx & XCT_MACRX_CRC) {
794 /* CRC error flagged */
795 mac->netdev->stats.rx_errors++;
796 mac->netdev->stats.rx_crc_errors++;
4352d826 797 /* No need to free skb, it'll be reused */
32bee776
OJ
798 goto next;
799 }
800
5d894944 801 info->skb = NULL;
ad5da10a 802 info->dma = 0;
fc9e4d2a 803
26fcfa95 804 if (likely((macrx & XCT_MACRX_HTY_M) == XCT_MACRX_HTY_IPV4_OK)) {
38bf3184 805 skb->ip_summed = CHECKSUM_UNNECESSARY;
cd4ceb24 806 skb->csum = (macrx & XCT_MACRX_CSUM_M) >>
f5cd7872
OJ
807 XCT_MACRX_CSUM_S;
808 } else
809 skb->ip_summed = CHECKSUM_NONE;
810
5c15332b
OJ
811 packets++;
812 tot_bytes += len;
813
814 /* Don't include CRC */
815 skb_put(skb, len-4);
f5cd7872 816
26fcfa95 817 skb->protocol = eth_type_trans(skb, mac->netdev);
28ae79f5 818 lro_receive_skb(&mac->lro_mgr, skb, (void *)macrx);
f5cd7872 819
32bee776 820next:
72b05b99
OJ
821 RX_DESC(rx, n) = 0;
822 RX_DESC(rx, n+1) = 0;
cd4ceb24 823
ad5da10a
OJ
824 /* Need to zero it out since hardware doesn't, since the
825 * replenish loop uses it to tell when it's done.
826 */
72b05b99 827 RX_BUFF(rx, buf_index) = 0;
ad5da10a 828
b5254eee 829 n += 4;
f5cd7872
OJ
830 }
831
9a50bebd
OJ
832 if (n > RX_RING_SIZE) {
833 /* Errata 5971 workaround: L2 target of headers */
34c20624 834 write_iob_reg(PAS_IOB_COM_PKTHDRCNT, 0);
9a50bebd
OJ
835 n &= (RX_RING_SIZE-1);
836 }
b5254eee 837
72b05b99 838 rx_ring(mac)->next_to_clean = n;
b5254eee 839
28ae79f5
OJ
840 lro_flush_all(&mac->lro_mgr);
841
b5254eee
OJ
842 /* Increase is in number of 16-byte entries, and since each descriptor
843 * with an 8BRES takes up 3x8 bytes (padded to 4x8), increase with
844 * count*2.
845 */
34c20624 846 write_dma_reg(PAS_DMA_RXCHAN_INCR(mac->rx->chan.chno), count << 1);
b5254eee
OJ
847
848 pasemi_mac_replenish_rx_ring(mac->netdev, count);
f5cd7872 849
5c15332b
OJ
850 mac->netdev->stats.rx_bytes += tot_bytes;
851 mac->netdev->stats.rx_packets += packets;
852
72b05b99 853 spin_unlock(&rx_ring(mac)->lock);
f5cd7872
OJ
854
855 return count;
856}
857
ad3c20d1
OJ
858/* Can't make this too large or we blow the kernel stack limits */
859#define TX_CLEAN_BATCHSIZE (128/MAX_SKB_FRAGS)
860
72b05b99 861static int pasemi_mac_clean_tx(struct pasemi_mac_txring *txring)
f5cd7872 862{
34c20624 863 struct pasemi_dmachan *chan = &txring->chan;
72b05b99 864 struct pasemi_mac *mac = txring->mac;
ad3c20d1 865 int i, j;
ad5da10a
OJ
866 unsigned int start, descr_count, buf_count, batch_limit;
867 unsigned int ring_limit;
02df6cfa 868 unsigned int total_count;
ca7e235f 869 unsigned long flags;
ad3c20d1
OJ
870 struct sk_buff *skbs[TX_CLEAN_BATCHSIZE];
871 dma_addr_t dmas[TX_CLEAN_BATCHSIZE][MAX_SKB_FRAGS+1];
7e9916e9
OJ
872 int nf[TX_CLEAN_BATCHSIZE];
873 int nr_frags;
f5cd7872 874
02df6cfa 875 total_count = 0;
ad5da10a 876 batch_limit = TX_CLEAN_BATCHSIZE;
02df6cfa 877restart:
72b05b99 878 spin_lock_irqsave(&txring->lock, flags);
f5cd7872 879
72b05b99
OJ
880 start = txring->next_to_clean;
881 ring_limit = txring->next_to_fill;
ad5da10a 882
7e9916e9
OJ
883 prefetch(&TX_DESC_INFO(txring, start+1).skb);
884
ad5da10a
OJ
885 /* Compensate for when fill has wrapped but clean has not */
886 if (start > ring_limit)
887 ring_limit += TX_RING_SIZE;
02df6cfa 888
ad3c20d1
OJ
889 buf_count = 0;
890 descr_count = 0;
f5cd7872 891
ad3c20d1 892 for (i = start;
ad5da10a 893 descr_count < batch_limit && i < ring_limit;
ad3c20d1 894 i += buf_count) {
72b05b99 895 u64 mactx = TX_DESC(txring, i);
ad5da10a 896 struct sk_buff *skb;
ad3c20d1 897
fc9e4d2a 898 if ((mactx & XCT_MACTX_E) ||
34c20624 899 (*chan->status & PAS_STATUS_ERROR))
fc9e4d2a 900 pasemi_mac_tx_error(mac, mactx);
69c29d89 901
8d636d8b
OJ
902 /* Skip over control descriptors */
903 if (!(mactx & XCT_MACTX_LLEN_M)) {
904 TX_DESC(txring, i) = 0;
905 TX_DESC(txring, i+1) = 0;
906 buf_count = 2;
907 continue;
908 }
909
910 skb = TX_DESC_INFO(txring, i+1).skb;
911 nr_frags = TX_DESC_INFO(txring, i).dma;
912
fc9e4d2a 913 if (unlikely(mactx & XCT_MACTX_O))
02df6cfa 914 /* Not yet transmitted */
f5cd7872
OJ
915 break;
916
7e9916e9
OJ
917 buf_count = 2 + nr_frags;
918 /* Since we always fill with an even number of entries, make
919 * sure we skip any unused one at the end as well.
920 */
921 if (buf_count & 1)
922 buf_count++;
ad3c20d1 923
7e9916e9 924 for (j = 0; j <= nr_frags; j++)
72b05b99 925 dmas[descr_count][j] = TX_DESC_INFO(txring, i+1+j).dma;
ad3c20d1 926
7e9916e9
OJ
927 skbs[descr_count] = skb;
928 nf[descr_count] = nr_frags;
929
72b05b99
OJ
930 TX_DESC(txring, i) = 0;
931 TX_DESC(txring, i+1) = 0;
fc9e4d2a 932
ad3c20d1 933 descr_count++;
f5cd7872 934 }
72b05b99 935 txring->next_to_clean = i & (TX_RING_SIZE-1);
ad3c20d1 936
72b05b99 937 spin_unlock_irqrestore(&txring->lock, flags);
0ce68c74
OJ
938 netif_wake_queue(mac->netdev);
939
ad3c20d1 940 for (i = 0; i < descr_count; i++)
7e9916e9 941 pasemi_mac_unmap_tx_skb(mac, nf[i], skbs[i], dmas[i]);
02df6cfa 942
ad3c20d1 943 total_count += descr_count;
02df6cfa
OJ
944
945 /* If the batch was full, try to clean more */
ad5da10a 946 if (descr_count == batch_limit)
02df6cfa
OJ
947 goto restart;
948
949 return total_count;
f5cd7872
OJ
950}
951
952
953static irqreturn_t pasemi_mac_rx_intr(int irq, void *data)
954{
5c15332b 955 const struct pasemi_mac_rxring *rxring = data;
34c20624
OJ
956 struct pasemi_mac *mac = rxring->mac;
957 struct net_device *dev = mac->netdev;
5c15332b 958 const struct pasemi_dmachan *chan = &rxring->chan;
f5cd7872
OJ
959 unsigned int reg;
960
34c20624 961 if (!(*chan->status & PAS_STATUS_CAUSE_M))
f5cd7872
OJ
962 return IRQ_NONE;
963
6dfa7522
OJ
964 /* Don't reset packet count so it won't fire again but clear
965 * all others.
966 */
967
6dfa7522 968 reg = 0;
34c20624 969 if (*chan->status & PAS_STATUS_SOFT)
6dfa7522 970 reg |= PAS_IOB_DMA_RXCH_RESET_SINTC;
34c20624 971 if (*chan->status & PAS_STATUS_ERROR)
6dfa7522 972 reg |= PAS_IOB_DMA_RXCH_RESET_DINTC;
f5cd7872 973
bea3348e 974 netif_rx_schedule(dev, &mac->napi);
6dfa7522 975
34c20624 976 write_iob_reg(PAS_IOB_DMA_RXCH_RESET(chan->chno), reg);
f5cd7872
OJ
977
978 return IRQ_HANDLED;
979}
980
61cec3bd
OJ
981#define TX_CLEAN_INTERVAL HZ
982
983static void pasemi_mac_tx_timer(unsigned long data)
984{
985 struct pasemi_mac_txring *txring = (struct pasemi_mac_txring *)data;
986 struct pasemi_mac *mac = txring->mac;
987
988 pasemi_mac_clean_tx(txring);
989
990 mod_timer(&txring->clean_timer, jiffies + TX_CLEAN_INTERVAL);
991
992 pasemi_mac_restart_tx_intr(mac);
993}
994
f5cd7872
OJ
995static irqreturn_t pasemi_mac_tx_intr(int irq, void *data)
996{
72b05b99 997 struct pasemi_mac_txring *txring = data;
5c15332b 998 const struct pasemi_dmachan *chan = &txring->chan;
61cec3bd
OJ
999 struct pasemi_mac *mac = txring->mac;
1000 unsigned int reg;
f5cd7872 1001
34c20624 1002 if (!(*chan->status & PAS_STATUS_CAUSE_M))
f5cd7872
OJ
1003 return IRQ_NONE;
1004
61cec3bd 1005 reg = 0;
6dfa7522 1006
34c20624 1007 if (*chan->status & PAS_STATUS_SOFT)
6dfa7522 1008 reg |= PAS_IOB_DMA_TXCH_RESET_SINTC;
34c20624 1009 if (*chan->status & PAS_STATUS_ERROR)
6dfa7522 1010 reg |= PAS_IOB_DMA_TXCH_RESET_DINTC;
f5cd7872 1011
61cec3bd
OJ
1012 mod_timer(&txring->clean_timer, jiffies + (TX_CLEAN_INTERVAL)*2);
1013
1014 netif_rx_schedule(mac->netdev, &mac->napi);
1015
1016 if (reg)
1017 write_iob_reg(PAS_IOB_DMA_TXCH_RESET(chan->chno), reg);
f5cd7872 1018
f5cd7872
OJ
1019 return IRQ_HANDLED;
1020}
1021
bb6e9590
OJ
1022static void pasemi_adjust_link(struct net_device *dev)
1023{
1024 struct pasemi_mac *mac = netdev_priv(dev);
1025 int msg;
1026 unsigned int flags;
1027 unsigned int new_flags;
1028
1029 if (!mac->phydev->link) {
1030 /* If no link, MAC speed settings don't matter. Just report
1031 * link down and return.
1032 */
1033 if (mac->link && netif_msg_link(mac))
1034 printk(KERN_INFO "%s: Link is down.\n", dev->name);
1035
1036 netif_carrier_off(dev);
b0cd2f90 1037 pasemi_mac_intf_disable(mac);
bb6e9590
OJ
1038 mac->link = 0;
1039
1040 return;
b0cd2f90
OJ
1041 } else {
1042 pasemi_mac_intf_enable(mac);
bb6e9590 1043 netif_carrier_on(dev);
b0cd2f90 1044 }
bb6e9590 1045
a85b9422 1046 flags = read_mac_reg(mac, PAS_MAC_CFG_PCFG);
bb6e9590
OJ
1047 new_flags = flags & ~(PAS_MAC_CFG_PCFG_HD | PAS_MAC_CFG_PCFG_SPD_M |
1048 PAS_MAC_CFG_PCFG_TSR_M);
1049
1050 if (!mac->phydev->duplex)
1051 new_flags |= PAS_MAC_CFG_PCFG_HD;
1052
1053 switch (mac->phydev->speed) {
1054 case 1000:
1055 new_flags |= PAS_MAC_CFG_PCFG_SPD_1G |
1056 PAS_MAC_CFG_PCFG_TSR_1G;
1057 break;
1058 case 100:
1059 new_flags |= PAS_MAC_CFG_PCFG_SPD_100M |
1060 PAS_MAC_CFG_PCFG_TSR_100M;
1061 break;
1062 case 10:
1063 new_flags |= PAS_MAC_CFG_PCFG_SPD_10M |
1064 PAS_MAC_CFG_PCFG_TSR_10M;
1065 break;
1066 default:
1067 printk("Unsupported speed %d\n", mac->phydev->speed);
1068 }
1069
1070 /* Print on link or speed/duplex change */
1071 msg = mac->link != mac->phydev->link || flags != new_flags;
1072
1073 mac->duplex = mac->phydev->duplex;
1074 mac->speed = mac->phydev->speed;
1075 mac->link = mac->phydev->link;
1076
1077 if (new_flags != flags)
a85b9422 1078 write_mac_reg(mac, PAS_MAC_CFG_PCFG, new_flags);
bb6e9590
OJ
1079
1080 if (msg && netif_msg_link(mac))
1081 printk(KERN_INFO "%s: Link is up at %d Mbps, %s duplex.\n",
1082 dev->name, mac->speed, mac->duplex ? "full" : "half");
1083}
1084
1085static int pasemi_mac_phy_init(struct net_device *dev)
1086{
1087 struct pasemi_mac *mac = netdev_priv(dev);
1088 struct device_node *dn, *phy_dn;
1089 struct phy_device *phydev;
1090 unsigned int phy_id;
1091 const phandle *ph;
1092 const unsigned int *prop;
1093 struct resource r;
1094 int ret;
1095
1096 dn = pci_device_to_OF_node(mac->pdev);
9028780a 1097 ph = of_get_property(dn, "phy-handle", NULL);
bb6e9590
OJ
1098 if (!ph)
1099 return -ENODEV;
1100 phy_dn = of_find_node_by_phandle(*ph);
1101
9028780a 1102 prop = of_get_property(phy_dn, "reg", NULL);
bb6e9590
OJ
1103 ret = of_address_to_resource(phy_dn->parent, 0, &r);
1104 if (ret)
1105 goto err;
1106
1107 phy_id = *prop;
9d9326d3 1108 snprintf(mac->phy_id, BUS_ID_SIZE, "%x:%02x", (int)r.start, phy_id);
bb6e9590
OJ
1109
1110 of_node_put(phy_dn);
1111
1112 mac->link = 0;
1113 mac->speed = 0;
1114 mac->duplex = -1;
1115
1116 phydev = phy_connect(dev, mac->phy_id, &pasemi_adjust_link, 0, PHY_INTERFACE_MODE_SGMII);
1117
1118 if (IS_ERR(phydev)) {
1119 printk(KERN_ERR "%s: Could not attach to phy\n", dev->name);
1120 return PTR_ERR(phydev);
1121 }
1122
1123 mac->phydev = phydev;
1124
1125 return 0;
1126
1127err:
1128 of_node_put(phy_dn);
1129 return -ENODEV;
1130}
1131
1132
f5cd7872
OJ
1133static int pasemi_mac_open(struct net_device *dev)
1134{
1135 struct pasemi_mac *mac = netdev_priv(dev);
1136 unsigned int flags;
e37c772e 1137 int i, ret;
f5cd7872
OJ
1138
1139 flags = PAS_MAC_CFG_TXP_FCE | PAS_MAC_CFG_TXP_FPC(3) |
1140 PAS_MAC_CFG_TXP_SL(3) | PAS_MAC_CFG_TXP_COB(0xf) |
1141 PAS_MAC_CFG_TXP_TIFT(8) | PAS_MAC_CFG_TXP_TIFG(12);
1142
a85b9422 1143 write_mac_reg(mac, PAS_MAC_CFG_TXP, flags);
f5cd7872 1144
f5cd7872
OJ
1145 ret = pasemi_mac_setup_rx_resources(dev);
1146 if (ret)
1147 goto out_rx_resources;
1148
34c20624 1149 mac->tx = pasemi_mac_setup_tx_resources(dev);
72b05b99
OJ
1150
1151 if (!mac->tx)
1152 goto out_tx_ring;
f5cd7872 1153
1724ac2e
OJ
1154 /* We might already have allocated rings in case mtu was changed
1155 * before interface was brought up.
1156 */
1157 if (dev->mtu > 1500 && !mac->num_cs) {
8d636d8b
OJ
1158 pasemi_mac_setup_csrings(mac);
1159 if (!mac->num_cs)
1160 goto out_tx_ring;
1161 }
1162
e37c772e
OJ
1163 /* Zero out rmon counters */
1164 for (i = 0; i < 32; i++)
1165 write_mac_reg(mac, PAS_MAC_RMON(i), 0);
1166
906674ab
OJ
1167 /* 0x3ff with 33MHz clock is about 31us */
1168 write_iob_reg(PAS_IOB_DMA_COM_TIMEOUTCFG,
1169 PAS_IOB_DMA_COM_TIMEOUTCFG_TCNT(0x3ff));
1170
34c20624 1171 write_iob_reg(PAS_IOB_DMA_RXCH_CFG(mac->rx->chan.chno),
28ae79f5 1172 PAS_IOB_DMA_RXCH_CFG_CNTTH(256));
34c20624
OJ
1173
1174 write_iob_reg(PAS_IOB_DMA_TXCH_CFG(mac->tx->chan.chno),
61cec3bd 1175 PAS_IOB_DMA_TXCH_CFG_CNTTH(32));
34c20624 1176
a85b9422 1177 write_mac_reg(mac, PAS_MAC_IPC_CHNL,
34c20624
OJ
1178 PAS_MAC_IPC_CHNL_DCHNO(mac->rx->chan.chno) |
1179 PAS_MAC_IPC_CHNL_BCH(mac->rx->chan.chno));
f5cd7872
OJ
1180
1181 /* enable rx if */
34c20624
OJ
1182 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if),
1183 PAS_DMA_RXINT_RCMDSTA_EN |
1184 PAS_DMA_RXINT_RCMDSTA_DROPS_M |
1185 PAS_DMA_RXINT_RCMDSTA_BP |
1186 PAS_DMA_RXINT_RCMDSTA_OO |
1187 PAS_DMA_RXINT_RCMDSTA_BT);
f5cd7872
OJ
1188
1189 /* enable rx channel */
34c20624
OJ
1190 pasemi_dma_start_chan(&rx_ring(mac)->chan, PAS_DMA_RXCHAN_CCMDSTA_DU |
1191 PAS_DMA_RXCHAN_CCMDSTA_OD |
1192 PAS_DMA_RXCHAN_CCMDSTA_FD |
1193 PAS_DMA_RXCHAN_CCMDSTA_DT);
f5cd7872
OJ
1194
1195 /* enable tx channel */
34c20624
OJ
1196 pasemi_dma_start_chan(&tx_ring(mac)->chan, PAS_DMA_TXCHAN_TCMDSTA_SZ |
1197 PAS_DMA_TXCHAN_TCMDSTA_DB |
1198 PAS_DMA_TXCHAN_TCMDSTA_DE |
1199 PAS_DMA_TXCHAN_TCMDSTA_DA);
f5cd7872 1200
928773c2 1201 pasemi_mac_replenish_rx_ring(dev, RX_RING_SIZE);
f5cd7872 1202
34c20624
OJ
1203 write_dma_reg(PAS_DMA_RXCHAN_INCR(rx_ring(mac)->chan.chno),
1204 RX_RING_SIZE>>1);
b5254eee 1205
72b05b99
OJ
1206 /* Clear out any residual packet count state from firmware */
1207 pasemi_mac_restart_rx_intr(mac);
1208 pasemi_mac_restart_tx_intr(mac);
1209
b0cd2f90 1210 flags = PAS_MAC_CFG_PCFG_S1 | PAS_MAC_CFG_PCFG_PR | PAS_MAC_CFG_PCFG_CE;
36033766
OJ
1211
1212 if (mac->type == MAC_TYPE_GMAC)
1213 flags |= PAS_MAC_CFG_PCFG_TSR_1G | PAS_MAC_CFG_PCFG_SPD_1G;
1214 else
1215 flags |= PAS_MAC_CFG_PCFG_TSR_10G | PAS_MAC_CFG_PCFG_SPD_10G;
1216
1217 /* Enable interface in MAC */
1218 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags);
1219
bb6e9590 1220 ret = pasemi_mac_phy_init(dev);
b0cd2f90
OJ
1221 if (ret) {
1222 /* Since we won't get link notification, just enable RX */
1223 pasemi_mac_intf_enable(mac);
1224 if (mac->type == MAC_TYPE_GMAC) {
1225 /* Warn for missing PHY on SGMII (1Gig) ports */
1226 dev_warn(&mac->pdev->dev,
1227 "PHY init failed: %d.\n", ret);
1228 dev_warn(&mac->pdev->dev,
1229 "Defaulting to 1Gbit full duplex\n");
1230 }
8304b633 1231 }
bb6e9590 1232
f5cd7872 1233 netif_start_queue(dev);
bea3348e 1234 napi_enable(&mac->napi);
f5cd7872 1235
72b05b99
OJ
1236 snprintf(mac->tx_irq_name, sizeof(mac->tx_irq_name), "%s tx",
1237 dev->name);
771f7404 1238
34c20624 1239 ret = request_irq(mac->tx->chan.irq, &pasemi_mac_tx_intr, IRQF_DISABLED,
72b05b99 1240 mac->tx_irq_name, mac->tx);
f5cd7872
OJ
1241 if (ret) {
1242 dev_err(&mac->pdev->dev, "request_irq of irq %d failed: %d\n",
34c20624 1243 mac->tx->chan.irq, ret);
f5cd7872
OJ
1244 goto out_tx_int;
1245 }
1246
72b05b99
OJ
1247 snprintf(mac->rx_irq_name, sizeof(mac->rx_irq_name), "%s rx",
1248 dev->name);
1249
34c20624
OJ
1250 ret = request_irq(mac->rx->chan.irq, &pasemi_mac_rx_intr, IRQF_DISABLED,
1251 mac->rx_irq_name, mac->rx);
f5cd7872
OJ
1252 if (ret) {
1253 dev_err(&mac->pdev->dev, "request_irq of irq %d failed: %d\n",
34c20624 1254 mac->rx->chan.irq, ret);
f5cd7872
OJ
1255 goto out_rx_int;
1256 }
1257
bb6e9590
OJ
1258 if (mac->phydev)
1259 phy_start(mac->phydev);
1260
61cec3bd
OJ
1261 init_timer(&mac->tx->clean_timer);
1262 mac->tx->clean_timer.function = pasemi_mac_tx_timer;
1263 mac->tx->clean_timer.data = (unsigned long)mac->tx;
1264 mac->tx->clean_timer.expires = jiffies+HZ;
1265 add_timer(&mac->tx->clean_timer);
1266
f5cd7872
OJ
1267 return 0;
1268
1269out_rx_int:
34c20624 1270 free_irq(mac->tx->chan.irq, mac->tx);
f5cd7872 1271out_tx_int:
bea3348e 1272 napi_disable(&mac->napi);
f5cd7872 1273 netif_stop_queue(dev);
72b05b99
OJ
1274out_tx_ring:
1275 if (mac->tx)
1276 pasemi_mac_free_tx_resources(mac);
1277 pasemi_mac_free_rx_resources(mac);
f5cd7872
OJ
1278out_rx_resources:
1279
1280 return ret;
1281}
1282
1283#define MAX_RETRIES 5000
1284
ef1ea0b4
OJ
1285static void pasemi_mac_pause_txchan(struct pasemi_mac *mac)
1286{
1287 unsigned int sta, retries;
1288 int txch = tx_ring(mac)->chan.chno;
1289
1290 write_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch),
1291 PAS_DMA_TXCHAN_TCMDSTA_ST);
1292
1293 for (retries = 0; retries < MAX_RETRIES; retries++) {
1294 sta = read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch));
1295 if (!(sta & PAS_DMA_TXCHAN_TCMDSTA_ACT))
1296 break;
1297 cond_resched();
1298 }
1299
1300 if (sta & PAS_DMA_TXCHAN_TCMDSTA_ACT)
1301 dev_err(&mac->dma_pdev->dev,
1302 "Failed to stop tx channel, tcmdsta %08x\n", sta);
1303
1304 write_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch), 0);
1305}
1306
1307static void pasemi_mac_pause_rxchan(struct pasemi_mac *mac)
1308{
1309 unsigned int sta, retries;
1310 int rxch = rx_ring(mac)->chan.chno;
1311
1312 write_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch),
1313 PAS_DMA_RXCHAN_CCMDSTA_ST);
1314 for (retries = 0; retries < MAX_RETRIES; retries++) {
1315 sta = read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch));
1316 if (!(sta & PAS_DMA_RXCHAN_CCMDSTA_ACT))
1317 break;
1318 cond_resched();
1319 }
1320
1321 if (sta & PAS_DMA_RXCHAN_CCMDSTA_ACT)
1322 dev_err(&mac->dma_pdev->dev,
1323 "Failed to stop rx channel, ccmdsta 08%x\n", sta);
1324 write_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch), 0);
1325}
1326
1327static void pasemi_mac_pause_rxint(struct pasemi_mac *mac)
1328{
1329 unsigned int sta, retries;
1330
1331 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if),
1332 PAS_DMA_RXINT_RCMDSTA_ST);
1333 for (retries = 0; retries < MAX_RETRIES; retries++) {
1334 sta = read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if));
1335 if (!(sta & PAS_DMA_RXINT_RCMDSTA_ACT))
1336 break;
1337 cond_resched();
1338 }
1339
1340 if (sta & PAS_DMA_RXINT_RCMDSTA_ACT)
1341 dev_err(&mac->dma_pdev->dev,
1342 "Failed to stop rx interface, rcmdsta %08x\n", sta);
1343 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if), 0);
1344}
1345
f5cd7872
OJ
1346static int pasemi_mac_close(struct net_device *dev)
1347{
1348 struct pasemi_mac *mac = netdev_priv(dev);
9e81d331 1349 unsigned int sta;
8d636d8b 1350 int rxch, txch, i;
34c20624
OJ
1351
1352 rxch = rx_ring(mac)->chan.chno;
1353 txch = tx_ring(mac)->chan.chno;
f5cd7872 1354
bb6e9590
OJ
1355 if (mac->phydev) {
1356 phy_stop(mac->phydev);
1357 phy_disconnect(mac->phydev);
1358 }
1359
61cec3bd
OJ
1360 del_timer_sync(&mac->tx->clean_timer);
1361
f5cd7872 1362 netif_stop_queue(dev);
bea3348e 1363 napi_disable(&mac->napi);
f5cd7872 1364
34c20624 1365 sta = read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if));
9e81d331
OJ
1366 if (sta & (PAS_DMA_RXINT_RCMDSTA_BP |
1367 PAS_DMA_RXINT_RCMDSTA_OO |
1368 PAS_DMA_RXINT_RCMDSTA_BT))
1369 printk(KERN_DEBUG "pasemi_mac: rcmdsta error: 0x%08x\n", sta);
1370
34c20624 1371 sta = read_dma_reg(PAS_DMA_RXCHAN_CCMDSTA(rxch));
9e81d331
OJ
1372 if (sta & (PAS_DMA_RXCHAN_CCMDSTA_DU |
1373 PAS_DMA_RXCHAN_CCMDSTA_OD |
1374 PAS_DMA_RXCHAN_CCMDSTA_FD |
1375 PAS_DMA_RXCHAN_CCMDSTA_DT))
1376 printk(KERN_DEBUG "pasemi_mac: ccmdsta error: 0x%08x\n", sta);
1377
34c20624 1378 sta = read_dma_reg(PAS_DMA_TXCHAN_TCMDSTA(txch));
72b05b99
OJ
1379 if (sta & (PAS_DMA_TXCHAN_TCMDSTA_SZ | PAS_DMA_TXCHAN_TCMDSTA_DB |
1380 PAS_DMA_TXCHAN_TCMDSTA_DE | PAS_DMA_TXCHAN_TCMDSTA_DA))
9e81d331
OJ
1381 printk(KERN_DEBUG "pasemi_mac: tcmdsta error: 0x%08x\n", sta);
1382
f5cd7872 1383 /* Clean out any pending buffers */
72b05b99
OJ
1384 pasemi_mac_clean_tx(tx_ring(mac));
1385 pasemi_mac_clean_rx(rx_ring(mac), RX_RING_SIZE);
f5cd7872 1386
ef1ea0b4
OJ
1387 pasemi_mac_pause_txchan(mac);
1388 pasemi_mac_pause_rxint(mac);
1389 pasemi_mac_pause_rxchan(mac);
1145d954 1390 pasemi_mac_intf_disable(mac);
f5cd7872 1391
34c20624
OJ
1392 free_irq(mac->tx->chan.irq, mac->tx);
1393 free_irq(mac->rx->chan.irq, mac->rx);
f5cd7872 1394
1724ac2e 1395 for (i = 0; i < mac->num_cs; i++) {
8d636d8b 1396 pasemi_mac_free_csring(mac->cs[i]);
1724ac2e
OJ
1397 mac->cs[i] = NULL;
1398 }
1399
1400 mac->num_cs = 0;
8d636d8b 1401
f5cd7872 1402 /* Free resources */
72b05b99
OJ
1403 pasemi_mac_free_rx_resources(mac);
1404 pasemi_mac_free_tx_resources(mac);
f5cd7872
OJ
1405
1406 return 0;
1407}
1408
8d636d8b
OJ
1409static void pasemi_mac_queue_csdesc(const struct sk_buff *skb,
1410 const dma_addr_t *map,
1411 const unsigned int *map_size,
1412 struct pasemi_mac_txring *txring,
1413 struct pasemi_mac_csring *csring)
1414{
1415 u64 fund;
1416 dma_addr_t cs_dest;
1417 const int nh_off = skb_network_offset(skb);
1418 const int nh_len = skb_network_header_len(skb);
1419 const int nfrags = skb_shinfo(skb)->nr_frags;
1420 int cs_size, i, fill, hdr, cpyhdr, evt;
1421 dma_addr_t csdma;
1422
1423 fund = XCT_FUN_ST | XCT_FUN_RR_8BRES |
1424 XCT_FUN_O | XCT_FUN_FUN(csring->fun) |
1425 XCT_FUN_CRM_SIG | XCT_FUN_LLEN(skb->len - nh_off) |
1426 XCT_FUN_SHL(nh_len >> 2) | XCT_FUN_SE;
1427
1428 switch (ip_hdr(skb)->protocol) {
1429 case IPPROTO_TCP:
1430 fund |= XCT_FUN_SIG_TCP4;
1431 /* TCP checksum is 16 bytes into the header */
1432 cs_dest = map[0] + skb_transport_offset(skb) + 16;
1433 break;
1434 case IPPROTO_UDP:
1435 fund |= XCT_FUN_SIG_UDP4;
1436 /* UDP checksum is 6 bytes into the header */
1437 cs_dest = map[0] + skb_transport_offset(skb) + 6;
1438 break;
1439 default:
1440 BUG();
1441 }
1442
1443 /* Do the checksum offloaded */
1444 fill = csring->next_to_fill;
1445 hdr = fill;
1446
1447 CS_DESC(csring, fill++) = fund;
1448 /* Room for 8BRES. Checksum result is really 2 bytes into it */
1449 csdma = csring->chan.ring_dma + (fill & (CS_RING_SIZE-1)) * 8 + 2;
1450 CS_DESC(csring, fill++) = 0;
1451
1452 CS_DESC(csring, fill) = XCT_PTR_LEN(map_size[0]-nh_off) | XCT_PTR_ADDR(map[0]+nh_off);
1453 for (i = 1; i <= nfrags; i++)
1454 CS_DESC(csring, fill+i) = XCT_PTR_LEN(map_size[i]) | XCT_PTR_ADDR(map[i]);
1455
1456 fill += i;
1457 if (fill & 1)
1458 fill++;
1459
1460 /* Copy the result into the TCP packet */
1461 cpyhdr = fill;
1462 CS_DESC(csring, fill++) = XCT_FUN_O | XCT_FUN_FUN(csring->fun) |
1463 XCT_FUN_LLEN(2) | XCT_FUN_SE;
1464 CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(cs_dest) | XCT_PTR_T;
1465 CS_DESC(csring, fill++) = XCT_PTR_LEN(2) | XCT_PTR_ADDR(csdma);
1466 fill++;
1467
1468 evt = !csring->last_event;
1469 csring->last_event = evt;
1470
1471 /* Event handshaking with MAC TX */
1472 CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
1473 CTRL_CMD_ETYPE_SET | CTRL_CMD_REG(csring->events[evt]);
1474 CS_DESC(csring, fill++) = 0;
1475 CS_DESC(csring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
1476 CTRL_CMD_ETYPE_WCLR | CTRL_CMD_REG(csring->events[!evt]);
1477 CS_DESC(csring, fill++) = 0;
1478 csring->next_to_fill = fill & (CS_RING_SIZE-1);
1479
1480 cs_size = fill - hdr;
1481 write_dma_reg(PAS_DMA_TXCHAN_INCR(csring->chan.chno), (cs_size) >> 1);
1482
1483 /* TX-side event handshaking */
1484 fill = txring->next_to_fill;
1485 TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
1486 CTRL_CMD_ETYPE_WSET | CTRL_CMD_REG(csring->events[evt]);
1487 TX_DESC(txring, fill++) = 0;
1488 TX_DESC(txring, fill++) = CTRL_CMD_T | CTRL_CMD_META_EVT | CTRL_CMD_O |
1489 CTRL_CMD_ETYPE_CLR | CTRL_CMD_REG(csring->events[!evt]);
1490 TX_DESC(txring, fill++) = 0;
1491 txring->next_to_fill = fill;
1492
1493 write_dma_reg(PAS_DMA_TXCHAN_INCR(txring->chan.chno), 2);
1494
1495 return;
1496}
1497
f5cd7872
OJ
1498static int pasemi_mac_start_tx(struct sk_buff *skb, struct net_device *dev)
1499{
8d636d8b
OJ
1500 struct pasemi_mac * const mac = netdev_priv(dev);
1501 struct pasemi_mac_txring * const txring = tx_ring(mac);
1502 struct pasemi_mac_csring *csring;
1503 u64 dflags = 0;
1504 u64 mactx;
ad3c20d1
OJ
1505 dma_addr_t map[MAX_SKB_FRAGS+1];
1506 unsigned int map_size[MAX_SKB_FRAGS+1];
ca7e235f 1507 unsigned long flags;
ad3c20d1 1508 int i, nfrags;
5c15332b 1509 int fill;
8d636d8b
OJ
1510 const int nh_off = skb_network_offset(skb);
1511 const int nh_len = skb_network_header_len(skb);
f5cd7872 1512
8d636d8b 1513 prefetch(&txring->ring_info);
d56f90a7 1514
8d636d8b 1515 dflags = XCT_MACTX_O | XCT_MACTX_ST | XCT_MACTX_CRC_PAD;
f5cd7872 1516
ad3c20d1
OJ
1517 nfrags = skb_shinfo(skb)->nr_frags;
1518
1519 map[0] = pci_map_single(mac->dma_pdev, skb->data, skb_headlen(skb),
1520 PCI_DMA_TODEVICE);
1521 map_size[0] = skb_headlen(skb);
8d8bb39b 1522 if (pci_dma_mapping_error(mac->dma_pdev, map[0]))
ad3c20d1
OJ
1523 goto out_err_nolock;
1524
1525 for (i = 0; i < nfrags; i++) {
1526 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
f5cd7872 1527
ad3c20d1
OJ
1528 map[i+1] = pci_map_page(mac->dma_pdev, frag->page,
1529 frag->page_offset, frag->size,
1530 PCI_DMA_TODEVICE);
1531 map_size[i+1] = frag->size;
8d8bb39b 1532 if (pci_dma_mapping_error(mac->dma_pdev, map[i+1])) {
ad3c20d1
OJ
1533 nfrags = i;
1534 goto out_err_nolock;
1535 }
1536 }
f5cd7872 1537
8d636d8b
OJ
1538 if (skb->ip_summed == CHECKSUM_PARTIAL && skb->len <= 1540) {
1539 switch (ip_hdr(skb)->protocol) {
1540 case IPPROTO_TCP:
1541 dflags |= XCT_MACTX_CSUM_TCP;
1542 dflags |= XCT_MACTX_IPH(nh_len >> 2);
1543 dflags |= XCT_MACTX_IPO(nh_off);
1544 break;
1545 case IPPROTO_UDP:
1546 dflags |= XCT_MACTX_CSUM_UDP;
1547 dflags |= XCT_MACTX_IPH(nh_len >> 2);
1548 dflags |= XCT_MACTX_IPO(nh_off);
1549 break;
1550 default:
1551 WARN_ON(1);
1552 }
1553 }
26fcfa95 1554
8d636d8b 1555 mactx = dflags | XCT_MACTX_LLEN(skb->len);
f5cd7872
OJ
1556
1557 spin_lock_irqsave(&txring->lock, flags);
1558
ad5da10a
OJ
1559 /* Avoid stepping on the same cache line that the DMA controller
1560 * is currently about to send, so leave at least 8 words available.
1561 * Total free space needed is mactx + fragments + 8
1562 */
8d636d8b 1563 if (RING_AVAIL(txring) < nfrags + 14) {
ad5da10a
OJ
1564 /* no room -- stop the queue and wait for tx intr */
1565 netif_stop_queue(dev);
1566 goto out_err;
f5cd7872
OJ
1567 }
1568
8d636d8b
OJ
1569 /* Queue up checksum + event descriptors, if needed */
1570 if (mac->num_cs && skb->ip_summed == CHECKSUM_PARTIAL && skb->len > 1540) {
1571 csring = mac->cs[mac->last_cs];
1572 mac->last_cs = (mac->last_cs + 1) % mac->num_cs;
1573
1574 pasemi_mac_queue_csdesc(skb, map, map_size, txring, csring);
1575 }
1576
1577 fill = txring->next_to_fill;
5c15332b 1578 TX_DESC(txring, fill) = mactx;
7e9916e9 1579 TX_DESC_INFO(txring, fill).dma = nfrags;
5c15332b
OJ
1580 fill++;
1581 TX_DESC_INFO(txring, fill).skb = skb;
ad3c20d1 1582 for (i = 0; i <= nfrags; i++) {
5c15332b 1583 TX_DESC(txring, fill+i) =
72b05b99 1584 XCT_PTR_LEN(map_size[i]) | XCT_PTR_ADDR(map[i]);
5c15332b 1585 TX_DESC_INFO(txring, fill+i).dma = map[i];
ad3c20d1
OJ
1586 }
1587
1588 /* We have to add an even number of 8-byte entries to the ring
1589 * even if the last one is unused. That means always an odd number
1590 * of pointers + one mactx descriptor.
1591 */
1592 if (nfrags & 1)
1593 nfrags++;
fc9e4d2a 1594
5c15332b 1595 txring->next_to_fill = (fill + nfrags + 1) & (TX_RING_SIZE-1);
f5cd7872 1596
09f75cd7
JG
1597 dev->stats.tx_packets++;
1598 dev->stats.tx_bytes += skb->len;
f5cd7872
OJ
1599
1600 spin_unlock_irqrestore(&txring->lock, flags);
1601
34c20624 1602 write_dma_reg(PAS_DMA_TXCHAN_INCR(txring->chan.chno), (nfrags+2) >> 1);
f5cd7872
OJ
1603
1604 return NETDEV_TX_OK;
1605
1606out_err:
1607 spin_unlock_irqrestore(&txring->lock, flags);
ad3c20d1
OJ
1608out_err_nolock:
1609 while (nfrags--)
1610 pci_unmap_single(mac->dma_pdev, map[nfrags], map_size[nfrags],
1611 PCI_DMA_TODEVICE);
1612
f5cd7872
OJ
1613 return NETDEV_TX_BUSY;
1614}
1615
f5cd7872
OJ
1616static void pasemi_mac_set_rx_mode(struct net_device *dev)
1617{
5c15332b 1618 const struct pasemi_mac *mac = netdev_priv(dev);
f5cd7872
OJ
1619 unsigned int flags;
1620
a85b9422 1621 flags = read_mac_reg(mac, PAS_MAC_CFG_PCFG);
f5cd7872
OJ
1622
1623 /* Set promiscuous */
1624 if (dev->flags & IFF_PROMISC)
1625 flags |= PAS_MAC_CFG_PCFG_PR;
1626 else
1627 flags &= ~PAS_MAC_CFG_PCFG_PR;
1628
a85b9422 1629 write_mac_reg(mac, PAS_MAC_CFG_PCFG, flags);
f5cd7872
OJ
1630}
1631
1632
bea3348e 1633static int pasemi_mac_poll(struct napi_struct *napi, int budget)
f5cd7872 1634{
bea3348e
SH
1635 struct pasemi_mac *mac = container_of(napi, struct pasemi_mac, napi);
1636 struct net_device *dev = mac->netdev;
1637 int pkts;
f5cd7872 1638
72b05b99
OJ
1639 pasemi_mac_clean_tx(tx_ring(mac));
1640 pkts = pasemi_mac_clean_rx(rx_ring(mac), budget);
bea3348e 1641 if (pkts < budget) {
f5cd7872 1642 /* all done, no more packets present */
bea3348e 1643 netif_rx_complete(dev, napi);
f5cd7872 1644
1b0335ea 1645 pasemi_mac_restart_rx_intr(mac);
61cec3bd 1646 pasemi_mac_restart_tx_intr(mac);
f5cd7872 1647 }
bea3348e 1648 return pkts;
f5cd7872
OJ
1649}
1650
6e62040c
NC
1651#ifdef CONFIG_NET_POLL_CONTROLLER
1652/*
1653 * Polling 'interrupt' - used by things like netconsole to send skbs
1654 * without having to re-enable interrupts. It's not called while
1655 * the interrupt routine is executing.
1656 */
1657static void pasemi_mac_netpoll(struct net_device *dev)
1658{
1659 const struct pasemi_mac *mac = netdev_priv(dev);
1660
1661 disable_irq(mac->tx->chan.irq);
1662 pasemi_mac_tx_intr(mac->tx->chan.irq, mac->tx);
1663 enable_irq(mac->tx->chan.irq);
1664
1665 disable_irq(mac->rx->chan.irq);
1666 pasemi_mac_rx_intr(mac->rx->chan.irq, mac->rx);
1667 enable_irq(mac->rx->chan.irq);
1668}
1669#endif
1670
ef1ea0b4
OJ
1671static int pasemi_mac_change_mtu(struct net_device *dev, int new_mtu)
1672{
1673 struct pasemi_mac *mac = netdev_priv(dev);
1674 unsigned int reg;
8d636d8b 1675 unsigned int rcmdsta = 0;
ef1ea0b4 1676 int running;
8d636d8b 1677 int ret = 0;
ef1ea0b4
OJ
1678
1679 if (new_mtu < PE_MIN_MTU || new_mtu > PE_MAX_MTU)
1680 return -EINVAL;
1681
1682 running = netif_running(dev);
1683
1684 if (running) {
1685 /* Need to stop the interface, clean out all already
1686 * received buffers, free all unused buffers on the RX
1687 * interface ring, then finally re-fill the rx ring with
1688 * the new-size buffers and restart.
1689 */
1690
1691 napi_disable(&mac->napi);
1692 netif_tx_disable(dev);
1693 pasemi_mac_intf_disable(mac);
1694
1695 rcmdsta = read_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if));
1696 pasemi_mac_pause_rxint(mac);
1697 pasemi_mac_clean_rx(rx_ring(mac), RX_RING_SIZE);
1698 pasemi_mac_free_rx_buffers(mac);
8d636d8b
OJ
1699
1700 }
1701
1702 /* Setup checksum channels if large MTU and none already allocated */
1703 if (new_mtu > 1500 && !mac->num_cs) {
1704 pasemi_mac_setup_csrings(mac);
1705 if (!mac->num_cs) {
1706 ret = -ENOMEM;
1707 goto out;
1708 }
ef1ea0b4
OJ
1709 }
1710
1711 /* Change maxf, i.e. what size frames are accepted.
1712 * Need room for ethernet header and CRC word
1713 */
1714 reg = read_mac_reg(mac, PAS_MAC_CFG_MACCFG);
1715 reg &= ~PAS_MAC_CFG_MACCFG_MAXF_M;
1716 reg |= PAS_MAC_CFG_MACCFG_MAXF(new_mtu + ETH_HLEN + 4);
1717 write_mac_reg(mac, PAS_MAC_CFG_MACCFG, reg);
1718
1719 dev->mtu = new_mtu;
1720 /* MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
1721 mac->bufsz = new_mtu + ETH_HLEN + ETH_FCS_LEN + LOCAL_SKB_ALIGN + 128;
1722
8d636d8b 1723out:
ef1ea0b4
OJ
1724 if (running) {
1725 write_dma_reg(PAS_DMA_RXINT_RCMDSTA(mac->dma_if),
1726 rcmdsta | PAS_DMA_RXINT_RCMDSTA_EN);
1727
1728 rx_ring(mac)->next_to_fill = 0;
1729 pasemi_mac_replenish_rx_ring(dev, RX_RING_SIZE-1);
1730
1731 napi_enable(&mac->napi);
1732 netif_start_queue(dev);
1733 pasemi_mac_intf_enable(mac);
1734 }
1735
8d636d8b 1736 return ret;
ef1ea0b4
OJ
1737}
1738
f5cd7872
OJ
1739static int __devinit
1740pasemi_mac_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1741{
f5cd7872
OJ
1742 struct net_device *dev;
1743 struct pasemi_mac *mac;
1744 int err;
1745
1746 err = pci_enable_device(pdev);
1747 if (err)
1748 return err;
1749
1750 dev = alloc_etherdev(sizeof(struct pasemi_mac));
1751 if (dev == NULL) {
1752 dev_err(&pdev->dev,
1753 "pasemi_mac: Could not allocate ethernet device.\n");
1754 err = -ENOMEM;
1755 goto out_disable_device;
1756 }
1757
f5cd7872
OJ
1758 pci_set_drvdata(pdev, dev);
1759 SET_NETDEV_DEV(dev, &pdev->dev);
1760
1761 mac = netdev_priv(dev);
1762
1763 mac->pdev = pdev;
1764 mac->netdev = dev;
f5cd7872 1765
bea3348e
SH
1766 netif_napi_add(dev, &mac->napi, pasemi_mac_poll, 64);
1767
5c15332b 1768 dev->features = NETIF_F_IP_CSUM | NETIF_F_LLTX | NETIF_F_SG |
25156784 1769 NETIF_F_HIGHDMA | NETIF_F_GSO;
bea3348e 1770
28ae79f5
OJ
1771 mac->lro_mgr.max_aggr = LRO_MAX_AGGR;
1772 mac->lro_mgr.max_desc = MAX_LRO_DESCRIPTORS;
1773 mac->lro_mgr.lro_arr = mac->lro_desc;
1774 mac->lro_mgr.get_skb_header = get_skb_hdr;
1775 mac->lro_mgr.features = LRO_F_NAPI | LRO_F_EXTRACT_VLAN_ID;
1776 mac->lro_mgr.dev = mac->netdev;
1777 mac->lro_mgr.ip_summed = CHECKSUM_UNNECESSARY;
1778 mac->lro_mgr.ip_summed_aggr = CHECKSUM_UNNECESSARY;
1779
1780
34c20624
OJ
1781 mac->dma_pdev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa007, NULL);
1782 if (!mac->dma_pdev) {
1783 dev_err(&mac->pdev->dev, "Can't find DMA Controller\n");
1784 err = -ENODEV;
1785 goto out;
1786 }
f5cd7872 1787
34c20624
OJ
1788 mac->iob_pdev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa001, NULL);
1789 if (!mac->iob_pdev) {
1790 dev_err(&mac->pdev->dev, "Can't find I/O Bridge\n");
1791 err = -ENODEV;
1792 goto out;
1793 }
1794
1795 /* get mac addr from device tree */
1796 if (pasemi_get_mac_addr(mac) || !is_valid_ether_addr(mac->mac_addr)) {
1797 err = -ENODEV;
1798 goto out;
1799 }
1800 memcpy(dev->dev_addr, mac->mac_addr, sizeof(mac->mac_addr));
1801
1802 mac->dma_if = mac_to_intf(mac);
1803 if (mac->dma_if < 0) {
1804 dev_err(&mac->pdev->dev, "Can't map DMA interface\n");
1805 err = -ENODEV;
1806 goto out;
1807 }
f5cd7872
OJ
1808
1809 switch (pdev->device) {
1810 case 0xa005:
1811 mac->type = MAC_TYPE_GMAC;
1812 break;
1813 case 0xa006:
1814 mac->type = MAC_TYPE_XAUI;
1815 break;
1816 default:
1817 err = -ENODEV;
1818 goto out;
1819 }
1820
f5cd7872
OJ
1821 dev->open = pasemi_mac_open;
1822 dev->stop = pasemi_mac_close;
1823 dev->hard_start_xmit = pasemi_mac_start_tx;
f5cd7872 1824 dev->set_multicast_list = pasemi_mac_set_rx_mode;
5cea73b0 1825 dev->set_mac_address = pasemi_mac_set_mac_addr;
ef1ea0b4
OJ
1826 dev->mtu = PE_DEF_MTU;
1827 /* 1500 MTU + ETH_HLEN + VLAN_HLEN + 2 64B cachelines */
1828 mac->bufsz = dev->mtu + ETH_HLEN + ETH_FCS_LEN + LOCAL_SKB_ALIGN + 128;
6e62040c
NC
1829#ifdef CONFIG_NET_POLL_CONTROLLER
1830 dev->poll_controller = pasemi_mac_netpoll;
1831#endif
ef1ea0b4
OJ
1832
1833 dev->change_mtu = pasemi_mac_change_mtu;
e37c772e 1834 dev->ethtool_ops = &pasemi_mac_ethtool_ops;
f5cd7872 1835
b6e05a1b
OJ
1836 if (err)
1837 goto out;
f5cd7872 1838
ceb51361
OJ
1839 mac->msg_enable = netif_msg_init(debug, DEFAULT_MSG_ENABLE);
1840
bb6e9590
OJ
1841 /* Enable most messages by default */
1842 mac->msg_enable = (NETIF_MSG_IFUP << 1 ) - 1;
1843
f5cd7872
OJ
1844 err = register_netdev(dev);
1845
1846 if (err) {
1847 dev_err(&mac->pdev->dev, "register_netdev failed with error %d\n",
1848 err);
1849 goto out;
69c29d89 1850 } else if netif_msg_probe(mac)
e174961c 1851 printk(KERN_INFO "%s: PA Semi %s: intf %d, hw addr %pM\n",
f5cd7872 1852 dev->name, mac->type == MAC_TYPE_GMAC ? "GMAC" : "XAUI",
e174961c 1853 mac->dma_if, dev->dev_addr);
f5cd7872
OJ
1854
1855 return err;
1856
1857out:
b6e05a1b
OJ
1858 if (mac->iob_pdev)
1859 pci_dev_put(mac->iob_pdev);
1860 if (mac->dma_pdev)
1861 pci_dev_put(mac->dma_pdev);
b6e05a1b 1862
f5cd7872
OJ
1863 free_netdev(dev);
1864out_disable_device:
1865 pci_disable_device(pdev);
1866 return err;
1867
1868}
1869
1870static void __devexit pasemi_mac_remove(struct pci_dev *pdev)
1871{
1872 struct net_device *netdev = pci_get_drvdata(pdev);
1873 struct pasemi_mac *mac;
1874
1875 if (!netdev)
1876 return;
1877
1878 mac = netdev_priv(netdev);
1879
1880 unregister_netdev(netdev);
1881
1882 pci_disable_device(pdev);
1883 pci_dev_put(mac->dma_pdev);
1884 pci_dev_put(mac->iob_pdev);
1885
34c20624
OJ
1886 pasemi_dma_free_chan(&mac->tx->chan);
1887 pasemi_dma_free_chan(&mac->rx->chan);
b6e05a1b 1888
f5cd7872
OJ
1889 pci_set_drvdata(pdev, NULL);
1890 free_netdev(netdev);
1891}
1892
1893static struct pci_device_id pasemi_mac_pci_tbl[] = {
1894 { PCI_DEVICE(PCI_VENDOR_ID_PASEMI, 0xa005) },
1895 { PCI_DEVICE(PCI_VENDOR_ID_PASEMI, 0xa006) },
fd178254 1896 { },
f5cd7872
OJ
1897};
1898
1899MODULE_DEVICE_TABLE(pci, pasemi_mac_pci_tbl);
1900
1901static struct pci_driver pasemi_mac_driver = {
1902 .name = "pasemi_mac",
1903 .id_table = pasemi_mac_pci_tbl,
1904 .probe = pasemi_mac_probe,
1905 .remove = __devexit_p(pasemi_mac_remove),
1906};
1907
1908static void __exit pasemi_mac_cleanup_module(void)
1909{
1910 pci_unregister_driver(&pasemi_mac_driver);
f5cd7872
OJ
1911}
1912
1913int pasemi_mac_init_module(void)
1914{
34c20624
OJ
1915 int err;
1916
1917 err = pasemi_dma_init();
1918 if (err)
1919 return err;
1920
f5cd7872
OJ
1921 return pci_register_driver(&pasemi_mac_driver);
1922}
1923
f5cd7872
OJ
1924module_init(pasemi_mac_init_module);
1925module_exit(pasemi_mac_cleanup_module);