blob: 9a74c4e2e1932607f7665ded28c42fd5243080db [file] [log] [blame]
Santiago Leonf148f612010-09-03 18:29:30 +00001/*
Santiago Leon9d348af2010-09-03 18:29:53 +00002 * IBM Power Virtual Ethernet Device Driver
Santiago Leonf148f612010-09-03 18:29:30 +00003 *
Santiago Leon9d348af2010-09-03 18:29:53 +00004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
Santiago Leonf148f612010-09-03 18:29:30 +00008 *
Santiago Leon9d348af2010-09-03 18:29:53 +00009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Santiago Leonf148f612010-09-03 18:29:30 +000013 *
Santiago Leon9d348af2010-09-03 18:29:53 +000014 * You should have received a copy of the GNU General Public License
Jeff Kirsher0ab75ae2013-12-06 06:28:43 -080015 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Santiago Leonf148f612010-09-03 18:29:30 +000016 *
Santiago Leon9d348af2010-09-03 18:29:53 +000017 * Copyright (C) IBM Corporation, 2003, 2010
18 *
19 * Authors: Dave Larson <larson1@us.ibm.com>
20 * Santiago Leon <santil@linux.vnet.ibm.com>
21 * Brian King <brking@linux.vnet.ibm.com>
22 * Robert Jennings <rcj@linux.vnet.ibm.com>
23 * Anton Blanchard <anton@au.ibm.com>
Santiago Leonf148f612010-09-03 18:29:30 +000024 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
Robert Jennings1096d632008-07-24 04:34:52 +100027#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/types.h>
29#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/dma-mapping.h>
31#include <linux/kernel.h>
32#include <linux/netdevice.h>
33#include <linux/etherdevice.h>
34#include <linux/skbuff.h>
35#include <linux/init.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000036#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/mm.h>
Brian Kinge7a3af52010-05-07 08:56:08 +000038#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/ethtool.h>
Brian Kingf4ff2872007-09-15 13:36:07 -070040#include <linux/in.h>
41#include <linux/ip.h>
Santiago Leonab78df72010-09-03 18:28:52 +000042#include <linux/ipv6.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090043#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/hvcall.h>
Arun Sharma600634972011-07-26 16:09:06 -070045#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/vio.h>
Robert Jennings1096d632008-07-24 04:34:52 +100047#include <asm/iommu.h>
Robert Jennings1096d632008-07-24 04:34:52 +100048#include <asm/firmware.h>
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -040049#include <net/tcp.h>
50#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52#include "ibmveth.h"
53
David Howells7d12e782006-10-05 14:55:46 +010054static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance);
Michael Ellerman493a6842007-04-17 13:12:55 +100055static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter);
Robert Jennings1096d632008-07-24 04:34:52 +100056static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev);
Santiago Leone295fe82010-09-03 18:29:08 +000057
Santiago Leon860f2422006-04-25 11:19:59 -050058static struct kobj_type ktype_veth_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Robert Jennings1096d632008-07-24 04:34:52 +100060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061static const char ibmveth_driver_name[] = "ibmveth";
Santiago Leon9d348af2010-09-03 18:29:53 +000062static const char ibmveth_driver_string[] = "IBM Power Virtual Ethernet Driver";
Thomas Falcon7b596732016-12-08 16:40:03 -060063#define ibmveth_driver_version "1.06"
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Santiago Leon9d348af2010-09-03 18:29:53 +000065MODULE_AUTHOR("Santiago Leon <santil@linux.vnet.ibm.com>");
66MODULE_DESCRIPTION("IBM Power Virtual Ethernet Driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_LICENSE("GPL");
68MODULE_VERSION(ibmveth_driver_version);
69
Santiago Leonc08cc3c2010-09-03 18:28:20 +000070static unsigned int tx_copybreak __read_mostly = 128;
71module_param(tx_copybreak, uint, 0644);
72MODULE_PARM_DESC(tx_copybreak,
73 "Maximum size of packet that is copied to a new buffer on transmit");
74
Santiago Leon8d86c612010-09-03 18:28:25 +000075static unsigned int rx_copybreak __read_mostly = 128;
76module_param(rx_copybreak, uint, 0644);
77MODULE_PARM_DESC(rx_copybreak,
78 "Maximum size of packet that is copied to a new buffer on receive");
79
Santiago Leon0c26b672010-09-03 18:28:41 +000080static unsigned int rx_flush __read_mostly = 0;
81module_param(rx_flush, uint, 0644);
82MODULE_PARM_DESC(rx_flush, "Flush receive buffers before use");
83
Thomas Falcon07e6a972015-07-14 10:51:51 -050084static bool old_large_send __read_mostly;
85module_param(old_large_send, bool, S_IRUGO);
86MODULE_PARM_DESC(old_large_send,
87 "Use old large send method on firmware that supports the new method");
88
Brian Kingddbb4de2007-08-17 09:16:43 -050089struct ibmveth_stat {
90 char name[ETH_GSTRING_LEN];
91 int offset;
92};
93
94#define IBMVETH_STAT_OFF(stat) offsetof(struct ibmveth_adapter, stat)
95#define IBMVETH_GET_STAT(a, off) *((u64 *)(((unsigned long)(a)) + off))
96
97struct ibmveth_stat ibmveth_stats[] = {
98 { "replenish_task_cycles", IBMVETH_STAT_OFF(replenish_task_cycles) },
99 { "replenish_no_mem", IBMVETH_STAT_OFF(replenish_no_mem) },
Santiago Leonf148f612010-09-03 18:29:30 +0000100 { "replenish_add_buff_failure",
101 IBMVETH_STAT_OFF(replenish_add_buff_failure) },
102 { "replenish_add_buff_success",
103 IBMVETH_STAT_OFF(replenish_add_buff_success) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500104 { "rx_invalid_buffer", IBMVETH_STAT_OFF(rx_invalid_buffer) },
105 { "rx_no_buffer", IBMVETH_STAT_OFF(rx_no_buffer) },
Brian Kingddbb4de2007-08-17 09:16:43 -0500106 { "tx_map_failed", IBMVETH_STAT_OFF(tx_map_failed) },
107 { "tx_send_failed", IBMVETH_STAT_OFF(tx_send_failed) },
Santiago Leonab78df72010-09-03 18:28:52 +0000108 { "fw_enabled_ipv4_csum", IBMVETH_STAT_OFF(fw_ipv4_csum_support) },
109 { "fw_enabled_ipv6_csum", IBMVETH_STAT_OFF(fw_ipv6_csum_support) },
Thomas Falcon8641dd82015-04-29 16:25:45 -0500110 { "tx_large_packets", IBMVETH_STAT_OFF(tx_large_packets) },
Thomas Falcon07e6a972015-07-14 10:51:51 -0500111 { "rx_large_packets", IBMVETH_STAT_OFF(rx_large_packets) },
112 { "fw_enabled_large_send", IBMVETH_STAT_OFF(fw_large_send_support) }
Brian Kingddbb4de2007-08-17 09:16:43 -0500113};
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/* simple methods of getting data from the current rxq entry */
Brian King79ef4a42007-08-17 09:16:56 -0500116static inline u32 ibmveth_rxq_flags(struct ibmveth_adapter *adapter)
117{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000118 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].flags_off);
Brian King79ef4a42007-08-17 09:16:56 -0500119}
120
121static inline int ibmveth_rxq_toggle(struct ibmveth_adapter *adapter)
122{
Santiago Leonf148f612010-09-03 18:29:30 +0000123 return (ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_TOGGLE) >>
124 IBMVETH_RXQ_TOGGLE_SHIFT;
Brian King79ef4a42007-08-17 09:16:56 -0500125}
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static inline int ibmveth_rxq_pending_buffer(struct ibmveth_adapter *adapter)
128{
Santiago Leonf148f612010-09-03 18:29:30 +0000129 return ibmveth_rxq_toggle(adapter) == adapter->rx_queue.toggle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static inline int ibmveth_rxq_buffer_valid(struct ibmveth_adapter *adapter)
133{
Santiago Leonf148f612010-09-03 18:29:30 +0000134 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_VALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static inline int ibmveth_rxq_frame_offset(struct ibmveth_adapter *adapter)
138{
Santiago Leonf148f612010-09-03 18:29:30 +0000139 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_OFF_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
Thomas Falcon7b596732016-12-08 16:40:03 -0600142static inline int ibmveth_rxq_large_packet(struct ibmveth_adapter *adapter)
143{
144 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_LRG_PKT;
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147static inline int ibmveth_rxq_frame_length(struct ibmveth_adapter *adapter)
148{
Anton Blanchard0b536be2013-09-03 09:55:32 +1000149 return be32_to_cpu(adapter->rx_queue.queue_addr[adapter->rx_queue.index].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Brian Kingf4ff2872007-09-15 13:36:07 -0700152static inline int ibmveth_rxq_csum_good(struct ibmveth_adapter *adapter)
153{
Santiago Leonf148f612010-09-03 18:29:30 +0000154 return ibmveth_rxq_flags(adapter) & IBMVETH_RXQ_CSUM_GOOD;
Brian Kingf4ff2872007-09-15 13:36:07 -0700155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/* setup the initial settings for a buffer pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000158static void ibmveth_init_buffer_pool(struct ibmveth_buff_pool *pool,
159 u32 pool_index, u32 pool_size,
160 u32 buff_size, u32 pool_active)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 pool->size = pool_size;
163 pool->index = pool_index;
164 pool->buff_size = buff_size;
Santiago Leonc033a6d2010-09-03 18:28:09 +0000165 pool->threshold = pool_size * 7 / 8;
Santiago Leon860f2422006-04-25 11:19:59 -0500166 pool->active = pool_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169/* allocate and setup an buffer pool - called during open */
170static int ibmveth_alloc_buffer_pool(struct ibmveth_buff_pool *pool)
171{
172 int i;
173
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400174 pool->free_map = kmalloc(sizeof(u16) * pool->size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Santiago Leonf148f612010-09-03 18:29:30 +0000176 if (!pool->free_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Nicholas Mc Guire076ef442015-12-20 15:06:18 +0100179 pool->dma_addr = kcalloc(pool->size, sizeof(dma_addr_t), GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000180 if (!pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 kfree(pool->free_map);
182 pool->free_map = NULL;
183 return -1;
184 }
185
Julia Lawalla05abcb2010-05-13 10:06:01 +0000186 pool->skbuff = kcalloc(pool->size, sizeof(void *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Santiago Leonf148f612010-09-03 18:29:30 +0000188 if (!pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 kfree(pool->dma_addr);
190 pool->dma_addr = NULL;
191
192 kfree(pool->free_map);
193 pool->free_map = NULL;
194 return -1;
195 }
196
Santiago Leonf148f612010-09-03 18:29:30 +0000197 for (i = 0; i < pool->size; ++i)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 pool->free_map[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 atomic_set(&pool->available, 0);
201 pool->producer_index = 0;
202 pool->consumer_index = 0;
203
204 return 0;
205}
206
Santiago Leon0c26b672010-09-03 18:28:41 +0000207static inline void ibmveth_flush_buffer(void *addr, unsigned long length)
208{
209 unsigned long offset;
210
211 for (offset = 0; offset < length; offset += SMP_CACHE_BYTES)
212 asm("dcbfl %0,%1" :: "b" (addr), "r" (offset));
213}
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* replenish the buffers for a pool. note that we don't need to
216 * skb_reserve these since they are used for incoming...
217 */
Santiago Leonf148f612010-09-03 18:29:30 +0000218static void ibmveth_replenish_buffer_pool(struct ibmveth_adapter *adapter,
219 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 u32 i;
222 u32 count = pool->size - atomic_read(&pool->available);
223 u32 buffers_added = 0;
Robert Jennings1096d632008-07-24 04:34:52 +1000224 struct sk_buff *skb;
225 unsigned int free_index, index;
226 u64 correlator;
227 unsigned long lpar_rc;
228 dma_addr_t dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 mb();
231
Santiago Leonf148f612010-09-03 18:29:30 +0000232 for (i = 0; i < count; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 union ibmveth_buf_desc desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Santiago Leon003212c2010-09-03 18:29:03 +0000235 skb = netdev_alloc_skb(adapter->netdev, pool->buff_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Santiago Leonf148f612010-09-03 18:29:30 +0000237 if (!skb) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000238 netdev_dbg(adapter->netdev,
239 "replenish: unable to allocate skb\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 adapter->replenish_no_mem++;
241 break;
242 }
243
David Gibson047a66d2006-10-21 10:24:13 -0700244 free_index = pool->consumer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000245 pool->consumer_index++;
246 if (pool->consumer_index >= pool->size)
247 pool->consumer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 index = pool->free_map[free_index];
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400249
Santiago Leon64859112010-09-03 18:29:41 +0000250 BUG_ON(index == IBM_VETH_INVALID_MAP);
251 BUG_ON(pool->skbuff[index] != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
254 pool->buff_size, DMA_FROM_DEVICE);
255
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000256 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000257 goto failure;
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 pool->free_map[free_index] = IBM_VETH_INVALID_MAP;
260 pool->dma_addr[index] = dma_addr;
261 pool->skbuff[index] = skb;
262
263 correlator = ((u64)pool->index << 32) | index;
Santiago Leonf148f612010-09-03 18:29:30 +0000264 *(u64 *)skb->data = correlator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Brian King79ef4a42007-08-17 09:16:56 -0500266 desc.fields.flags_len = IBMVETH_BUF_VALID | pool->buff_size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400267 desc.fields.address = dma_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Santiago Leon0c26b672010-09-03 18:28:41 +0000269 if (rx_flush) {
270 unsigned int len = min(pool->buff_size,
271 adapter->netdev->mtu +
272 IBMVETH_BUFF_OH);
273 ibmveth_flush_buffer(skb->data, len);
274 }
Santiago Leonf148f612010-09-03 18:29:30 +0000275 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address,
276 desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400277
Santiago Leonf148f612010-09-03 18:29:30 +0000278 if (lpar_rc != H_SUCCESS) {
Robert Jennings1096d632008-07-24 04:34:52 +1000279 goto failure;
Santiago Leonf148f612010-09-03 18:29:30 +0000280 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 buffers_added++;
282 adapter->replenish_add_buff_success++;
283 }
284 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 mb();
287 atomic_add(buffers_added, &(pool->available));
Robert Jennings1096d632008-07-24 04:34:52 +1000288 return;
289
290failure:
291 pool->free_map[free_index] = index;
292 pool->skbuff[index] = NULL;
293 if (pool->consumer_index == 0)
294 pool->consumer_index = pool->size - 1;
295 else
296 pool->consumer_index--;
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000297 if (!dma_mapping_error(&adapter->vdev->dev, dma_addr))
Robert Jennings1096d632008-07-24 04:34:52 +1000298 dma_unmap_single(&adapter->vdev->dev,
299 pool->dma_addr[index], pool->buff_size,
300 DMA_FROM_DEVICE);
301 dev_kfree_skb_any(skb);
302 adapter->replenish_add_buff_failure++;
303
304 mb();
305 atomic_add(buffers_added, &(pool->available));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Anton Blanchardcbd52282014-08-22 11:36:52 +1000308/*
309 * The final 8 bytes of the buffer list is a counter of frames dropped
310 * because there was not a buffer in the buffer list capable of holding
311 * the frame.
312 */
313static void ibmveth_update_rx_no_buffer(struct ibmveth_adapter *adapter)
314{
315 __be64 *p = adapter->buffer_list_addr + 4096 - 8;
316
317 adapter->rx_no_buffer = be64_to_cpup(p);
318}
319
Santiago Leone2adbcb2005-10-26 10:47:08 -0600320/* replenish routine */
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400321static void ibmveth_replenish_task(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Santiago Leonb6d35182005-10-26 10:47:01 -0600323 int i;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 adapter->replenish_task_cycles++;
326
Santiago Leon517e80e2010-09-03 18:29:25 +0000327 for (i = (IBMVETH_NUM_BUFF_POOLS - 1); i >= 0; i--) {
Santiago Leonc033a6d2010-09-03 18:28:09 +0000328 struct ibmveth_buff_pool *pool = &adapter->rx_buff_pool[i];
329
330 if (pool->active &&
331 (atomic_read(&pool->available) < pool->threshold))
332 ibmveth_replenish_buffer_pool(adapter, pool);
333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Anton Blanchardcbd52282014-08-22 11:36:52 +1000335 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
338/* empty and free ana buffer pool - also used to do cleanup in error paths */
Santiago Leonf148f612010-09-03 18:29:30 +0000339static void ibmveth_free_buffer_pool(struct ibmveth_adapter *adapter,
340 struct ibmveth_buff_pool *pool)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 int i;
343
Jesper Juhlb4558ea2005-10-28 16:53:13 -0400344 kfree(pool->free_map);
345 pool->free_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Santiago Leonf148f612010-09-03 18:29:30 +0000347 if (pool->skbuff && pool->dma_addr) {
348 for (i = 0; i < pool->size; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 struct sk_buff *skb = pool->skbuff[i];
Santiago Leonf148f612010-09-03 18:29:30 +0000350 if (skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 dma_unmap_single(&adapter->vdev->dev,
352 pool->dma_addr[i],
353 pool->buff_size,
354 DMA_FROM_DEVICE);
355 dev_kfree_skb_any(skb);
356 pool->skbuff[i] = NULL;
357 }
358 }
359 }
360
Santiago Leonf148f612010-09-03 18:29:30 +0000361 if (pool->dma_addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 kfree(pool->dma_addr);
363 pool->dma_addr = NULL;
364 }
365
Santiago Leonf148f612010-09-03 18:29:30 +0000366 if (pool->skbuff) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 kfree(pool->skbuff);
368 pool->skbuff = NULL;
369 }
370}
371
372/* remove a buffer from a pool */
Santiago Leonf148f612010-09-03 18:29:30 +0000373static void ibmveth_remove_buffer_from_pool(struct ibmveth_adapter *adapter,
374 u64 correlator)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 unsigned int pool = correlator >> 32;
377 unsigned int index = correlator & 0xffffffffUL;
378 unsigned int free_index;
379 struct sk_buff *skb;
380
Santiago Leon64859112010-09-03 18:29:41 +0000381 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
382 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 skb = adapter->rx_buff_pool[pool].skbuff[index];
385
Santiago Leon64859112010-09-03 18:29:41 +0000386 BUG_ON(skb == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 adapter->rx_buff_pool[pool].skbuff[index] = NULL;
389
390 dma_unmap_single(&adapter->vdev->dev,
391 adapter->rx_buff_pool[pool].dma_addr[index],
392 adapter->rx_buff_pool[pool].buff_size,
393 DMA_FROM_DEVICE);
394
David Gibson047a66d2006-10-21 10:24:13 -0700395 free_index = adapter->rx_buff_pool[pool].producer_index;
Santiago Leona613f582010-09-03 18:28:04 +0000396 adapter->rx_buff_pool[pool].producer_index++;
397 if (adapter->rx_buff_pool[pool].producer_index >=
398 adapter->rx_buff_pool[pool].size)
399 adapter->rx_buff_pool[pool].producer_index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 adapter->rx_buff_pool[pool].free_map[free_index] = index;
401
402 mb();
403
404 atomic_dec(&(adapter->rx_buff_pool[pool].available));
405}
406
407/* get the current buffer on the rx queue */
408static inline struct sk_buff *ibmveth_rxq_get_buffer(struct ibmveth_adapter *adapter)
409{
410 u64 correlator = adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator;
411 unsigned int pool = correlator >> 32;
412 unsigned int index = correlator & 0xffffffffUL;
413
Santiago Leon64859112010-09-03 18:29:41 +0000414 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
415 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 return adapter->rx_buff_pool[pool].skbuff[index];
418}
419
420/* recycle the current buffer on the rx queue */
David S. Miller8decf862011-09-22 03:23:13 -0400421static int ibmveth_rxq_recycle_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 u32 q_index = adapter->rx_queue.index;
424 u64 correlator = adapter->rx_queue.queue_addr[q_index].correlator;
425 unsigned int pool = correlator >> 32;
426 unsigned int index = correlator & 0xffffffffUL;
427 union ibmveth_buf_desc desc;
428 unsigned long lpar_rc;
David S. Miller8decf862011-09-22 03:23:13 -0400429 int ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
Santiago Leon64859112010-09-03 18:29:41 +0000431 BUG_ON(pool >= IBMVETH_NUM_BUFF_POOLS);
432 BUG_ON(index >= adapter->rx_buff_pool[pool].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Santiago Leonf148f612010-09-03 18:29:30 +0000434 if (!adapter->rx_buff_pool[pool].active) {
Santiago Leonb6d35182005-10-26 10:47:01 -0600435 ibmveth_rxq_harvest_buffer(adapter);
436 ibmveth_free_buffer_pool(adapter, &adapter->rx_buff_pool[pool]);
David S. Miller8decf862011-09-22 03:23:13 -0400437 goto out;
Santiago Leonb6d35182005-10-26 10:47:01 -0600438 }
439
Brian King79ef4a42007-08-17 09:16:56 -0500440 desc.fields.flags_len = IBMVETH_BUF_VALID |
441 adapter->rx_buff_pool[pool].buff_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 desc.fields.address = adapter->rx_buff_pool[pool].dma_addr[index];
443
444 lpar_rc = h_add_logical_lan_buffer(adapter->vdev->unit_address, desc.desc);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400445
Santiago Leonf148f612010-09-03 18:29:30 +0000446 if (lpar_rc != H_SUCCESS) {
Santiago Leonc43ced12010-09-03 18:29:14 +0000447 netdev_dbg(adapter->netdev, "h_add_logical_lan_buffer failed "
448 "during recycle rc=%ld", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
David S. Miller8decf862011-09-22 03:23:13 -0400450 ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 }
452
Santiago Leonf148f612010-09-03 18:29:30 +0000453 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 adapter->rx_queue.index = 0;
455 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
456 }
David S. Miller8decf862011-09-22 03:23:13 -0400457
458out:
459 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Michael Ellerman493a6842007-04-17 13:12:55 +1000462static void ibmveth_rxq_harvest_buffer(struct ibmveth_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 ibmveth_remove_buffer_from_pool(adapter, adapter->rx_queue.queue_addr[adapter->rx_queue.index].correlator);
465
Santiago Leonf148f612010-09-03 18:29:30 +0000466 if (++adapter->rx_queue.index == adapter->rx_queue.num_slots) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 adapter->rx_queue.index = 0;
468 adapter->rx_queue.toggle = !adapter->rx_queue.toggle;
469 }
470}
471
472static void ibmveth_cleanup(struct ibmveth_adapter *adapter)
473{
Santiago Leonb6d35182005-10-26 10:47:01 -0600474 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700475 struct device *dev = &adapter->vdev->dev;
Santiago Leonb6d35182005-10-26 10:47:01 -0600476
Santiago Leonf148f612010-09-03 18:29:30 +0000477 if (adapter->buffer_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700478 if (!dma_mapping_error(dev, adapter->buffer_list_dma)) {
479 dma_unmap_single(dev, adapter->buffer_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 DMA_BIDIRECTIONAL);
481 adapter->buffer_list_dma = DMA_ERROR_CODE;
482 }
483 free_page((unsigned long)adapter->buffer_list_addr);
484 adapter->buffer_list_addr = NULL;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Santiago Leonf148f612010-09-03 18:29:30 +0000487 if (adapter->filter_list_addr != NULL) {
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700488 if (!dma_mapping_error(dev, adapter->filter_list_dma)) {
489 dma_unmap_single(dev, adapter->filter_list_dma, 4096,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 DMA_BIDIRECTIONAL);
491 adapter->filter_list_dma = DMA_ERROR_CODE;
492 }
493 free_page((unsigned long)adapter->filter_list_addr);
494 adapter->filter_list_addr = NULL;
495 }
496
Santiago Leonf148f612010-09-03 18:29:30 +0000497 if (adapter->rx_queue.queue_addr != NULL) {
Santiago Leond90c92f2012-09-04 14:41:37 +0000498 dma_free_coherent(dev, adapter->rx_queue.queue_len,
499 adapter->rx_queue.queue_addr,
500 adapter->rx_queue.queue_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 adapter->rx_queue.queue_addr = NULL;
502 }
503
Santiago Leonf148f612010-09-03 18:29:30 +0000504 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leon860f2422006-04-25 11:19:59 -0500505 if (adapter->rx_buff_pool[i].active)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400506 ibmveth_free_buffer_pool(adapter,
Santiago Leon860f2422006-04-25 11:19:59 -0500507 &adapter->rx_buff_pool[i]);
Robert Jennings1096d632008-07-24 04:34:52 +1000508
509 if (adapter->bounce_buffer != NULL) {
Stephen Rothwellc713e7c2008-07-28 02:14:24 +1000510 if (!dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Robert Jennings1096d632008-07-24 04:34:52 +1000511 dma_unmap_single(&adapter->vdev->dev,
512 adapter->bounce_buffer_dma,
513 adapter->netdev->mtu + IBMVETH_BUFF_OH,
514 DMA_BIDIRECTIONAL);
515 adapter->bounce_buffer_dma = DMA_ERROR_CODE;
516 }
517 kfree(adapter->bounce_buffer);
518 adapter->bounce_buffer = NULL;
519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500522static int ibmveth_register_logical_lan(struct ibmveth_adapter *adapter,
523 union ibmveth_buf_desc rxq_desc, u64 mac_address)
524{
525 int rc, try_again = 1;
526
Santiago Leonf148f612010-09-03 18:29:30 +0000527 /*
528 * After a kexec the adapter will still be open, so our attempt to
529 * open it will fail. So if we get a failure we free the adapter and
530 * try again, but only once.
531 */
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500532retry:
533 rc = h_register_logical_lan(adapter->vdev->unit_address,
534 adapter->buffer_list_dma, rxq_desc.desc,
535 adapter->filter_list_dma, mac_address);
536
537 if (rc != H_SUCCESS && try_again) {
538 do {
539 rc = h_free_logical_lan(adapter->vdev->unit_address);
540 } while (H_IS_LONG_BUSY(rc) || (rc == H_BUSY));
541
542 try_again = 0;
543 goto retry;
544 }
545
546 return rc;
547}
548
Anton Blanchardd746ca92014-03-05 14:51:37 +1100549static u64 ibmveth_encode_mac_addr(u8 *mac)
550{
551 int i;
552 u64 encoded = 0;
553
554 for (i = 0; i < ETH_ALEN; i++)
555 encoded = (encoded << 8) | mac[i];
556
557 return encoded;
558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static int ibmveth_open(struct net_device *netdev)
561{
Wang Chen4cf16532008-11-12 23:38:14 -0800562 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Anton Blanchardd746ca92014-03-05 14:51:37 +1100563 u64 mac_address;
Santiago Leonb6d35182005-10-26 10:47:01 -0600564 int rxq_entries = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 unsigned long lpar_rc;
566 int rc;
567 union ibmveth_buf_desc rxq_desc;
Santiago Leonb6d35182005-10-26 10:47:01 -0600568 int i;
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700569 struct device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Santiago Leonc43ced12010-09-03 18:29:14 +0000571 netdev_dbg(netdev, "open starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700573 napi_enable(&adapter->napi);
574
Santiago Leon517e80e2010-09-03 18:29:25 +0000575 for(i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Santiago Leonb6d35182005-10-26 10:47:01 -0600576 rxq_entries += adapter->rx_buff_pool[i].size;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 adapter->buffer_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
579 adapter->filter_list_addr = (void*) get_zeroed_page(GFP_KERNEL);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400580
Santiago Leonf148f612010-09-03 18:29:30 +0000581 if (!adapter->buffer_list_addr || !adapter->filter_list_addr) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000582 netdev_err(netdev, "unable to allocate filter or buffer list "
583 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000584 rc = -ENOMEM;
585 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Santiago Leond90c92f2012-09-04 14:41:37 +0000588 dev = &adapter->vdev->dev;
589
Santiago Leonf148f612010-09-03 18:29:30 +0000590 adapter->rx_queue.queue_len = sizeof(struct ibmveth_rx_q_entry) *
591 rxq_entries;
Santiago Leond90c92f2012-09-04 14:41:37 +0000592 adapter->rx_queue.queue_addr =
Joe Perchesd0320f72013-03-14 13:07:21 +0000593 dma_alloc_coherent(dev, adapter->rx_queue.queue_len,
594 &adapter->rx_queue.queue_dma, GFP_KERNEL);
Santiago Leonf148f612010-09-03 18:29:30 +0000595 if (!adapter->rx_queue.queue_addr) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000596 rc = -ENOMEM;
597 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700600 adapter->buffer_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 adapter->buffer_list_addr, 4096, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700602 adapter->filter_list_dma = dma_map_single(dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 adapter->filter_list_addr, 4096, DMA_BIDIRECTIONAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700605 if ((dma_mapping_error(dev, adapter->buffer_list_dma)) ||
Santiago Leond90c92f2012-09-04 14:41:37 +0000606 (dma_mapping_error(dev, adapter->filter_list_dma))) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000607 netdev_err(netdev, "unable to map filter or buffer list "
608 "pages\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000609 rc = -ENOMEM;
610 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 adapter->rx_queue.index = 0;
614 adapter->rx_queue.num_slots = rxq_entries;
615 adapter->rx_queue.toggle = 1;
616
Anton Blanchardd746ca92014-03-05 14:51:37 +1100617 mac_address = ibmveth_encode_mac_addr(netdev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Santiago Leonf148f612010-09-03 18:29:30 +0000619 rxq_desc.fields.flags_len = IBMVETH_BUF_VALID |
620 adapter->rx_queue.queue_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 rxq_desc.fields.address = adapter->rx_queue.queue_dma;
622
Santiago Leonc43ced12010-09-03 18:29:14 +0000623 netdev_dbg(netdev, "buffer list @ 0x%p\n", adapter->buffer_list_addr);
624 netdev_dbg(netdev, "filter list @ 0x%p\n", adapter->filter_list_addr);
625 netdev_dbg(netdev, "receive q @ 0x%p\n", adapter->rx_queue.queue_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Santiago Leon4347ef12006-10-03 12:24:34 -0500627 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
628
Michael Ellermanbbedefc2006-10-03 12:24:23 -0500629 lpar_rc = ibmveth_register_logical_lan(adapter, rxq_desc, mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Santiago Leonf148f612010-09-03 18:29:30 +0000631 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000632 netdev_err(netdev, "h_register_logical_lan failed with %ld\n",
633 lpar_rc);
634 netdev_err(netdev, "buffer TCE:0x%llx filter TCE:0x%llx rxq "
635 "desc:0x%llx MAC:0x%llx\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 adapter->buffer_list_dma,
637 adapter->filter_list_dma,
638 rxq_desc.desc,
639 mac_address);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000640 rc = -ENONET;
641 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643
Santiago Leonf148f612010-09-03 18:29:30 +0000644 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
645 if (!adapter->rx_buff_pool[i].active)
Santiago Leon860f2422006-04-25 11:19:59 -0500646 continue;
647 if (ibmveth_alloc_buffer_pool(&adapter->rx_buff_pool[i])) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000648 netdev_err(netdev, "unable to alloc pool\n");
Santiago Leon860f2422006-04-25 11:19:59 -0500649 adapter->rx_buff_pool[i].active = 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000650 rc = -ENOMEM;
651 goto err_out;
Santiago Leon860f2422006-04-25 11:19:59 -0500652 }
653 }
654
Santiago Leonc43ced12010-09-03 18:29:14 +0000655 netdev_dbg(netdev, "registering irq 0x%x\n", netdev->irq);
Santiago Leonf148f612010-09-03 18:29:30 +0000656 rc = request_irq(netdev->irq, ibmveth_interrupt, 0, netdev->name,
657 netdev);
658 if (rc != 0) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000659 netdev_err(netdev, "unable to request irq 0x%x, rc %d\n",
660 netdev->irq, rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 do {
David S. Miller88c51002011-10-07 13:38:43 -0400662 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
663 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Denis Kirjanov88426f22010-10-20 04:21:13 +0000665 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667
Robert Jennings1096d632008-07-24 04:34:52 +1000668 adapter->bounce_buffer =
669 kmalloc(netdev->mtu + IBMVETH_BUFF_OH, GFP_KERNEL);
670 if (!adapter->bounce_buffer) {
Denis Kirjanov88426f22010-10-20 04:21:13 +0000671 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000672 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000673 }
674 adapter->bounce_buffer_dma =
675 dma_map_single(&adapter->vdev->dev, adapter->bounce_buffer,
676 netdev->mtu + IBMVETH_BUFF_OH, DMA_BIDIRECTIONAL);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700677 if (dma_mapping_error(dev, adapter->bounce_buffer_dma)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000678 netdev_err(netdev, "unable to map bounce buffer\n");
Denis Kirjanov88426f22010-10-20 04:21:13 +0000679 rc = -ENOMEM;
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000680 goto err_out_free_irq;
Robert Jennings1096d632008-07-24 04:34:52 +1000681 }
682
Santiago Leonc43ced12010-09-03 18:29:14 +0000683 netdev_dbg(netdev, "initial replenish cycle\n");
David Howells7d12e782006-10-05 14:55:46 +0100684 ibmveth_interrupt(netdev->irq, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Santiago Leone2adbcb2005-10-26 10:47:08 -0600686 netif_start_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Santiago Leonc43ced12010-09-03 18:29:14 +0000688 netdev_dbg(netdev, "open complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 return 0;
Denis Kirjanov88426f22010-10-20 04:21:13 +0000691
Denis Kirjanove0e8ab52010-10-20 04:21:51 +0000692err_out_free_irq:
693 free_irq(netdev->irq, netdev);
Denis Kirjanov88426f22010-10-20 04:21:13 +0000694err_out:
695 ibmveth_cleanup(adapter);
696 napi_disable(&adapter->napi);
697 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700static int ibmveth_close(struct net_device *netdev)
701{
Wang Chen4cf16532008-11-12 23:38:14 -0800702 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 long lpar_rc;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -0400704
Santiago Leonc43ced12010-09-03 18:29:14 +0000705 netdev_dbg(netdev, "close starting\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700707 napi_disable(&adapter->napi);
708
Santiago Leon860f2422006-04-25 11:19:59 -0500709 if (!adapter->pool_config)
710 netif_stop_queue(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Robert Jenningsee2e6112010-07-16 04:57:25 +0000712 h_vio_signal(adapter->vdev->unit_address, VIO_IRQ_DISABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 do {
715 lpar_rc = h_free_logical_lan(adapter->vdev->unit_address);
Segher Boessenkool706c8c92006-03-30 14:49:40 +0200716 } while (H_IS_LONG_BUSY(lpar_rc) || (lpar_rc == H_BUSY));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Santiago Leonf148f612010-09-03 18:29:30 +0000718 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000719 netdev_err(netdev, "h_free_logical_lan failed with %lx, "
720 "continuing with close\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 }
722
Robert Jenningsee2e6112010-07-16 04:57:25 +0000723 free_irq(netdev->irq, netdev);
724
Anton Blanchardcbd52282014-08-22 11:36:52 +1000725 ibmveth_update_rx_no_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
727 ibmveth_cleanup(adapter);
728
Santiago Leonc43ced12010-09-03 18:29:14 +0000729 netdev_dbg(netdev, "close complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 return 0;
732}
733
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100734static int netdev_get_link_ksettings(struct net_device *dev,
735 struct ethtool_link_ksettings *cmd)
Santiago Leonf148f612010-09-03 18:29:30 +0000736{
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100737 u32 supported, advertising;
738
739 supported = (SUPPORTED_1000baseT_Full | SUPPORTED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000740 SUPPORTED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100741 advertising = (ADVERTISED_1000baseT_Full | ADVERTISED_Autoneg |
Santiago Leonf148f612010-09-03 18:29:30 +0000742 ADVERTISED_FIBRE);
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100743 cmd->base.speed = SPEED_1000;
744 cmd->base.duplex = DUPLEX_FULL;
745 cmd->base.port = PORT_FIBRE;
746 cmd->base.phy_address = 0;
747 cmd->base.autoneg = AUTONEG_ENABLE;
748
749 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
750 supported);
751 ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.advertising,
752 advertising);
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return 0;
755}
756
Santiago Leonf148f612010-09-03 18:29:30 +0000757static void netdev_get_drvinfo(struct net_device *dev,
758 struct ethtool_drvinfo *info)
759{
Jiri Pirko7826d432013-01-06 00:44:26 +0000760 strlcpy(info->driver, ibmveth_driver_name, sizeof(info->driver));
761 strlcpy(info->version, ibmveth_driver_version, sizeof(info->version));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000764static netdev_features_t ibmveth_fix_features(struct net_device *dev,
765 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500766{
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000767 /*
768 * Since the ibmveth firmware interface does not have the
769 * concept of separate tx/rx checksum offload enable, if rx
770 * checksum is disabled we also have to disable tx checksum
771 * offload. Once we disable rx checksum offload, we are no
772 * longer allowed to send tx buffers that are not properly
773 * checksummed.
774 */
Brian King5fc7e012007-08-17 09:16:31 -0500775
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000776 if (!(features & NETIF_F_RXCSUM))
Tom Herberta1882222015-12-14 11:19:43 -0800777 features &= ~NETIF_F_CSUM_MASK;
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000778
779 return features;
Brian King5fc7e012007-08-17 09:16:31 -0500780}
781
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000782static int ibmveth_set_csum_offload(struct net_device *dev, u32 data)
Brian King5fc7e012007-08-17 09:16:31 -0500783{
Wang Chen4cf16532008-11-12 23:38:14 -0800784 struct ibmveth_adapter *adapter = netdev_priv(dev);
Stephen Rothwellff5bfc32009-01-06 10:47:44 -0800785 unsigned long set_attr, clr_attr, ret_attr;
Santiago Leonab78df72010-09-03 18:28:52 +0000786 unsigned long set_attr6, clr_attr6;
David S. Miller8decf862011-09-22 03:23:13 -0400787 long ret, ret4, ret6;
Brian King5fc7e012007-08-17 09:16:31 -0500788 int rc1 = 0, rc2 = 0;
789 int restart = 0;
790
791 if (netif_running(dev)) {
792 restart = 1;
793 adapter->pool_config = 1;
794 ibmveth_close(dev);
795 adapter->pool_config = 0;
796 }
797
Brian King79ef4a42007-08-17 09:16:56 -0500798 set_attr = 0;
799 clr_attr = 0;
David S. Miller8decf862011-09-22 03:23:13 -0400800 set_attr6 = 0;
801 clr_attr6 = 0;
Brian King5fc7e012007-08-17 09:16:31 -0500802
Santiago Leonab78df72010-09-03 18:28:52 +0000803 if (data) {
Brian King79ef4a42007-08-17 09:16:56 -0500804 set_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000805 set_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
806 } else {
Brian King79ef4a42007-08-17 09:16:56 -0500807 clr_attr = IBMVETH_ILLAN_IPV4_TCP_CSUM;
Santiago Leonab78df72010-09-03 18:28:52 +0000808 clr_attr6 = IBMVETH_ILLAN_IPV6_TCP_CSUM;
809 }
Brian King5fc7e012007-08-17 09:16:31 -0500810
Brian King79ef4a42007-08-17 09:16:56 -0500811 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500812
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -0400813 if (ret == H_SUCCESS &&
Brian King79ef4a42007-08-17 09:16:56 -0500814 (ret_attr & IBMVETH_ILLAN_PADDED_PKT_CSUM)) {
David S. Miller8decf862011-09-22 03:23:13 -0400815 ret4 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
Brian King79ef4a42007-08-17 09:16:56 -0500816 set_attr, &ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500817
David S. Miller8decf862011-09-22 03:23:13 -0400818 if (ret4 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000819 netdev_err(dev, "unable to change IPv4 checksum "
820 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400821 data, ret4);
Brian King5fc7e012007-08-17 09:16:31 -0500822
David S. Miller8decf862011-09-22 03:23:13 -0400823 h_illan_attributes(adapter->vdev->unit_address,
824 set_attr, clr_attr, &ret_attr);
825
826 if (data == 1)
827 dev->features &= ~NETIF_F_IP_CSUM;
828
Santiago Leonf148f612010-09-03 18:29:30 +0000829 } else {
Santiago Leonab78df72010-09-03 18:28:52 +0000830 adapter->fw_ipv4_csum_support = data;
Santiago Leonf148f612010-09-03 18:29:30 +0000831 }
Santiago Leonab78df72010-09-03 18:28:52 +0000832
833 ret6 = h_illan_attributes(adapter->vdev->unit_address,
834 clr_attr6, set_attr6, &ret_attr);
835
836 if (ret6 != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +0000837 netdev_err(dev, "unable to change IPv6 checksum "
838 "offload settings. %d rc=%ld\n",
David S. Miller8decf862011-09-22 03:23:13 -0400839 data, ret6);
Santiago Leonab78df72010-09-03 18:28:52 +0000840
David S. Miller8decf862011-09-22 03:23:13 -0400841 h_illan_attributes(adapter->vdev->unit_address,
842 set_attr6, clr_attr6, &ret_attr);
843
844 if (data == 1)
845 dev->features &= ~NETIF_F_IPV6_CSUM;
846
Santiago Leonab78df72010-09-03 18:28:52 +0000847 } else
848 adapter->fw_ipv6_csum_support = data;
849
David S. Miller8decf862011-09-22 03:23:13 -0400850 if (ret4 == H_SUCCESS || ret6 == H_SUCCESS)
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000851 adapter->rx_csum = data;
Santiago Leonab78df72010-09-03 18:28:52 +0000852 else
853 rc1 = -EIO;
Brian King5fc7e012007-08-17 09:16:31 -0500854 } else {
855 rc1 = -EIO;
Santiago Leon21c2dec2010-09-03 18:29:19 +0000856 netdev_err(dev, "unable to change checksum offload settings."
857 " %d rc=%ld ret_attr=%lx\n", data, ret,
858 ret_attr);
Brian King5fc7e012007-08-17 09:16:31 -0500859 }
860
861 if (restart)
862 rc2 = ibmveth_open(dev);
863
864 return rc1 ? rc1 : rc2;
865}
866
Thomas Falcon07e6a972015-07-14 10:51:51 -0500867static int ibmveth_set_tso(struct net_device *dev, u32 data)
868{
869 struct ibmveth_adapter *adapter = netdev_priv(dev);
870 unsigned long set_attr, clr_attr, ret_attr;
871 long ret1, ret2;
872 int rc1 = 0, rc2 = 0;
873 int restart = 0;
874
875 if (netif_running(dev)) {
876 restart = 1;
877 adapter->pool_config = 1;
878 ibmveth_close(dev);
879 adapter->pool_config = 0;
880 }
881
882 set_attr = 0;
883 clr_attr = 0;
884
885 if (data)
886 set_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
887 else
888 clr_attr = IBMVETH_ILLAN_LRG_SR_ENABLED;
889
890 ret1 = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
891
892 if (ret1 == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
893 !old_large_send) {
894 ret2 = h_illan_attributes(adapter->vdev->unit_address, clr_attr,
895 set_attr, &ret_attr);
896
897 if (ret2 != H_SUCCESS) {
898 netdev_err(dev, "unable to change tso settings. %d rc=%ld\n",
899 data, ret2);
900
901 h_illan_attributes(adapter->vdev->unit_address,
902 set_attr, clr_attr, &ret_attr);
903
904 if (data == 1)
905 dev->features &= ~(NETIF_F_TSO | NETIF_F_TSO6);
906 rc1 = -EIO;
907
908 } else {
909 adapter->fw_large_send_support = data;
910 adapter->large_send = data;
911 }
912 } else {
913 /* Older firmware version of large send offload does not
914 * support tcp6/ipv6
915 */
916 if (data == 1) {
917 dev->features &= ~NETIF_F_TSO6;
918 netdev_info(dev, "TSO feature requires all partitions to have updated driver");
919 }
920 adapter->large_send = data;
921 }
922
923 if (restart)
924 rc2 = ibmveth_open(dev);
925
926 return rc1 ? rc1 : rc2;
927}
928
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000929static int ibmveth_set_features(struct net_device *dev,
930 netdev_features_t features)
Brian King5fc7e012007-08-17 09:16:31 -0500931{
Wang Chen4cf16532008-11-12 23:38:14 -0800932 struct ibmveth_adapter *adapter = netdev_priv(dev);
Michał Mirosławb9367bf2011-04-19 02:14:25 +0000933 int rx_csum = !!(features & NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500934 int large_send = !!(features & (NETIF_F_TSO | NETIF_F_TSO6));
935 int rc1 = 0, rc2 = 0;
Thomas Falcon8641dd82015-04-29 16:25:45 -0500936
Thomas Falcon07e6a972015-07-14 10:51:51 -0500937 if (rx_csum != adapter->rx_csum) {
938 rc1 = ibmveth_set_csum_offload(dev, rx_csum);
939 if (rc1 && !adapter->rx_csum)
940 dev->features =
Tom Herberta1882222015-12-14 11:19:43 -0800941 features & ~(NETIF_F_CSUM_MASK |
942 NETIF_F_RXCSUM);
Thomas Falcon07e6a972015-07-14 10:51:51 -0500943 }
Brian King5fc7e012007-08-17 09:16:31 -0500944
Thomas Falcon07e6a972015-07-14 10:51:51 -0500945 if (large_send != adapter->large_send) {
946 rc2 = ibmveth_set_tso(dev, large_send);
947 if (rc2 && !adapter->large_send)
948 dev->features =
949 features & ~(NETIF_F_TSO | NETIF_F_TSO6);
950 }
Brian King5fc7e012007-08-17 09:16:31 -0500951
Thomas Falcon07e6a972015-07-14 10:51:51 -0500952 return rc1 ? rc1 : rc2;
Brian King5fc7e012007-08-17 09:16:31 -0500953}
954
Brian Kingddbb4de2007-08-17 09:16:43 -0500955static void ibmveth_get_strings(struct net_device *dev, u32 stringset, u8 *data)
956{
957 int i;
958
959 if (stringset != ETH_SS_STATS)
960 return;
961
962 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++, data += ETH_GSTRING_LEN)
963 memcpy(data, ibmveth_stats[i].name, ETH_GSTRING_LEN);
964}
965
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700966static int ibmveth_get_sset_count(struct net_device *dev, int sset)
Brian Kingddbb4de2007-08-17 09:16:43 -0500967{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700968 switch (sset) {
969 case ETH_SS_STATS:
970 return ARRAY_SIZE(ibmveth_stats);
971 default:
972 return -EOPNOTSUPP;
973 }
Brian Kingddbb4de2007-08-17 09:16:43 -0500974}
975
976static void ibmveth_get_ethtool_stats(struct net_device *dev,
977 struct ethtool_stats *stats, u64 *data)
978{
979 int i;
Wang Chen4cf16532008-11-12 23:38:14 -0800980 struct ibmveth_adapter *adapter = netdev_priv(dev);
Brian Kingddbb4de2007-08-17 09:16:43 -0500981
982 for (i = 0; i < ARRAY_SIZE(ibmveth_stats); i++)
983 data[i] = IBMVETH_GET_STAT(adapter, ibmveth_stats[i].offset);
984}
985
Jeff Garzik7282d492006-09-13 14:30:00 -0400986static const struct ethtool_ops netdev_ethtool_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 .get_drvinfo = netdev_get_drvinfo,
Ben Hutchingsed4ba4b2010-12-09 12:10:25 +0000988 .get_link = ethtool_op_get_link,
Brian Kingddbb4de2007-08-17 09:16:43 -0500989 .get_strings = ibmveth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700990 .get_sset_count = ibmveth_get_sset_count,
Brian Kingddbb4de2007-08-17 09:16:43 -0500991 .get_ethtool_stats = ibmveth_get_ethtool_stats,
Philippe Reynes9ce8c2d2017-01-07 22:35:13 +0100992 .get_link_ksettings = netdev_get_link_ksettings,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993};
994
995static int ibmveth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
996{
997 return -EOPNOTSUPP;
998}
999
1000#define page_offset(v) ((unsigned long)(v) & ((1 << 12) - 1))
1001
Santiago Leon6e8ab302010-09-03 18:28:36 +00001002static int ibmveth_send(struct ibmveth_adapter *adapter,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001003 union ibmveth_buf_desc *descs, unsigned long mss)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001004{
1005 unsigned long correlator;
1006 unsigned int retry_count;
1007 unsigned long ret;
1008
1009 /*
1010 * The retry count sets a maximum for the number of broadcast and
1011 * multicast destinations within the system.
1012 */
1013 retry_count = 1024;
1014 correlator = 0;
1015 do {
1016 ret = h_send_logical_lan(adapter->vdev->unit_address,
1017 descs[0].desc, descs[1].desc,
1018 descs[2].desc, descs[3].desc,
1019 descs[4].desc, descs[5].desc,
Thomas Falcon07e6a972015-07-14 10:51:51 -05001020 correlator, &correlator, mss,
1021 adapter->fw_large_send_support);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001022 } while ((ret == H_BUSY) && (retry_count--));
1023
1024 if (ret != H_SUCCESS && ret != H_DROPPED) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001025 netdev_err(adapter->netdev, "tx: h_send_logical_lan failed "
1026 "with rc=%ld\n", ret);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001027 return 1;
1028 }
1029
1030 return 0;
1031}
1032
Stephen Hemminger613573252009-08-31 19:50:58 +00001033static netdev_tx_t ibmveth_start_xmit(struct sk_buff *skb,
1034 struct net_device *netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Wang Chen4cf16532008-11-12 23:38:14 -08001036 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001037 unsigned int desc_flags;
1038 union ibmveth_buf_desc descs[6];
1039 int last, i;
1040 int force_bounce = 0;
David S. Miller8decf862011-09-22 03:23:13 -04001041 dma_addr_t dma_addr;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001042 unsigned long mss = 0;
Santiago Leon60296d92005-10-26 10:47:16 -06001043
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001044 /* veth doesn't handle frag_list, so linearize the skb.
1045 * When GRO is enabled SKB's can have frag_list.
1046 */
1047 if (adapter->is_active_trunk &&
1048 skb_has_frag_list(skb) && __skb_linearize(skb)) {
1049 netdev->stats.tx_dropped++;
1050 goto out;
1051 }
1052
Santiago Leon6e8ab302010-09-03 18:28:36 +00001053 /*
1054 * veth handles a maximum of 6 segments including the header, so
1055 * we have to linearize the skb if there are more than this.
1056 */
1057 if (skb_shinfo(skb)->nr_frags > 5 && __skb_linearize(skb)) {
1058 netdev->stats.tx_dropped++;
Brian Kingf4ff2872007-09-15 13:36:07 -07001059 goto out;
1060 }
1061
Santiago Leon6e8ab302010-09-03 18:28:36 +00001062 /* veth can't checksum offload UDP */
1063 if (skb->ip_summed == CHECKSUM_PARTIAL &&
Santiago Leonab78df72010-09-03 18:28:52 +00001064 ((skb->protocol == htons(ETH_P_IP) &&
1065 ip_hdr(skb)->protocol != IPPROTO_TCP) ||
1066 (skb->protocol == htons(ETH_P_IPV6) &&
1067 ipv6_hdr(skb)->nexthdr != IPPROTO_TCP)) &&
1068 skb_checksum_help(skb)) {
1069
Santiago Leon21c2dec2010-09-03 18:29:19 +00001070 netdev_err(netdev, "tx: failed to checksum packet\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001071 netdev->stats.tx_dropped++;
1072 goto out;
1073 }
Brian Kingf4ff2872007-09-15 13:36:07 -07001074
Santiago Leon6e8ab302010-09-03 18:28:36 +00001075 desc_flags = IBMVETH_BUF_VALID;
1076
1077 if (skb->ip_summed == CHECKSUM_PARTIAL) {
1078 unsigned char *buf = skb_transport_header(skb) +
1079 skb->csum_offset;
1080
1081 desc_flags |= (IBMVETH_BUF_NO_CSUM | IBMVETH_BUF_CSUM_GOOD);
Brian Kingf4ff2872007-09-15 13:36:07 -07001082
1083 /* Need to zero out the checksum */
1084 buf[0] = 0;
1085 buf[1] = 0;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001086
1087 if (skb_is_gso(skb) && adapter->fw_large_send_support)
1088 desc_flags |= IBMVETH_BUF_LRG_SND;
Brian Kingf4ff2872007-09-15 13:36:07 -07001089 }
1090
Santiago Leon6e8ab302010-09-03 18:28:36 +00001091retry_bounce:
1092 memset(descs, 0, sizeof(descs));
Santiago Leonc08cc3c2010-09-03 18:28:20 +00001093
Santiago Leon6e8ab302010-09-03 18:28:36 +00001094 /*
1095 * If a linear packet is below the rx threshold then
1096 * copy it into the static bounce buffer. This avoids the
1097 * cost of a TCE insert and remove.
1098 */
1099 if (force_bounce || (!skb_is_nonlinear(skb) &&
1100 (skb->len < tx_copybreak))) {
Robert Jennings1096d632008-07-24 04:34:52 +10001101 skb_copy_from_linear_data(skb, adapter->bounce_buffer,
1102 skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Santiago Leon6e8ab302010-09-03 18:28:36 +00001104 descs[0].fields.flags_len = desc_flags | skb->len;
1105 descs[0].fields.address = adapter->bounce_buffer_dma;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001106
Thomas Falcon07e6a972015-07-14 10:51:51 -05001107 if (ibmveth_send(adapter, descs, 0)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001108 adapter->tx_send_failed++;
1109 netdev->stats.tx_dropped++;
1110 } else {
1111 netdev->stats.tx_packets++;
1112 netdev->stats.tx_bytes += skb->len;
1113 }
1114
1115 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
1117
Santiago Leon6e8ab302010-09-03 18:28:36 +00001118 /* Map the header */
David S. Miller8decf862011-09-22 03:23:13 -04001119 dma_addr = dma_map_single(&adapter->vdev->dev, skb->data,
1120 skb_headlen(skb), DMA_TO_DEVICE);
1121 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
Santiago Leon6e8ab302010-09-03 18:28:36 +00001122 goto map_failed;
1123
1124 descs[0].fields.flags_len = desc_flags | skb_headlen(skb);
David S. Miller8decf862011-09-22 03:23:13 -04001125 descs[0].fields.address = dma_addr;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001126
1127 /* Map the frags */
1128 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +00001129 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
Santiago Leon6e8ab302010-09-03 18:28:36 +00001130
Ian Campbell8838a532011-08-31 00:46:53 +00001131 dma_addr = skb_frag_dma_map(&adapter->vdev->dev, frag, 0,
Eric Dumazet9e903e02011-10-18 21:00:24 +00001132 skb_frag_size(frag), DMA_TO_DEVICE);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001133
1134 if (dma_mapping_error(&adapter->vdev->dev, dma_addr))
1135 goto map_failed_frags;
1136
Eric Dumazet9e903e02011-10-18 21:00:24 +00001137 descs[i+1].fields.flags_len = desc_flags | skb_frag_size(frag);
Santiago Leon6e8ab302010-09-03 18:28:36 +00001138 descs[i+1].fields.address = dma_addr;
1139 }
1140
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001141 if (skb->ip_summed == CHECKSUM_PARTIAL && skb_is_gso(skb)) {
Thomas Falcon07e6a972015-07-14 10:51:51 -05001142 if (adapter->fw_large_send_support) {
1143 mss = (unsigned long)skb_shinfo(skb)->gso_size;
1144 adapter->tx_large_packets++;
1145 } else if (!skb_is_gso_v6(skb)) {
1146 /* Put -1 in the IP checksum to tell phyp it
1147 * is a largesend packet. Put the mss in
1148 * the TCP checksum.
1149 */
1150 ip_hdr(skb)->check = 0xffff;
1151 tcp_hdr(skb)->check =
1152 cpu_to_be16(skb_shinfo(skb)->gso_size);
1153 adapter->tx_large_packets++;
1154 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001155 }
1156
Thomas Falcon07e6a972015-07-14 10:51:51 -05001157 if (ibmveth_send(adapter, descs, mss)) {
Santiago Leon6e8ab302010-09-03 18:28:36 +00001158 adapter->tx_send_failed++;
1159 netdev->stats.tx_dropped++;
1160 } else {
1161 netdev->stats.tx_packets++;
1162 netdev->stats.tx_bytes += skb->len;
1163 }
1164
David S. Miller8decf862011-09-22 03:23:13 -04001165 dma_unmap_single(&adapter->vdev->dev,
1166 descs[0].fields.address,
1167 descs[0].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1168 DMA_TO_DEVICE);
1169
1170 for (i = 1; i < skb_shinfo(skb)->nr_frags + 1; i++)
Santiago Leon6e8ab302010-09-03 18:28:36 +00001171 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1172 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1173 DMA_TO_DEVICE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Santiago Leone8cb7eb2010-09-03 18:28:15 +00001175out:
Eric W. Biederman26faa9d2014-03-15 17:29:34 -07001176 dev_consume_skb_any(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +00001177 return NETDEV_TX_OK;
Santiago Leon6e8ab302010-09-03 18:28:36 +00001178
1179map_failed_frags:
1180 last = i+1;
1181 for (i = 0; i < last; i++)
1182 dma_unmap_page(&adapter->vdev->dev, descs[i].fields.address,
1183 descs[i].fields.flags_len & IBMVETH_BUF_LEN_MASK,
1184 DMA_TO_DEVICE);
1185
1186map_failed:
1187 if (!firmware_has_feature(FW_FEATURE_CMO))
Santiago Leon21c2dec2010-09-03 18:29:19 +00001188 netdev_err(netdev, "tx: unable to map xmit buffer\n");
Santiago Leon6e8ab302010-09-03 18:28:36 +00001189 adapter->tx_map_failed++;
Thomas Falcon2c42bf42016-03-03 15:22:36 -06001190 if (skb_linearize(skb)) {
1191 netdev->stats.tx_dropped++;
1192 goto out;
1193 }
Santiago Leon6e8ab302010-09-03 18:28:36 +00001194 force_bounce = 1;
1195 goto retry_bounce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
Thomas Falcon7b596732016-12-08 16:40:03 -06001198static void ibmveth_rx_mss_helper(struct sk_buff *skb, u16 mss, int lrg_pkt)
1199{
Thomas Falcon94acf162016-12-13 18:15:09 -06001200 struct tcphdr *tcph;
Thomas Falcon7b596732016-12-08 16:40:03 -06001201 int offset = 0;
Thomas Falcon94acf162016-12-13 18:15:09 -06001202 int hdr_len;
Thomas Falcon7b596732016-12-08 16:40:03 -06001203
1204 /* only TCP packets will be aggregated */
1205 if (skb->protocol == htons(ETH_P_IP)) {
1206 struct iphdr *iph = (struct iphdr *)skb->data;
1207
1208 if (iph->protocol == IPPROTO_TCP) {
1209 offset = iph->ihl * 4;
1210 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1211 } else {
1212 return;
1213 }
1214 } else if (skb->protocol == htons(ETH_P_IPV6)) {
1215 struct ipv6hdr *iph6 = (struct ipv6hdr *)skb->data;
1216
1217 if (iph6->nexthdr == IPPROTO_TCP) {
1218 offset = sizeof(struct ipv6hdr);
1219 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1220 } else {
1221 return;
1222 }
1223 } else {
1224 return;
1225 }
1226 /* if mss is not set through Large Packet bit/mss in rx buffer,
1227 * expect that the mss will be written to the tcp header checksum.
1228 */
Thomas Falcon94acf162016-12-13 18:15:09 -06001229 tcph = (struct tcphdr *)(skb->data + offset);
Thomas Falcon7b596732016-12-08 16:40:03 -06001230 if (lrg_pkt) {
1231 skb_shinfo(skb)->gso_size = mss;
1232 } else if (offset) {
Thomas Falcon7b596732016-12-08 16:40:03 -06001233 skb_shinfo(skb)->gso_size = ntohs(tcph->check);
1234 tcph->check = 0;
1235 }
Thomas Falcon94acf162016-12-13 18:15:09 -06001236
1237 if (skb_shinfo(skb)->gso_size) {
1238 hdr_len = offset + tcph->doff * 4;
1239 skb_shinfo(skb)->gso_segs =
1240 DIV_ROUND_UP(skb->len - hdr_len,
1241 skb_shinfo(skb)->gso_size);
1242 }
Thomas Falcon7b596732016-12-08 16:40:03 -06001243}
1244
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001245static void ibmveth_rx_csum_helper(struct sk_buff *skb,
1246 struct ibmveth_adapter *adapter)
1247{
1248 struct iphdr *iph = NULL;
1249 struct ipv6hdr *iph6 = NULL;
1250 __be16 skb_proto = 0;
1251 u16 iphlen = 0;
1252 u16 iph_proto = 0;
1253 u16 tcphdrlen = 0;
1254
1255 skb_proto = be16_to_cpu(skb->protocol);
1256
1257 if (skb_proto == ETH_P_IP) {
1258 iph = (struct iphdr *)skb->data;
1259
1260 /* If the IP checksum is not offloaded and if the packet
1261 * is large send, the checksum must be rebuilt.
1262 */
1263 if (iph->check == 0xffff) {
1264 iph->check = 0;
1265 iph->check = ip_fast_csum((unsigned char *)iph,
1266 iph->ihl);
1267 }
1268
1269 iphlen = iph->ihl * 4;
1270 iph_proto = iph->protocol;
1271 } else if (skb_proto == ETH_P_IPV6) {
1272 iph6 = (struct ipv6hdr *)skb->data;
1273 iphlen = sizeof(struct ipv6hdr);
1274 iph_proto = iph6->nexthdr;
1275 }
1276
1277 /* In OVS environment, when a flow is not cached, specifically for a
1278 * new TCP connection, the first packet information is passed up
1279 * the user space for finding a flow. During this process, OVS computes
1280 * checksum on the first packet when CHECKSUM_PARTIAL flag is set.
1281 *
1282 * Given that we zeroed out TCP checksum field in transmit path
1283 * (refer ibmveth_start_xmit routine) as we set "no checksum bit",
1284 * OVS computed checksum will be incorrect w/o TCP pseudo checksum
1285 * in the packet. This leads to OVS dropping the packet and hence
1286 * TCP retransmissions are seen.
1287 *
1288 * So, re-compute TCP pseudo header checksum.
1289 */
1290 if (iph_proto == IPPROTO_TCP && adapter->is_active_trunk) {
1291 struct tcphdr *tcph = (struct tcphdr *)(skb->data + iphlen);
1292
1293 tcphdrlen = skb->len - iphlen;
1294
1295 /* Recompute TCP pseudo header checksum */
1296 if (skb_proto == ETH_P_IP)
1297 tcph->check = ~csum_tcpudp_magic(iph->saddr,
1298 iph->daddr, tcphdrlen, iph_proto, 0);
1299 else if (skb_proto == ETH_P_IPV6)
1300 tcph->check = ~csum_ipv6_magic(&iph6->saddr,
1301 &iph6->daddr, tcphdrlen, iph_proto, 0);
1302
1303 /* Setup SKB fields for checksum offload */
1304 skb_partial_csum_set(skb, iphlen,
1305 offsetof(struct tcphdr, check));
1306 skb_reset_network_header(skb);
1307 }
1308}
1309
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001310static int ibmveth_poll(struct napi_struct *napi, int budget)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
Santiago Leonf148f612010-09-03 18:29:30 +00001312 struct ibmveth_adapter *adapter =
1313 container_of(napi, struct ibmveth_adapter, napi);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001314 struct net_device *netdev = adapter->netdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 int frames_processed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 unsigned long lpar_rc;
Thomas Falcon7b596732016-12-08 16:40:03 -06001317 u16 mss = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Santiago Leonf148f612010-09-03 18:29:30 +00001319restart_poll:
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001320 while (frames_processed < budget) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001321 if (!ibmveth_rxq_pending_buffer(adapter))
1322 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Anton Blanchardf89e49e2010-09-06 18:21:41 -07001324 smp_rmb();
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001325 if (!ibmveth_rxq_buffer_valid(adapter)) {
1326 wmb(); /* suggested by larson1 */
1327 adapter->rx_invalid_buffer++;
Santiago Leonc43ced12010-09-03 18:29:14 +00001328 netdev_dbg(netdev, "recycling invalid buffer\n");
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001329 ibmveth_rxq_recycle_buffer(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 } else {
Santiago Leon8d86c612010-09-03 18:28:25 +00001331 struct sk_buff *skb, *new_skb;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001332 int length = ibmveth_rxq_frame_length(adapter);
1333 int offset = ibmveth_rxq_frame_offset(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001334 int csum_good = ibmveth_rxq_csum_good(adapter);
Thomas Falcon7b596732016-12-08 16:40:03 -06001335 int lrg_pkt = ibmveth_rxq_large_packet(adapter);
Brian Kingf4ff2872007-09-15 13:36:07 -07001336
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001337 skb = ibmveth_rxq_get_buffer(adapter);
1338
Thomas Falcon7b596732016-12-08 16:40:03 -06001339 /* if the large packet bit is set in the rx queue
1340 * descriptor, the mss will be written by PHYP eight
1341 * bytes from the start of the rx buffer, which is
1342 * skb->data at this stage
1343 */
1344 if (lrg_pkt) {
1345 __be64 *rxmss = (__be64 *)(skb->data + 8);
1346
1347 mss = (u16)be64_to_cpu(*rxmss);
1348 }
1349
Santiago Leon8d86c612010-09-03 18:28:25 +00001350 new_skb = NULL;
1351 if (length < rx_copybreak)
1352 new_skb = netdev_alloc_skb(netdev, length);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001353
Santiago Leon8d86c612010-09-03 18:28:25 +00001354 if (new_skb) {
1355 skb_copy_to_linear_data(new_skb,
1356 skb->data + offset,
1357 length);
Santiago Leon0c26b672010-09-03 18:28:41 +00001358 if (rx_flush)
1359 ibmveth_flush_buffer(skb->data,
1360 length + offset);
David S. Miller8decf862011-09-22 03:23:13 -04001361 if (!ibmveth_rxq_recycle_buffer(adapter))
1362 kfree_skb(skb);
Santiago Leon8d86c612010-09-03 18:28:25 +00001363 skb = new_skb;
Santiago Leon8d86c612010-09-03 18:28:25 +00001364 } else {
1365 ibmveth_rxq_harvest_buffer(adapter);
1366 skb_reserve(skb, offset);
1367 }
1368
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001369 skb_put(skb, length);
1370 skb->protocol = eth_type_trans(skb, netdev);
1371
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001372 if (csum_good) {
Santiago Leon8d86c612010-09-03 18:28:25 +00001373 skb->ip_summed = CHECKSUM_UNNECESSARY;
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001374 ibmveth_rx_csum_helper(skb, adapter);
Thomas Falcon9c7e8bc2015-04-29 16:25:47 -05001375 }
Santiago Leon8d86c612010-09-03 18:28:25 +00001376
Thomas Falcon7b596732016-12-08 16:40:03 -06001377 if (length > netdev->mtu + ETH_HLEN) {
1378 ibmveth_rx_mss_helper(skb, mss, lrg_pkt);
1379 adapter->rx_large_packets++;
1380 }
1381
Thomas Falcon92ec8272015-04-29 16:25:46 -05001382 napi_gro_receive(napi, skb); /* send it up */
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001383
Jeff Garzik09f75cd2007-10-03 17:41:50 -07001384 netdev->stats.rx_packets++;
1385 netdev->stats.rx_bytes += length;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001386 frames_processed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Eric W. Biedermancb013ea2014-03-14 18:03:50 -07001388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Santiago Leone2adbcb2005-10-26 10:47:08 -06001390 ibmveth_replenish_task(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001392 if (frames_processed < budget) {
Eric Dumazet6ad20162017-01-30 08:22:01 -08001393 napi_complete_done(napi, frames_processed);
Yongbae Park4736edc2015-03-10 11:15:39 +09001394
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001395 /* We think we are done - reenable interrupts,
1396 * then check once more to make sure we are done.
1397 */
1398 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1399 VIO_IRQ_ENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Santiago Leon64859112010-09-03 18:29:41 +00001401 BUG_ON(lpar_rc != H_SUCCESS);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001402
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001403 if (ibmveth_rxq_pending_buffer(adapter) &&
Ben Hutchings288379f2009-01-19 16:43:59 -08001404 napi_reschedule(napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001405 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1406 VIO_IRQ_DISABLE);
1407 goto restart_poll;
1408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 }
1410
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001411 return frames_processed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
David Howells7d12e782006-10-05 14:55:46 +01001414static irqreturn_t ibmveth_interrupt(int irq, void *dev_instance)
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001415{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 struct net_device *netdev = dev_instance;
Wang Chen4cf16532008-11-12 23:38:14 -08001417 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 unsigned long lpar_rc;
1419
Ben Hutchings288379f2009-01-19 16:43:59 -08001420 if (napi_schedule_prep(&adapter->napi)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001421 lpar_rc = h_vio_signal(adapter->vdev->unit_address,
1422 VIO_IRQ_DISABLE);
Santiago Leon64859112010-09-03 18:29:41 +00001423 BUG_ON(lpar_rc != H_SUCCESS);
Ben Hutchings288379f2009-01-19 16:43:59 -08001424 __napi_schedule(&adapter->napi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 }
1426 return IRQ_HANDLED;
1427}
1428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429static void ibmveth_set_multicast_list(struct net_device *netdev)
1430{
Wang Chen4cf16532008-11-12 23:38:14 -08001431 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 unsigned long lpar_rc;
1433
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001434 if ((netdev->flags & IFF_PROMISC) ||
1435 (netdev_mc_count(netdev) > adapter->mcastFilterSize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1437 IbmVethMcastEnableRecv |
1438 IbmVethMcastDisableFiltering,
1439 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001440 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001441 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1442 "entering promisc mode\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 }
1444 } else {
Jiri Pirko22bedad32010-04-01 21:22:57 +00001445 struct netdev_hw_addr *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /* clear the filter table & disable filtering */
1447 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1448 IbmVethMcastEnableRecv |
1449 IbmVethMcastDisableFiltering |
1450 IbmVethMcastClearFilterTable,
1451 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001452 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001453 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1454 "attempting to clear filter table\n",
1455 lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
1457 /* add the addresses to the filter table */
Jiri Pirko22bedad32010-04-01 21:22:57 +00001458 netdev_for_each_mc_addr(ha, netdev) {
Santiago Leonf148f612010-09-03 18:29:30 +00001459 /* add the multicast address to the filter table */
Anton Blanchardd746ca92014-03-05 14:51:37 +11001460 u64 mcast_addr;
1461 mcast_addr = ibmveth_encode_mac_addr(ha->addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1463 IbmVethMcastAddFilter,
1464 mcast_addr);
Santiago Leonf148f612010-09-03 18:29:30 +00001465 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001466 netdev_err(netdev, "h_multicast_ctrl rc=%ld "
1467 "when adding an entry to the filter "
1468 "table\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 }
1470 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* re-enable filtering */
1473 lpar_rc = h_multicast_ctrl(adapter->vdev->unit_address,
1474 IbmVethMcastEnableFiltering,
1475 0);
Santiago Leonf148f612010-09-03 18:29:30 +00001476 if (lpar_rc != H_SUCCESS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001477 netdev_err(netdev, "h_multicast_ctrl rc=%ld when "
1478 "enabling filtering\n", lpar_rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480 }
1481}
1482
1483static int ibmveth_change_mtu(struct net_device *dev, int new_mtu)
1484{
Wang Chen4cf16532008-11-12 23:38:14 -08001485 struct ibmveth_adapter *adapter = netdev_priv(dev);
Robert Jennings1096d632008-07-24 04:34:52 +10001486 struct vio_dev *viodev = adapter->vdev;
Santiago Leon860f2422006-04-25 11:19:59 -05001487 int new_mtu_oh = new_mtu + IBMVETH_BUFF_OH;
Robert Jennings0645bab2010-08-17 09:15:45 +00001488 int i, rc;
1489 int need_restart = 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001490
Santiago Leon517e80e2010-09-03 18:29:25 +00001491 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
David Gibson4fce1482015-04-23 14:43:05 +10001492 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size)
Brian Kingce6eea52007-06-08 14:05:17 -05001493 break;
1494
Santiago Leon517e80e2010-09-03 18:29:25 +00001495 if (i == IBMVETH_NUM_BUFF_POOLS)
Brian Kingce6eea52007-06-08 14:05:17 -05001496 return -EINVAL;
1497
Santiago Leonea866e62008-07-24 04:34:23 +10001498 /* Deactivate all the buffer pools so that the next loop can activate
1499 only the buffer pools necessary to hold the new MTU */
Robert Jennings0645bab2010-08-17 09:15:45 +00001500 if (netif_running(adapter->netdev)) {
1501 need_restart = 1;
1502 adapter->pool_config = 1;
1503 ibmveth_close(adapter->netdev);
1504 adapter->pool_config = 0;
1505 }
Brian Kingce6eea52007-06-08 14:05:17 -05001506
Santiago Leonea866e62008-07-24 04:34:23 +10001507 /* Look for an active buffer pool that can hold the new MTU */
Santiago Leonf148f612010-09-03 18:29:30 +00001508 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leonea866e62008-07-24 04:34:23 +10001509 adapter->rx_buff_pool[i].active = 1;
1510
David Gibson4fce1482015-04-23 14:43:05 +10001511 if (new_mtu_oh <= adapter->rx_buff_pool[i].buff_size) {
Robert Jennings1096d632008-07-24 04:34:52 +10001512 dev->mtu = new_mtu;
1513 vio_cmo_set_dev_desired(viodev,
1514 ibmveth_get_desired_dma
1515 (viodev));
Robert Jennings0645bab2010-08-17 09:15:45 +00001516 if (need_restart) {
1517 return ibmveth_open(adapter->netdev);
1518 }
Santiago Leon860f2422006-04-25 11:19:59 -05001519 return 0;
Santiago Leonb6d35182005-10-26 10:47:01 -06001520 }
Santiago Leonb6d35182005-10-26 10:47:01 -06001521 }
Robert Jennings0645bab2010-08-17 09:15:45 +00001522
1523 if (need_restart && (rc = ibmveth_open(adapter->netdev)))
1524 return rc;
1525
Santiago Leon860f2422006-04-25 11:19:59 -05001526 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527}
1528
Santiago Leon6b422372006-10-03 12:24:28 -05001529#ifdef CONFIG_NET_POLL_CONTROLLER
1530static void ibmveth_poll_controller(struct net_device *dev)
1531{
Wang Chen4cf16532008-11-12 23:38:14 -08001532 ibmveth_replenish_task(netdev_priv(dev));
Andrew Morton5f771132006-10-10 14:33:30 -07001533 ibmveth_interrupt(dev->irq, dev);
Santiago Leon6b422372006-10-03 12:24:28 -05001534}
1535#endif
1536
Robert Jennings1096d632008-07-24 04:34:52 +10001537/**
1538 * ibmveth_get_desired_dma - Calculate IO memory desired by the driver
1539 *
1540 * @vdev: struct vio_dev for the device whose desired IO mem is to be returned
1541 *
1542 * Return value:
1543 * Number of bytes of IO data the driver will need to perform well.
1544 */
1545static unsigned long ibmveth_get_desired_dma(struct vio_dev *vdev)
1546{
1547 struct net_device *netdev = dev_get_drvdata(&vdev->dev);
1548 struct ibmveth_adapter *adapter;
Alistair Poppled0847752013-12-09 18:17:03 +11001549 struct iommu_table *tbl;
Robert Jennings1096d632008-07-24 04:34:52 +10001550 unsigned long ret;
1551 int i;
1552 int rxqentries = 1;
1553
Alistair Poppled0847752013-12-09 18:17:03 +11001554 tbl = get_iommu_table_base(&vdev->dev);
1555
Robert Jennings1096d632008-07-24 04:34:52 +10001556 /* netdev inits at probe time along with the structures we need below*/
1557 if (netdev == NULL)
Alistair Poppled0847752013-12-09 18:17:03 +11001558 return IOMMU_PAGE_ALIGN(IBMVETH_IO_ENTITLEMENT_DEFAULT, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001559
1560 adapter = netdev_priv(netdev);
1561
1562 ret = IBMVETH_BUFF_LIST_SIZE + IBMVETH_FILT_LIST_SIZE;
Alistair Poppled0847752013-12-09 18:17:03 +11001563 ret += IOMMU_PAGE_ALIGN(netdev->mtu, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001564
Santiago Leon517e80e2010-09-03 18:29:25 +00001565 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Robert Jennings1096d632008-07-24 04:34:52 +10001566 /* add the size of the active receive buffers */
1567 if (adapter->rx_buff_pool[i].active)
1568 ret +=
1569 adapter->rx_buff_pool[i].size *
1570 IOMMU_PAGE_ALIGN(adapter->rx_buff_pool[i].
Alistair Poppled0847752013-12-09 18:17:03 +11001571 buff_size, tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001572 rxqentries += adapter->rx_buff_pool[i].size;
1573 }
1574 /* add the size of the receive queue entries */
Alistair Poppled0847752013-12-09 18:17:03 +11001575 ret += IOMMU_PAGE_ALIGN(
1576 rxqentries * sizeof(struct ibmveth_rx_q_entry), tbl);
Robert Jennings1096d632008-07-24 04:34:52 +10001577
1578 return ret;
1579}
1580
Thomas Falconc77c7612015-03-02 11:56:12 -06001581static int ibmveth_set_mac_addr(struct net_device *dev, void *p)
1582{
1583 struct ibmveth_adapter *adapter = netdev_priv(dev);
1584 struct sockaddr *addr = p;
1585 u64 mac_address;
1586 int rc;
1587
1588 if (!is_valid_ether_addr(addr->sa_data))
1589 return -EADDRNOTAVAIL;
1590
1591 mac_address = ibmveth_encode_mac_addr(addr->sa_data);
1592 rc = h_change_logical_lan_mac(adapter->vdev->unit_address, mac_address);
1593 if (rc) {
1594 netdev_err(adapter->netdev, "h_change_logical_lan_mac failed with rc=%d\n", rc);
1595 return rc;
1596 }
1597
1598 ether_addr_copy(dev->dev_addr, addr->sa_data);
1599
1600 return 0;
1601}
1602
Alexander Beregalove186d172009-04-15 12:52:39 +00001603static const struct net_device_ops ibmveth_netdev_ops = {
1604 .ndo_open = ibmveth_open,
1605 .ndo_stop = ibmveth_close,
1606 .ndo_start_xmit = ibmveth_start_xmit,
Jiri Pirkoafc4b132011-08-16 06:29:01 +00001607 .ndo_set_rx_mode = ibmveth_set_multicast_list,
Alexander Beregalove186d172009-04-15 12:52:39 +00001608 .ndo_do_ioctl = ibmveth_ioctl,
1609 .ndo_change_mtu = ibmveth_change_mtu,
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001610 .ndo_fix_features = ibmveth_fix_features,
1611 .ndo_set_features = ibmveth_set_features,
Alexander Beregalove186d172009-04-15 12:52:39 +00001612 .ndo_validate_addr = eth_validate_addr,
Thomas Falconc77c7612015-03-02 11:56:12 -06001613 .ndo_set_mac_address = ibmveth_set_mac_addr,
Alexander Beregalove186d172009-04-15 12:52:39 +00001614#ifdef CONFIG_NET_POLL_CONTROLLER
1615 .ndo_poll_controller = ibmveth_poll_controller,
1616#endif
1617};
1618
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +00001619static int ibmveth_probe(struct vio_dev *dev, const struct vio_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001621 int rc, i, mac_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 struct net_device *netdev;
Mariusz Kozlowski9dc83af2007-08-06 23:44:03 +02001623 struct ibmveth_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 unsigned char *mac_addr_p;
1625 unsigned int *mcastFilterSize_p;
Thomas Falcon07e6a972015-07-14 10:51:51 -05001626 long ret;
1627 unsigned long ret_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Santiago Leonc43ced12010-09-03 18:29:14 +00001629 dev_dbg(&dev->dev, "entering ibmveth_probe for UA 0x%x\n",
1630 dev->unit_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Santiago Leonf148f612010-09-03 18:29:30 +00001632 mac_addr_p = (unsigned char *)vio_get_attribute(dev, VETH_MAC_ADDR,
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001633 &mac_len);
Santiago Leonf148f612010-09-03 18:29:30 +00001634 if (!mac_addr_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001635 dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 }
Benjamin Herrenschmidt13f85202013-05-03 17:19:01 +00001638 /* Workaround for old/broken pHyp */
1639 if (mac_len == 8)
1640 mac_addr_p += 2;
1641 else if (mac_len != 6) {
1642 dev_err(&dev->dev, "VETH_MAC_ADDR attribute wrong len %d\n",
1643 mac_len);
1644 return -EINVAL;
1645 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001646
Santiago Leonf148f612010-09-03 18:29:30 +00001647 mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
Michael Ellerman493a6842007-04-17 13:12:55 +10001648 VETH_MCAST_FILTER_SIZE, NULL);
Santiago Leonf148f612010-09-03 18:29:30 +00001649 if (!mcastFilterSize_p) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001650 dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
1651 "attribute\n");
Santiago Leonbe35ae92010-09-03 18:29:36 +00001652 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
1656
Santiago Leonf148f612010-09-03 18:29:30 +00001657 if (!netdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 return -ENOMEM;
1659
Wang Chen4cf16532008-11-12 23:38:14 -08001660 adapter = netdev_priv(netdev);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001661 dev_set_drvdata(&dev->dev, netdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 adapter->vdev = dev;
1664 adapter->netdev = netdev;
Santiago Leonf148f612010-09-03 18:29:30 +00001665 adapter->mcastFilterSize = *mcastFilterSize_p;
Santiago Leon860f2422006-04-25 11:19:59 -05001666 adapter->pool_config = 0;
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001667
Stephen Hemmingerbea33482007-10-03 16:41:36 -07001668 netif_napi_add(netdev, &adapter->napi, ibmveth_poll, 16);
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 netdev->irq = dev->irq;
Alexander Beregalove186d172009-04-15 12:52:39 +00001671 netdev->netdev_ops = &ibmveth_netdev_ops;
1672 netdev->ethtool_ops = &netdev_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 SET_NETDEV_DEV(netdev, &dev->dev);
Thomas Huth23d28a82017-01-24 07:28:41 +01001674 netdev->hw_features = NETIF_F_SG;
1675 if (vio_get_attribute(dev, "ibm,illan-options", NULL) != NULL) {
1676 netdev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
1677 NETIF_F_RXCSUM;
1678 }
Thomas Falcon07e6a972015-07-14 10:51:51 -05001679
Michał Mirosławb9367bf2011-04-19 02:14:25 +00001680 netdev->features |= netdev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Thomas Falcon07e6a972015-07-14 10:51:51 -05001682 ret = h_illan_attributes(adapter->vdev->unit_address, 0, 0, &ret_attr);
1683
1684 /* If running older firmware, TSO should not be enabled by default */
1685 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_LRG_SND_SUPPORT) &&
1686 !old_large_send) {
1687 netdev->hw_features |= NETIF_F_TSO | NETIF_F_TSO6;
1688 netdev->features |= netdev->hw_features;
1689 } else {
1690 netdev->hw_features |= NETIF_F_TSO;
1691 }
Thomas Falcon8641dd82015-04-29 16:25:45 -05001692
Sivakumar Krishnasamy66aa0672017-05-19 05:30:38 -04001693 adapter->is_active_trunk = false;
1694 if (ret == H_SUCCESS && (ret_attr & IBMVETH_ILLAN_ACTIVE_TRUNK)) {
1695 adapter->is_active_trunk = true;
1696 netdev->hw_features |= NETIF_F_FRAGLIST;
1697 netdev->features |= NETIF_F_FRAGLIST;
1698 }
1699
Jarod Wilsond894be52016-10-20 13:55:16 -04001700 netdev->min_mtu = IBMVETH_MIN_MTU;
Stefan Richter110447f82016-10-24 14:42:26 +02001701 netdev->max_mtu = ETH_MAX_MTU;
Jarod Wilsond894be52016-10-20 13:55:16 -04001702
Anton Blanchardd746ca92014-03-05 14:51:37 +11001703 memcpy(netdev->dev_addr, mac_addr_p, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Thomas Falconcd7c7ec2015-04-29 16:25:44 -05001705 if (firmware_has_feature(FW_FEATURE_CMO))
1706 memcpy(pool_count, pool_count_cmo, sizeof(pool_count));
1707
Santiago Leonf148f612010-09-03 18:29:30 +00001708 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001709 struct kobject *kobj = &adapter->rx_buff_pool[i].kobj;
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001710 int error;
1711
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001712 ibmveth_init_buffer_pool(&adapter->rx_buff_pool[i], i,
1713 pool_count[i], pool_size[i],
Santiago Leon860f2422006-04-25 11:19:59 -05001714 pool_active[i]);
Greg Kroah-Hartman8dde2a92007-12-17 15:54:39 -04001715 error = kobject_init_and_add(kobj, &ktype_veth_pool,
1716 &dev->dev.kobj, "pool%d", i);
1717 if (!error)
1718 kobject_uevent(kobj, KOBJ_ADD);
Santiago Leon860f2422006-04-25 11:19:59 -05001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Santiago Leonc43ced12010-09-03 18:29:14 +00001721 netdev_dbg(netdev, "adapter @ 0x%p\n", adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 adapter->buffer_list_dma = DMA_ERROR_CODE;
1724 adapter->filter_list_dma = DMA_ERROR_CODE;
1725 adapter->rx_queue.queue_dma = DMA_ERROR_CODE;
1726
Santiago Leonc43ced12010-09-03 18:29:14 +00001727 netdev_dbg(netdev, "registering netdev...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Michał Mirosławb801a4e2011-04-28 11:59:15 +10001729 ibmveth_set_features(netdev, netdev->features);
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 rc = register_netdev(netdev);
1732
Santiago Leonf148f612010-09-03 18:29:30 +00001733 if (rc) {
Santiago Leonc43ced12010-09-03 18:29:14 +00001734 netdev_dbg(netdev, "failed to register netdev rc=%d\n", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 free_netdev(netdev);
1736 return rc;
1737 }
1738
Santiago Leonc43ced12010-09-03 18:29:14 +00001739 netdev_dbg(netdev, "registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return 0;
1742}
1743
Bill Pembertone11787a2012-12-03 09:23:12 -05001744static int ibmveth_remove(struct vio_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001746 struct net_device *netdev = dev_get_drvdata(&dev->dev);
Wang Chen4cf16532008-11-12 23:38:14 -08001747 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001748 int i;
1749
Santiago Leonf148f612010-09-03 18:29:30 +00001750 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++)
Greg Kroah-Hartmanc10997f2007-12-20 08:13:05 -08001751 kobject_put(&adapter->rx_buff_pool[i].kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 unregister_netdev(netdev);
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 free_netdev(netdev);
Robert Jennings1096d632008-07-24 04:34:52 +10001756 dev_set_drvdata(&dev->dev, NULL);
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return 0;
1759}
1760
Santiago Leon860f2422006-04-25 11:19:59 -05001761static struct attribute veth_active_attr;
1762static struct attribute veth_num_attr;
1763static struct attribute veth_size_attr;
1764
Santiago Leonf148f612010-09-03 18:29:30 +00001765static ssize_t veth_pool_show(struct kobject *kobj,
1766 struct attribute *attr, char *buf)
Santiago Leon860f2422006-04-25 11:19:59 -05001767{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001768 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001769 struct ibmveth_buff_pool,
1770 kobj);
1771
1772 if (attr == &veth_active_attr)
1773 return sprintf(buf, "%d\n", pool->active);
1774 else if (attr == &veth_num_attr)
1775 return sprintf(buf, "%d\n", pool->size);
1776 else if (attr == &veth_size_attr)
1777 return sprintf(buf, "%d\n", pool->buff_size);
1778 return 0;
1779}
1780
Santiago Leonf148f612010-09-03 18:29:30 +00001781static ssize_t veth_pool_store(struct kobject *kobj, struct attribute *attr,
1782 const char *buf, size_t count)
Santiago Leon860f2422006-04-25 11:19:59 -05001783{
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001784 struct ibmveth_buff_pool *pool = container_of(kobj,
Santiago Leon860f2422006-04-25 11:19:59 -05001785 struct ibmveth_buff_pool,
1786 kobj);
Greg Kroah-Hartmanc7ae0112009-05-04 21:33:19 -07001787 struct net_device *netdev = dev_get_drvdata(
1788 container_of(kobj->parent, struct device, kobj));
Wang Chen4cf16532008-11-12 23:38:14 -08001789 struct ibmveth_adapter *adapter = netdev_priv(netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001790 long value = simple_strtol(buf, NULL, 10);
1791 long rc;
1792
1793 if (attr == &veth_active_attr) {
1794 if (value && !pool->active) {
Brian King4aa9c932007-06-08 14:05:16 -05001795 if (netif_running(netdev)) {
Santiago Leonf148f612010-09-03 18:29:30 +00001796 if (ibmveth_alloc_buffer_pool(pool)) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001797 netdev_err(netdev,
1798 "unable to alloc pool\n");
Brian King4aa9c932007-06-08 14:05:16 -05001799 return -ENOMEM;
1800 }
1801 pool->active = 1;
1802 adapter->pool_config = 1;
1803 ibmveth_close(netdev);
1804 adapter->pool_config = 0;
1805 if ((rc = ibmveth_open(netdev)))
1806 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001807 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001808 pool->active = 1;
Santiago Leonf148f612010-09-03 18:29:30 +00001809 }
Santiago Leon860f2422006-04-25 11:19:59 -05001810 } else if (!value && pool->active) {
1811 int mtu = netdev->mtu + IBMVETH_BUFF_OH;
1812 int i;
1813 /* Make sure there is a buffer pool with buffers that
1814 can hold a packet of the size of the MTU */
Santiago Leon517e80e2010-09-03 18:29:25 +00001815 for (i = 0; i < IBMVETH_NUM_BUFF_POOLS; i++) {
Santiago Leon860f2422006-04-25 11:19:59 -05001816 if (pool == &adapter->rx_buff_pool[i])
1817 continue;
1818 if (!adapter->rx_buff_pool[i].active)
1819 continue;
Brian King76b9cfc2007-08-03 13:55:19 +10001820 if (mtu <= adapter->rx_buff_pool[i].buff_size)
1821 break;
Santiago Leon860f2422006-04-25 11:19:59 -05001822 }
Brian King76b9cfc2007-08-03 13:55:19 +10001823
Santiago Leon517e80e2010-09-03 18:29:25 +00001824 if (i == IBMVETH_NUM_BUFF_POOLS) {
Santiago Leon21c2dec2010-09-03 18:29:19 +00001825 netdev_err(netdev, "no active pool >= MTU\n");
Santiago Leon860f2422006-04-25 11:19:59 -05001826 return -EPERM;
1827 }
Brian King76b9cfc2007-08-03 13:55:19 +10001828
Brian King76b9cfc2007-08-03 13:55:19 +10001829 if (netif_running(netdev)) {
1830 adapter->pool_config = 1;
1831 ibmveth_close(netdev);
Santiago Leonea866e62008-07-24 04:34:23 +10001832 pool->active = 0;
Brian King76b9cfc2007-08-03 13:55:19 +10001833 adapter->pool_config = 0;
1834 if ((rc = ibmveth_open(netdev)))
1835 return rc;
1836 }
Santiago Leonea866e62008-07-24 04:34:23 +10001837 pool->active = 0;
Santiago Leon860f2422006-04-25 11:19:59 -05001838 }
1839 } else if (attr == &veth_num_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001840 if (value <= 0 || value > IBMVETH_MAX_POOL_COUNT) {
Santiago Leon860f2422006-04-25 11:19:59 -05001841 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001842 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001843 if (netif_running(netdev)) {
1844 adapter->pool_config = 1;
1845 ibmveth_close(netdev);
1846 adapter->pool_config = 0;
1847 pool->size = value;
1848 if ((rc = ibmveth_open(netdev)))
1849 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001850 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001851 pool->size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001852 }
Santiago Leon860f2422006-04-25 11:19:59 -05001853 }
1854 } else if (attr == &veth_size_attr) {
Santiago Leonf148f612010-09-03 18:29:30 +00001855 if (value <= IBMVETH_BUFF_OH || value > IBMVETH_MAX_BUF_SIZE) {
Santiago Leon860f2422006-04-25 11:19:59 -05001856 return -EINVAL;
Santiago Leonf148f612010-09-03 18:29:30 +00001857 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001858 if (netif_running(netdev)) {
1859 adapter->pool_config = 1;
1860 ibmveth_close(netdev);
1861 adapter->pool_config = 0;
1862 pool->buff_size = value;
1863 if ((rc = ibmveth_open(netdev)))
1864 return rc;
Santiago Leonf148f612010-09-03 18:29:30 +00001865 } else {
Brian King4aa9c932007-06-08 14:05:16 -05001866 pool->buff_size = value;
Santiago Leonf148f612010-09-03 18:29:30 +00001867 }
Santiago Leon860f2422006-04-25 11:19:59 -05001868 }
1869 }
1870
1871 /* kick the interrupt handler to allocate/deallocate pools */
David Howells7d12e782006-10-05 14:55:46 +01001872 ibmveth_interrupt(netdev->irq, netdev);
Santiago Leon860f2422006-04-25 11:19:59 -05001873 return count;
1874}
1875
1876
Santiago Leonf148f612010-09-03 18:29:30 +00001877#define ATTR(_name, _mode) \
1878 struct attribute veth_##_name##_attr = { \
1879 .name = __stringify(_name), .mode = _mode, \
1880 };
Santiago Leon860f2422006-04-25 11:19:59 -05001881
1882static ATTR(active, 0644);
1883static ATTR(num, 0644);
1884static ATTR(size, 0644);
1885
Santiago Leonf148f612010-09-03 18:29:30 +00001886static struct attribute *veth_pool_attrs[] = {
Santiago Leon860f2422006-04-25 11:19:59 -05001887 &veth_active_attr,
1888 &veth_num_attr,
1889 &veth_size_attr,
1890 NULL,
1891};
1892
Emese Revfy52cf25d2010-01-19 02:58:23 +01001893static const struct sysfs_ops veth_pool_ops = {
Santiago Leon860f2422006-04-25 11:19:59 -05001894 .show = veth_pool_show,
1895 .store = veth_pool_store,
1896};
1897
1898static struct kobj_type ktype_veth_pool = {
1899 .release = NULL,
1900 .sysfs_ops = &veth_pool_ops,
1901 .default_attrs = veth_pool_attrs,
1902};
1903
Brian Kinge7a3af52010-05-07 08:56:08 +00001904static int ibmveth_resume(struct device *dev)
1905{
1906 struct net_device *netdev = dev_get_drvdata(dev);
1907 ibmveth_interrupt(netdev->irq, netdev);
1908 return 0;
1909}
Santiago Leon860f2422006-04-25 11:19:59 -05001910
Bill Pembertone11787a2012-12-03 09:23:12 -05001911static struct vio_device_id ibmveth_device_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 { "network", "IBM,l-lan"},
Stephen Rothwellfb120da2005-08-17 16:42:59 +10001913 { "", "" }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915MODULE_DEVICE_TABLE(vio, ibmveth_device_table);
1916
Brian Kinge7a3af52010-05-07 08:56:08 +00001917static struct dev_pm_ops ibmveth_pm_ops = {
1918 .resume = ibmveth_resume
1919};
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921static struct vio_driver ibmveth_driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +10001922 .id_table = ibmveth_device_table,
1923 .probe = ibmveth_probe,
1924 .remove = ibmveth_remove,
Robert Jennings1096d632008-07-24 04:34:52 +10001925 .get_desired_dma = ibmveth_get_desired_dma,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +00001926 .name = ibmveth_driver_name,
1927 .pm = &ibmveth_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928};
1929
1930static int __init ibmveth_module_init(void)
1931{
Santiago Leon21c2dec2010-09-03 18:29:19 +00001932 printk(KERN_DEBUG "%s: %s %s\n", ibmveth_driver_name,
1933 ibmveth_driver_string, ibmveth_driver_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 return vio_register_driver(&ibmveth_driver);
1936}
1937
1938static void __exit ibmveth_module_exit(void)
1939{
1940 vio_unregister_driver(&ibmveth_driver);
Jeff Garzikd7fbeba2006-05-24 01:31:14 -04001941}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943module_init(ibmveth_module_init);
1944module_exit(ibmveth_module_exit);