2 * IBM Accelerator Family 'GenWQE'
4 * (C) Copyright IBM Corp. 2013
6 * Author: Frank Haverkamp <haver@linux.vnet.ibm.com>
7 * Author: Joerg-Stephan Vogt <jsvogt@de.ibm.com>
8 * Author: Michael Jung <mijung@gmx.net>
9 * Author: Michael Ruettger <michael@ibmra.de>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License (version 2 only)
13 * as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
22 * Sysfs interfaces for the GenWQE card. There are attributes to query
23 * the version of the bitstream as well as some for the driver. For
24 * debugging, please also see the debugfs interfaces of this driver.
27 #include <linux/kernel.h>
28 #include <linux/types.h>
29 #include <linux/module.h>
30 #include <linux/pci.h>
31 #include <linux/string.h>
33 #include <linux/sysfs.h>
34 #include <linux/ctype.h>
35 #include <linux/device.h>
37 #include "card_base.h"
38 #include "card_ddcb.h"
40 static const char * const genwqe_types
[] = {
41 [GENWQE_TYPE_ALTERA_230
] = "GenWQE4-230",
42 [GENWQE_TYPE_ALTERA_530
] = "GenWQE4-530",
43 [GENWQE_TYPE_ALTERA_A4
] = "GenWQE5-A4",
44 [GENWQE_TYPE_ALTERA_A7
] = "GenWQE5-A7",
47 static ssize_t
status_show(struct device
*dev
, struct device_attribute
*attr
,
50 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
51 const char *cs
[GENWQE_CARD_STATE_MAX
] = { "unused", "used", "error" };
53 return sprintf(buf
, "%s\n", cs
[cd
->card_state
]);
55 static DEVICE_ATTR_RO(status
);
57 static ssize_t
appid_show(struct device
*dev
, struct device_attribute
*attr
,
61 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
63 genwqe_read_app_id(cd
, app_name
, sizeof(app_name
));
64 return sprintf(buf
, "%s\n", app_name
);
66 static DEVICE_ATTR_RO(appid
);
68 static ssize_t
version_show(struct device
*dev
, struct device_attribute
*attr
,
72 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
74 slu_id
= __genwqe_readq(cd
, IO_SLU_UNITCFG
);
75 app_id
= __genwqe_readq(cd
, IO_APP_UNITCFG
);
77 return sprintf(buf
, "%016llx.%016llx\n", slu_id
, app_id
);
79 static DEVICE_ATTR_RO(version
);
81 static ssize_t
type_show(struct device
*dev
, struct device_attribute
*attr
,
85 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
87 card_type
= genwqe_card_type(cd
);
88 return sprintf(buf
, "%s\n", (card_type
>= ARRAY_SIZE(genwqe_types
)) ?
89 "invalid" : genwqe_types
[card_type
]);
91 static DEVICE_ATTR_RO(type
);
93 static ssize_t
tempsens_show(struct device
*dev
, struct device_attribute
*attr
,
97 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
99 tempsens
= __genwqe_readq(cd
, IO_SLU_TEMPERATURE_SENSOR
);
100 return sprintf(buf
, "%016llx\n", tempsens
);
102 static DEVICE_ATTR_RO(tempsens
);
104 static ssize_t
freerunning_timer_show(struct device
*dev
,
105 struct device_attribute
*attr
,
109 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
111 t
= __genwqe_readq(cd
, IO_SLC_FREE_RUNNING_TIMER
);
112 return sprintf(buf
, "%016llx\n", t
);
114 static DEVICE_ATTR_RO(freerunning_timer
);
116 static ssize_t
queue_working_time_show(struct device
*dev
,
117 struct device_attribute
*attr
,
121 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
123 t
= __genwqe_readq(cd
, IO_SLC_QUEUE_WTIME
);
124 return sprintf(buf
, "%016llx\n", t
);
126 static DEVICE_ATTR_RO(queue_working_time
);
128 static ssize_t
base_clock_show(struct device
*dev
,
129 struct device_attribute
*attr
,
133 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
135 base_clock
= genwqe_base_clock_frequency(cd
);
136 return sprintf(buf
, "%lld\n", base_clock
);
138 static DEVICE_ATTR_RO(base_clock
);
141 * curr_bitstream_show() - Show the current bitstream id
143 * There is a bug in some old versions of the CPLD which selects the
144 * bitstream, which causes the IO_SLU_BITSTREAM register to report
145 * unreliable data in very rare cases. This makes this sysfs
146 * unreliable up to the point were a new CPLD version is being used.
148 * Unfortunately there is no automatic way yet to query the CPLD
149 * version, such that you need to manually ensure via programming
150 * tools that you have a recent version of the CPLD software.
152 * The proposed circumvention is to use a special recovery bitstream
153 * on the backup partition (0) to identify problems while loading the
156 static ssize_t
curr_bitstream_show(struct device
*dev
,
157 struct device_attribute
*attr
, char *buf
)
160 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
162 curr_bitstream
= __genwqe_readq(cd
, IO_SLU_BITSTREAM
) & 0x1;
163 return sprintf(buf
, "%d\n", curr_bitstream
);
165 static DEVICE_ATTR_RO(curr_bitstream
);
168 * next_bitstream_show() - Show the next activated bitstream
170 * IO_SLC_CFGREG_SOFTRESET: This register can only be accessed by the PF.
172 static ssize_t
next_bitstream_show(struct device
*dev
,
173 struct device_attribute
*attr
, char *buf
)
176 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
178 switch ((cd
->softreset
& 0xc) >> 2) {
189 return sprintf(buf
, "%d\n", next_bitstream
);
192 static ssize_t
next_bitstream_store(struct device
*dev
,
193 struct device_attribute
*attr
,
194 const char *buf
, size_t count
)
197 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
199 if (kstrtoint(buf
, 0, &partition
) < 0)
204 cd
->softreset
= 0x78;
207 cd
->softreset
= 0x7c;
213 __genwqe_writeq(cd
, IO_SLC_CFGREG_SOFTRESET
, cd
->softreset
);
216 static DEVICE_ATTR_RW(next_bitstream
);
218 static ssize_t
reload_bitstream_store(struct device
*dev
,
219 struct device_attribute
*attr
,
220 const char *buf
, size_t count
)
223 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
225 if (kstrtoint(buf
, 0, &reload
) < 0)
229 if (cd
->card_state
== GENWQE_CARD_UNUSED
||
230 cd
->card_state
== GENWQE_CARD_USED
)
231 cd
->card_state
= GENWQE_CARD_RELOAD_BITSTREAM
;
240 static DEVICE_ATTR_WO(reload_bitstream
);
243 * Create device_attribute structures / params: name, mode, show, store
244 * additional flag if valid in VF
246 static struct attribute
*genwqe_attributes
[] = {
247 &dev_attr_tempsens
.attr
,
248 &dev_attr_next_bitstream
.attr
,
249 &dev_attr_curr_bitstream
.attr
,
250 &dev_attr_base_clock
.attr
,
252 &dev_attr_version
.attr
,
253 &dev_attr_appid
.attr
,
254 &dev_attr_status
.attr
,
255 &dev_attr_freerunning_timer
.attr
,
256 &dev_attr_queue_working_time
.attr
,
257 &dev_attr_reload_bitstream
.attr
,
261 static struct attribute
*genwqe_normal_attributes
[] = {
263 &dev_attr_version
.attr
,
264 &dev_attr_appid
.attr
,
265 &dev_attr_status
.attr
,
266 &dev_attr_freerunning_timer
.attr
,
267 &dev_attr_queue_working_time
.attr
,
272 * genwqe_is_visible() - Determine if sysfs attribute should be visible or not
274 * VFs have restricted mmio capabilities, so not all sysfs entries
275 * are allowed in VFs.
277 static umode_t
genwqe_is_visible(struct kobject
*kobj
,
278 struct attribute
*attr
, int n
)
281 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
282 struct genwqe_dev
*cd
= dev_get_drvdata(dev
);
283 umode_t mode
= attr
->mode
;
285 if (genwqe_is_privileged(cd
))
288 for (j
= 0; genwqe_normal_attributes
[j
] != NULL
; j
++)
289 if (genwqe_normal_attributes
[j
] == attr
)
295 static struct attribute_group genwqe_attribute_group
= {
296 .is_visible
= genwqe_is_visible
,
297 .attrs
= genwqe_attributes
,
300 const struct attribute_group
*genwqe_attribute_groups
[] = {
301 &genwqe_attribute_group
,