2 * drivers/net/gianfar_sysfs.c
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
10 * Maintainer: Kumar Gala (galak@kernel.crashing.org)
12 * Copyright (c) 2002-2005 Freescale Semiconductor, Inc.
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.
19 * Sysfs file creation and management
22 #include <linux/kernel.h>
23 #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>
32 #include <linux/device.h>
34 #include <asm/uaccess.h>
35 #include <linux/module.h>
36 #include <linux/version.h>
40 static ssize_t
gfar_show_bd_stash(struct device
*dev
,
41 struct device_attribute
*attr
, char *buf
)
43 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
45 return sprintf(buf
, "%s\n", priv
->bd_stash_en
? "on" : "off");
48 static ssize_t
gfar_set_bd_stash(struct device
*dev
,
49 struct device_attribute
*attr
,
50 const char *buf
, size_t count
)
52 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
57 /* Find out the new setting */
58 if (!strncmp("on", buf
, count
- 1) || !strncmp("1", buf
, count
- 1))
60 else if (!strncmp("off", buf
, count
- 1)
61 || !strncmp("0", buf
, count
- 1))
66 spin_lock_irqsave(&priv
->rxlock
, flags
);
68 /* Set the new stashing value */
69 priv
->bd_stash_en
= new_setting
;
71 temp
= gfar_read(&priv
->regs
->attr
);
76 temp
&= ~(ATTR_BDSTASH
);
78 gfar_write(&priv
->regs
->attr
, temp
);
80 spin_unlock_irqrestore(&priv
->rxlock
, flags
);
85 DEVICE_ATTR(bd_stash
, 0644, gfar_show_bd_stash
, gfar_set_bd_stash
);
87 static ssize_t
gfar_show_rx_stash_size(struct device
*dev
,
88 struct device_attribute
*attr
, char *buf
)
90 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
92 return sprintf(buf
, "%d\n", priv
->rx_stash_size
);
95 static ssize_t
gfar_set_rx_stash_size(struct device
*dev
,
96 struct device_attribute
*attr
,
97 const char *buf
, size_t count
)
99 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
100 unsigned int length
= simple_strtoul(buf
, NULL
, 0);
104 spin_lock_irqsave(&priv
->rxlock
, flags
);
105 if (length
> priv
->rx_buffer_size
)
108 if (length
== priv
->rx_stash_size
)
111 priv
->rx_stash_size
= length
;
113 temp
= gfar_read(&priv
->regs
->attreli
);
114 temp
&= ~ATTRELI_EL_MASK
;
115 temp
|= ATTRELI_EL(length
);
116 gfar_write(&priv
->regs
->attreli
, temp
);
118 /* Turn stashing on/off as appropriate */
119 temp
= gfar_read(&priv
->regs
->attr
);
122 temp
|= ATTR_BUFSTASH
;
124 temp
&= ~(ATTR_BUFSTASH
);
126 gfar_write(&priv
->regs
->attr
, temp
);
129 spin_unlock_irqrestore(&priv
->rxlock
, flags
);
134 DEVICE_ATTR(rx_stash_size
, 0644, gfar_show_rx_stash_size
,
135 gfar_set_rx_stash_size
);
137 /* Stashing will only be enabled when rx_stash_size != 0 */
138 static ssize_t
gfar_show_rx_stash_index(struct device
*dev
,
139 struct device_attribute
*attr
,
142 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
144 return sprintf(buf
, "%d\n", priv
->rx_stash_index
);
147 static ssize_t
gfar_set_rx_stash_index(struct device
*dev
,
148 struct device_attribute
*attr
,
149 const char *buf
, size_t count
)
151 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
152 unsigned short index
= simple_strtoul(buf
, NULL
, 0);
156 spin_lock_irqsave(&priv
->rxlock
, flags
);
157 if (index
> priv
->rx_stash_size
)
160 if (index
== priv
->rx_stash_index
)
163 priv
->rx_stash_index
= index
;
165 temp
= gfar_read(&priv
->regs
->attreli
);
166 temp
&= ~ATTRELI_EI_MASK
;
167 temp
|= ATTRELI_EI(index
);
168 gfar_write(&priv
->regs
->attreli
, flags
);
171 spin_unlock_irqrestore(&priv
->rxlock
, flags
);
176 DEVICE_ATTR(rx_stash_index
, 0644, gfar_show_rx_stash_index
,
177 gfar_set_rx_stash_index
);
179 static ssize_t
gfar_show_fifo_threshold(struct device
*dev
,
180 struct device_attribute
*attr
,
183 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
185 return sprintf(buf
, "%d\n", priv
->fifo_threshold
);
188 static ssize_t
gfar_set_fifo_threshold(struct device
*dev
,
189 struct device_attribute
*attr
,
190 const char *buf
, size_t count
)
192 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
193 unsigned int length
= simple_strtoul(buf
, NULL
, 0);
197 if (length
> GFAR_MAX_FIFO_THRESHOLD
)
200 spin_lock_irqsave(&priv
->txlock
, flags
);
202 priv
->fifo_threshold
= length
;
204 temp
= gfar_read(&priv
->regs
->fifo_tx_thr
);
205 temp
&= ~FIFO_TX_THR_MASK
;
207 gfar_write(&priv
->regs
->fifo_tx_thr
, temp
);
209 spin_unlock_irqrestore(&priv
->txlock
, flags
);
214 DEVICE_ATTR(fifo_threshold
, 0644, gfar_show_fifo_threshold
,
215 gfar_set_fifo_threshold
);
217 static ssize_t
gfar_show_fifo_starve(struct device
*dev
,
218 struct device_attribute
*attr
, char *buf
)
220 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
222 return sprintf(buf
, "%d\n", priv
->fifo_starve
);
225 static ssize_t
gfar_set_fifo_starve(struct device
*dev
,
226 struct device_attribute
*attr
,
227 const char *buf
, size_t count
)
229 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
230 unsigned int num
= simple_strtoul(buf
, NULL
, 0);
234 if (num
> GFAR_MAX_FIFO_STARVE
)
237 spin_lock_irqsave(&priv
->txlock
, flags
);
239 priv
->fifo_starve
= num
;
241 temp
= gfar_read(&priv
->regs
->fifo_tx_starve
);
242 temp
&= ~FIFO_TX_STARVE_MASK
;
244 gfar_write(&priv
->regs
->fifo_tx_starve
, temp
);
246 spin_unlock_irqrestore(&priv
->txlock
, flags
);
251 DEVICE_ATTR(fifo_starve
, 0644, gfar_show_fifo_starve
, gfar_set_fifo_starve
);
253 static ssize_t
gfar_show_fifo_starve_off(struct device
*dev
,
254 struct device_attribute
*attr
,
257 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
259 return sprintf(buf
, "%d\n", priv
->fifo_starve_off
);
262 static ssize_t
gfar_set_fifo_starve_off(struct device
*dev
,
263 struct device_attribute
*attr
,
264 const char *buf
, size_t count
)
266 struct gfar_private
*priv
= netdev_priv(to_net_dev(dev
));
267 unsigned int num
= simple_strtoul(buf
, NULL
, 0);
271 if (num
> GFAR_MAX_FIFO_STARVE_OFF
)
274 spin_lock_irqsave(&priv
->txlock
, flags
);
276 priv
->fifo_starve_off
= num
;
278 temp
= gfar_read(&priv
->regs
->fifo_tx_starve_shutoff
);
279 temp
&= ~FIFO_TX_STARVE_OFF_MASK
;
281 gfar_write(&priv
->regs
->fifo_tx_starve_shutoff
, temp
);
283 spin_unlock_irqrestore(&priv
->txlock
, flags
);
288 DEVICE_ATTR(fifo_starve_off
, 0644, gfar_show_fifo_starve_off
,
289 gfar_set_fifo_starve_off
);
291 void gfar_init_sysfs(struct net_device
*dev
)
293 struct gfar_private
*priv
= netdev_priv(dev
);
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
;
304 /* Create our sysfs files */
305 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
);
312 dev_err(&dev
->dev
, "Error creating gianfar sysfs files.\n");