1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright IBM Corp. 2016
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>
19 * AP card related attributes.
21 static ssize_t hwtype_show(struct device *dev,
22 struct device_attribute *attr, char *buf)
24 struct ap_card *ac = to_ap_card(dev);
26 return scnprintf(buf, PAGE_SIZE, "%d\n", ac->ap_dev.device_type);
29 static DEVICE_ATTR_RO(hwtype);
31 static ssize_t raw_hwtype_show(struct device *dev,
32 struct device_attribute *attr, char *buf)
34 struct ap_card *ac = to_ap_card(dev);
36 return scnprintf(buf, PAGE_SIZE, "%d\n", ac->raw_hwtype);
39 static DEVICE_ATTR_RO(raw_hwtype);
41 static ssize_t depth_show(struct device *dev, struct device_attribute *attr,
44 struct ap_card *ac = to_ap_card(dev);
46 return scnprintf(buf, PAGE_SIZE, "%d\n", ac->queue_depth);
49 static DEVICE_ATTR_RO(depth);
51 static ssize_t ap_functions_show(struct device *dev,
52 struct device_attribute *attr, char *buf)
54 struct ap_card *ac = to_ap_card(dev);
56 return scnprintf(buf, PAGE_SIZE, "0x%08X\n", ac->functions);
59 static DEVICE_ATTR_RO(ap_functions);
61 static ssize_t request_count_show(struct device *dev,
62 struct device_attribute *attr,
65 struct ap_card *ac = to_ap_card(dev);
69 spin_lock_bh(&ap_queues_lock);
70 req_cnt = atomic64_read(&ac->total_request_count);
71 spin_unlock_bh(&ap_queues_lock);
72 return scnprintf(buf, PAGE_SIZE, "%llu\n", req_cnt);
75 static ssize_t request_count_store(struct device *dev,
76 struct device_attribute *attr,
77 const char *buf, size_t count)
81 struct ap_card *ac = to_ap_card(dev);
83 spin_lock_bh(&ap_queues_lock);
84 hash_for_each(ap_queues, bkt, aq, hnode)
86 aq->total_request_count = 0;
87 spin_unlock_bh(&ap_queues_lock);
88 atomic64_set(&ac->total_request_count, 0);
93 static DEVICE_ATTR_RW(request_count);
95 static ssize_t requestq_count_show(struct device *dev,
96 struct device_attribute *attr, char *buf)
100 unsigned int reqq_cnt;
101 struct ap_card *ac = to_ap_card(dev);
104 spin_lock_bh(&ap_queues_lock);
105 hash_for_each(ap_queues, bkt, aq, hnode)
107 reqq_cnt += aq->requestq_count;
108 spin_unlock_bh(&ap_queues_lock);
109 return scnprintf(buf, PAGE_SIZE, "%d\n", reqq_cnt);
112 static DEVICE_ATTR_RO(requestq_count);
114 static ssize_t pendingq_count_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
119 unsigned int penq_cnt;
120 struct ap_card *ac = to_ap_card(dev);
123 spin_lock_bh(&ap_queues_lock);
124 hash_for_each(ap_queues, bkt, aq, hnode)
126 penq_cnt += aq->pendingq_count;
127 spin_unlock_bh(&ap_queues_lock);
128 return scnprintf(buf, PAGE_SIZE, "%d\n", penq_cnt);
131 static DEVICE_ATTR_RO(pendingq_count);
133 static ssize_t modalias_show(struct device *dev,
134 struct device_attribute *attr, char *buf)
136 return scnprintf(buf, PAGE_SIZE, "ap:t%02X\n",
137 to_ap_dev(dev)->device_type);
140 static DEVICE_ATTR_RO(modalias);
142 static struct attribute *ap_card_dev_attrs[] = {
143 &dev_attr_hwtype.attr,
144 &dev_attr_raw_hwtype.attr,
145 &dev_attr_depth.attr,
146 &dev_attr_ap_functions.attr,
147 &dev_attr_request_count.attr,
148 &dev_attr_requestq_count.attr,
149 &dev_attr_pendingq_count.attr,
150 &dev_attr_modalias.attr,
154 static struct attribute_group ap_card_dev_attr_group = {
155 .attrs = ap_card_dev_attrs
158 static const struct attribute_group *ap_card_dev_attr_groups[] = {
159 &ap_card_dev_attr_group,
163 static struct device_type ap_card_type = {
165 .groups = ap_card_dev_attr_groups,
168 static void ap_card_device_release(struct device *dev)
170 struct ap_card *ac = to_ap_card(dev);
175 struct ap_card *ap_card_create(int id, int queue_depth, int raw_type,
176 int comp_type, unsigned int functions)
180 ac = kzalloc(sizeof(*ac), GFP_KERNEL);
183 ac->ap_dev.device.release = ap_card_device_release;
184 ac->ap_dev.device.type = &ap_card_type;
185 ac->ap_dev.device_type = comp_type;
186 ac->raw_hwtype = raw_type;
187 ac->queue_depth = queue_depth;
188 ac->functions = functions;