2 * PS3 gelic network driver.
4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2006, 2007 Sony Corporation
7 * This file is based on: spider_net.c
9 * (C) Copyright IBM Corp. 2005
11 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
12 * Jens Osterkamp <Jens.Osterkamp@de.ibm.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 #include <linux/kernel.h>
32 #include <linux/module.h>
34 #include <linux/etherdevice.h>
35 #include <linux/ethtool.h>
36 #include <linux/if_vlan.h>
40 #include <linux/tcp.h>
42 #include <linux/dma-mapping.h>
43 #include <net/checksum.h>
44 #include <asm/firmware.h>
46 #include <asm/lv1call.h>
48 #include "ps3_gelic_net.h"
50 #define DRV_NAME "Gelic Network Driver"
51 #define DRV_VERSION "1.0"
53 MODULE_AUTHOR("SCE Inc.");
54 MODULE_DESCRIPTION("Gelic Network driver");
55 MODULE_LICENSE("GPL");
57 static inline struct device *ctodev(struct gelic_net_card *card)
59 return &card->dev->core;
61 static inline unsigned int bus_id(struct gelic_net_card *card)
63 return card->dev->bus_id;
65 static inline unsigned int dev_id(struct gelic_net_card *card)
67 return card->dev->dev_id;
71 static int gelic_net_set_irq_mask(struct gelic_net_card *card, u64 mask)
75 status = lv1_net_set_interrupt_mask(bus_id(card), dev_id(card),
78 dev_info(ctodev(card),
79 "lv1_net_set_interrupt_mask failed %d\n", status);
82 static inline void gelic_net_rx_irq_on(struct gelic_net_card *card)
84 gelic_net_set_irq_mask(card, card->ghiintmask | GELIC_NET_RXINT);
86 static inline void gelic_net_rx_irq_off(struct gelic_net_card *card)
88 gelic_net_set_irq_mask(card, card->ghiintmask & ~GELIC_NET_RXINT);
91 * gelic_net_get_descr_status -- returns the status of a descriptor
92 * @descr: descriptor to look at
94 * returns the status as in the dmac_cmd_status field of the descriptor
96 static enum gelic_net_descr_status
97 gelic_net_get_descr_status(struct gelic_net_descr *descr)
101 cmd_status = descr->dmac_cmd_status;
102 cmd_status >>= GELIC_NET_DESCR_IND_PROC_SHIFT;
107 * gelic_net_set_descr_status -- sets the status of a descriptor
108 * @descr: descriptor to change
109 * @status: status to set in the descriptor
111 * changes the status to the specified value. Doesn't change other bits
114 static void gelic_net_set_descr_status(struct gelic_net_descr *descr,
115 enum gelic_net_descr_status status)
119 /* read the status */
120 cmd_status = descr->dmac_cmd_status;
121 /* clean the upper 4 bits */
122 cmd_status &= GELIC_NET_DESCR_IND_PROC_MASKO;
123 /* add the status to it */
124 cmd_status |= ((u32)status) << GELIC_NET_DESCR_IND_PROC_SHIFT;
125 /* and write it back */
126 descr->dmac_cmd_status = cmd_status;
128 * dma_cmd_status field is used to indicate whether the descriptor
130 * Usually caller of this function wants to inform that to the
131 * hardware, so we assure here the hardware sees the change.
137 * gelic_net_free_chain - free descriptor chain
138 * @card: card structure
139 * @descr_in: address of desc
141 static void gelic_net_free_chain(struct gelic_net_card *card,
142 struct gelic_net_descr *descr_in)
144 struct gelic_net_descr *descr;
146 for (descr = descr_in; descr && descr->bus_addr; descr = descr->next) {
147 dma_unmap_single(ctodev(card), descr->bus_addr,
148 GELIC_NET_DESCR_SIZE, DMA_BIDIRECTIONAL);
154 * gelic_net_init_chain - links descriptor chain
155 * @card: card structure
156 * @chain: address of chain
157 * @start_descr: address of descriptor array
158 * @no: number of descriptors
160 * we manage a circular list that mirrors the hardware structure,
161 * except that the hardware uses bus addresses.
163 * returns 0 on success, <0 on failure
165 static int gelic_net_init_chain(struct gelic_net_card *card,
166 struct gelic_net_descr_chain *chain,
167 struct gelic_net_descr *start_descr, int no)
170 struct gelic_net_descr *descr;
173 memset(descr, 0, sizeof(*descr) * no);
175 /* set up the hardware pointers in each descriptor */
176 for (i = 0; i < no; i++, descr++) {
177 gelic_net_set_descr_status(descr, GELIC_NET_DESCR_NOT_IN_USE);
179 dma_map_single(ctodev(card), descr,
180 GELIC_NET_DESCR_SIZE,
183 if (!descr->bus_addr)
186 descr->next = descr + 1;
187 descr->prev = descr - 1;
189 /* make them as ring */
190 (descr - 1)->next = start_descr;
191 start_descr->prev = (descr - 1);
193 /* chain bus addr of hw descriptor */
195 for (i = 0; i < no; i++, descr++) {
196 descr->next_descr_addr = descr->next->bus_addr;
199 chain->head = start_descr;
200 chain->tail = start_descr;
202 /* do not chain last hw descriptor */
203 (descr - 1)->next_descr_addr = 0;
208 for (i--, descr--; 0 <= i; i--, descr--)
210 dma_unmap_single(ctodev(card), descr->bus_addr,
211 GELIC_NET_DESCR_SIZE,
217 * gelic_net_prepare_rx_descr - reinitializes a rx descriptor
218 * @card: card structure
219 * @descr: descriptor to re-init
221 * return 0 on succes, <0 on failure
223 * allocates a new rx skb, iommu-maps it and attaches it to the descriptor.
224 * Activate the descriptor state-wise
226 static int gelic_net_prepare_rx_descr(struct gelic_net_card *card,
227 struct gelic_net_descr *descr)
230 unsigned int bufsize;
232 if (gelic_net_get_descr_status(descr) != GELIC_NET_DESCR_NOT_IN_USE) {
233 dev_info(ctodev(card), "%s: ERROR status \n", __func__);
235 /* we need to round up the buffer size to a multiple of 128 */
236 bufsize = ALIGN(GELIC_NET_MAX_MTU, GELIC_NET_RXBUF_ALIGN);
238 /* and we need to have it 128 byte aligned, therefore we allocate a
240 descr->skb = netdev_alloc_skb(card->netdev,
241 bufsize + GELIC_NET_RXBUF_ALIGN - 1);
243 descr->buf_addr = 0; /* tell DMAC don't touch memory */
244 dev_info(ctodev(card),
245 "%s:allocate skb failed !!\n", __func__);
248 descr->buf_size = bufsize;
249 descr->dmac_cmd_status = 0;
250 descr->result_size = 0;
251 descr->valid_size = 0;
252 descr->data_error = 0;
254 offset = ((unsigned long)descr->skb->data) &
255 (GELIC_NET_RXBUF_ALIGN - 1);
257 skb_reserve(descr->skb, GELIC_NET_RXBUF_ALIGN - offset);
258 /* io-mmu-map the skb */
259 descr->buf_addr = dma_map_single(ctodev(card), descr->skb->data,
262 if (!descr->buf_addr) {
263 dev_kfree_skb_any(descr->skb);
265 dev_info(ctodev(card),
266 "%s:Could not iommu-map rx buffer\n", __func__);
267 gelic_net_set_descr_status(descr, GELIC_NET_DESCR_NOT_IN_USE);
270 gelic_net_set_descr_status(descr, GELIC_NET_DESCR_CARDOWNED);
276 * gelic_net_release_rx_chain - free all skb of rx descr
277 * @card: card structure
280 static void gelic_net_release_rx_chain(struct gelic_net_card *card)
282 struct gelic_net_descr *descr = card->rx_chain.head;
286 dma_unmap_single(ctodev(card),
291 dev_kfree_skb_any(descr->skb);
293 gelic_net_set_descr_status(descr,
294 GELIC_NET_DESCR_NOT_IN_USE);
297 } while (descr != card->rx_chain.head);
301 * gelic_net_fill_rx_chain - fills descriptors/skbs in the rx chains
302 * @card: card structure
304 * fills all descriptors in the rx chain: allocates skbs
305 * and iommu-maps them.
306 * returns 0 on success, <0 on failure
308 static int gelic_net_fill_rx_chain(struct gelic_net_card *card)
310 struct gelic_net_descr *descr = card->rx_chain.head;
315 ret = gelic_net_prepare_rx_descr(card, descr);
320 } while (descr != card->rx_chain.head);
324 gelic_net_release_rx_chain(card);
329 * gelic_net_alloc_rx_skbs - allocates rx skbs in rx descriptor chains
330 * @card: card structure
332 * returns 0 on success, <0 on failure
334 static int gelic_net_alloc_rx_skbs(struct gelic_net_card *card)
336 struct gelic_net_descr_chain *chain;
338 chain = &card->rx_chain;
339 ret = gelic_net_fill_rx_chain(card);
340 chain->head = card->rx_top->prev; /* point to the last */
345 * gelic_net_release_tx_descr - processes a used tx descriptor
346 * @card: card structure
347 * @descr: descriptor to release
349 * releases a used tx descriptor (unmapping, freeing of skb)
351 static void gelic_net_release_tx_descr(struct gelic_net_card *card,
352 struct gelic_net_descr *descr)
357 if (descr->data_status & (1 << GELIC_NET_TXDESC_TAIL)) {
360 dma_unmap_single(ctodev(card), descr->buf_addr, skb->len,
362 dev_kfree_skb_any(skb);
364 dma_unmap_single(ctodev(card), descr->buf_addr,
365 descr->buf_size, DMA_TO_DEVICE);
370 descr->next_descr_addr = 0;
371 descr->result_size = 0;
372 descr->valid_size = 0;
373 descr->data_status = 0;
374 descr->data_error = 0;
377 /* set descr status */
378 gelic_net_set_descr_status(descr, GELIC_NET_DESCR_NOT_IN_USE);
382 * gelic_net_release_tx_chain - processes sent tx descriptors
383 * @card: adapter structure
384 * @stop: net_stop sequence
386 * releases the tx descriptors that gelic has finished with
388 static void gelic_net_release_tx_chain(struct gelic_net_card *card, int stop)
390 struct gelic_net_descr_chain *tx_chain;
391 enum gelic_net_descr_status status;
394 for (tx_chain = &card->tx_chain;
395 tx_chain->head != tx_chain->tail && tx_chain->tail;
396 tx_chain->tail = tx_chain->tail->next) {
397 status = gelic_net_get_descr_status(tx_chain->tail);
399 case GELIC_NET_DESCR_RESPONSE_ERROR:
400 case GELIC_NET_DESCR_PROTECTION_ERROR:
401 case GELIC_NET_DESCR_FORCE_END:
402 if (printk_ratelimit())
403 dev_info(ctodev(card),
404 "%s: forcing end of tx descriptor " \
407 card->netdev_stats.tx_dropped++;
410 case GELIC_NET_DESCR_COMPLETE:
411 card->netdev_stats.tx_packets++;
412 card->netdev_stats.tx_bytes +=
413 tx_chain->tail->skb->len;
416 case GELIC_NET_DESCR_CARDOWNED:
417 /* pending tx request */
419 /* any other value (== GELIC_NET_DESCR_NOT_IN_USE) */
422 gelic_net_release_tx_descr(card, tx_chain->tail);
426 if (!stop && release)
427 netif_wake_queue(card->netdev);
431 * gelic_net_set_multi - sets multicast addresses and promisc flags
432 * @netdev: interface device structure
434 * gelic_net_set_multi configures multicast addresses as needed for the
435 * netdev interface. It also sets up multicast, allmulti and promisc
436 * flags appropriately
438 static void gelic_net_set_multi(struct net_device *netdev)
440 struct gelic_net_card *card = netdev_priv(netdev);
441 struct dev_mc_list *mc;
447 /* clear all multicast address */
448 status = lv1_net_remove_multicast_address(bus_id(card), dev_id(card),
451 dev_err(ctodev(card),
452 "lv1_net_remove_multicast_address failed %d\n",
454 /* set broadcast address */
455 status = lv1_net_add_multicast_address(bus_id(card), dev_id(card),
456 GELIC_NET_BROADCAST_ADDR, 0);
458 dev_err(ctodev(card),
459 "lv1_net_add_multicast_address failed, %d\n",
462 if (netdev->flags & IFF_ALLMULTI
463 || netdev->mc_count > GELIC_NET_MC_COUNT_MAX) { /* list max */
464 status = lv1_net_add_multicast_address(bus_id(card),
468 dev_err(ctodev(card),
469 "lv1_net_add_multicast_address failed, %d\n",
474 /* set multicast address */
475 for (mc = netdev->mc_list; mc; mc = mc->next) {
478 for (i = 0; i < ETH_ALEN; i++) {
482 status = lv1_net_add_multicast_address(bus_id(card),
486 dev_err(ctodev(card),
487 "lv1_net_add_multicast_address failed, %d\n",
493 * gelic_net_enable_rxdmac - enables the receive DMA controller
494 * @card: card structure
496 * gelic_net_enable_rxdmac enables the DMA controller by setting RX_DMA_EN
497 * in the GDADMACCNTR register
499 static inline void gelic_net_enable_rxdmac(struct gelic_net_card *card)
503 status = lv1_net_start_rx_dma(bus_id(card), dev_id(card),
504 card->rx_chain.tail->bus_addr, 0);
506 dev_info(ctodev(card),
507 "lv1_net_start_rx_dma failed, status=%d\n", status);
511 * gelic_net_disable_rxdmac - disables the receive DMA controller
512 * @card: card structure
514 * gelic_net_disable_rxdmac terminates processing on the DMA controller by
515 * turing off DMA and issueing a force end
517 static inline void gelic_net_disable_rxdmac(struct gelic_net_card *card)
521 /* this hvc blocks until the DMA in progress really stopped */
522 status = lv1_net_stop_rx_dma(bus_id(card), dev_id(card), 0);
524 dev_err(ctodev(card),
525 "lv1_net_stop_rx_dma faild, %d\n", status);
529 * gelic_net_disable_txdmac - disables the transmit DMA controller
530 * @card: card structure
532 * gelic_net_disable_txdmac terminates processing on the DMA controller by
533 * turing off DMA and issueing a force end
535 static inline void gelic_net_disable_txdmac(struct gelic_net_card *card)
539 /* this hvc blocks until the DMA in progress really stopped */
540 status = lv1_net_stop_tx_dma(bus_id(card), dev_id(card), 0);
542 dev_err(ctodev(card),
543 "lv1_net_stop_tx_dma faild, status=%d\n", status);
547 * gelic_net_stop - called upon ifconfig down
548 * @netdev: interface device structure
552 static int gelic_net_stop(struct net_device *netdev)
554 struct gelic_net_card *card = netdev_priv(netdev);
556 netif_poll_disable(netdev);
557 netif_stop_queue(netdev);
559 /* turn off DMA, force end */
560 gelic_net_disable_rxdmac(card);
561 gelic_net_disable_txdmac(card);
563 gelic_net_set_irq_mask(card, 0);
565 /* disconnect event port */
566 free_irq(card->netdev->irq, card->netdev);
567 ps3_sb_event_receive_port_destroy(card->dev, card->netdev->irq);
568 card->netdev->irq = NO_IRQ;
570 netif_carrier_off(netdev);
573 gelic_net_release_tx_chain(card, 1);
574 gelic_net_release_rx_chain(card);
576 gelic_net_free_chain(card, card->tx_top);
577 gelic_net_free_chain(card, card->rx_top);
583 * gelic_net_get_next_tx_descr - returns the next available tx descriptor
584 * @card: device structure to get descriptor from
586 * returns the address of the next descriptor, or NULL if not available.
588 static struct gelic_net_descr *
589 gelic_net_get_next_tx_descr(struct gelic_net_card *card)
591 if (!card->tx_chain.head)
593 /* see if we can two consecutive free descrs */
594 if (card->tx_chain.tail != card->tx_chain.head->next &&
595 gelic_net_get_descr_status(card->tx_chain.head) ==
596 GELIC_NET_DESCR_NOT_IN_USE &&
597 card->tx_chain.tail != card->tx_chain.head->next->next &&
598 gelic_net_get_descr_status(card->tx_chain.head->next) ==
599 GELIC_NET_DESCR_NOT_IN_USE )
600 return card->tx_chain.head;
607 * gelic_net_set_txdescr_cmdstat - sets the tx descriptor command field
608 * @descr: descriptor structure to fill out
609 * @skb: packet to consider
610 * @middle: middle of frame
612 * fills out the command and status field of the descriptor structure,
613 * depending on hardware checksum settings. This function assumes a wmb()
614 * has executed before.
616 static void gelic_net_set_txdescr_cmdstat(struct gelic_net_descr *descr,
617 struct sk_buff *skb, int middle)
624 eofr = GELIC_NET_DMAC_CMDSTAT_END_FRAME;
626 if (skb->ip_summed != CHECKSUM_PARTIAL)
627 descr->dmac_cmd_status = GELIC_NET_DMAC_CMDSTAT_NOCS | eofr;
630 * if yes: tcp? udp? */
631 if (skb->protocol == htons(ETH_P_IP)) {
632 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
633 descr->dmac_cmd_status =
634 GELIC_NET_DMAC_CMDSTAT_TCPCS | eofr;
635 else if (ip_hdr(skb)->protocol == IPPROTO_UDP)
636 descr->dmac_cmd_status =
637 GELIC_NET_DMAC_CMDSTAT_UDPCS | eofr;
639 * the stack should checksum non-tcp and non-udp
640 * packets on his own: NETIF_F_IP_CSUM
642 descr->dmac_cmd_status =
643 GELIC_NET_DMAC_CMDSTAT_NOCS | eofr;
649 * gelic_net_prepare_tx_descr_v - get dma address of skb_data
650 * @card: card structure
651 * @descr: descriptor structure
652 * @skb: packet to use
654 * returns 0 on success, <0 on failure.
657 static int gelic_net_prepare_tx_descr_v(struct gelic_net_card *card,
658 struct gelic_net_descr *descr,
662 unsigned int vlan_len;
664 if (skb->len < GELIC_NET_VLAN_POS)
667 memcpy(&descr->vlan, skb->data, GELIC_NET_VLAN_POS);
668 if (card->vlan_index != -1) {
669 descr->vlan.h_vlan_proto = htons(ETH_P_8021Q); /* vlan 0x8100*/
670 descr->vlan.h_vlan_TCI = htons(card->vlan_id[card->vlan_index]);
671 vlan_len = GELIC_NET_VLAN_POS + VLAN_HLEN; /* VLAN_HLEN=4 */
673 vlan_len = GELIC_NET_VLAN_POS; /* no vlan tag */
676 buf[0] = dma_map_single(ctodev(card), &descr->vlan,
677 vlan_len, DMA_TO_DEVICE);
680 dev_err(ctodev(card),
681 "dma map 1 failed (%p, %i). Dropping packet\n",
682 skb->data, vlan_len);
686 descr->buf_addr = buf[0];
687 descr->buf_size = vlan_len;
688 descr->skb = skb; /* not used */
689 descr->data_status = 0;
690 gelic_net_set_txdescr_cmdstat(descr, skb, 1); /* not the frame end */
693 card->tx_chain.head = card->tx_chain.head->next;
694 descr->next_descr_addr = descr->next->bus_addr;
696 if (gelic_net_get_descr_status(descr) != GELIC_NET_DESCR_NOT_IN_USE)
697 /* XXX will be removed */
698 dev_err(ctodev(card), "descr is not free!\n");
700 buf[1] = dma_map_single(ctodev(card), skb->data + GELIC_NET_VLAN_POS,
701 skb->len - GELIC_NET_VLAN_POS,
705 dev_err(ctodev(card),
706 "dma map 2 failed (%p, %i). Dropping packet\n",
707 skb->data + GELIC_NET_VLAN_POS,
708 skb->len - GELIC_NET_VLAN_POS);
709 dma_unmap_single(ctodev(card), buf[0], vlan_len,
714 descr->buf_addr = buf[1];
715 descr->buf_size = skb->len - GELIC_NET_VLAN_POS;
717 descr->data_status = 0;
718 descr->next_descr_addr = 0; /* terminate hw descr */
719 gelic_net_set_txdescr_cmdstat(descr, skb, 0);
725 * gelic_net_kick_txdma - enables TX DMA processing
726 * @card: card structure
727 * @descr: descriptor address to enable TX processing at
730 static int gelic_net_kick_txdma(struct gelic_net_card *card,
731 struct gelic_net_descr *descr)
736 if (card->tx_dma_progress)
739 if (gelic_net_get_descr_status(descr) == GELIC_NET_DESCR_CARDOWNED) {
740 card->tx_dma_progress = 1;
741 /* sometimes we need retry here */
743 status = lv1_net_start_tx_dma(bus_id(card),
750 dev_info(ctodev(card), "lv1_net_start_txdma failed," \
752 status, card->irq_status);
758 * gelic_net_xmit - transmits a frame over the device
759 * @skb: packet to send out
760 * @netdev: interface device structure
762 * returns 0 on success, <0 on failure
764 static int gelic_net_xmit(struct sk_buff *skb, struct net_device *netdev)
766 struct gelic_net_card *card = netdev_priv(netdev);
767 struct gelic_net_descr *descr = NULL;
771 spin_lock_irqsave(&card->tx_dma_lock, flags);
773 gelic_net_release_tx_chain(card, 0);
776 descr = gelic_net_get_next_tx_descr(card);
778 netif_stop_queue(netdev);
779 spin_unlock_irqrestore(&card->tx_dma_lock, flags);
780 return NETDEV_TX_BUSY;
782 result = gelic_net_prepare_tx_descr_v(card, descr, skb);
787 card->tx_chain.head = card->tx_chain.head->next;
790 descr->prev->next_descr_addr = descr->bus_addr;
793 * as hardware descriptor is modified in the above lines,
794 * ensure that the hardware sees it
797 if (gelic_net_kick_txdma(card, card->tx_chain.tail))
800 netdev->trans_start = jiffies;
801 spin_unlock_irqrestore(&card->tx_dma_lock, flags);
805 card->netdev_stats.tx_dropped++;
806 spin_unlock_irqrestore(&card->tx_dma_lock, flags);
807 return NETDEV_TX_LOCKED;
811 * gelic_net_pass_skb_up - takes an skb from a descriptor and passes it on
812 * @descr: descriptor to process
813 * @card: card structure
815 * iommu-unmaps the skb, fills out skb structure and passes the data to the
816 * stack. The descriptor state is not changed.
818 static void gelic_net_pass_skb_up(struct gelic_net_descr *descr,
819 struct gelic_net_card *card)
822 struct net_device *netdev;
823 u32 data_status, data_error;
825 data_status = descr->data_status;
826 data_error = descr->data_error;
827 netdev = card->netdev;
828 /* unmap skb buffer */
830 dma_unmap_single(ctodev(card), descr->buf_addr, GELIC_NET_MAX_MTU,
833 skb_put(skb, descr->valid_size? descr->valid_size : descr->result_size);
834 if (!descr->valid_size)
835 dev_info(ctodev(card), "buffer full %x %x %x\n",
836 descr->result_size, descr->buf_size,
837 descr->dmac_cmd_status);
841 * the card put 2 bytes vlan tag in front
842 * of the ethernet frame
845 skb->protocol = eth_type_trans(skb, netdev);
847 /* checksum offload */
849 if ((data_status & GELIC_NET_DATA_STATUS_CHK_MASK) &&
850 (!(data_error & GELIC_NET_DATA_ERROR_CHK_MASK)))
851 skb->ip_summed = CHECKSUM_UNNECESSARY;
853 skb->ip_summed = CHECKSUM_NONE;
855 skb->ip_summed = CHECKSUM_NONE;
857 /* update netdevice statistics */
858 card->netdev_stats.rx_packets++;
859 card->netdev_stats.rx_bytes += skb->len;
861 /* pass skb up to stack */
862 netif_receive_skb(skb);
866 * gelic_net_decode_one_descr - processes an rx descriptor
867 * @card: card structure
869 * returns 1 if a packet has been sent to the stack, otherwise 0
871 * processes an rx descriptor by iommu-unmapping the data buffer and passing
872 * the packet up to the stack
874 static int gelic_net_decode_one_descr(struct gelic_net_card *card)
876 enum gelic_net_descr_status status;
877 struct gelic_net_descr_chain *chain = &card->rx_chain;
878 struct gelic_net_descr *descr = chain->tail;
879 int dmac_chain_ended;
881 status = gelic_net_get_descr_status(descr);
882 /* is this descriptor terminated with next_descr == NULL? */
884 descr->dmac_cmd_status & GELIC_NET_DMAC_CMDSTAT_RXDCEIS;
886 if (status == GELIC_NET_DESCR_CARDOWNED)
889 if (status == GELIC_NET_DESCR_NOT_IN_USE) {
890 dev_dbg(ctodev(card), "dormant descr? %p\n", descr);
894 if ((status == GELIC_NET_DESCR_RESPONSE_ERROR) ||
895 (status == GELIC_NET_DESCR_PROTECTION_ERROR) ||
896 (status == GELIC_NET_DESCR_FORCE_END)) {
897 dev_info(ctodev(card), "dropping RX descriptor with state %x\n",
899 card->netdev_stats.rx_dropped++;
903 if ((status != GELIC_NET_DESCR_COMPLETE) &&
904 (status != GELIC_NET_DESCR_FRAME_END)) {
905 dev_dbg(ctodev(card), "RX descriptor with state %x\n",
910 /* ok, we've got a packet in descr */
911 gelic_net_pass_skb_up(descr, card); /* 1: skb_up sccess */
914 descr->next_descr_addr = 0; /* unlink the descr */
916 /* change the descriptor state: */
917 gelic_net_set_descr_status(descr, GELIC_NET_DESCR_NOT_IN_USE);
920 * FIXME: this can fail, but for now, just leave this
921 * descriptor without skb
923 gelic_net_prepare_rx_descr(card, descr);
925 chain->tail = descr->next;
926 descr->prev->next_descr_addr = descr->bus_addr;
928 if (dmac_chain_ended) {
929 gelic_net_enable_rxdmac(card);
930 dev_dbg(ctodev(card), "reenable rx dma\n");
937 * gelic_net_poll - NAPI poll function called by the stack to return packets
938 * @netdev: interface device structure
939 * @budget: number of packets we can pass to the stack at most
941 * returns 0 if no more packets available to the driver/stack. Returns 1,
942 * if the quota is exceeded, but the driver has still packets.
945 static int gelic_net_poll(struct net_device *netdev, int *budget)
947 struct gelic_net_card *card = netdev_priv(netdev);
948 int packets_to_do, packets_done = 0;
949 int no_more_packets = 0;
951 packets_to_do = min(*budget, netdev->quota);
953 while (packets_to_do) {
954 if (gelic_net_decode_one_descr(card)) {
958 /* no more packets for the stack */
963 netdev->quota -= packets_done;
964 *budget -= packets_done;
965 if (no_more_packets) {
966 netif_rx_complete(netdev);
967 gelic_net_rx_irq_on(card);
974 * gelic_net_get_stats - get interface statistics
975 * @netdev: interface device structure
977 * returns the interface statistics residing in the gelic_net_card struct
979 static struct net_device_stats *gelic_net_get_stats(struct net_device *netdev)
981 struct gelic_net_card *card = netdev_priv(netdev);
983 return &card->netdev_stats;
987 * gelic_net_change_mtu - changes the MTU of an interface
988 * @netdev: interface device structure
989 * @new_mtu: new MTU value
991 * returns 0 on success, <0 on failure
993 static int gelic_net_change_mtu(struct net_device *netdev, int new_mtu)
995 /* no need to re-alloc skbs or so -- the max mtu is about 2.3k
996 * and mtu is outbound only anyway */
997 if ((new_mtu < GELIC_NET_MIN_MTU) ||
998 (new_mtu > GELIC_NET_MAX_MTU)) {
1001 netdev->mtu = new_mtu;
1006 * gelic_net_interrupt - event handler for gelic_net
1008 static irqreturn_t gelic_net_interrupt(int irq, void *ptr)
1010 unsigned long flags;
1011 struct net_device *netdev = ptr;
1012 struct gelic_net_card *card = netdev_priv(netdev);
1015 status = card->irq_status;
1020 if (status & GELIC_NET_RXINT) {
1021 gelic_net_rx_irq_off(card);
1022 netif_rx_schedule(netdev);
1025 if (status & GELIC_NET_TXINT) {
1026 spin_lock_irqsave(&card->tx_dma_lock, flags);
1027 card->tx_dma_progress = 0;
1028 spin_unlock_irqrestore(&card->tx_dma_lock, flags);
1029 /* start pending DMA */
1030 gelic_net_xmit(NULL, netdev);
1035 #ifdef CONFIG_NET_POLL_CONTROLLER
1037 * gelic_net_poll_controller - artificial interrupt for netconsole etc.
1038 * @netdev: interface device structure
1040 * see Documentation/networking/netconsole.txt
1042 static void gelic_net_poll_controller(struct net_device *netdev)
1044 struct gelic_net_card *card = netdev_priv(netdev);
1046 gelic_net_set_irq_mask(card, 0);
1047 gelic_net_interrupt(netdev->irq, netdev);
1048 gelic_net_set_irq_mask(card, card->ghiintmask);
1050 #endif /* CONFIG_NET_POLL_CONTROLLER */
1053 * gelic_net_open_device - open device and map dma region
1054 * @card: card structure
1056 static int gelic_net_open_device(struct gelic_net_card *card)
1060 result = ps3_sb_event_receive_port_setup(card->dev, PS3_BINDING_CPU_ANY,
1061 &card->netdev->irq);
1064 dev_info(ctodev(card),
1065 "%s:%d: gelic_net_open_device failed (%d)\n",
1066 __func__, __LINE__, result);
1068 goto fail_alloc_irq;
1071 result = request_irq(card->netdev->irq, gelic_net_interrupt,
1072 IRQF_DISABLED, "gelic network", card->netdev);
1075 dev_info(ctodev(card), "%s:%d: request_irq failed (%d)\n",
1076 __func__, __LINE__, result);
1077 goto fail_request_irq;
1083 ps3_sb_event_receive_port_destroy(card->dev, card->netdev->irq);
1084 card->netdev->irq = NO_IRQ;
1091 * gelic_net_open - called upon ifonfig up
1092 * @netdev: interface device structure
1094 * returns 0 on success, <0 on failure
1096 * gelic_net_open allocates all the descriptors and memory needed for
1097 * operation, sets up multicast list and enables interrupts
1099 static int gelic_net_open(struct net_device *netdev)
1101 struct gelic_net_card *card = netdev_priv(netdev);
1103 dev_dbg(ctodev(card), " -> %s:%d\n", __func__, __LINE__);
1105 gelic_net_open_device(card);
1107 if (gelic_net_init_chain(card, &card->tx_chain,
1108 card->descr, GELIC_NET_TX_DESCRIPTORS))
1109 goto alloc_tx_failed;
1110 if (gelic_net_init_chain(card, &card->rx_chain,
1111 card->descr + GELIC_NET_TX_DESCRIPTORS,
1112 GELIC_NET_RX_DESCRIPTORS))
1113 goto alloc_rx_failed;
1116 card->tx_top = card->tx_chain.head;
1117 card->rx_top = card->rx_chain.head;
1118 dev_dbg(ctodev(card), "descr rx %p, tx %p, size %#lx, num %#x\n",
1119 card->rx_top, card->tx_top, sizeof(struct gelic_net_descr),
1120 GELIC_NET_RX_DESCRIPTORS);
1121 /* allocate rx skbs */
1122 if (gelic_net_alloc_rx_skbs(card))
1123 goto alloc_skbs_failed;
1125 card->tx_dma_progress = 0;
1126 card->ghiintmask = GELIC_NET_RXINT | GELIC_NET_TXINT;
1128 gelic_net_set_irq_mask(card, card->ghiintmask);
1129 gelic_net_enable_rxdmac(card);
1131 netif_start_queue(netdev);
1132 netif_carrier_on(netdev);
1133 netif_poll_enable(netdev);
1138 gelic_net_free_chain(card, card->rx_top);
1140 gelic_net_free_chain(card, card->tx_top);
1145 #ifdef GELIC_NET_ETHTOOL
1146 static void gelic_net_get_drvinfo (struct net_device *netdev,
1147 struct ethtool_drvinfo *info)
1149 strncpy(info->driver, DRV_NAME, sizeof(info->driver) - 1);
1150 strncpy(info->version, DRV_VERSION, sizeof(info->version) - 1);
1153 static int gelic_net_get_settings(struct net_device *netdev,
1154 struct ethtool_cmd *cmd)
1156 struct gelic_net_card *card = netdev_priv(netdev);
1161 speed = duplex = -1;
1162 status = lv1_net_control(bus_id(card), dev_id(card),
1163 GELIC_NET_GET_ETH_PORT_STATUS, GELIC_NET_PORT, 0, 0,
1168 if (v1 & GELIC_NET_FULL_DUPLEX) {
1169 duplex = DUPLEX_FULL;
1171 duplex = DUPLEX_HALF;
1174 if (v1 & GELIC_NET_SPEED_10 ) {
1176 } else if (v1 & GELIC_NET_SPEED_100) {
1178 } else if (v1 & GELIC_NET_SPEED_1000) {
1182 cmd->supported = SUPPORTED_TP | SUPPORTED_Autoneg |
1183 SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full |
1184 SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full |
1185 SUPPORTED_1000baseT_Half | SUPPORTED_1000baseT_Full;
1186 cmd->advertising = cmd->supported;
1188 cmd->duplex = duplex;
1189 cmd->autoneg = AUTONEG_ENABLE; /* always enabled */
1190 cmd->port = PORT_TP;
1195 static u32 gelic_net_get_link(struct net_device *netdev)
1197 struct gelic_net_card *card = netdev_priv(netdev);
1202 status = lv1_net_control(bus_id(card), dev_id(card),
1203 GELIC_NET_GET_ETH_PORT_STATUS, GELIC_NET_PORT, 0, 0,
1206 return 0; /* link down */
1208 if (v1 & GELIC_NET_LINK_UP)
1216 static int gelic_net_nway_reset(struct net_device *netdev)
1218 if (netif_running(netdev)) {
1219 gelic_net_stop(netdev);
1220 gelic_net_open(netdev);
1225 static u32 gelic_net_get_tx_csum(struct net_device *netdev)
1227 return (netdev->features & NETIF_F_IP_CSUM) != 0;
1230 static int gelic_net_set_tx_csum(struct net_device *netdev, u32 data)
1233 netdev->features |= NETIF_F_IP_CSUM;
1235 netdev->features &= ~NETIF_F_IP_CSUM;
1240 static u32 gelic_net_get_rx_csum(struct net_device *netdev)
1242 struct gelic_net_card *card = netdev_priv(netdev);
1244 return card->rx_csum;
1247 static int gelic_net_set_rx_csum(struct net_device *netdev, u32 data)
1249 struct gelic_net_card *card = netdev_priv(netdev);
1251 card->rx_csum = data;
1255 static struct ethtool_ops gelic_net_ethtool_ops = {
1256 .get_drvinfo = gelic_net_get_drvinfo,
1257 .get_settings = gelic_net_get_settings,
1258 .get_link = gelic_net_get_link,
1259 .nway_reset = gelic_net_nway_reset,
1260 .get_tx_csum = gelic_net_get_tx_csum,
1261 .set_tx_csum = gelic_net_set_tx_csum,
1262 .get_rx_csum = gelic_net_get_rx_csum,
1263 .set_rx_csum = gelic_net_set_rx_csum,
1268 * gelic_net_tx_timeout_task - task scheduled by the watchdog timeout
1269 * function (to be called not under interrupt status)
1270 * @work: work is context of tx timout task
1272 * called as task when tx hangs, resets interface (if interface is up)
1274 static void gelic_net_tx_timeout_task(struct work_struct *work)
1276 struct gelic_net_card *card =
1277 container_of(work, struct gelic_net_card, tx_timeout_task);
1278 struct net_device *netdev = card->netdev;
1280 dev_info(ctodev(card), "%s:Timed out. Restarting... \n", __func__);
1282 if (!(netdev->flags & IFF_UP))
1285 netif_device_detach(netdev);
1286 gelic_net_stop(netdev);
1288 gelic_net_open(netdev);
1289 netif_device_attach(netdev);
1292 atomic_dec(&card->tx_timeout_task_counter);
1296 * gelic_net_tx_timeout - called when the tx timeout watchdog kicks in.
1297 * @netdev: interface device structure
1299 * called, if tx hangs. Schedules a task that resets the interface
1301 static void gelic_net_tx_timeout(struct net_device *netdev)
1303 struct gelic_net_card *card;
1305 card = netdev_priv(netdev);
1306 atomic_inc(&card->tx_timeout_task_counter);
1307 if (netdev->flags & IFF_UP)
1308 schedule_work(&card->tx_timeout_task);
1310 atomic_dec(&card->tx_timeout_task_counter);
1314 * gelic_net_setup_netdev_ops - initialization of net_device operations
1315 * @netdev: net_device structure
1317 * fills out function pointers in the net_device structure
1319 static void gelic_net_setup_netdev_ops(struct net_device *netdev)
1321 netdev->open = &gelic_net_open;
1322 netdev->stop = &gelic_net_stop;
1323 netdev->hard_start_xmit = &gelic_net_xmit;
1324 netdev->get_stats = &gelic_net_get_stats;
1325 netdev->set_multicast_list = &gelic_net_set_multi;
1326 netdev->change_mtu = &gelic_net_change_mtu;
1328 netdev->tx_timeout = &gelic_net_tx_timeout;
1329 netdev->watchdog_timeo = GELIC_NET_WATCHDOG_TIMEOUT;
1331 netdev->poll = &gelic_net_poll;
1332 netdev->weight = GELIC_NET_NAPI_WEIGHT;
1333 #ifdef GELIC_NET_ETHTOOL
1334 netdev->ethtool_ops = &gelic_net_ethtool_ops;
1339 * gelic_net_setup_netdev - initialization of net_device
1340 * @card: card structure
1342 * Returns 0 on success or <0 on failure
1344 * gelic_net_setup_netdev initializes the net_device structure
1346 static int gelic_net_setup_netdev(struct gelic_net_card *card)
1348 struct net_device *netdev = card->netdev;
1349 struct sockaddr addr;
1354 SET_MODULE_OWNER(netdev);
1355 SET_NETDEV_DEV(netdev, &card->dev->core);
1356 spin_lock_init(&card->tx_dma_lock);
1358 card->rx_csum = GELIC_NET_RX_CSUM_DEFAULT;
1360 gelic_net_setup_netdev_ops(netdev);
1362 netdev->features = NETIF_F_IP_CSUM;
1364 status = lv1_net_control(bus_id(card), dev_id(card),
1365 GELIC_NET_GET_MAC_ADDRESS,
1367 if (status || !is_valid_ether_addr((u8 *)&v1)) {
1368 dev_info(ctodev(card),
1369 "%s:lv1_net_control GET_MAC_ADDR failed %d\n",
1374 memcpy(addr.sa_data, &v1, ETH_ALEN);
1375 memcpy(netdev->dev_addr, addr.sa_data, ETH_ALEN);
1376 dev_info(ctodev(card), "MAC addr %02x:%02x:%02x:%02x:%02x:%02x\n",
1377 netdev->dev_addr[0], netdev->dev_addr[1],
1378 netdev->dev_addr[2], netdev->dev_addr[3],
1379 netdev->dev_addr[4], netdev->dev_addr[5]);
1381 card->vlan_index = -1; /* no vlan */
1382 for (i = 0; i < GELIC_NET_VLAN_MAX; i++) {
1383 status = lv1_net_control(bus_id(card), dev_id(card),
1384 GELIC_NET_GET_VLAN_ID,
1385 i + 1, /* index; one based */
1387 if (status == GELIC_NET_VLAN_NO_ENTRY) {
1388 dev_dbg(ctodev(card),
1389 "GELIC_VLAN_ID no entry:%d, VLAN disabled\n",
1391 card->vlan_id[i] = 0;
1392 } else if (status) {
1393 dev_dbg(ctodev(card),
1394 "%s:GELIC_NET_VLAN_ID faild, status=%d\n",
1396 card->vlan_id[i] = 0;
1398 card->vlan_id[i] = (u32)v1;
1399 dev_dbg(ctodev(card), "vlan_id:%d, %lx\n", i, v1);
1402 if (card->vlan_id[GELIC_NET_VLAN_WIRED - 1])
1403 card->vlan_index = GELIC_NET_VLAN_WIRED - 1;
1405 status = register_netdev(netdev);
1407 dev_err(ctodev(card), "%s:Couldn't register net_device: %d\n",
1416 * gelic_net_alloc_card - allocates net_device and card structure
1418 * returns the card structure or NULL in case of errors
1420 * the card and net_device structures are linked to each other
1422 static struct gelic_net_card *gelic_net_alloc_card(void)
1424 struct net_device *netdev;
1425 struct gelic_net_card *card;
1428 alloc_size = sizeof (*card) +
1429 sizeof (struct gelic_net_descr) * GELIC_NET_RX_DESCRIPTORS +
1430 sizeof (struct gelic_net_descr) * GELIC_NET_TX_DESCRIPTORS;
1432 * we assume private data is allocated 32 bytes (or more) aligned
1433 * so that gelic_net_descr should be 32 bytes aligned.
1434 * Current alloc_etherdev() does do it because NETDEV_ALIGN
1436 * check this assumption here.
1438 BUILD_BUG_ON(NETDEV_ALIGN < 32);
1439 BUILD_BUG_ON(offsetof(struct gelic_net_card, irq_status) % 8);
1440 BUILD_BUG_ON(offsetof(struct gelic_net_card, descr) % 32);
1442 netdev = alloc_etherdev(alloc_size);
1446 card = netdev_priv(netdev);
1447 card->netdev = netdev;
1448 INIT_WORK(&card->tx_timeout_task, gelic_net_tx_timeout_task);
1449 init_waitqueue_head(&card->waitq);
1450 atomic_set(&card->tx_timeout_task_counter, 0);
1456 * ps3_gelic_driver_probe - add a device to the control of this driver
1458 static int ps3_gelic_driver_probe (struct ps3_system_bus_device *dev)
1460 struct gelic_net_card *card = gelic_net_alloc_card();
1464 dev_info(&dev->core, "gelic_net_alloc_card failed\n");
1466 goto fail_alloc_card;
1469 ps3_system_bus_set_driver_data(dev, card);
1472 result = ps3_open_hv_device(dev);
1475 dev_dbg(&dev->core, "ps3_open_hv_device failed\n");
1479 result = ps3_dma_region_create(dev->d_region);
1482 dev_dbg(&dev->core, "ps3_dma_region_create failed(%d)\n",
1484 BUG_ON("check region type");
1485 goto fail_dma_region;
1488 result = lv1_net_set_interrupt_status_indicator(bus_id(card),
1490 ps3_mm_phys_to_lpar(__pa(&card->irq_status)),
1495 "lv1_net_set_interrupt_status_indicator failed: %s\n",
1496 ps3_result(result));
1498 goto fail_status_indicator;
1501 result = gelic_net_setup_netdev(card);
1504 dev_dbg(&dev->core, "%s:%d: ps3_dma_region_create failed: "
1505 "(%d)\n", __func__, __LINE__, result);
1506 goto fail_setup_netdev;
1512 lv1_net_set_interrupt_status_indicator(bus_id(card),
1515 fail_status_indicator:
1516 ps3_dma_region_free(dev->d_region);
1518 ps3_close_hv_device(dev);
1520 ps3_system_bus_set_driver_data(dev, NULL);
1521 free_netdev(card->netdev);
1527 * ps3_gelic_driver_remove - remove a device from the control of this driver
1530 static int ps3_gelic_driver_remove (struct ps3_system_bus_device *dev)
1532 struct gelic_net_card *card = ps3_system_bus_get_driver_data(dev);
1534 wait_event(card->waitq,
1535 atomic_read(&card->tx_timeout_task_counter) == 0);
1537 lv1_net_set_interrupt_status_indicator(bus_id(card), dev_id(card),
1540 unregister_netdev(card->netdev);
1541 free_netdev(card->netdev);
1543 ps3_system_bus_set_driver_data(dev, NULL);
1545 ps3_dma_region_free(dev->d_region);
1547 ps3_close_hv_device(dev);
1552 static struct ps3_system_bus_driver ps3_gelic_driver = {
1553 .match_id = PS3_MATCH_ID_GELIC,
1554 .probe = ps3_gelic_driver_probe,
1555 .remove = ps3_gelic_driver_remove,
1556 .shutdown = ps3_gelic_driver_remove,
1557 .core.name = "ps3_gelic_driver",
1558 .core.owner = THIS_MODULE,
1561 static int __init ps3_gelic_driver_init (void)
1563 return firmware_has_feature(FW_FEATURE_PS3_LV1)
1564 ? ps3_system_bus_driver_register(&ps3_gelic_driver)
1568 static void __exit ps3_gelic_driver_exit (void)
1570 ps3_system_bus_driver_unregister(&ps3_gelic_driver);
1573 module_init (ps3_gelic_driver_init);
1574 module_exit (ps3_gelic_driver_exit);
1576 MODULE_ALIAS(PS3_MODULE_ALIAS_GELIC);