blob: 5116f68e01b9a4618423f47d555d68771da01d3e [file] [log] [blame]
Andy Fleming7f7f5312005-11-11 12:38:59 -06001/*
2 * drivers/net/gianfar_sysfs.c
3 *
4 * Gianfar Ethernet Driver
5 * This driver is designed for the non-CPM ethernet controllers
6 * on the 85xx and 83xx family of integrated processors
7 * Based on 8260_io/fcc_enet.c
8 *
9 * Author: Andy Fleming
Adrian Bunkb56d55b2006-01-11 02:00:10 +010010 * Maintainer: Kumar Gala (galak@kernel.crashing.org)
Andy Fleming7f7f5312005-11-11 12:38:59 -060011 *
12 * Copyright (c) 2002-2005 Freescale Semiconductor, Inc.
13 *
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version.
18 *
19 * Sysfs file creation and management
20 */
21
Andy Fleming7f7f5312005-11-11 12:38:59 -060022#include <linux/kernel.h>
Andy Fleming7f7f5312005-11-11 12:38:59 -060023#include <linux/string.h>
24#include <linux/errno.h>
25#include <linux/unistd.h>
26#include <linux/slab.h>
27#include <linux/init.h>
28#include <linux/delay.h>
29#include <linux/etherdevice.h>
30#include <linux/spinlock.h>
31#include <linux/mm.h>
32#include <linux/device.h>
33
34#include <asm/uaccess.h>
35#include <linux/module.h>
36#include <linux/version.h>
37
38#include "gianfar.h"
39
Kumar Gala4409d282007-02-12 23:40:06 -060040static ssize_t gfar_show_bd_stash(struct device *dev,
41 struct device_attribute *attr, char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -060042{
Kumar Gala4409d282007-02-12 23:40:06 -060043 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -060044
Kumar Gala4409d282007-02-12 23:40:06 -060045 return sprintf(buf, "%s\n", priv->bd_stash_en ? "on" : "off");
Andy Fleming7f7f5312005-11-11 12:38:59 -060046}
47
Kumar Gala4409d282007-02-12 23:40:06 -060048static ssize_t gfar_set_bd_stash(struct device *dev,
49 struct device_attribute *attr,
50 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -060051{
Kumar Gala4409d282007-02-12 23:40:06 -060052 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -060053 int new_setting = 0;
54 u32 temp;
55 unsigned long flags;
56
57 /* Find out the new setting */
Kumar Gala4409d282007-02-12 23:40:06 -060058 if (!strncmp("on", buf, count - 1) || !strncmp("1", buf, count - 1))
Andy Fleming7f7f5312005-11-11 12:38:59 -060059 new_setting = 1;
Kumar Gala4409d282007-02-12 23:40:06 -060060 else if (!strncmp("off", buf, count - 1)
61 || !strncmp("0", buf, count - 1))
Andy Fleming7f7f5312005-11-11 12:38:59 -060062 new_setting = 0;
63 else
64 return count;
65
Andy Flemingfef61082006-04-20 16:44:29 -050066 spin_lock_irqsave(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -060067
68 /* Set the new stashing value */
69 priv->bd_stash_en = new_setting;
70
71 temp = gfar_read(&priv->regs->attr);
Jeff Garzik6aa20a22006-09-13 13:24:59 -040072
Andy Fleming7f7f5312005-11-11 12:38:59 -060073 if (new_setting)
74 temp |= ATTR_BDSTASH;
75 else
76 temp &= ~(ATTR_BDSTASH);
77
78 gfar_write(&priv->regs->attr, temp);
79
Andy Flemingfef61082006-04-20 16:44:29 -050080 spin_unlock_irqrestore(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -060081
82 return count;
83}
84
Grant Likely35a84fd2007-12-01 22:12:45 -070085DEVICE_ATTR(bd_stash, 0644, gfar_show_bd_stash, gfar_set_bd_stash);
86
Kumar Gala4409d282007-02-12 23:40:06 -060087static ssize_t gfar_show_rx_stash_size(struct device *dev,
88 struct device_attribute *attr, char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -060089{
Kumar Gala4409d282007-02-12 23:40:06 -060090 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -060091
92 return sprintf(buf, "%d\n", priv->rx_stash_size);
93}
94
Kumar Gala4409d282007-02-12 23:40:06 -060095static ssize_t gfar_set_rx_stash_size(struct device *dev,
96 struct device_attribute *attr,
97 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -060098{
Kumar Gala4409d282007-02-12 23:40:06 -060099 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600100 unsigned int length = simple_strtoul(buf, NULL, 0);
101 u32 temp;
102 unsigned long flags;
103
Andy Flemingfef61082006-04-20 16:44:29 -0500104 spin_lock_irqsave(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600105 if (length > priv->rx_buffer_size)
Andy Flemingf162b9d2008-05-02 13:00:30 -0500106 goto out;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600107
108 if (length == priv->rx_stash_size)
Andy Flemingf162b9d2008-05-02 13:00:30 -0500109 goto out;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600110
111 priv->rx_stash_size = length;
112
113 temp = gfar_read(&priv->regs->attreli);
114 temp &= ~ATTRELI_EL_MASK;
115 temp |= ATTRELI_EL(length);
116 gfar_write(&priv->regs->attreli, temp);
117
118 /* Turn stashing on/off as appropriate */
119 temp = gfar_read(&priv->regs->attr);
120
121 if (length)
122 temp |= ATTR_BUFSTASH;
123 else
124 temp &= ~(ATTR_BUFSTASH);
125
126 gfar_write(&priv->regs->attr, temp);
127
Andy Flemingf162b9d2008-05-02 13:00:30 -0500128out:
Andy Flemingfef61082006-04-20 16:44:29 -0500129 spin_unlock_irqrestore(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600130
131 return count;
132}
133
Grant Likely35a84fd2007-12-01 22:12:45 -0700134DEVICE_ATTR(rx_stash_size, 0644, gfar_show_rx_stash_size,
135 gfar_set_rx_stash_size);
136
Andy Fleming7f7f5312005-11-11 12:38:59 -0600137/* Stashing will only be enabled when rx_stash_size != 0 */
Kumar Gala4409d282007-02-12 23:40:06 -0600138static ssize_t gfar_show_rx_stash_index(struct device *dev,
139 struct device_attribute *attr,
140 char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600141{
Kumar Gala4409d282007-02-12 23:40:06 -0600142 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600143
144 return sprintf(buf, "%d\n", priv->rx_stash_index);
145}
146
Kumar Gala4409d282007-02-12 23:40:06 -0600147static ssize_t gfar_set_rx_stash_index(struct device *dev,
148 struct device_attribute *attr,
149 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600150{
Kumar Gala4409d282007-02-12 23:40:06 -0600151 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600152 unsigned short index = simple_strtoul(buf, NULL, 0);
153 u32 temp;
154 unsigned long flags;
155
Andy Flemingfef61082006-04-20 16:44:29 -0500156 spin_lock_irqsave(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600157 if (index > priv->rx_stash_size)
Andy Flemingf162b9d2008-05-02 13:00:30 -0500158 goto out;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600159
160 if (index == priv->rx_stash_index)
Andy Flemingf162b9d2008-05-02 13:00:30 -0500161 goto out;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600162
163 priv->rx_stash_index = index;
164
165 temp = gfar_read(&priv->regs->attreli);
166 temp &= ~ATTRELI_EI_MASK;
167 temp |= ATTRELI_EI(index);
168 gfar_write(&priv->regs->attreli, flags);
169
Andy Flemingf162b9d2008-05-02 13:00:30 -0500170out:
Andy Flemingfef61082006-04-20 16:44:29 -0500171 spin_unlock_irqrestore(&priv->rxlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600172
173 return count;
174}
175
Grant Likely35a84fd2007-12-01 22:12:45 -0700176DEVICE_ATTR(rx_stash_index, 0644, gfar_show_rx_stash_index,
177 gfar_set_rx_stash_index);
178
Kumar Gala4409d282007-02-12 23:40:06 -0600179static ssize_t gfar_show_fifo_threshold(struct device *dev,
180 struct device_attribute *attr,
181 char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600182{
Kumar Gala4409d282007-02-12 23:40:06 -0600183 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600184
185 return sprintf(buf, "%d\n", priv->fifo_threshold);
186}
187
Kumar Gala4409d282007-02-12 23:40:06 -0600188static ssize_t gfar_set_fifo_threshold(struct device *dev,
189 struct device_attribute *attr,
190 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600191{
Kumar Gala4409d282007-02-12 23:40:06 -0600192 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600193 unsigned int length = simple_strtoul(buf, NULL, 0);
194 u32 temp;
195 unsigned long flags;
196
197 if (length > GFAR_MAX_FIFO_THRESHOLD)
198 return count;
199
Andy Flemingfef61082006-04-20 16:44:29 -0500200 spin_lock_irqsave(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600201
202 priv->fifo_threshold = length;
203
204 temp = gfar_read(&priv->regs->fifo_tx_thr);
205 temp &= ~FIFO_TX_THR_MASK;
206 temp |= length;
207 gfar_write(&priv->regs->fifo_tx_thr, temp);
208
Andy Flemingfef61082006-04-20 16:44:29 -0500209 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600210
211 return count;
212}
213
Grant Likely35a84fd2007-12-01 22:12:45 -0700214DEVICE_ATTR(fifo_threshold, 0644, gfar_show_fifo_threshold,
215 gfar_set_fifo_threshold);
216
Kumar Gala4409d282007-02-12 23:40:06 -0600217static ssize_t gfar_show_fifo_starve(struct device *dev,
218 struct device_attribute *attr, char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600219{
Kumar Gala4409d282007-02-12 23:40:06 -0600220 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600221
222 return sprintf(buf, "%d\n", priv->fifo_starve);
223}
224
Kumar Gala4409d282007-02-12 23:40:06 -0600225static ssize_t gfar_set_fifo_starve(struct device *dev,
226 struct device_attribute *attr,
227 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600228{
Kumar Gala4409d282007-02-12 23:40:06 -0600229 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600230 unsigned int num = simple_strtoul(buf, NULL, 0);
231 u32 temp;
232 unsigned long flags;
233
234 if (num > GFAR_MAX_FIFO_STARVE)
235 return count;
236
Andy Flemingfef61082006-04-20 16:44:29 -0500237 spin_lock_irqsave(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600238
239 priv->fifo_starve = num;
240
241 temp = gfar_read(&priv->regs->fifo_tx_starve);
242 temp &= ~FIFO_TX_STARVE_MASK;
243 temp |= num;
244 gfar_write(&priv->regs->fifo_tx_starve, temp);
245
Andy Flemingfef61082006-04-20 16:44:29 -0500246 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600247
248 return count;
249}
250
Grant Likely35a84fd2007-12-01 22:12:45 -0700251DEVICE_ATTR(fifo_starve, 0644, gfar_show_fifo_starve, gfar_set_fifo_starve);
252
Kumar Gala4409d282007-02-12 23:40:06 -0600253static ssize_t gfar_show_fifo_starve_off(struct device *dev,
254 struct device_attribute *attr,
255 char *buf)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600256{
Kumar Gala4409d282007-02-12 23:40:06 -0600257 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600258
259 return sprintf(buf, "%d\n", priv->fifo_starve_off);
260}
261
Kumar Gala4409d282007-02-12 23:40:06 -0600262static ssize_t gfar_set_fifo_starve_off(struct device *dev,
263 struct device_attribute *attr,
264 const char *buf, size_t count)
Andy Fleming7f7f5312005-11-11 12:38:59 -0600265{
Kumar Gala4409d282007-02-12 23:40:06 -0600266 struct gfar_private *priv = netdev_priv(to_net_dev(dev));
Andy Fleming7f7f5312005-11-11 12:38:59 -0600267 unsigned int num = simple_strtoul(buf, NULL, 0);
268 u32 temp;
269 unsigned long flags;
270
271 if (num > GFAR_MAX_FIFO_STARVE_OFF)
272 return count;
273
Andy Flemingfef61082006-04-20 16:44:29 -0500274 spin_lock_irqsave(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600275
276 priv->fifo_starve_off = num;
277
278 temp = gfar_read(&priv->regs->fifo_tx_starve_shutoff);
279 temp &= ~FIFO_TX_STARVE_OFF_MASK;
280 temp |= num;
281 gfar_write(&priv->regs->fifo_tx_starve_shutoff, temp);
282
Andy Flemingfef61082006-04-20 16:44:29 -0500283 spin_unlock_irqrestore(&priv->txlock, flags);
Andy Fleming7f7f5312005-11-11 12:38:59 -0600284
285 return count;
286}
287
Grant Likely35a84fd2007-12-01 22:12:45 -0700288DEVICE_ATTR(fifo_starve_off, 0644, gfar_show_fifo_starve_off,
289 gfar_set_fifo_starve_off);
290
Andy Fleming7f7f5312005-11-11 12:38:59 -0600291void gfar_init_sysfs(struct net_device *dev)
292{
293 struct gfar_private *priv = netdev_priv(dev);
Grant Likely35a84fd2007-12-01 22:12:45 -0700294 int rc;
Andy Fleming7f7f5312005-11-11 12:38:59 -0600295
296 /* Initialize the default values */
297 priv->rx_stash_size = DEFAULT_STASH_LENGTH;
298 priv->rx_stash_index = DEFAULT_STASH_INDEX;
299 priv->fifo_threshold = DEFAULT_FIFO_TX_THR;
300 priv->fifo_starve = DEFAULT_FIFO_TX_STARVE;
301 priv->fifo_starve_off = DEFAULT_FIFO_TX_STARVE_OFF;
302 priv->bd_stash_en = DEFAULT_BD_STASH;
303
304 /* Create our sysfs files */
Grant Likely35a84fd2007-12-01 22:12:45 -0700305 rc = device_create_file(&dev->dev, &dev_attr_bd_stash);
306 rc |= device_create_file(&dev->dev, &dev_attr_rx_stash_size);
307 rc |= device_create_file(&dev->dev, &dev_attr_rx_stash_index);
308 rc |= device_create_file(&dev->dev, &dev_attr_fifo_threshold);
309 rc |= device_create_file(&dev->dev, &dev_attr_fifo_starve);
310 rc |= device_create_file(&dev->dev, &dev_attr_fifo_starve_off);
311 if (rc)
312 dev_err(&dev->dev, "Error creating gianfar sysfs files.\n");
Andy Fleming7f7f5312005-11-11 12:38:59 -0600313}