2 * Copyright IBM Corp. 2007, 2007
3 * Authors: Peter Tiedemann (ptiedem@de.ibm.com)
11 #define KMSG_COMPONENT "ctcm"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/device.h>
15 #include <linux/sysfs.h>
16 #include <linux/slab.h>
17 #include "ctcm_main.h"
23 static ssize_t
ctcm_buffer_show(struct device
*dev
,
24 struct device_attribute
*attr
, char *buf
)
26 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
30 return sprintf(buf
, "%d\n", priv
->buffer_size
);
33 static ssize_t
ctcm_buffer_write(struct device
*dev
,
34 struct device_attribute
*attr
, const char *buf
, size_t count
)
36 struct net_device
*ndev
;
38 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
41 ndev
= priv
->channel
[CTCM_READ
]->netdev
;
42 if (!(priv
&& priv
->channel
[CTCM_READ
] && ndev
)) {
43 CTCM_DBF_TEXT(SETUP
, CTC_DBF_ERROR
, "bfnondev");
47 rc
= kstrtouint(buf
, 0, &bs1
);
50 if (bs1
> CTCM_BUFSIZE_LIMIT
)
52 if (bs1
< (576 + LL_HEADER_LENGTH
+ 2))
54 priv
->buffer_size
= bs1
; /* just to overwrite the default */
56 if ((ndev
->flags
& IFF_RUNNING
) &&
57 (bs1
< (ndev
->mtu
+ LL_HEADER_LENGTH
+ 2)))
60 priv
->channel
[CTCM_READ
]->max_bufsize
= bs1
;
61 priv
->channel
[CTCM_WRITE
]->max_bufsize
= bs1
;
62 if (!(ndev
->flags
& IFF_RUNNING
))
63 ndev
->mtu
= bs1
- LL_HEADER_LENGTH
- 2;
64 priv
->channel
[CTCM_READ
]->flags
|= CHANNEL_FLAGS_BUFSIZE_CHANGED
;
65 priv
->channel
[CTCM_WRITE
]->flags
|= CHANNEL_FLAGS_BUFSIZE_CHANGED
;
67 CTCM_DBF_DEV(SETUP
, ndev
, buf
);
71 CTCM_DBF_DEV(SETUP
, ndev
, "buff_err");
75 static void ctcm_print_statistics(struct ctcm_priv
*priv
)
82 sbuf
= kmalloc(2048, GFP_KERNEL
);
87 p
+= sprintf(p
, " Device FSM state: %s\n",
88 fsm_getstate_str(priv
->fsm
));
89 p
+= sprintf(p
, " RX channel FSM state: %s\n",
90 fsm_getstate_str(priv
->channel
[CTCM_READ
]->fsm
));
91 p
+= sprintf(p
, " TX channel FSM state: %s\n",
92 fsm_getstate_str(priv
->channel
[CTCM_WRITE
]->fsm
));
93 p
+= sprintf(p
, " Max. TX buffer used: %ld\n",
94 priv
->channel
[WRITE
]->prof
.maxmulti
);
95 p
+= sprintf(p
, " Max. chained SKBs: %ld\n",
96 priv
->channel
[WRITE
]->prof
.maxcqueue
);
97 p
+= sprintf(p
, " TX single write ops: %ld\n",
98 priv
->channel
[WRITE
]->prof
.doios_single
);
99 p
+= sprintf(p
, " TX multi write ops: %ld\n",
100 priv
->channel
[WRITE
]->prof
.doios_multi
);
101 p
+= sprintf(p
, " Netto bytes written: %ld\n",
102 priv
->channel
[WRITE
]->prof
.txlen
);
103 p
+= sprintf(p
, " Max. TX IO-time: %u\n",
104 jiffies_to_usecs(priv
->channel
[WRITE
]->prof
.tx_time
));
106 printk(KERN_INFO
"Statistics for %s:\n%s",
107 priv
->channel
[CTCM_WRITE
]->netdev
->name
, sbuf
);
112 static ssize_t
stats_show(struct device
*dev
,
113 struct device_attribute
*attr
, char *buf
)
115 struct ccwgroup_device
*gdev
= to_ccwgroupdev(dev
);
116 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
118 if (!priv
|| gdev
->state
!= CCWGROUP_ONLINE
)
120 ctcm_print_statistics(priv
);
121 return sprintf(buf
, "0\n");
124 static ssize_t
stats_write(struct device
*dev
, struct device_attribute
*attr
,
125 const char *buf
, size_t count
)
127 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
130 /* Reset statistics */
131 memset(&priv
->channel
[WRITE
]->prof
, 0,
132 sizeof(priv
->channel
[CTCM_WRITE
]->prof
));
136 static ssize_t
ctcm_proto_show(struct device
*dev
,
137 struct device_attribute
*attr
, char *buf
)
139 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
143 return sprintf(buf
, "%d\n", priv
->protocol
);
146 static ssize_t
ctcm_proto_store(struct device
*dev
,
147 struct device_attribute
*attr
, const char *buf
, size_t count
)
150 struct ctcm_priv
*priv
= dev_get_drvdata(dev
);
154 rc
= kstrtoint(buf
, 0, &value
);
156 !((value
== CTCM_PROTO_S390
) ||
157 (value
== CTCM_PROTO_LINUX
) ||
158 (value
== CTCM_PROTO_MPC
) ||
159 (value
== CTCM_PROTO_OS390
)))
161 priv
->protocol
= value
;
162 CTCM_DBF_DEV(SETUP
, dev
, buf
);
167 static const char *ctcm_type
[] = {
172 "unknown channel type",
173 "unsupported channel type",
176 static ssize_t
ctcm_type_show(struct device
*dev
,
177 struct device_attribute
*attr
, char *buf
)
179 struct ccwgroup_device
*cgdev
;
181 cgdev
= to_ccwgroupdev(dev
);
185 return sprintf(buf
, "%s\n",
186 ctcm_type
[cgdev
->cdev
[0]->id
.driver_info
]);
189 static DEVICE_ATTR(buffer
, 0644, ctcm_buffer_show
, ctcm_buffer_write
);
190 static DEVICE_ATTR(protocol
, 0644, ctcm_proto_show
, ctcm_proto_store
);
191 static DEVICE_ATTR(type
, 0444, ctcm_type_show
, NULL
);
192 static DEVICE_ATTR(stats
, 0644, stats_show
, stats_write
);
194 static struct attribute
*ctcm_attr
[] = {
195 &dev_attr_protocol
.attr
,
197 &dev_attr_buffer
.attr
,
198 &dev_attr_stats
.attr
,
202 static struct attribute_group ctcm_attr_group
= {
205 const struct attribute_group
*ctcm_attr_groups
[] = {