blob: a3932c9f3406c9d4e75967fc392d759cffb78330 [file] [log] [blame]
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001/*
2 * PS3 gelic network driver.
3 *
4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2006, 2007 Sony Corporation
6 *
7 * This file is based on: spider_net.c
8 *
9 * (C) Copyright IBM Corp. 2005
10 *
11 * Authors : Utz Bacher <utz.bacher@de.ibm.com>
12 * Jens Osterkamp <Jens.Osterkamp@de.ibm.com>
13 *
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)
17 * any later version.
18 *
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.
23 *
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.
27 */
28
29#undef DEBUG
30
31#include <linux/kernel.h>
32#include <linux/module.h>
33
34#include <linux/etherdevice.h>
35#include <linux/ethtool.h>
36#include <linux/if_vlan.h>
37
38#include <linux/in.h>
39#include <linux/ip.h>
40#include <linux/tcp.h>
41
42#include <linux/dma-mapping.h>
43#include <net/checksum.h>
44#include <asm/firmware.h>
45#include <asm/ps3.h>
46#include <asm/lv1call.h>
47
48#include "ps3_gelic_net.h"
Masakazu Mokuno09dde542008-02-07 19:58:57 +090049#include "ps3_gelic_wireless.h"
Masakazu Mokuno02c18892007-07-05 20:11:16 +090050
51#define DRV_NAME "Gelic Network Driver"
Masakazu Mokuno09dde542008-02-07 19:58:57 +090052#define DRV_VERSION "2.0"
Masakazu Mokuno02c18892007-07-05 20:11:16 +090053
54MODULE_AUTHOR("SCE Inc.");
55MODULE_DESCRIPTION("Gelic Network driver");
56MODULE_LICENSE("GPL");
57
Masakazu Mokuno589866f2008-02-07 19:58:42 +090058
59static inline void gelic_card_enable_rxdmac(struct gelic_card *card);
60static inline void gelic_card_disable_rxdmac(struct gelic_card *card);
61static inline void gelic_card_disable_txdmac(struct gelic_card *card);
62static inline void gelic_card_reset_chain(struct gelic_card *card,
63 struct gelic_descr_chain *chain,
64 struct gelic_descr *start_descr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +090065
66/* set irq_mask */
Masakazu Mokuno589866f2008-02-07 19:58:42 +090067int gelic_card_set_irq_mask(struct gelic_card *card, u64 mask)
Masakazu Mokuno02c18892007-07-05 20:11:16 +090068{
69 int status;
70
71 status = lv1_net_set_interrupt_mask(bus_id(card), dev_id(card),
72 mask, 0);
73 if (status)
74 dev_info(ctodev(card),
Masakazu Mokuno589866f2008-02-07 19:58:42 +090075 "%s failed %d\n", __func__, status);
Masakazu Mokuno02c18892007-07-05 20:11:16 +090076 return status;
77}
Masakazu Mokuno589866f2008-02-07 19:58:42 +090078
Masakazu Mokuno59e97322008-02-07 19:58:08 +090079static inline void gelic_card_rx_irq_on(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +090080{
Masakazu Mokuno589866f2008-02-07 19:58:42 +090081 card->irq_mask |= GELIC_CARD_RXINT;
82 gelic_card_set_irq_mask(card, card->irq_mask);
Masakazu Mokuno02c18892007-07-05 20:11:16 +090083}
Masakazu Mokuno59e97322008-02-07 19:58:08 +090084static inline void gelic_card_rx_irq_off(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +090085{
Masakazu Mokuno589866f2008-02-07 19:58:42 +090086 card->irq_mask &= ~GELIC_CARD_RXINT;
87 gelic_card_set_irq_mask(card, card->irq_mask);
Masakazu Mokuno02c18892007-07-05 20:11:16 +090088}
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +090089
Masakazu Mokuno589866f2008-02-07 19:58:42 +090090static void gelic_card_get_ether_port_status(struct gelic_card *card,
91 int inform)
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +090092{
93 u64 v2;
94 struct net_device *ether_netdev;
95
96 lv1_net_control(bus_id(card), dev_id(card),
97 GELIC_LV1_GET_ETH_PORT_STATUS,
98 GELIC_LV1_VLAN_TX_ETHERNET, 0, 0,
99 &card->ether_port_status, &v2);
100
101 if (inform) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900102 ether_netdev = card->netdev[GELIC_PORT_ETHERNET];
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +0900103 if (card->ether_port_status & GELIC_LV1_ETHER_LINK_UP)
104 netif_carrier_on(ether_netdev);
105 else
106 netif_carrier_off(ether_netdev);
107 }
108}
109
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900110void gelic_card_up(struct gelic_card *card)
111{
112 pr_debug("%s: called\n", __func__);
Daniel Walker2914f3e2008-05-22 00:00:03 -0700113 mutex_lock(&card->updown_lock);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900114 if (atomic_inc_return(&card->users) == 1) {
115 pr_debug("%s: real do\n", __func__);
116 /* enable irq */
117 gelic_card_set_irq_mask(card, card->irq_mask);
118 /* start rx */
119 gelic_card_enable_rxdmac(card);
120
121 napi_enable(&card->napi);
122 }
Daniel Walker2914f3e2008-05-22 00:00:03 -0700123 mutex_unlock(&card->updown_lock);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900124 pr_debug("%s: done\n", __func__);
125}
126
127void gelic_card_down(struct gelic_card *card)
128{
129 u64 mask;
130 pr_debug("%s: called\n", __func__);
Daniel Walker2914f3e2008-05-22 00:00:03 -0700131 mutex_lock(&card->updown_lock);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900132 if (atomic_dec_if_positive(&card->users) == 0) {
133 pr_debug("%s: real do\n", __func__);
134 napi_disable(&card->napi);
135 /*
136 * Disable irq. Wireless interrupts will
137 * be disabled later if any
138 */
139 mask = card->irq_mask & (GELIC_CARD_WLAN_EVENT_RECEIVED |
140 GELIC_CARD_WLAN_COMMAND_COMPLETED);
141 gelic_card_set_irq_mask(card, mask);
142 /* stop rx */
143 gelic_card_disable_rxdmac(card);
144 gelic_card_reset_chain(card, &card->rx_chain,
145 card->descr + GELIC_NET_TX_DESCRIPTORS);
146 /* stop tx */
147 gelic_card_disable_txdmac(card);
148 }
Daniel Walker2914f3e2008-05-22 00:00:03 -0700149 mutex_unlock(&card->updown_lock);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900150 pr_debug("%s: done\n", __func__);
151}
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +0900152
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900153/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900154 * gelic_descr_get_status -- returns the status of a descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900155 * @descr: descriptor to look at
156 *
157 * returns the status as in the dmac_cmd_status field of the descriptor
158 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900159static enum gelic_descr_dma_status
160gelic_descr_get_status(struct gelic_descr *descr)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900161{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900162 return be32_to_cpu(descr->dmac_cmd_status) & GELIC_DESCR_DMA_STAT_MASK;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900163}
164
165/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900166 * gelic_descr_set_status -- sets the status of a descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900167 * @descr: descriptor to change
168 * @status: status to set in the descriptor
169 *
170 * changes the status to the specified value. Doesn't change other bits
171 * in the status
172 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900173static void gelic_descr_set_status(struct gelic_descr *descr,
174 enum gelic_descr_dma_status status)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900175{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900176 descr->dmac_cmd_status = cpu_to_be32(status |
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900177 (be32_to_cpu(descr->dmac_cmd_status) &
178 ~GELIC_DESCR_DMA_STAT_MASK));
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900179 /*
180 * dma_cmd_status field is used to indicate whether the descriptor
181 * is valid or not.
182 * Usually caller of this function wants to inform that to the
183 * hardware, so we assure here the hardware sees the change.
184 */
185 wmb();
186}
187
188/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900189 * gelic_card_free_chain - free descriptor chain
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900190 * @card: card structure
191 * @descr_in: address of desc
192 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900193static void gelic_card_free_chain(struct gelic_card *card,
194 struct gelic_descr *descr_in)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900195{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900196 struct gelic_descr *descr;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900197
198 for (descr = descr_in; descr && descr->bus_addr; descr = descr->next) {
199 dma_unmap_single(ctodev(card), descr->bus_addr,
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900200 GELIC_DESCR_SIZE, DMA_BIDIRECTIONAL);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900201 descr->bus_addr = 0;
202 }
203}
204
205/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900206 * gelic_card_init_chain - links descriptor chain
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900207 * @card: card structure
208 * @chain: address of chain
209 * @start_descr: address of descriptor array
210 * @no: number of descriptors
211 *
212 * we manage a circular list that mirrors the hardware structure,
213 * except that the hardware uses bus addresses.
214 *
215 * returns 0 on success, <0 on failure
216 */
Geert Uytterhoeven48dce822009-06-10 04:38:58 +0000217static int __devinit gelic_card_init_chain(struct gelic_card *card,
218 struct gelic_descr_chain *chain,
219 struct gelic_descr *start_descr,
220 int no)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900221{
222 int i;
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900223 struct gelic_descr *descr;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900224
225 descr = start_descr;
226 memset(descr, 0, sizeof(*descr) * no);
227
228 /* set up the hardware pointers in each descriptor */
229 for (i = 0; i < no; i++, descr++) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900230 gelic_descr_set_status(descr, GELIC_DESCR_DMA_NOT_IN_USE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900231 descr->bus_addr =
232 dma_map_single(ctodev(card), descr,
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900233 GELIC_DESCR_SIZE,
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900234 DMA_BIDIRECTIONAL);
235
236 if (!descr->bus_addr)
237 goto iommu_error;
238
239 descr->next = descr + 1;
240 descr->prev = descr - 1;
241 }
242 /* make them as ring */
243 (descr - 1)->next = start_descr;
244 start_descr->prev = (descr - 1);
245
246 /* chain bus addr of hw descriptor */
247 descr = start_descr;
248 for (i = 0; i < no; i++, descr++) {
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900249 descr->next_descr_addr = cpu_to_be32(descr->next->bus_addr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900250 }
251
252 chain->head = start_descr;
253 chain->tail = start_descr;
254
255 /* do not chain last hw descriptor */
256 (descr - 1)->next_descr_addr = 0;
257
258 return 0;
259
260iommu_error:
261 for (i--, descr--; 0 <= i; i--, descr--)
262 if (descr->bus_addr)
263 dma_unmap_single(ctodev(card), descr->bus_addr,
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900264 GELIC_DESCR_SIZE,
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900265 DMA_BIDIRECTIONAL);
266 return -ENOMEM;
267}
268
269/**
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900270 * gelic_card_reset_chain - reset status of a descriptor chain
271 * @card: card structure
272 * @chain: address of chain
273 * @start_descr: address of descriptor array
274 *
275 * Reset the status of dma descriptors to ready state
276 * and re-initialize the hardware chain for later use
277 */
278static void gelic_card_reset_chain(struct gelic_card *card,
279 struct gelic_descr_chain *chain,
280 struct gelic_descr *start_descr)
281{
282 struct gelic_descr *descr;
283
284 for (descr = start_descr; start_descr != descr->next; descr++) {
285 gelic_descr_set_status(descr, GELIC_DESCR_DMA_CARDOWNED);
286 descr->next_descr_addr = cpu_to_be32(descr->next->bus_addr);
287 }
288
289 chain->head = start_descr;
290 chain->tail = (descr - 1);
291
292 (descr - 1)->next_descr_addr = 0;
293}
294/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900295 * gelic_descr_prepare_rx - reinitializes a rx descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900296 * @card: card structure
297 * @descr: descriptor to re-init
298 *
299 * return 0 on succes, <0 on failure
300 *
301 * allocates a new rx skb, iommu-maps it and attaches it to the descriptor.
302 * Activate the descriptor state-wise
303 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900304static int gelic_descr_prepare_rx(struct gelic_card *card,
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900305 struct gelic_descr *descr)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900306{
307 int offset;
308 unsigned int bufsize;
309
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900310 if (gelic_descr_get_status(descr) != GELIC_DESCR_DMA_NOT_IN_USE)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900311 dev_info(ctodev(card), "%s: ERROR status \n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900312 /* we need to round up the buffer size to a multiple of 128 */
313 bufsize = ALIGN(GELIC_NET_MAX_MTU, GELIC_NET_RXBUF_ALIGN);
314
315 /* and we need to have it 128 byte aligned, therefore we allocate a
316 * bit more */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900317 descr->skb = dev_alloc_skb(bufsize + GELIC_NET_RXBUF_ALIGN - 1);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900318 if (!descr->skb) {
319 descr->buf_addr = 0; /* tell DMAC don't touch memory */
320 dev_info(ctodev(card),
321 "%s:allocate skb failed !!\n", __func__);
322 return -ENOMEM;
323 }
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900324 descr->buf_size = cpu_to_be32(bufsize);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900325 descr->dmac_cmd_status = 0;
326 descr->result_size = 0;
327 descr->valid_size = 0;
328 descr->data_error = 0;
329
330 offset = ((unsigned long)descr->skb->data) &
331 (GELIC_NET_RXBUF_ALIGN - 1);
332 if (offset)
333 skb_reserve(descr->skb, GELIC_NET_RXBUF_ALIGN - offset);
334 /* io-mmu-map the skb */
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900335 descr->buf_addr = cpu_to_be32(dma_map_single(ctodev(card),
336 descr->skb->data,
337 GELIC_NET_MAX_MTU,
338 DMA_FROM_DEVICE));
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900339 if (!descr->buf_addr) {
340 dev_kfree_skb_any(descr->skb);
341 descr->skb = NULL;
342 dev_info(ctodev(card),
343 "%s:Could not iommu-map rx buffer\n", __func__);
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900344 gelic_descr_set_status(descr, GELIC_DESCR_DMA_NOT_IN_USE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900345 return -ENOMEM;
346 } else {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900347 gelic_descr_set_status(descr, GELIC_DESCR_DMA_CARDOWNED);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900348 return 0;
349 }
350}
351
352/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900353 * gelic_card_release_rx_chain - free all skb of rx descr
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900354 * @card: card structure
355 *
356 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900357static void gelic_card_release_rx_chain(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900358{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900359 struct gelic_descr *descr = card->rx_chain.head;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900360
361 do {
362 if (descr->skb) {
363 dma_unmap_single(ctodev(card),
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900364 be32_to_cpu(descr->buf_addr),
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900365 descr->skb->len,
366 DMA_FROM_DEVICE);
367 descr->buf_addr = 0;
368 dev_kfree_skb_any(descr->skb);
369 descr->skb = NULL;
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900370 gelic_descr_set_status(descr,
371 GELIC_DESCR_DMA_NOT_IN_USE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900372 }
373 descr = descr->next;
374 } while (descr != card->rx_chain.head);
375}
376
377/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900378 * gelic_card_fill_rx_chain - fills descriptors/skbs in the rx chains
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900379 * @card: card structure
380 *
381 * fills all descriptors in the rx chain: allocates skbs
382 * and iommu-maps them.
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900383 * returns 0 on success, < 0 on failure
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900384 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900385static int gelic_card_fill_rx_chain(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900386{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900387 struct gelic_descr *descr = card->rx_chain.head;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900388 int ret;
389
390 do {
391 if (!descr->skb) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900392 ret = gelic_descr_prepare_rx(card, descr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900393 if (ret)
394 goto rewind;
395 }
396 descr = descr->next;
397 } while (descr != card->rx_chain.head);
398
399 return 0;
400rewind:
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900401 gelic_card_release_rx_chain(card);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900402 return ret;
403}
404
405/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900406 * gelic_card_alloc_rx_skbs - allocates rx skbs in rx descriptor chains
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900407 * @card: card structure
408 *
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900409 * returns 0 on success, < 0 on failure
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900410 */
Geert Uytterhoeven48dce822009-06-10 04:38:58 +0000411static int __devinit gelic_card_alloc_rx_skbs(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900412{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900413 struct gelic_descr_chain *chain;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900414 int ret;
415 chain = &card->rx_chain;
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900416 ret = gelic_card_fill_rx_chain(card);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900417 chain->tail = card->rx_top->prev; /* point to the last */
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900418 return ret;
419}
420
421/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900422 * gelic_descr_release_tx - processes a used tx descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900423 * @card: card structure
424 * @descr: descriptor to release
425 *
426 * releases a used tx descriptor (unmapping, freeing of skb)
427 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900428static void gelic_descr_release_tx(struct gelic_card *card,
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900429 struct gelic_descr *descr)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900430{
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900431 struct sk_buff *skb = descr->skb;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900432
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900433 BUG_ON(!(be32_to_cpu(descr->data_status) & GELIC_DESCR_TX_TAIL));
434
435 dma_unmap_single(ctodev(card), be32_to_cpu(descr->buf_addr), skb->len,
436 DMA_TO_DEVICE);
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900437 dev_kfree_skb_any(skb);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900438
439 descr->buf_addr = 0;
440 descr->buf_size = 0;
441 descr->next_descr_addr = 0;
442 descr->result_size = 0;
443 descr->valid_size = 0;
444 descr->data_status = 0;
445 descr->data_error = 0;
446 descr->skb = NULL;
447
448 /* set descr status */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900449 gelic_descr_set_status(descr, GELIC_DESCR_DMA_NOT_IN_USE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900450}
451
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900452static void gelic_card_stop_queues(struct gelic_card *card)
453{
454 netif_stop_queue(card->netdev[GELIC_PORT_ETHERNET]);
455
456 if (card->netdev[GELIC_PORT_WIRELESS])
457 netif_stop_queue(card->netdev[GELIC_PORT_WIRELESS]);
458}
459static void gelic_card_wake_queues(struct gelic_card *card)
460{
461 netif_wake_queue(card->netdev[GELIC_PORT_ETHERNET]);
462
463 if (card->netdev[GELIC_PORT_WIRELESS])
464 netif_wake_queue(card->netdev[GELIC_PORT_WIRELESS]);
465}
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900466/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900467 * gelic_card_release_tx_chain - processes sent tx descriptors
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900468 * @card: adapter structure
469 * @stop: net_stop sequence
470 *
471 * releases the tx descriptors that gelic has finished with
472 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900473static void gelic_card_release_tx_chain(struct gelic_card *card, int stop)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900474{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900475 struct gelic_descr_chain *tx_chain;
476 enum gelic_descr_dma_status status;
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900477 struct net_device *netdev;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900478 int release = 0;
479
480 for (tx_chain = &card->tx_chain;
481 tx_chain->head != tx_chain->tail && tx_chain->tail;
482 tx_chain->tail = tx_chain->tail->next) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900483 status = gelic_descr_get_status(tx_chain->tail);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900484 netdev = tx_chain->tail->skb->dev;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900485 switch (status) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900486 case GELIC_DESCR_DMA_RESPONSE_ERROR:
487 case GELIC_DESCR_DMA_PROTECTION_ERROR:
488 case GELIC_DESCR_DMA_FORCE_END:
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900489 if (printk_ratelimit())
490 dev_info(ctodev(card),
491 "%s: forcing end of tx descriptor " \
492 "with status %x\n",
493 __func__, status);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900494 netdev->stats.tx_dropped++;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900495 break;
496
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900497 case GELIC_DESCR_DMA_COMPLETE:
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900498 if (tx_chain->tail->skb) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900499 netdev->stats.tx_packets++;
500 netdev->stats.tx_bytes +=
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900501 tx_chain->tail->skb->len;
502 }
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900503 break;
504
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900505 case GELIC_DESCR_DMA_CARDOWNED:
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900506 /* pending tx request */
507 default:
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900508 /* any other value (== GELIC_DESCR_DMA_NOT_IN_USE) */
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900509 if (!stop)
510 goto out;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900511 }
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900512 gelic_descr_release_tx(card, tx_chain->tail);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900513 release ++;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900514 }
515out:
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900516 if (!stop && release)
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900517 gelic_card_wake_queues(card);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900518}
519
520/**
521 * gelic_net_set_multi - sets multicast addresses and promisc flags
522 * @netdev: interface device structure
523 *
524 * gelic_net_set_multi configures multicast addresses as needed for the
525 * netdev interface. It also sets up multicast, allmulti and promisc
526 * flags appropriately
527 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900528void gelic_net_set_multi(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900529{
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900530 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900531 struct dev_mc_list *mc;
532 unsigned int i;
533 uint8_t *p;
534 u64 addr;
535 int status;
536
537 /* clear all multicast address */
538 status = lv1_net_remove_multicast_address(bus_id(card), dev_id(card),
539 0, 1);
540 if (status)
541 dev_err(ctodev(card),
542 "lv1_net_remove_multicast_address failed %d\n",
543 status);
544 /* set broadcast address */
545 status = lv1_net_add_multicast_address(bus_id(card), dev_id(card),
546 GELIC_NET_BROADCAST_ADDR, 0);
547 if (status)
548 dev_err(ctodev(card),
549 "lv1_net_add_multicast_address failed, %d\n",
550 status);
551
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900552 if ((netdev->flags & IFF_ALLMULTI) ||
553 (netdev->mc_count > GELIC_NET_MC_COUNT_MAX)) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900554 status = lv1_net_add_multicast_address(bus_id(card),
555 dev_id(card),
556 0, 1);
557 if (status)
558 dev_err(ctodev(card),
559 "lv1_net_add_multicast_address failed, %d\n",
560 status);
561 return;
562 }
563
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900564 /* set multicast addresses */
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900565 for (mc = netdev->mc_list; mc; mc = mc->next) {
566 addr = 0;
567 p = mc->dmi_addr;
568 for (i = 0; i < ETH_ALEN; i++) {
569 addr <<= 8;
570 addr |= *p++;
571 }
572 status = lv1_net_add_multicast_address(bus_id(card),
573 dev_id(card),
574 addr, 0);
575 if (status)
576 dev_err(ctodev(card),
577 "lv1_net_add_multicast_address failed, %d\n",
578 status);
579 }
580}
581
582/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900583 * gelic_card_enable_rxdmac - enables the receive DMA controller
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900584 * @card: card structure
585 *
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900586 * gelic_card_enable_rxdmac enables the DMA controller by setting RX_DMA_EN
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900587 * in the GDADMACCNTR register
588 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900589static inline void gelic_card_enable_rxdmac(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900590{
591 int status;
592
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900593#ifdef DEBUG
594 if (gelic_descr_get_status(card->rx_chain.head) !=
595 GELIC_DESCR_DMA_CARDOWNED) {
596 printk(KERN_ERR "%s: status=%x\n", __func__,
597 be32_to_cpu(card->rx_chain.head->dmac_cmd_status));
598 printk(KERN_ERR "%s: nextphy=%x\n", __func__,
599 be32_to_cpu(card->rx_chain.head->next_descr_addr));
600 printk(KERN_ERR "%s: head=%p\n", __func__,
601 card->rx_chain.head);
602 }
603#endif
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900604 status = lv1_net_start_rx_dma(bus_id(card), dev_id(card),
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900605 card->rx_chain.head->bus_addr, 0);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900606 if (status)
607 dev_info(ctodev(card),
608 "lv1_net_start_rx_dma failed, status=%d\n", status);
609}
610
611/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900612 * gelic_card_disable_rxdmac - disables the receive DMA controller
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900613 * @card: card structure
614 *
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900615 * gelic_card_disable_rxdmac terminates processing on the DMA controller by
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900616 * turing off DMA and issueing a force end
617 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900618static inline void gelic_card_disable_rxdmac(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900619{
620 int status;
621
622 /* this hvc blocks until the DMA in progress really stopped */
623 status = lv1_net_stop_rx_dma(bus_id(card), dev_id(card), 0);
624 if (status)
625 dev_err(ctodev(card),
626 "lv1_net_stop_rx_dma faild, %d\n", status);
627}
628
629/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900630 * gelic_card_disable_txdmac - disables the transmit DMA controller
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900631 * @card: card structure
632 *
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900633 * gelic_card_disable_txdmac terminates processing on the DMA controller by
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900634 * turing off DMA and issueing a force end
635 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900636static inline void gelic_card_disable_txdmac(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900637{
638 int status;
639
640 /* this hvc blocks until the DMA in progress really stopped */
641 status = lv1_net_stop_tx_dma(bus_id(card), dev_id(card), 0);
642 if (status)
643 dev_err(ctodev(card),
644 "lv1_net_stop_tx_dma faild, status=%d\n", status);
645}
646
647/**
648 * gelic_net_stop - called upon ifconfig down
649 * @netdev: interface device structure
650 *
651 * always returns 0
652 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900653int gelic_net_stop(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900654{
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900655 struct gelic_card *card;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900656
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900657 pr_debug("%s: start\n", __func__);
658
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900659 netif_stop_queue(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900660 netif_carrier_off(netdev);
661
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900662 card = netdev_card(netdev);
663 gelic_card_down(card);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900664
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900665 pr_debug("%s: done\n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900666 return 0;
667}
668
669/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900670 * gelic_card_get_next_tx_descr - returns the next available tx descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900671 * @card: device structure to get descriptor from
672 *
673 * returns the address of the next descriptor, or NULL if not available.
674 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900675static struct gelic_descr *
676gelic_card_get_next_tx_descr(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900677{
678 if (!card->tx_chain.head)
679 return NULL;
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900680 /* see if the next descriptor is free */
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900681 if (card->tx_chain.tail != card->tx_chain.head->next &&
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900682 gelic_descr_get_status(card->tx_chain.head) ==
683 GELIC_DESCR_DMA_NOT_IN_USE)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900684 return card->tx_chain.head;
685 else
686 return NULL;
687
688}
689
690/**
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900691 * gelic_net_set_txdescr_cmdstat - sets the tx descriptor command field
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900692 * @descr: descriptor structure to fill out
693 * @skb: packet to consider
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900694 *
695 * fills out the command and status field of the descriptor structure,
696 * depending on hardware checksum settings. This function assumes a wmb()
697 * has executed before.
698 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900699static void gelic_descr_set_tx_cmdstat(struct gelic_descr *descr,
700 struct sk_buff *skb)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900701{
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900702 if (skb->ip_summed != CHECKSUM_PARTIAL)
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900703 descr->dmac_cmd_status =
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900704 cpu_to_be32(GELIC_DESCR_DMA_CMD_NO_CHKSUM |
705 GELIC_DESCR_TX_DMA_FRAME_TAIL);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900706 else {
707 /* is packet ip?
708 * if yes: tcp? udp? */
709 if (skb->protocol == htons(ETH_P_IP)) {
710 if (ip_hdr(skb)->protocol == IPPROTO_TCP)
711 descr->dmac_cmd_status =
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900712 cpu_to_be32(GELIC_DESCR_DMA_CMD_TCP_CHKSUM |
713 GELIC_DESCR_TX_DMA_FRAME_TAIL);
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900714
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900715 else if (ip_hdr(skb)->protocol == IPPROTO_UDP)
716 descr->dmac_cmd_status =
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900717 cpu_to_be32(GELIC_DESCR_DMA_CMD_UDP_CHKSUM |
718 GELIC_DESCR_TX_DMA_FRAME_TAIL);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900719 else /*
720 * the stack should checksum non-tcp and non-udp
721 * packets on his own: NETIF_F_IP_CSUM
722 */
723 descr->dmac_cmd_status =
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900724 cpu_to_be32(GELIC_DESCR_DMA_CMD_NO_CHKSUM |
725 GELIC_DESCR_TX_DMA_FRAME_TAIL);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900726 }
727 }
728}
729
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900730static inline struct sk_buff *gelic_put_vlan_tag(struct sk_buff *skb,
731 unsigned short tag)
732{
733 struct vlan_ethhdr *veth;
734 static unsigned int c;
735
736 if (skb_headroom(skb) < VLAN_HLEN) {
737 struct sk_buff *sk_tmp = skb;
738 pr_debug("%s: hd=%d c=%ud\n", __func__, skb_headroom(skb), c);
739 skb = skb_realloc_headroom(sk_tmp, VLAN_HLEN);
740 if (!skb)
741 return NULL;
742 dev_kfree_skb_any(sk_tmp);
743 }
744 veth = (struct vlan_ethhdr *)skb_push(skb, VLAN_HLEN);
745
746 /* Move the mac addresses to the top of buffer */
747 memmove(skb->data, skb->data + VLAN_HLEN, 2 * ETH_ALEN);
748
Harvey Harrison09640e62009-02-01 00:45:17 -0800749 veth->h_vlan_proto = cpu_to_be16(ETH_P_8021Q);
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900750 veth->h_vlan_TCI = htons(tag);
751
752 return skb;
753}
754
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900755/**
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900756 * gelic_descr_prepare_tx - setup a descriptor for sending packets
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900757 * @card: card structure
758 * @descr: descriptor structure
759 * @skb: packet to use
760 *
761 * returns 0 on success, <0 on failure.
762 *
763 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900764static int gelic_descr_prepare_tx(struct gelic_card *card,
765 struct gelic_descr *descr,
766 struct sk_buff *skb)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900767{
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900768 dma_addr_t buf;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900769
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900770 if (card->vlan_required) {
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900771 struct sk_buff *skb_tmp;
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900772 enum gelic_port_type type;
773
774 type = netdev_port(skb->dev)->type;
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900775 skb_tmp = gelic_put_vlan_tag(skb,
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900776 card->vlan[type].tx);
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900777 if (!skb_tmp)
778 return -ENOMEM;
779 skb = skb_tmp;
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900780 }
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900781
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900782 buf = dma_map_single(ctodev(card), skb->data, skb->len, DMA_TO_DEVICE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900783
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900784 if (!buf) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900785 dev_err(ctodev(card),
786 "dma map 2 failed (%p, %i). Dropping packet\n",
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900787 skb->data, skb->len);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900788 return -ENOMEM;
789 }
790
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900791 descr->buf_addr = cpu_to_be32(buf);
792 descr->buf_size = cpu_to_be32(skb->len);
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900793 descr->skb = skb;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900794 descr->data_status = 0;
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900795 descr->next_descr_addr = 0; /* terminate hw descr */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900796 gelic_descr_set_tx_cmdstat(descr, skb);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900797
798 /* bump free descriptor pointer */
Masakazu Mokuno173261e2007-08-31 22:22:32 +0900799 card->tx_chain.head = descr->next;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900800 return 0;
801}
802
803/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900804 * gelic_card_kick_txdma - enables TX DMA processing
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900805 * @card: card structure
806 * @descr: descriptor address to enable TX processing at
807 *
808 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900809static int gelic_card_kick_txdma(struct gelic_card *card,
810 struct gelic_descr *descr)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900811{
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900812 int status = 0;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900813
814 if (card->tx_dma_progress)
815 return 0;
816
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900817 if (gelic_descr_get_status(descr) == GELIC_DESCR_DMA_CARDOWNED) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900818 card->tx_dma_progress = 1;
Masakazu Mokunodc029ad2007-08-31 22:25:09 +0900819 status = lv1_net_start_tx_dma(bus_id(card), dev_id(card),
820 descr->bus_addr, 0);
821 if (status)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900822 dev_info(ctodev(card), "lv1_net_start_txdma failed," \
Masakazu Mokunodc029ad2007-08-31 22:25:09 +0900823 "status=%d\n", status);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900824 }
825 return status;
826}
827
828/**
829 * gelic_net_xmit - transmits a frame over the device
830 * @skb: packet to send out
831 * @netdev: interface device structure
832 *
833 * returns 0 on success, <0 on failure
834 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900835int gelic_net_xmit(struct sk_buff *skb, struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900836{
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900837 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900838 struct gelic_descr *descr;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900839 int result;
840 unsigned long flags;
841
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900842 spin_lock_irqsave(&card->tx_lock, flags);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900843
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900844 gelic_card_release_tx_chain(card, 0);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900845
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900846 descr = gelic_card_get_next_tx_descr(card);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900847 if (!descr) {
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900848 /*
849 * no more descriptors free
850 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900851 gelic_card_stop_queues(card);
852 spin_unlock_irqrestore(&card->tx_lock, flags);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900853 return NETDEV_TX_BUSY;
854 }
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900855
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900856 result = gelic_descr_prepare_tx(card, descr, skb);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900857 if (result) {
858 /*
859 * DMA map failed. As chanses are that failure
860 * would continue, just release skb and return
861 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900862 netdev->stats.tx_dropped++;
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900863 dev_kfree_skb_any(skb);
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900864 spin_unlock_irqrestore(&card->tx_lock, flags);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900865 return NETDEV_TX_OK;
866 }
867 /*
868 * link this prepared descriptor to previous one
869 * to achieve high performance
870 */
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900871 descr->prev->next_descr_addr = cpu_to_be32(descr->bus_addr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900872 /*
873 * as hardware descriptor is modified in the above lines,
874 * ensure that the hardware sees it
875 */
876 wmb();
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900877 if (gelic_card_kick_txdma(card, descr)) {
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900878 /*
879 * kick failed.
880 * release descriptors which were just prepared
881 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900882 netdev->stats.tx_dropped++;
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900883 gelic_descr_release_tx(card, descr);
884 gelic_descr_release_tx(card, descr->next);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +0900885 card->tx_chain.tail = descr->next->next;
886 dev_info(ctodev(card), "%s: kick failure\n", __func__);
887 } else {
888 /* OK, DMA started/reserved */
889 netdev->trans_start = jiffies;
890 }
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900891
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900892 spin_unlock_irqrestore(&card->tx_lock, flags);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900893 return NETDEV_TX_OK;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900894}
895
896/**
897 * gelic_net_pass_skb_up - takes an skb from a descriptor and passes it on
898 * @descr: descriptor to process
899 * @card: card structure
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900900 * @netdev: net_device structure to be passed packet
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900901 *
902 * iommu-unmaps the skb, fills out skb structure and passes the data to the
903 * stack. The descriptor state is not changed.
904 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900905static void gelic_net_pass_skb_up(struct gelic_descr *descr,
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900906 struct gelic_card *card,
907 struct net_device *netdev)
908
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900909{
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900910 struct sk_buff *skb = descr->skb;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900911 u32 data_status, data_error;
912
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900913 data_status = be32_to_cpu(descr->data_status);
914 data_error = be32_to_cpu(descr->data_error);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900915 /* unmap skb buffer */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900916 dma_unmap_single(ctodev(card), be32_to_cpu(descr->buf_addr),
917 GELIC_NET_MAX_MTU,
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900918 DMA_FROM_DEVICE);
919
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900920 skb_put(skb, be32_to_cpu(descr->valid_size)?
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900921 be32_to_cpu(descr->valid_size) :
922 be32_to_cpu(descr->result_size));
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900923 if (!descr->valid_size)
924 dev_info(ctodev(card), "buffer full %x %x %x\n",
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900925 be32_to_cpu(descr->result_size),
926 be32_to_cpu(descr->buf_size),
927 be32_to_cpu(descr->dmac_cmd_status));
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900928
929 descr->skb = NULL;
930 /*
931 * the card put 2 bytes vlan tag in front
932 * of the ethernet frame
933 */
934 skb_pull(skb, 2);
935 skb->protocol = eth_type_trans(skb, netdev);
936
937 /* checksum offload */
938 if (card->rx_csum) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900939 if ((data_status & GELIC_DESCR_DATA_STATUS_CHK_MASK) &&
940 (!(data_error & GELIC_DESCR_DATA_ERROR_CHK_MASK)))
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900941 skb->ip_summed = CHECKSUM_UNNECESSARY;
942 else
943 skb->ip_summed = CHECKSUM_NONE;
944 } else
945 skb->ip_summed = CHECKSUM_NONE;
946
947 /* update netdevice statistics */
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900948 netdev->stats.rx_packets++;
949 netdev->stats.rx_bytes += skb->len;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900950
951 /* pass skb up to stack */
952 netif_receive_skb(skb);
953}
954
955/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900956 * gelic_card_decode_one_descr - processes an rx descriptor
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900957 * @card: card structure
958 *
959 * returns 1 if a packet has been sent to the stack, otherwise 0
960 *
961 * processes an rx descriptor by iommu-unmapping the data buffer and passing
962 * the packet up to the stack
963 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900964static int gelic_card_decode_one_descr(struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900965{
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900966 enum gelic_descr_dma_status status;
967 struct gelic_descr_chain *chain = &card->rx_chain;
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900968 struct gelic_descr *descr = chain->head;
969 struct net_device *netdev = NULL;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900970 int dmac_chain_ended;
971
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900972 status = gelic_descr_get_status(descr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900973 /* is this descriptor terminated with next_descr == NULL? */
974 dmac_chain_ended =
Masakazu Mokuno100e1d82008-02-07 19:57:54 +0900975 be32_to_cpu(descr->dmac_cmd_status) &
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900976 GELIC_DESCR_RX_DMA_CHAIN_END;
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900977
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900978 if (status == GELIC_DESCR_DMA_CARDOWNED)
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900979 return 0;
980
Masakazu Mokuno59e97322008-02-07 19:58:08 +0900981 if (status == GELIC_DESCR_DMA_NOT_IN_USE) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +0900982 dev_dbg(ctodev(card), "dormant descr? %p\n", descr);
983 return 0;
984 }
985
Masakazu Mokuno589866f2008-02-07 19:58:42 +0900986 /* netdevice select */
987 if (card->vlan_required) {
988 unsigned int i;
989 u16 vid;
990 vid = *(u16 *)(descr->skb->data) & VLAN_VID_MASK;
991 for (i = 0; i < GELIC_PORT_MAX; i++) {
992 if (card->vlan[i].rx == vid) {
993 netdev = card->netdev[i];
994 break;
995 }
996 };
997 if (GELIC_PORT_MAX <= i) {
998 pr_info("%s: unknown packet vid=%x\n", __func__, vid);
999 goto refill;
1000 }
1001 } else
1002 netdev = card->netdev[GELIC_PORT_ETHERNET];
1003
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001004 if ((status == GELIC_DESCR_DMA_RESPONSE_ERROR) ||
1005 (status == GELIC_DESCR_DMA_PROTECTION_ERROR) ||
1006 (status == GELIC_DESCR_DMA_FORCE_END)) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001007 dev_info(ctodev(card), "dropping RX descriptor with state %x\n",
1008 status);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001009 netdev->stats.rx_dropped++;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001010 goto refill;
1011 }
1012
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001013 if (status == GELIC_DESCR_DMA_BUFFER_FULL) {
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001014 /*
1015 * Buffer full would occur if and only if
1016 * the frame length was longer than the size of this
1017 * descriptor's buffer. If the frame length was equal
1018 * to or shorter than buffer'size, FRAME_END condition
1019 * would occur.
1020 * Anyway this frame was longer than the MTU,
1021 * just drop it.
1022 */
1023 dev_info(ctodev(card), "overlength frame\n");
1024 goto refill;
1025 }
1026 /*
1027 * descriptoers any other than FRAME_END here should
1028 * be treated as error.
1029 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001030 if (status != GELIC_DESCR_DMA_FRAME_END) {
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001031 dev_dbg(ctodev(card), "RX descriptor with state %x\n",
1032 status);
1033 goto refill;
1034 }
1035
1036 /* ok, we've got a packet in descr */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001037 gelic_net_pass_skb_up(descr, card, netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001038refill:
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001039 /*
1040 * So that always DMAC can see the end
1041 * of the descriptor chain to avoid
1042 * from unwanted DMAC overrun.
1043 */
1044 descr->next_descr_addr = 0;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001045
1046 /* change the descriptor state: */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001047 gelic_descr_set_status(descr, GELIC_DESCR_DMA_NOT_IN_USE);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001048
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001049 /*
1050 * this call can fail, but for now, just leave this
1051 * decriptor without skb
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001052 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001053 gelic_descr_prepare_rx(card, descr);
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001054
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001055 chain->tail = descr;
1056 chain->head = descr->next;
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001057
1058 /*
1059 * Set this descriptor the end of the chain.
1060 */
Masakazu Mokuno100e1d82008-02-07 19:57:54 +09001061 descr->prev->next_descr_addr = cpu_to_be32(descr->bus_addr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001062
Masakazu Mokunofe6d3a42007-07-20 17:39:25 +09001063 /*
1064 * If dmac chain was met, DMAC stopped.
1065 * thus re-enable it
1066 */
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001067 if (dmac_chain_ended) {
Masakazu Mokuno583aae12007-07-20 17:35:54 +09001068 card->rx_dma_restart_required = 1;
1069 dev_dbg(ctodev(card), "reenable rx dma scheduled\n");
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001070 }
1071
1072 return 1;
1073}
1074
1075/**
1076 * gelic_net_poll - NAPI poll function called by the stack to return packets
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001077 * @napi: napi structure
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001078 * @budget: number of packets we can pass to the stack at most
1079 *
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001080 * returns the number of the processed packets
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001081 *
1082 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001083static int gelic_net_poll(struct napi_struct *napi, int budget)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001084{
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001085 struct gelic_card *card = container_of(napi, struct gelic_card, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001086 int packets_done = 0;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001087
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001088 while (packets_done < budget) {
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001089 if (!gelic_card_decode_one_descr(card))
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001090 break;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001091
1092 packets_done++;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001093 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001094
1095 if (packets_done < budget) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001096 napi_complete(napi);
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001097 gelic_card_rx_irq_on(card);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001098 }
1099 return packets_done;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001100}
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001101/**
1102 * gelic_net_change_mtu - changes the MTU of an interface
1103 * @netdev: interface device structure
1104 * @new_mtu: new MTU value
1105 *
1106 * returns 0 on success, <0 on failure
1107 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001108int gelic_net_change_mtu(struct net_device *netdev, int new_mtu)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001109{
1110 /* no need to re-alloc skbs or so -- the max mtu is about 2.3k
1111 * and mtu is outbound only anyway */
1112 if ((new_mtu < GELIC_NET_MIN_MTU) ||
1113 (new_mtu > GELIC_NET_MAX_MTU)) {
1114 return -EINVAL;
1115 }
1116 netdev->mtu = new_mtu;
1117 return 0;
1118}
1119
1120/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001121 * gelic_card_interrupt - event handler for gelic_net
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001122 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001123static irqreturn_t gelic_card_interrupt(int irq, void *ptr)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001124{
1125 unsigned long flags;
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001126 struct gelic_card *card = ptr;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001127 u64 status;
1128
1129 status = card->irq_status;
1130
1131 if (!status)
1132 return IRQ_NONE;
1133
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001134 status &= card->irq_mask;
1135
Masakazu Mokuno583aae12007-07-20 17:35:54 +09001136 if (card->rx_dma_restart_required) {
1137 card->rx_dma_restart_required = 0;
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001138 gelic_card_enable_rxdmac(card);
Masakazu Mokuno583aae12007-07-20 17:35:54 +09001139 }
1140
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001141 if (status & GELIC_CARD_RXINT) {
1142 gelic_card_rx_irq_off(card);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001143 napi_schedule(&card->napi);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001144 }
1145
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001146 if (status & GELIC_CARD_TXINT) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001147 spin_lock_irqsave(&card->tx_lock, flags);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001148 card->tx_dma_progress = 0;
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001149 gelic_card_release_tx_chain(card, 0);
Masakazu Mokuno48544cc262007-07-20 17:24:56 +09001150 /* kick outstanding tx descriptor if any */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001151 gelic_card_kick_txdma(card, card->tx_chain.tail);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001152 spin_unlock_irqrestore(&card->tx_lock, flags);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001153 }
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +09001154
1155 /* ether port status changed */
1156 if (status & GELIC_CARD_PORT_STATUS_CHANGED)
1157 gelic_card_get_ether_port_status(card, 1);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001158
Masakazu Mokuno09dde542008-02-07 19:58:57 +09001159#ifdef CONFIG_GELIC_WIRELESS
1160 if (status & (GELIC_CARD_WLAN_EVENT_RECEIVED |
1161 GELIC_CARD_WLAN_COMMAND_COMPLETED))
1162 gelic_wl_interrupt(card->netdev[GELIC_PORT_WIRELESS], status);
1163#endif
1164
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001165 return IRQ_HANDLED;
1166}
1167
1168#ifdef CONFIG_NET_POLL_CONTROLLER
1169/**
1170 * gelic_net_poll_controller - artificial interrupt for netconsole etc.
1171 * @netdev: interface device structure
1172 *
1173 * see Documentation/networking/netconsole.txt
1174 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001175void gelic_net_poll_controller(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001176{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001177 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001178
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001179 gelic_card_set_irq_mask(card, 0);
1180 gelic_card_interrupt(netdev->irq, netdev);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001181 gelic_card_set_irq_mask(card, card->irq_mask);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001182}
1183#endif /* CONFIG_NET_POLL_CONTROLLER */
1184
1185/**
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001186 * gelic_net_open - called upon ifonfig up
1187 * @netdev: interface device structure
1188 *
1189 * returns 0 on success, <0 on failure
1190 *
1191 * gelic_net_open allocates all the descriptors and memory needed for
1192 * operation, sets up multicast list and enables interrupts
1193 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001194int gelic_net_open(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001195{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001196 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001197
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001198 dev_dbg(ctodev(card), " -> %s %p\n", __func__, netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001199
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001200 gelic_card_up(card);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001201
1202 netif_start_queue(netdev);
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +09001203 gelic_card_get_ether_port_status(card, 1);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001204
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001205 dev_dbg(ctodev(card), " <- %s\n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001206 return 0;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001207}
1208
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001209void gelic_net_get_drvinfo(struct net_device *netdev,
1210 struct ethtool_drvinfo *info)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001211{
1212 strncpy(info->driver, DRV_NAME, sizeof(info->driver) - 1);
1213 strncpy(info->version, DRV_VERSION, sizeof(info->version) - 1);
1214}
1215
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001216static int gelic_ether_get_settings(struct net_device *netdev,
1217 struct ethtool_cmd *cmd)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001218{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001219 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001220
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +09001221 gelic_card_get_ether_port_status(card, 0);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001222
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +09001223 if (card->ether_port_status & GELIC_LV1_ETHER_FULL_DUPLEX)
1224 cmd->duplex = DUPLEX_FULL;
1225 else
1226 cmd->duplex = DUPLEX_HALF;
1227
1228 switch (card->ether_port_status & GELIC_LV1_ETHER_SPEED_MASK) {
1229 case GELIC_LV1_ETHER_SPEED_10:
1230 cmd->speed = SPEED_10;
1231 break;
1232 case GELIC_LV1_ETHER_SPEED_100:
1233 cmd->speed = SPEED_100;
1234 break;
1235 case GELIC_LV1_ETHER_SPEED_1000:
1236 cmd->speed = SPEED_1000;
1237 break;
1238 default:
1239 pr_info("%s: speed unknown\n", __func__);
1240 cmd->speed = SPEED_10;
1241 break;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001242 }
Masakazu Mokuno01fed4c2008-02-07 19:58:32 +09001243
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001244 cmd->supported = SUPPORTED_TP | SUPPORTED_Autoneg |
1245 SUPPORTED_10baseT_Half | SUPPORTED_10baseT_Full |
1246 SUPPORTED_100baseT_Half | SUPPORTED_100baseT_Full |
1247 SUPPORTED_1000baseT_Half | SUPPORTED_1000baseT_Full;
1248 cmd->advertising = cmd->supported;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001249 cmd->autoneg = AUTONEG_ENABLE; /* always enabled */
1250 cmd->port = PORT_TP;
1251
1252 return 0;
1253}
1254
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001255u32 gelic_net_get_rx_csum(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001256{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001257 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001258
1259 return card->rx_csum;
1260}
1261
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001262int gelic_net_set_rx_csum(struct net_device *netdev, u32 data)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001263{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001264 struct gelic_card *card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001265
1266 card->rx_csum = data;
1267 return 0;
1268}
1269
Masakazu Mokuno3faac212008-03-27 11:39:31 +11001270static void gelic_net_get_wol(struct net_device *netdev,
1271 struct ethtool_wolinfo *wol)
1272{
1273 if (0 <= ps3_compare_firmware_version(2, 2, 0))
1274 wol->supported = WAKE_MAGIC;
1275 else
1276 wol->supported = 0;
1277
1278 wol->wolopts = ps3_sys_manager_get_wol() ? wol->supported : 0;
1279 memset(&wol->sopass, 0, sizeof(wol->sopass));
1280}
1281static int gelic_net_set_wol(struct net_device *netdev,
1282 struct ethtool_wolinfo *wol)
1283{
1284 int status;
1285 struct gelic_card *card;
1286 u64 v1, v2;
1287
1288 if (ps3_compare_firmware_version(2, 2, 0) < 0 ||
1289 !capable(CAP_NET_ADMIN))
1290 return -EPERM;
1291
1292 if (wol->wolopts & ~WAKE_MAGIC)
1293 return -EINVAL;
1294
1295 card = netdev_card(netdev);
1296 if (wol->wolopts & WAKE_MAGIC) {
1297 status = lv1_net_control(bus_id(card), dev_id(card),
1298 GELIC_LV1_SET_WOL,
1299 GELIC_LV1_WOL_MAGIC_PACKET,
1300 0, GELIC_LV1_WOL_MP_ENABLE,
1301 &v1, &v2);
1302 if (status) {
1303 pr_info("%s: enabling WOL failed %d\n", __func__,
1304 status);
1305 status = -EIO;
1306 goto done;
1307 }
1308 status = lv1_net_control(bus_id(card), dev_id(card),
1309 GELIC_LV1_SET_WOL,
1310 GELIC_LV1_WOL_ADD_MATCH_ADDR,
1311 0, GELIC_LV1_WOL_MATCH_ALL,
1312 &v1, &v2);
1313 if (!status)
1314 ps3_sys_manager_set_wol(1);
1315 else {
1316 pr_info("%s: enabling WOL filter failed %d\n",
1317 __func__, status);
1318 status = -EIO;
1319 }
1320 } else {
1321 status = lv1_net_control(bus_id(card), dev_id(card),
1322 GELIC_LV1_SET_WOL,
1323 GELIC_LV1_WOL_MAGIC_PACKET,
1324 0, GELIC_LV1_WOL_MP_DISABLE,
1325 &v1, &v2);
1326 if (status) {
1327 pr_info("%s: disabling WOL failed %d\n", __func__,
1328 status);
1329 status = -EIO;
1330 goto done;
1331 }
1332 status = lv1_net_control(bus_id(card), dev_id(card),
1333 GELIC_LV1_SET_WOL,
1334 GELIC_LV1_WOL_DELETE_MATCH_ADDR,
1335 0, GELIC_LV1_WOL_MATCH_ALL,
1336 &v1, &v2);
1337 if (!status)
1338 ps3_sys_manager_set_wol(0);
1339 else {
1340 pr_info("%s: removing WOL filter failed %d\n",
1341 __func__, status);
1342 status = -EIO;
1343 }
1344 }
1345done:
1346 return status;
1347}
1348
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001349static struct ethtool_ops gelic_ether_ethtool_ops = {
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001350 .get_drvinfo = gelic_net_get_drvinfo,
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001351 .get_settings = gelic_ether_get_settings,
Masakazu Mokuno7bc56b92008-02-07 19:58:20 +09001352 .get_link = ethtool_op_get_link,
Masakazu Mokuno7bc56b92008-02-07 19:58:20 +09001353 .get_tx_csum = ethtool_op_get_tx_csum,
1354 .set_tx_csum = ethtool_op_set_tx_csum,
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001355 .get_rx_csum = gelic_net_get_rx_csum,
1356 .set_rx_csum = gelic_net_set_rx_csum,
Masakazu Mokuno3faac212008-03-27 11:39:31 +11001357 .get_wol = gelic_net_get_wol,
1358 .set_wol = gelic_net_set_wol,
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001359};
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001360
1361/**
1362 * gelic_net_tx_timeout_task - task scheduled by the watchdog timeout
1363 * function (to be called not under interrupt status)
1364 * @work: work is context of tx timout task
1365 *
1366 * called as task when tx hangs, resets interface (if interface is up)
1367 */
1368static void gelic_net_tx_timeout_task(struct work_struct *work)
1369{
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001370 struct gelic_card *card =
1371 container_of(work, struct gelic_card, tx_timeout_task);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001372 struct net_device *netdev = card->netdev[GELIC_PORT_ETHERNET];
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001373
1374 dev_info(ctodev(card), "%s:Timed out. Restarting... \n", __func__);
1375
1376 if (!(netdev->flags & IFF_UP))
1377 goto out;
1378
1379 netif_device_detach(netdev);
1380 gelic_net_stop(netdev);
1381
1382 gelic_net_open(netdev);
1383 netif_device_attach(netdev);
1384
1385out:
1386 atomic_dec(&card->tx_timeout_task_counter);
1387}
1388
1389/**
1390 * gelic_net_tx_timeout - called when the tx timeout watchdog kicks in.
1391 * @netdev: interface device structure
1392 *
1393 * called, if tx hangs. Schedules a task that resets the interface
1394 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001395void gelic_net_tx_timeout(struct net_device *netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001396{
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001397 struct gelic_card *card;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001398
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001399 card = netdev_card(netdev);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001400 atomic_inc(&card->tx_timeout_task_counter);
1401 if (netdev->flags & IFF_UP)
1402 schedule_work(&card->tx_timeout_task);
1403 else
1404 atomic_dec(&card->tx_timeout_task_counter);
1405}
1406
Masakazu Mokuno5384e832009-01-15 22:47:29 +00001407static const struct net_device_ops gelic_netdevice_ops = {
1408 .ndo_open = gelic_net_open,
1409 .ndo_stop = gelic_net_stop,
1410 .ndo_start_xmit = gelic_net_xmit,
1411 .ndo_set_multicast_list = gelic_net_set_multi,
1412 .ndo_change_mtu = gelic_net_change_mtu,
1413 .ndo_tx_timeout = gelic_net_tx_timeout,
Ben Hutchings240c1022009-07-09 17:54:35 +00001414 .ndo_set_mac_address = eth_mac_addr,
Masakazu Mokuno5384e832009-01-15 22:47:29 +00001415 .ndo_validate_addr = eth_validate_addr,
1416#ifdef CONFIG_NET_POLL_CONTROLLER
1417 .ndo_poll_controller = gelic_net_poll_controller,
1418#endif
1419};
1420
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001421/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001422 * gelic_ether_setup_netdev_ops - initialization of net_device operations
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001423 * @netdev: net_device structure
1424 *
1425 * fills out function pointers in the net_device structure
1426 */
Geert Uytterhoeven48dce822009-06-10 04:38:58 +00001427static void __devinit gelic_ether_setup_netdev_ops(struct net_device *netdev,
1428 struct napi_struct *napi)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001429{
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001430 netdev->watchdog_timeo = GELIC_NET_WATCHDOG_TIMEOUT;
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001431 /* NAPI */
1432 netif_napi_add(netdev, napi,
1433 gelic_net_poll, GELIC_NET_NAPI_WEIGHT);
1434 netdev->ethtool_ops = &gelic_ether_ethtool_ops;
Masakazu Mokuno5384e832009-01-15 22:47:29 +00001435 netdev->netdev_ops = &gelic_netdevice_ops;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001436}
1437
1438/**
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001439 * gelic_ether_setup_netdev - initialization of net_device
1440 * @netdev: net_device structure
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001441 * @card: card structure
1442 *
1443 * Returns 0 on success or <0 on failure
1444 *
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001445 * gelic_ether_setup_netdev initializes the net_device structure
1446 * and register it.
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001447 **/
Geert Uytterhoeven48dce822009-06-10 04:38:58 +00001448int __devinit gelic_net_setup_netdev(struct net_device *netdev,
1449 struct gelic_card *card)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001450{
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001451 int status;
1452 u64 v1, v2;
1453
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001454 netdev->features = NETIF_F_IP_CSUM;
1455
1456 status = lv1_net_control(bus_id(card), dev_id(card),
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001457 GELIC_LV1_GET_MAC_ADDRESS,
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001458 0, 0, 0, &v1, &v2);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001459 v1 <<= 16;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001460 if (status || !is_valid_ether_addr((u8 *)&v1)) {
1461 dev_info(ctodev(card),
1462 "%s:lv1_net_control GET_MAC_ADDR failed %d\n",
1463 __func__, status);
1464 return -EINVAL;
1465 }
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001466 memcpy(netdev->dev_addr, &v1, ETH_ALEN);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001467
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001468 if (card->vlan_required) {
Masakazu Mokuno173261e2007-08-31 22:22:32 +09001469 netdev->hard_header_len += VLAN_HLEN;
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001470 /*
1471 * As vlan is internally used,
1472 * we can not receive vlan packets
1473 */
1474 netdev->features |= NETIF_F_VLAN_CHALLENGED;
Masakazu Mokuno173261e2007-08-31 22:22:32 +09001475 }
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001476
1477 status = register_netdev(netdev);
1478 if (status) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001479 dev_err(ctodev(card), "%s:Couldn't register %s %d\n",
1480 __func__, netdev->name, status);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001481 return status;
1482 }
Johannes Berge1749612008-10-27 15:59:26 -07001483 dev_info(ctodev(card), "%s: MAC addr %pM\n",
1484 netdev->name, netdev->dev_addr);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001485
1486 return 0;
1487}
1488
1489/**
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001490 * gelic_alloc_card_net - allocates net_device and card structure
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001491 *
1492 * returns the card structure or NULL in case of errors
1493 *
1494 * the card and net_device structures are linked to each other
1495 */
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001496#define GELIC_ALIGN (32)
Geert Uytterhoeven48dce822009-06-10 04:38:58 +00001497static struct gelic_card * __devinit gelic_alloc_card_net(struct net_device **netdev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001498{
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001499 struct gelic_card *card;
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001500 struct gelic_port *port;
1501 void *p;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001502 size_t alloc_size;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001503 /*
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001504 * gelic requires dma descriptor is 32 bytes aligned and
1505 * the hypervisor requires irq_status is 8 bytes aligned.
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001506 */
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001507 BUILD_BUG_ON(offsetof(struct gelic_card, irq_status) % 8);
1508 BUILD_BUG_ON(offsetof(struct gelic_card, descr) % 32);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001509 alloc_size =
1510 sizeof(struct gelic_card) +
1511 sizeof(struct gelic_descr) * GELIC_NET_RX_DESCRIPTORS +
1512 sizeof(struct gelic_descr) * GELIC_NET_TX_DESCRIPTORS +
1513 GELIC_ALIGN - 1;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001514
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001515 p = kzalloc(alloc_size, GFP_KERNEL);
1516 if (!p)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001517 return NULL;
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001518 card = PTR_ALIGN(p, GELIC_ALIGN);
1519 card->unalign = p;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001520
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001521 /*
1522 * alloc netdev
1523 */
1524 *netdev = alloc_etherdev(sizeof(struct gelic_port));
1525 if (!netdev) {
1526 kfree(card->unalign);
1527 return NULL;
1528 }
1529 port = netdev_priv(*netdev);
1530
1531 /* gelic_port */
1532 port->netdev = *netdev;
1533 port->card = card;
1534 port->type = GELIC_PORT_ETHERNET;
1535
1536 /* gelic_card */
1537 card->netdev[GELIC_PORT_ETHERNET] = *netdev;
1538
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001539 INIT_WORK(&card->tx_timeout_task, gelic_net_tx_timeout_task);
1540 init_waitqueue_head(&card->waitq);
1541 atomic_set(&card->tx_timeout_task_counter, 0);
Daniel Walker2914f3e2008-05-22 00:00:03 -07001542 mutex_init(&card->updown_lock);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001543 atomic_set(&card->users, 0);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001544
1545 return card;
1546}
1547
Geert Uytterhoeven48dce822009-06-10 04:38:58 +00001548static void __devinit gelic_card_get_vlan_info(struct gelic_card *card)
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001549{
1550 u64 v1, v2;
1551 int status;
1552 unsigned int i;
1553 struct {
1554 int tx;
1555 int rx;
1556 } vlan_id_ix[2] = {
1557 [GELIC_PORT_ETHERNET] = {
1558 .tx = GELIC_LV1_VLAN_TX_ETHERNET,
1559 .rx = GELIC_LV1_VLAN_RX_ETHERNET
1560 },
1561 [GELIC_PORT_WIRELESS] = {
1562 .tx = GELIC_LV1_VLAN_TX_WIRELESS,
1563 .rx = GELIC_LV1_VLAN_RX_WIRELESS
1564 }
1565 };
1566
1567 for (i = 0; i < ARRAY_SIZE(vlan_id_ix); i++) {
1568 /* tx tag */
1569 status = lv1_net_control(bus_id(card), dev_id(card),
1570 GELIC_LV1_GET_VLAN_ID,
1571 vlan_id_ix[i].tx,
1572 0, 0, &v1, &v2);
1573 if (status || !v1) {
1574 if (status != LV1_NO_ENTRY)
1575 dev_dbg(ctodev(card),
1576 "get vlan id for tx(%d) failed(%d)\n",
1577 vlan_id_ix[i].tx, status);
1578 card->vlan[i].tx = 0;
1579 card->vlan[i].rx = 0;
1580 continue;
1581 }
1582 card->vlan[i].tx = (u16)v1;
1583
1584 /* rx tag */
1585 status = lv1_net_control(bus_id(card), dev_id(card),
1586 GELIC_LV1_GET_VLAN_ID,
1587 vlan_id_ix[i].rx,
1588 0, 0, &v1, &v2);
1589 if (status || !v1) {
1590 if (status != LV1_NO_ENTRY)
1591 dev_info(ctodev(card),
1592 "get vlan id for rx(%d) failed(%d)\n",
1593 vlan_id_ix[i].rx, status);
1594 card->vlan[i].tx = 0;
1595 card->vlan[i].rx = 0;
1596 continue;
1597 }
1598 card->vlan[i].rx = (u16)v1;
1599
1600 dev_dbg(ctodev(card), "vlan_id[%d] tx=%02x rx=%02x\n",
1601 i, card->vlan[i].tx, card->vlan[i].rx);
1602 }
1603
1604 if (card->vlan[GELIC_PORT_ETHERNET].tx) {
1605 BUG_ON(!card->vlan[GELIC_PORT_WIRELESS].tx);
1606 card->vlan_required = 1;
1607 } else
1608 card->vlan_required = 0;
1609
1610 /* check wirelss capable firmware */
1611 if (ps3_compare_firmware_version(1, 6, 0) < 0) {
1612 card->vlan[GELIC_PORT_WIRELESS].tx = 0;
1613 card->vlan[GELIC_PORT_WIRELESS].rx = 0;
1614 }
1615
1616 dev_info(ctodev(card), "internal vlan %s\n",
1617 card->vlan_required? "enabled" : "disabled");
1618}
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001619/**
1620 * ps3_gelic_driver_probe - add a device to the control of this driver
1621 */
Geert Uytterhoeven48dce822009-06-10 04:38:58 +00001622static int __devinit ps3_gelic_driver_probe(struct ps3_system_bus_device *dev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001623{
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001624 struct gelic_card *card;
1625 struct net_device *netdev;
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001626 int result;
1627
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001628 pr_debug("%s: called\n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001629 result = ps3_open_hv_device(dev);
1630
1631 if (result) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001632 dev_dbg(&dev->core, "%s:ps3_open_hv_device failed\n",
1633 __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001634 goto fail_open;
1635 }
1636
1637 result = ps3_dma_region_create(dev->d_region);
1638
1639 if (result) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001640 dev_dbg(&dev->core, "%s:ps3_dma_region_create failed(%d)\n",
1641 __func__, result);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001642 BUG_ON("check region type");
1643 goto fail_dma_region;
1644 }
1645
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001646 /* alloc card/netdevice */
1647 card = gelic_alloc_card_net(&netdev);
1648 if (!card) {
1649 dev_info(&dev->core, "%s:gelic_net_alloc_card failed\n",
1650 __func__);
1651 result = -ENOMEM;
1652 goto fail_alloc_card;
1653 }
Geert Uytterhoeven03fa68c2009-06-10 04:38:54 +00001654 ps3_system_bus_set_drvdata(dev, card);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001655 card->dev = dev;
1656
1657 /* get internal vlan info */
1658 gelic_card_get_vlan_info(card);
1659
1660 /* setup interrupt */
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001661 result = lv1_net_set_interrupt_status_indicator(bus_id(card),
1662 dev_id(card),
1663 ps3_mm_phys_to_lpar(__pa(&card->irq_status)),
1664 0);
1665
1666 if (result) {
1667 dev_dbg(&dev->core,
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001668 "%s:set_interrupt_status_indicator failed: %s\n",
1669 __func__, ps3_result(result));
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001670 result = -EIO;
1671 goto fail_status_indicator;
1672 }
1673
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001674 result = ps3_sb_event_receive_port_setup(dev, PS3_BINDING_CPU_ANY,
1675 &card->irq);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001676
1677 if (result) {
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001678 dev_info(ctodev(card),
1679 "%s:gelic_net_open_device failed (%d)\n",
1680 __func__, result);
1681 result = -EPERM;
1682 goto fail_alloc_irq;
1683 }
1684 result = request_irq(card->irq, gelic_card_interrupt,
1685 IRQF_DISABLED, netdev->name, card);
1686
1687 if (result) {
1688 dev_info(ctodev(card), "%s:request_irq failed (%d)\n",
1689 __func__, result);
1690 goto fail_request_irq;
1691 }
1692
1693 /* setup card structure */
1694 card->irq_mask = GELIC_CARD_RXINT | GELIC_CARD_TXINT |
1695 GELIC_CARD_PORT_STATUS_CHANGED;
1696 card->rx_csum = GELIC_CARD_RX_CSUM_DEFAULT;
1697
1698
1699 if (gelic_card_init_chain(card, &card->tx_chain,
1700 card->descr, GELIC_NET_TX_DESCRIPTORS))
1701 goto fail_alloc_tx;
1702 if (gelic_card_init_chain(card, &card->rx_chain,
1703 card->descr + GELIC_NET_TX_DESCRIPTORS,
1704 GELIC_NET_RX_DESCRIPTORS))
1705 goto fail_alloc_rx;
1706
1707 /* head of chain */
1708 card->tx_top = card->tx_chain.head;
1709 card->rx_top = card->rx_chain.head;
1710 dev_dbg(ctodev(card), "descr rx %p, tx %p, size %#lx, num %#x\n",
1711 card->rx_top, card->tx_top, sizeof(struct gelic_descr),
1712 GELIC_NET_RX_DESCRIPTORS);
1713 /* allocate rx skbs */
1714 if (gelic_card_alloc_rx_skbs(card))
1715 goto fail_alloc_skbs;
1716
1717 spin_lock_init(&card->tx_lock);
1718 card->tx_dma_progress = 0;
1719
1720 /* setup net_device structure */
1721 netdev->irq = card->irq;
1722 SET_NETDEV_DEV(netdev, &card->dev->core);
1723 gelic_ether_setup_netdev_ops(netdev, &card->napi);
1724 result = gelic_net_setup_netdev(netdev, card);
1725 if (result) {
1726 dev_dbg(&dev->core, "%s: setup_netdev failed %d",
1727 __func__, result);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001728 goto fail_setup_netdev;
1729 }
1730
Masakazu Mokuno09dde542008-02-07 19:58:57 +09001731#ifdef CONFIG_GELIC_WIRELESS
1732 if (gelic_wl_driver_probe(card)) {
1733 dev_dbg(&dev->core, "%s: WL init failed\n", __func__);
1734 goto fail_setup_netdev;
1735 }
1736#endif
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001737 pr_debug("%s: done\n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001738 return 0;
1739
1740fail_setup_netdev:
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001741fail_alloc_skbs:
1742 gelic_card_free_chain(card, card->rx_chain.head);
1743fail_alloc_rx:
1744 gelic_card_free_chain(card, card->tx_chain.head);
1745fail_alloc_tx:
1746 free_irq(card->irq, card);
1747 netdev->irq = NO_IRQ;
1748fail_request_irq:
1749 ps3_sb_event_receive_port_destroy(dev, card->irq);
1750fail_alloc_irq:
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001751 lv1_net_set_interrupt_status_indicator(bus_id(card),
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001752 bus_id(card),
1753 0, 0);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001754fail_status_indicator:
Geert Uytterhoeven03fa68c2009-06-10 04:38:54 +00001755 ps3_system_bus_set_drvdata(dev, NULL);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001756 kfree(netdev_card(netdev)->unalign);
1757 free_netdev(netdev);
1758fail_alloc_card:
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001759 ps3_dma_region_free(dev->d_region);
1760fail_dma_region:
1761 ps3_close_hv_device(dev);
1762fail_open:
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001763 return result;
1764}
1765
1766/**
1767 * ps3_gelic_driver_remove - remove a device from the control of this driver
1768 */
1769
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001770static int ps3_gelic_driver_remove(struct ps3_system_bus_device *dev)
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001771{
Geert Uytterhoeven03fa68c2009-06-10 04:38:54 +00001772 struct gelic_card *card = ps3_system_bus_get_drvdata(dev);
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001773 struct net_device *netdev0;
1774 pr_debug("%s: called\n", __func__);
1775
Masakazu Mokuno09dde542008-02-07 19:58:57 +09001776#ifdef CONFIG_GELIC_WIRELESS
1777 gelic_wl_driver_remove(card);
1778#endif
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001779 /* stop interrupt */
1780 gelic_card_set_irq_mask(card, 0);
1781
1782 /* turn off DMA, force end */
1783 gelic_card_disable_rxdmac(card);
1784 gelic_card_disable_txdmac(card);
1785
1786 /* release chains */
1787 gelic_card_release_tx_chain(card, 1);
1788 gelic_card_release_rx_chain(card);
1789
1790 gelic_card_free_chain(card, card->tx_top);
1791 gelic_card_free_chain(card, card->rx_top);
1792
1793 netdev0 = card->netdev[GELIC_PORT_ETHERNET];
1794 /* disconnect event port */
1795 free_irq(card->irq, card);
1796 netdev0->irq = NO_IRQ;
1797 ps3_sb_event_receive_port_destroy(card->dev, card->irq);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001798
1799 wait_event(card->waitq,
1800 atomic_read(&card->tx_timeout_task_counter) == 0);
1801
1802 lv1_net_set_interrupt_status_indicator(bus_id(card), dev_id(card),
1803 0 , 0);
1804
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001805 unregister_netdev(netdev0);
1806 kfree(netdev_card(netdev0)->unalign);
1807 free_netdev(netdev0);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001808
Geert Uytterhoeven03fa68c2009-06-10 04:38:54 +00001809 ps3_system_bus_set_drvdata(dev, NULL);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001810
1811 ps3_dma_region_free(dev->d_region);
1812
1813 ps3_close_hv_device(dev);
1814
Masakazu Mokuno589866f2008-02-07 19:58:42 +09001815 pr_debug("%s: done\n", __func__);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001816 return 0;
1817}
1818
1819static struct ps3_system_bus_driver ps3_gelic_driver = {
1820 .match_id = PS3_MATCH_ID_GELIC,
1821 .probe = ps3_gelic_driver_probe,
1822 .remove = ps3_gelic_driver_remove,
1823 .shutdown = ps3_gelic_driver_remove,
1824 .core.name = "ps3_gelic_driver",
1825 .core.owner = THIS_MODULE,
1826};
1827
1828static int __init ps3_gelic_driver_init (void)
1829{
1830 return firmware_has_feature(FW_FEATURE_PS3_LV1)
1831 ? ps3_system_bus_driver_register(&ps3_gelic_driver)
1832 : -ENODEV;
1833}
1834
1835static void __exit ps3_gelic_driver_exit (void)
1836{
1837 ps3_system_bus_driver_unregister(&ps3_gelic_driver);
1838}
1839
Masakazu Mokuno59e97322008-02-07 19:58:08 +09001840module_init(ps3_gelic_driver_init);
1841module_exit(ps3_gelic_driver_exit);
Masakazu Mokuno02c18892007-07-05 20:11:16 +09001842
1843MODULE_ALIAS(PS3_MODULE_ALIAS_GELIC);
1844