1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2016
4 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Adjunct processor bus, card related code.
9 #define KMSG_COMPONENT "ap"
10 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
12 #include <linux/init.h>
13 #include <linux/slab.h>
14 #include <asm/facility.h>
20 * AP card related attributes.
22 static ssize_t
hwtype_show(struct device
*dev
,
23 struct device_attribute
*attr
, char *buf
)
25 struct ap_card
*ac
= to_ap_card(dev
);
27 return scnprintf(buf
, PAGE_SIZE
, "%d\n", ac
->ap_dev
.device_type
);
30 static DEVICE_ATTR_RO(hwtype
);
32 static ssize_t
raw_hwtype_show(struct device
*dev
,
33 struct device_attribute
*attr
, char *buf
)
35 struct ap_card
*ac
= to_ap_card(dev
);
37 return scnprintf(buf
, PAGE_SIZE
, "%d\n", ac
->raw_hwtype
);
40 static DEVICE_ATTR_RO(raw_hwtype
);
42 static ssize_t
depth_show(struct device
*dev
, struct device_attribute
*attr
,
45 struct ap_card
*ac
= to_ap_card(dev
);
47 return scnprintf(buf
, PAGE_SIZE
, "%d\n", ac
->queue_depth
);
50 static DEVICE_ATTR_RO(depth
);
52 static ssize_t
ap_functions_show(struct device
*dev
,
53 struct device_attribute
*attr
, char *buf
)
55 struct ap_card
*ac
= to_ap_card(dev
);
57 return scnprintf(buf
, PAGE_SIZE
, "0x%08X\n", ac
->functions
);
60 static DEVICE_ATTR_RO(ap_functions
);
62 static ssize_t
request_count_show(struct device
*dev
,
63 struct device_attribute
*attr
,
66 struct ap_card
*ac
= to_ap_card(dev
);
70 spin_lock_bh(&ap_queues_lock
);
71 req_cnt
= atomic64_read(&ac
->total_request_count
);
72 spin_unlock_bh(&ap_queues_lock
);
73 return scnprintf(buf
, PAGE_SIZE
, "%llu\n", req_cnt
);
76 static ssize_t
request_count_store(struct device
*dev
,
77 struct device_attribute
*attr
,
78 const char *buf
, size_t count
)
82 struct ap_card
*ac
= to_ap_card(dev
);
84 spin_lock_bh(&ap_queues_lock
);
85 hash_for_each(ap_queues
, bkt
, aq
, hnode
)
87 aq
->total_request_count
= 0;
88 spin_unlock_bh(&ap_queues_lock
);
89 atomic64_set(&ac
->total_request_count
, 0);
94 static DEVICE_ATTR_RW(request_count
);
96 static ssize_t
requestq_count_show(struct device
*dev
,
97 struct device_attribute
*attr
, char *buf
)
101 unsigned int reqq_cnt
;
102 struct ap_card
*ac
= to_ap_card(dev
);
105 spin_lock_bh(&ap_queues_lock
);
106 hash_for_each(ap_queues
, bkt
, aq
, hnode
)
108 reqq_cnt
+= aq
->requestq_count
;
109 spin_unlock_bh(&ap_queues_lock
);
110 return scnprintf(buf
, PAGE_SIZE
, "%d\n", reqq_cnt
);
113 static DEVICE_ATTR_RO(requestq_count
);
115 static ssize_t
pendingq_count_show(struct device
*dev
,
116 struct device_attribute
*attr
, char *buf
)
120 unsigned int penq_cnt
;
121 struct ap_card
*ac
= to_ap_card(dev
);
124 spin_lock_bh(&ap_queues_lock
);
125 hash_for_each(ap_queues
, bkt
, aq
, hnode
)
127 penq_cnt
+= aq
->pendingq_count
;
128 spin_unlock_bh(&ap_queues_lock
);
129 return scnprintf(buf
, PAGE_SIZE
, "%d\n", penq_cnt
);
132 static DEVICE_ATTR_RO(pendingq_count
);
134 static ssize_t
modalias_show(struct device
*dev
,
135 struct device_attribute
*attr
, char *buf
)
137 return scnprintf(buf
, PAGE_SIZE
, "ap:t%02X\n",
138 to_ap_dev(dev
)->device_type
);
141 static DEVICE_ATTR_RO(modalias
);
143 static ssize_t
config_show(struct device
*dev
,
144 struct device_attribute
*attr
, char *buf
)
146 struct ap_card
*ac
= to_ap_card(dev
);
148 return scnprintf(buf
, PAGE_SIZE
, "%d\n", ac
->config
? 1 : 0);
151 static ssize_t
config_store(struct device
*dev
,
152 struct device_attribute
*attr
,
153 const char *buf
, size_t count
)
156 struct ap_card
*ac
= to_ap_card(dev
);
158 if (sscanf(buf
, "%d\n", &cfg
) != 1 || cfg
< 0 || cfg
> 1)
161 if (cfg
&& !ac
->config
)
162 rc
= sclp_ap_configure(ac
->id
);
163 else if (!cfg
&& ac
->config
)
164 rc
= sclp_ap_deconfigure(ac
->id
);
168 ac
->config
= cfg
? true : false;
173 static DEVICE_ATTR_RW(config
);
175 static struct attribute
*ap_card_dev_attrs
[] = {
176 &dev_attr_hwtype
.attr
,
177 &dev_attr_raw_hwtype
.attr
,
178 &dev_attr_depth
.attr
,
179 &dev_attr_ap_functions
.attr
,
180 &dev_attr_request_count
.attr
,
181 &dev_attr_requestq_count
.attr
,
182 &dev_attr_pendingq_count
.attr
,
183 &dev_attr_modalias
.attr
,
184 &dev_attr_config
.attr
,
188 static struct attribute_group ap_card_dev_attr_group
= {
189 .attrs
= ap_card_dev_attrs
192 static const struct attribute_group
*ap_card_dev_attr_groups
[] = {
193 &ap_card_dev_attr_group
,
197 static struct device_type ap_card_type
= {
199 .groups
= ap_card_dev_attr_groups
,
202 static void ap_card_device_release(struct device
*dev
)
204 struct ap_card
*ac
= to_ap_card(dev
);
209 struct ap_card
*ap_card_create(int id
, int queue_depth
, int raw_type
,
210 int comp_type
, unsigned int functions
)
214 ac
= kzalloc(sizeof(*ac
), GFP_KERNEL
);
217 ac
->ap_dev
.device
.release
= ap_card_device_release
;
218 ac
->ap_dev
.device
.type
= &ap_card_type
;
219 ac
->ap_dev
.device_type
= comp_type
;
220 ac
->raw_hwtype
= raw_type
;
221 ac
->queue_depth
= queue_depth
;
222 ac
->functions
= functions
;