]> git.karo-electronics.de Git - linux-beck.git/blob - drivers/base/platform-msi.c
platform-msi: Allow MSIs to be allocated in chunks
[linux-beck.git] / drivers / base / platform-msi.c
1 /*
2  * MSI framework for platform devices
3  *
4  * Copyright (C) 2015 ARM Limited, All Rights Reserved.
5  * Author: Marc Zyngier <marc.zyngier@arm.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <linux/device.h>
21 #include <linux/idr.h>
22 #include <linux/irq.h>
23 #include <linux/irqdomain.h>
24 #include <linux/msi.h>
25 #include <linux/slab.h>
26
27 #define DEV_ID_SHIFT    24
28 #define MAX_DEV_MSIS    (1 << (32 - DEV_ID_SHIFT))
29
30 /*
31  * Internal data structure containing a (made up, but unique) devid
32  * and the callback to write the MSI message.
33  */
34 struct platform_msi_priv_data {
35         irq_write_msi_msg_t     write_msg;
36         int                     devid;
37 };
38
39 /* The devid allocator */
40 static DEFINE_IDA(platform_msi_devid_ida);
41
42 #ifdef GENERIC_MSI_DOMAIN_OPS
43 /*
44  * Convert an msi_desc to a globaly unique identifier (per-device
45  * devid + msi_desc position in the msi_list).
46  */
47 static irq_hw_number_t platform_msi_calc_hwirq(struct msi_desc *desc)
48 {
49         u32 devid;
50
51         devid = desc->platform.msi_priv_data->devid;
52
53         return (devid << (32 - DEV_ID_SHIFT)) | desc->platform.msi_index;
54 }
55
56 static void platform_msi_set_desc(msi_alloc_info_t *arg, struct msi_desc *desc)
57 {
58         arg->desc = desc;
59         arg->hwirq = platform_msi_calc_hwirq(desc);
60 }
61
62 static int platform_msi_init(struct irq_domain *domain,
63                              struct msi_domain_info *info,
64                              unsigned int virq, irq_hw_number_t hwirq,
65                              msi_alloc_info_t *arg)
66 {
67         return irq_domain_set_hwirq_and_chip(domain, virq, hwirq,
68                                              info->chip, info->chip_data);
69 }
70 #else
71 #define platform_msi_set_desc           NULL
72 #define platform_msi_init               NULL
73 #endif
74
75 static void platform_msi_update_dom_ops(struct msi_domain_info *info)
76 {
77         struct msi_domain_ops *ops = info->ops;
78
79         BUG_ON(!ops);
80
81         if (ops->msi_init == NULL)
82                 ops->msi_init = platform_msi_init;
83         if (ops->set_desc == NULL)
84                 ops->set_desc = platform_msi_set_desc;
85 }
86
87 static void platform_msi_write_msg(struct irq_data *data, struct msi_msg *msg)
88 {
89         struct msi_desc *desc = irq_data_get_msi_desc(data);
90         struct platform_msi_priv_data *priv_data;
91
92         priv_data = desc->platform.msi_priv_data;
93
94         priv_data->write_msg(desc, msg);
95 }
96
97 static void platform_msi_update_chip_ops(struct msi_domain_info *info)
98 {
99         struct irq_chip *chip = info->chip;
100
101         BUG_ON(!chip);
102         if (!chip->irq_mask)
103                 chip->irq_mask = irq_chip_mask_parent;
104         if (!chip->irq_unmask)
105                 chip->irq_unmask = irq_chip_unmask_parent;
106         if (!chip->irq_eoi)
107                 chip->irq_eoi = irq_chip_eoi_parent;
108         if (!chip->irq_set_affinity)
109                 chip->irq_set_affinity = msi_domain_set_affinity;
110         if (!chip->irq_write_msi_msg)
111                 chip->irq_write_msi_msg = platform_msi_write_msg;
112 }
113
114 static void platform_msi_free_descs(struct device *dev, int base, int nvec)
115 {
116         struct msi_desc *desc, *tmp;
117
118         list_for_each_entry_safe(desc, tmp, dev_to_msi_list(dev), list) {
119                 if (desc->platform.msi_index >= base &&
120                     desc->platform.msi_index < (base + nvec)) {
121                         list_del(&desc->list);
122                         free_msi_entry(desc);
123                 }
124         }
125 }
126
127 static int platform_msi_alloc_descs(struct device *dev, int nvec,
128                                     struct platform_msi_priv_data *data)
129
130 {
131         struct msi_desc *desc;
132         int i, base = 0;
133
134         if (!list_empty(dev_to_msi_list(dev))) {
135                 desc = list_last_entry(dev_to_msi_list(dev),
136                                        struct msi_desc, list);
137                 base = desc->platform.msi_index + 1;
138         }
139
140         for (i = 0; i < nvec; i++) {
141                 desc = alloc_msi_entry(dev);
142                 if (!desc)
143                         break;
144
145                 desc->platform.msi_priv_data = data;
146                 desc->platform.msi_index = base + i;
147                 desc->nvec_used = 1;
148
149                 list_add_tail(&desc->list, dev_to_msi_list(dev));
150         }
151
152         if (i != nvec) {
153                 /* Clean up the mess */
154                 platform_msi_free_descs(dev, base, nvec);
155
156                 return -ENOMEM;
157         }
158
159         return 0;
160 }
161
162 /**
163  * platform_msi_create_irq_domain - Create a platform MSI interrupt domain
164  * @fwnode:             Optional fwnode of the interrupt controller
165  * @info:       MSI domain info
166  * @parent:     Parent irq domain
167  *
168  * Updates the domain and chip ops and creates a platform MSI
169  * interrupt domain.
170  *
171  * Returns:
172  * A domain pointer or NULL in case of failure.
173  */
174 struct irq_domain *platform_msi_create_irq_domain(struct fwnode_handle *fwnode,
175                                                   struct msi_domain_info *info,
176                                                   struct irq_domain *parent)
177 {
178         struct irq_domain *domain;
179
180         if (info->flags & MSI_FLAG_USE_DEF_DOM_OPS)
181                 platform_msi_update_dom_ops(info);
182         if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
183                 platform_msi_update_chip_ops(info);
184
185         domain = msi_create_irq_domain(fwnode, info, parent);
186         if (domain)
187                 domain->bus_token = DOMAIN_BUS_PLATFORM_MSI;
188
189         return domain;
190 }
191
192 /**
193  * platform_msi_domain_alloc_irqs - Allocate MSI interrupts for @dev
194  * @dev:                The device for which to allocate interrupts
195  * @nvec:               The number of interrupts to allocate
196  * @write_msi_msg:      Callback to write an interrupt message for @dev
197  *
198  * Returns:
199  * Zero for success, or an error code in case of failure
200  */
201 int platform_msi_domain_alloc_irqs(struct device *dev, unsigned int nvec,
202                                    irq_write_msi_msg_t write_msi_msg)
203 {
204         struct platform_msi_priv_data *priv_data;
205         int err;
206
207         /*
208          * Limit the number of interrupts to 256 per device. Should we
209          * need to bump this up, DEV_ID_SHIFT should be adjusted
210          * accordingly (which would impact the max number of MSI
211          * capable devices).
212          */
213         if (!dev->msi_domain || !write_msi_msg || !nvec || nvec > MAX_DEV_MSIS)
214                 return -EINVAL;
215
216         if (dev->msi_domain->bus_token != DOMAIN_BUS_PLATFORM_MSI) {
217                 dev_err(dev, "Incompatible msi_domain, giving up\n");
218                 return -EINVAL;
219         }
220
221         /* Already had a helping of MSI? Greed... */
222         if (!list_empty(dev_to_msi_list(dev)))
223                 return -EBUSY;
224
225         priv_data = kzalloc(sizeof(*priv_data), GFP_KERNEL);
226         if (!priv_data)
227                 return -ENOMEM;
228
229         priv_data->devid = ida_simple_get(&platform_msi_devid_ida,
230                                           0, 1 << DEV_ID_SHIFT, GFP_KERNEL);
231         if (priv_data->devid < 0) {
232                 err = priv_data->devid;
233                 goto out_free_data;
234         }
235
236         priv_data->write_msg = write_msi_msg;
237
238         err = platform_msi_alloc_descs(dev, nvec, priv_data);
239         if (err)
240                 goto out_free_id;
241
242         err = msi_domain_alloc_irqs(dev->msi_domain, dev, nvec);
243         if (err)
244                 goto out_free_desc;
245
246         return 0;
247
248 out_free_desc:
249         platform_msi_free_descs(dev, 0, nvec);
250 out_free_id:
251         ida_simple_remove(&platform_msi_devid_ida, priv_data->devid);
252 out_free_data:
253         kfree(priv_data);
254
255         return err;
256 }
257
258 /**
259  * platform_msi_domain_free_irqs - Free MSI interrupts for @dev
260  * @dev:        The device for which to free interrupts
261  */
262 void platform_msi_domain_free_irqs(struct device *dev)
263 {
264         struct msi_desc *desc;
265
266         desc = first_msi_entry(dev);
267         if (desc) {
268                 struct platform_msi_priv_data *data;
269
270                 data = desc->platform.msi_priv_data;
271
272                 ida_simple_remove(&platform_msi_devid_ida, data->devid);
273                 kfree(data);
274         }
275
276         msi_domain_free_irqs(dev->msi_domain, dev);
277         platform_msi_free_descs(dev, 0, MAX_DEV_MSIS);
278 }