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