blob: 2bdfce5edafd025344c38c47c91e97be623fbac4 [file] [log] [blame]
Thomas Gleixner52a65ff2018-03-14 22:15:19 +01001// SPDX-License-Identifier: GPL-2.0
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01002/*
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01003 * Copyright (C) 2014 Intel Corp.
4 * Author: Jiang Liu <jiang.liu@linux.intel.com>
5 *
6 * This file is licensed under GPLv2.
7 *
Ingo Molnara359f752021-03-22 04:21:30 +01008 * This file contains common code to support Message Signaled Interrupts for
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01009 * PCI compatible and non PCI compatible devices.
10 */
Jiang Liuaeeb5962014-11-15 22:24:05 +080011#include <linux/types.h>
12#include <linux/device.h>
Jiang Liuf3cf8bb2014-11-12 11:39:03 +010013#include <linux/irq.h>
14#include <linux/irqdomain.h>
15#include <linux/msi.h>
Marc Zyngier4e201562016-11-22 09:21:16 +000016#include <linux/slab.h>
Thomas Gleixner3ba1f052021-12-06 23:27:31 +010017#include <linux/sysfs.h>
Barry Song2f170812021-08-13 15:56:27 +120018#include <linux/pci.h>
Jiang Liud9109692014-11-15 22:24:04 +080019
Thomas Gleixner07557cc2017-09-13 23:29:05 +020020#include "internals.h"
21
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +010022static inline int msi_sysfs_create_group(struct device *dev);
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010023
Thomas Gleixner28f4b042016-09-14 16:18:47 +020024/**
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010025 * msi_alloc_desc - Allocate an initialized msi_desc
Thomas Gleixner28f4b042016-09-14 16:18:47 +020026 * @dev: Pointer to the device for which this is allocated
27 * @nvec: The number of vectors used in this entry
28 * @affinity: Optional pointer to an affinity mask array size of @nvec
29 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -070030 * If @affinity is not %NULL then an affinity array[@nvec] is allocated
Dou Liyangbec04032018-12-04 23:51:20 +080031 * and the affinity masks and flags from @affinity are copied.
Randy Dunlap3b35e7e2021-08-10 16:48:35 -070032 *
33 * Return: pointer to allocated &msi_desc on success or %NULL on failure
Thomas Gleixner28f4b042016-09-14 16:18:47 +020034 */
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010035static struct msi_desc *msi_alloc_desc(struct device *dev, int nvec,
36 const struct irq_affinity_desc *affinity)
Jiang Liuaa48b6f2015-07-09 16:00:47 +080037{
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010038 struct msi_desc *desc = kzalloc(sizeof(*desc), GFP_KERNEL);
Thomas Gleixner28f4b042016-09-14 16:18:47 +020039
Jiang Liuaa48b6f2015-07-09 16:00:47 +080040 if (!desc)
41 return NULL;
42
Jiang Liuaa48b6f2015-07-09 16:00:47 +080043 desc->dev = dev;
Thomas Gleixner28f4b042016-09-14 16:18:47 +020044 desc->nvec_used = nvec;
45 if (affinity) {
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010046 desc->affinity = kmemdup(affinity, nvec * sizeof(*desc->affinity), GFP_KERNEL);
Thomas Gleixner28f4b042016-09-14 16:18:47 +020047 if (!desc->affinity) {
48 kfree(desc);
49 return NULL;
50 }
51 }
Jiang Liuaa48b6f2015-07-09 16:00:47 +080052 return desc;
53}
54
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010055static void msi_free_desc(struct msi_desc *desc)
Jiang Liuaa48b6f2015-07-09 16:00:47 +080056{
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010057 kfree(desc->affinity);
58 kfree(desc);
Jiang Liuaa48b6f2015-07-09 16:00:47 +080059}
60
Thomas Gleixnercd6cf062021-12-06 23:51:52 +010061static int msi_insert_desc(struct msi_device_data *md, struct msi_desc *desc, unsigned int index)
62{
63 int ret;
64
65 desc->msi_index = index;
66 ret = xa_insert(&md->__store, index, desc, GFP_KERNEL);
67 if (ret)
68 msi_free_desc(desc);
69 return ret;
70}
71
Thomas Gleixner602905252021-12-06 23:51:10 +010072/**
73 * msi_add_msi_desc - Allocate and initialize a MSI descriptor
74 * @dev: Pointer to the device for which the descriptor is allocated
75 * @init_desc: Pointer to an MSI descriptor to initialize the new descriptor
76 *
77 * Return: 0 on success or an appropriate failure code.
78 */
79int msi_add_msi_desc(struct device *dev, struct msi_desc *init_desc)
80{
81 struct msi_desc *desc;
82
83 lockdep_assert_held(&dev->msi.data->mutex);
84
Thomas Gleixnercc9a2462021-12-06 23:51:47 +010085 desc = msi_alloc_desc(dev, init_desc->nvec_used, init_desc->affinity);
Thomas Gleixner602905252021-12-06 23:51:10 +010086 if (!desc)
87 return -ENOMEM;
88
Thomas Gleixnercd6cf062021-12-06 23:51:52 +010089 /* Copy type specific data to the new descriptor. */
Thomas Gleixner602905252021-12-06 23:51:10 +010090 desc->pci = init_desc->pci;
Thomas Gleixnercd6cf062021-12-06 23:51:52 +010091 return msi_insert_desc(dev->msi.data, desc, init_desc->msi_index);
Thomas Gleixner602905252021-12-06 23:51:10 +010092}
93
94/**
95 * msi_add_simple_msi_descs - Allocate and initialize MSI descriptors
96 * @dev: Pointer to the device for which the descriptors are allocated
97 * @index: Index for the first MSI descriptor
98 * @ndesc: Number of descriptors to allocate
99 *
100 * Return: 0 on success or an appropriate failure code.
101 */
102static int msi_add_simple_msi_descs(struct device *dev, unsigned int index, unsigned int ndesc)
103{
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100104 unsigned int idx, last = index + ndesc - 1;
105 struct msi_desc *desc;
106 int ret;
Thomas Gleixner602905252021-12-06 23:51:10 +0100107
108 lockdep_assert_held(&dev->msi.data->mutex);
109
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100110 for (idx = index; idx <= last; idx++) {
Thomas Gleixnercc9a2462021-12-06 23:51:47 +0100111 desc = msi_alloc_desc(dev, 1, NULL);
Thomas Gleixner602905252021-12-06 23:51:10 +0100112 if (!desc)
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100113 goto fail_mem;
114 ret = msi_insert_desc(dev->msi.data, desc, idx);
115 if (ret)
Thomas Gleixner602905252021-12-06 23:51:10 +0100116 goto fail;
Thomas Gleixner602905252021-12-06 23:51:10 +0100117 }
Thomas Gleixner602905252021-12-06 23:51:10 +0100118 return 0;
119
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100120fail_mem:
121 ret = -ENOMEM;
Thomas Gleixner602905252021-12-06 23:51:10 +0100122fail:
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100123 msi_free_msi_descs_range(dev, MSI_DESC_NOTASSOCIATED, index, last);
124 return ret;
125}
126
127static bool msi_desc_match(struct msi_desc *desc, enum msi_desc_filter filter)
128{
129 switch (filter) {
130 case MSI_DESC_ALL:
131 return true;
132 case MSI_DESC_NOTASSOCIATED:
133 return !desc->irq;
134 case MSI_DESC_ASSOCIATED:
135 return !!desc->irq;
Thomas Gleixner602905252021-12-06 23:51:10 +0100136 }
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100137 WARN_ON_ONCE(1);
138 return false;
Thomas Gleixner602905252021-12-06 23:51:10 +0100139}
140
Thomas Gleixner645474e22021-12-06 23:51:12 +0100141/**
142 * msi_free_msi_descs_range - Free MSI descriptors of a device
143 * @dev: Device to free the descriptors
144 * @filter: Descriptor state filter
145 * @first_index: Index to start freeing from
146 * @last_index: Last index to be freed
147 */
148void msi_free_msi_descs_range(struct device *dev, enum msi_desc_filter filter,
149 unsigned int first_index, unsigned int last_index)
150{
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100151 struct xarray *xa = &dev->msi.data->__store;
Thomas Gleixner645474e22021-12-06 23:51:12 +0100152 struct msi_desc *desc;
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100153 unsigned long idx;
Thomas Gleixner645474e22021-12-06 23:51:12 +0100154
155 lockdep_assert_held(&dev->msi.data->mutex);
156
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100157 xa_for_each_range(xa, idx, desc, first_index, last_index) {
158 if (msi_desc_match(desc, filter)) {
159 xa_erase(xa, idx);
160 msi_free_desc(desc);
161 }
Thomas Gleixner645474e22021-12-06 23:51:12 +0100162 }
163}
164
Jiang Liu38b6a1c2014-11-12 12:11:25 +0100165void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg)
166{
167 *msg = entry->msg;
168}
169
170void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg)
171{
172 struct msi_desc *entry = irq_get_msi_desc(irq);
173
174 __get_cached_msi_msg(entry, msg);
175}
176EXPORT_SYMBOL_GPL(get_cached_msi_msg);
177
Thomas Gleixner013bd8e2021-12-10 23:18:55 +0100178static void msi_device_data_release(struct device *dev, void *res)
179{
Thomas Gleixner125282c2021-12-06 23:51:04 +0100180 struct msi_device_data *md = res;
181
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100182 WARN_ON_ONCE(!xa_empty(&md->__store));
183 xa_destroy(&md->__store);
Thomas Gleixner013bd8e2021-12-10 23:18:55 +0100184 dev->msi.data = NULL;
185}
186
187/**
188 * msi_setup_device_data - Setup MSI device data
189 * @dev: Device for which MSI device data should be set up
190 *
191 * Return: 0 on success, appropriate error code otherwise
192 *
193 * This can be called more than once for @dev. If the MSI device data is
194 * already allocated the call succeeds. The allocated memory is
195 * automatically released when the device is destroyed.
196 */
197int msi_setup_device_data(struct device *dev)
198{
199 struct msi_device_data *md;
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100200 int ret;
Thomas Gleixner013bd8e2021-12-10 23:18:55 +0100201
202 if (dev->msi.data)
203 return 0;
204
205 md = devres_alloc(msi_device_data_release, sizeof(*md), GFP_KERNEL);
206 if (!md)
207 return -ENOMEM;
208
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100209 ret = msi_sysfs_create_group(dev);
210 if (ret) {
211 devres_free(md);
212 return ret;
213 }
214
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100215 xa_init(&md->__store);
Thomas Gleixnerb5f687f2021-12-06 23:51:05 +0100216 mutex_init(&md->mutex);
Thomas Gleixner013bd8e2021-12-10 23:18:55 +0100217 dev->msi.data = md;
218 devres_add(dev, md);
219 return 0;
220}
221
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100222/**
Thomas Gleixnerb5f687f2021-12-06 23:51:05 +0100223 * msi_lock_descs - Lock the MSI descriptor storage of a device
224 * @dev: Device to operate on
225 */
226void msi_lock_descs(struct device *dev)
227{
228 mutex_lock(&dev->msi.data->mutex);
229}
230EXPORT_SYMBOL_GPL(msi_lock_descs);
231
232/**
233 * msi_unlock_descs - Unlock the MSI descriptor storage of a device
234 * @dev: Device to operate on
235 */
236void msi_unlock_descs(struct device *dev)
237{
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100238 /* Invalidate the index wich was cached by the iterator */
239 dev->msi.data->__iter_idx = MSI_MAX_INDEX;
Thomas Gleixnerb5f687f2021-12-06 23:51:05 +0100240 mutex_unlock(&dev->msi.data->mutex);
241}
242EXPORT_SYMBOL_GPL(msi_unlock_descs);
243
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100244static struct msi_desc *msi_find_desc(struct msi_device_data *md, enum msi_desc_filter filter)
Thomas Gleixner1046f712021-12-06 23:51:08 +0100245{
246 struct msi_desc *desc;
247
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100248 xa_for_each_start(&md->__store, md->__iter_idx, desc, md->__iter_idx) {
Thomas Gleixner1046f712021-12-06 23:51:08 +0100249 if (msi_desc_match(desc, filter))
250 return desc;
251 }
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100252 md->__iter_idx = MSI_MAX_INDEX;
Thomas Gleixner1046f712021-12-06 23:51:08 +0100253 return NULL;
254}
255
256/**
257 * msi_first_desc - Get the first MSI descriptor of a device
258 * @dev: Device to operate on
259 * @filter: Descriptor state filter
260 *
261 * Must be called with the MSI descriptor mutex held, i.e. msi_lock_descs()
262 * must be invoked before the call.
263 *
264 * Return: Pointer to the first MSI descriptor matching the search
265 * criteria, NULL if none found.
266 */
267struct msi_desc *msi_first_desc(struct device *dev, enum msi_desc_filter filter)
268{
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100269 struct msi_device_data *md = dev->msi.data;
Thomas Gleixner1046f712021-12-06 23:51:08 +0100270
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100271 if (WARN_ON_ONCE(!md))
Thomas Gleixner1046f712021-12-06 23:51:08 +0100272 return NULL;
273
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100274 lockdep_assert_held(&md->mutex);
Thomas Gleixner1046f712021-12-06 23:51:08 +0100275
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100276 md->__iter_idx = 0;
277 return msi_find_desc(md, filter);
Thomas Gleixner1046f712021-12-06 23:51:08 +0100278}
279EXPORT_SYMBOL_GPL(msi_first_desc);
280
Thomas Gleixner1046f712021-12-06 23:51:08 +0100281/**
282 * msi_next_desc - Get the next MSI descriptor of a device
283 * @dev: Device to operate on
284 *
285 * The first invocation of msi_next_desc() has to be preceeded by a
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100286 * successful invocation of __msi_first_desc(). Consecutive invocations are
Thomas Gleixner1046f712021-12-06 23:51:08 +0100287 * only valid if the previous one was successful. All these operations have
288 * to be done within the same MSI mutex held region.
289 *
290 * Return: Pointer to the next MSI descriptor matching the search
291 * criteria, NULL if none found.
292 */
293struct msi_desc *msi_next_desc(struct device *dev, enum msi_desc_filter filter)
294{
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100295 struct msi_device_data *md = dev->msi.data;
Thomas Gleixner1046f712021-12-06 23:51:08 +0100296
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100297 if (WARN_ON_ONCE(!md))
Thomas Gleixner1046f712021-12-06 23:51:08 +0100298 return NULL;
299
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100300 lockdep_assert_held(&md->mutex);
Thomas Gleixner1046f712021-12-06 23:51:08 +0100301
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100302 if (md->__iter_idx >= (unsigned long)MSI_MAX_INDEX)
Thomas Gleixner1046f712021-12-06 23:51:08 +0100303 return NULL;
304
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100305 md->__iter_idx++;
306 return msi_find_desc(md, filter);
Thomas Gleixner1046f712021-12-06 23:51:08 +0100307}
308EXPORT_SYMBOL_GPL(msi_next_desc);
309
Thomas Gleixnerb5f687f2021-12-06 23:51:05 +0100310/**
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100311 * msi_get_virq - Return Linux interrupt number of a MSI interrupt
312 * @dev: Device to operate on
313 * @index: MSI interrupt index to look for (0-based)
314 *
315 * Return: The Linux interrupt number on success (> 0), 0 if not found
316 */
317unsigned int msi_get_virq(struct device *dev, unsigned int index)
318{
319 struct msi_desc *desc;
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100320 unsigned int ret = 0;
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100321 bool pcimsi;
322
323 if (!dev->msi.data)
324 return 0;
325
326 pcimsi = dev_is_pci(dev) ? to_pci_dev(dev)->msi_enabled : false;
327
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100328 msi_lock_descs(dev);
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100329 desc = xa_load(&dev->msi.data->__store, pcimsi ? 0 : index);
330 if (desc && desc->irq) {
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100331 /*
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100332 * PCI-MSI has only one descriptor for multiple interrupts.
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100333 * PCI-MSIX and platform MSI use a descriptor per
334 * interrupt.
335 */
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100336 if (pcimsi) {
337 if (index < desc->nvec_used)
338 ret = desc->irq + index;
339 } else {
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100340 ret = desc->irq;
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100341 }
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100342 }
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100343 msi_unlock_descs(dev);
344 return ret;
Thomas Gleixnercf15f432021-12-10 23:19:23 +0100345}
346EXPORT_SYMBOL_GPL(msi_get_virq);
347
Thomas Gleixner11975282021-12-06 23:27:28 +0100348#ifdef CONFIG_SYSFS
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100349static struct attribute *msi_dev_attrs[] = {
350 NULL
351};
352
353static const struct attribute_group msi_irqs_group = {
354 .name = "msi_irqs",
355 .attrs = msi_dev_attrs,
356};
357
358static inline int msi_sysfs_create_group(struct device *dev)
359{
360 return devm_device_add_group(dev, &msi_irqs_group);
361}
362
Barry Song2f170812021-08-13 15:56:27 +1200363static ssize_t msi_mode_show(struct device *dev, struct device_attribute *attr,
364 char *buf)
365{
Thomas Gleixner6ef7f772021-12-10 23:18:49 +0100366 /* MSI vs. MSIX is per device not per interrupt */
367 bool is_msix = dev_is_pci(dev) ? to_pci_dev(dev)->msix_enabled : false;
Barry Song2f170812021-08-13 15:56:27 +1200368
369 return sysfs_emit(buf, "%s\n", is_msix ? "msix" : "msi");
370}
371
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100372static void msi_sysfs_remove_desc(struct device *dev, struct msi_desc *desc)
Barry Song2f170812021-08-13 15:56:27 +1200373{
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100374 struct device_attribute *attrs = desc->sysfs_attrs;
Barry Song2f170812021-08-13 15:56:27 +1200375 int i;
376
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100377 if (!attrs)
378 return;
Barry Song2f170812021-08-13 15:56:27 +1200379
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100380 desc->sysfs_attrs = NULL;
381 for (i = 0; i < desc->nvec_used; i++) {
382 if (attrs[i].show)
383 sysfs_remove_file_from_group(&dev->kobj, &attrs[i].attr, msi_irqs_group.name);
384 kfree(attrs[i].attr.name);
Barry Song2f170812021-08-13 15:56:27 +1200385 }
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100386 kfree(attrs);
Barry Song2f170812021-08-13 15:56:27 +1200387}
388
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100389static int msi_sysfs_populate_desc(struct device *dev, struct msi_desc *desc)
390{
391 struct device_attribute *attrs;
392 int ret, i;
393
394 attrs = kcalloc(desc->nvec_used, sizeof(*attrs), GFP_KERNEL);
395 if (!attrs)
396 return -ENOMEM;
397
398 desc->sysfs_attrs = attrs;
399 for (i = 0; i < desc->nvec_used; i++) {
400 sysfs_attr_init(&attrs[i].attr);
401 attrs[i].attr.name = kasprintf(GFP_KERNEL, "%d", desc->irq + i);
402 if (!attrs[i].attr.name) {
403 ret = -ENOMEM;
404 goto fail;
405 }
406
407 attrs[i].attr.mode = 0444;
408 attrs[i].show = msi_mode_show;
409
410 ret = sysfs_add_file_to_group(&dev->kobj, &attrs[i].attr, msi_irqs_group.name);
411 if (ret) {
412 attrs[i].show = NULL;
413 goto fail;
414 }
415 }
416 return 0;
417
418fail:
419 msi_sysfs_remove_desc(dev, desc);
420 return ret;
421}
422
423#ifdef CONFIG_PCI_MSI_ARCH_FALLBACKS
Barry Song2f170812021-08-13 15:56:27 +1200424/**
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100425 * msi_device_populate_sysfs - Populate msi_irqs sysfs entries for a device
426 * @dev: The device (PCI, platform etc) which will get sysfs entries
427 */
428int msi_device_populate_sysfs(struct device *dev)
429{
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100430 struct msi_desc *desc;
431 int ret;
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100432
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100433 msi_for_each_desc(desc, dev, MSI_DESC_ASSOCIATED) {
434 if (desc->sysfs_attrs)
435 continue;
436 ret = msi_sysfs_populate_desc(dev, desc);
437 if (ret)
438 return ret;
439 }
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100440 return 0;
441}
442
443/**
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100444 * msi_device_destroy_sysfs - Destroy msi_irqs sysfs entries for a device
445 * @dev: The device (PCI, platform etc) for which to remove
446 * sysfs entries
447 */
448void msi_device_destroy_sysfs(struct device *dev)
449{
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100450 struct msi_desc *desc;
Thomas Gleixner24cff372021-12-10 23:19:08 +0100451
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100452 msi_for_each_desc(desc, dev, MSI_DESC_ALL)
453 msi_sysfs_remove_desc(dev, desc);
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100454}
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100455#endif /* CONFIG_PCI_MSI_ARCH_FALLBACK */
456#else /* CONFIG_SYSFS */
457static inline int msi_sysfs_create_group(struct device *dev) { return 0; }
458static inline int msi_sysfs_populate_desc(struct device *dev, struct msi_desc *desc) { return 0; }
459static inline void msi_sysfs_remove_desc(struct device *dev, struct msi_desc *desc) { }
460#endif /* !CONFIG_SYSFS */
Barry Song2f170812021-08-13 15:56:27 +1200461
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100462#ifdef CONFIG_GENERIC_MSI_IRQ_DOMAIN
Thomas Gleixner74faaf72014-12-06 21:20:20 +0100463static inline void irq_chip_write_msi_msg(struct irq_data *data,
464 struct msi_msg *msg)
465{
466 data->chip->irq_write_msi_msg(data, msg);
467}
468
Marc Zyngier0be81532018-05-08 13:14:30 +0100469static void msi_check_level(struct irq_domain *domain, struct msi_msg *msg)
470{
471 struct msi_domain_info *info = domain->host_data;
472
473 /*
474 * If the MSI provider has messed with the second message and
475 * not advertized that it is level-capable, signal the breakage.
476 */
477 WARN_ON(!((info->flags & MSI_FLAG_LEVEL_CAPABLE) &&
478 (info->chip->flags & IRQCHIP_SUPPORTS_LEVEL_MSI)) &&
479 (msg[1].address_lo || msg[1].address_hi || msg[1].data));
480}
481
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100482/**
483 * msi_domain_set_affinity - Generic affinity setter function for MSI domains
484 * @irq_data: The irq data associated to the interrupt
485 * @mask: The affinity mask to set
486 * @force: Flag to enforce setting (disable online checks)
487 *
488 * Intended to be used by MSI interrupt controllers which are
489 * implemented with hierarchical domains.
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700490 *
491 * Return: IRQ_SET_MASK_* result code
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100492 */
493int msi_domain_set_affinity(struct irq_data *irq_data,
494 const struct cpumask *mask, bool force)
495{
496 struct irq_data *parent = irq_data->parent_data;
Marc Zyngier0be81532018-05-08 13:14:30 +0100497 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100498 int ret;
499
500 ret = parent->chip->irq_set_affinity(parent, mask, force);
501 if (ret >= 0 && ret != IRQ_SET_MASK_OK_DONE) {
Marc Zyngier0be81532018-05-08 13:14:30 +0100502 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
503 msi_check_level(irq_data->domain, msg);
504 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100505 }
506
507 return ret;
508}
509
Thomas Gleixner72491642017-09-13 23:29:10 +0200510static int msi_domain_activate(struct irq_domain *domain,
511 struct irq_data *irq_data, bool early)
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100512{
Marc Zyngier0be81532018-05-08 13:14:30 +0100513 struct msi_msg msg[2] = { [1] = { }, };
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100514
Marc Zyngier0be81532018-05-08 13:14:30 +0100515 BUG_ON(irq_chip_compose_msi_msg(irq_data, msg));
516 msi_check_level(irq_data->domain, msg);
517 irq_chip_write_msi_msg(irq_data, msg);
Thomas Gleixner72491642017-09-13 23:29:10 +0200518 return 0;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100519}
520
521static void msi_domain_deactivate(struct irq_domain *domain,
522 struct irq_data *irq_data)
523{
Marc Zyngier0be81532018-05-08 13:14:30 +0100524 struct msi_msg msg[2];
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100525
Marc Zyngier0be81532018-05-08 13:14:30 +0100526 memset(msg, 0, sizeof(msg));
527 irq_chip_write_msi_msg(irq_data, msg);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100528}
529
530static int msi_domain_alloc(struct irq_domain *domain, unsigned int virq,
531 unsigned int nr_irqs, void *arg)
532{
533 struct msi_domain_info *info = domain->host_data;
534 struct msi_domain_ops *ops = info->ops;
535 irq_hw_number_t hwirq = ops->get_hwirq(info, arg);
536 int i, ret;
537
538 if (irq_find_mapping(domain, hwirq) > 0)
539 return -EEXIST;
540
Liu Jiangbf6f8692016-01-12 13:18:06 -0700541 if (domain->parent) {
542 ret = irq_domain_alloc_irqs_parent(domain, virq, nr_irqs, arg);
543 if (ret < 0)
544 return ret;
545 }
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100546
547 for (i = 0; i < nr_irqs; i++) {
548 ret = ops->msi_init(domain, info, virq + i, hwirq + i, arg);
549 if (ret < 0) {
550 if (ops->msi_free) {
551 for (i--; i > 0; i--)
552 ops->msi_free(domain, info, virq + i);
553 }
554 irq_domain_free_irqs_top(domain, virq, nr_irqs);
555 return ret;
556 }
557 }
558
559 return 0;
560}
561
562static void msi_domain_free(struct irq_domain *domain, unsigned int virq,
563 unsigned int nr_irqs)
564{
565 struct msi_domain_info *info = domain->host_data;
566 int i;
567
568 if (info->ops->msi_free) {
569 for (i = 0; i < nr_irqs; i++)
570 info->ops->msi_free(domain, info, virq + i);
571 }
572 irq_domain_free_irqs_top(domain, virq, nr_irqs);
573}
574
Krzysztof Kozlowski01364022015-04-27 21:54:23 +0900575static const struct irq_domain_ops msi_domain_ops = {
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100576 .alloc = msi_domain_alloc,
577 .free = msi_domain_free,
578 .activate = msi_domain_activate,
579 .deactivate = msi_domain_deactivate,
580};
581
Jiang Liuaeeb5962014-11-15 22:24:05 +0800582static irq_hw_number_t msi_domain_ops_get_hwirq(struct msi_domain_info *info,
583 msi_alloc_info_t *arg)
584{
585 return arg->hwirq;
586}
587
588static int msi_domain_ops_prepare(struct irq_domain *domain, struct device *dev,
589 int nvec, msi_alloc_info_t *arg)
590{
591 memset(arg, 0, sizeof(*arg));
592 return 0;
593}
594
595static void msi_domain_ops_set_desc(msi_alloc_info_t *arg,
596 struct msi_desc *desc)
597{
598 arg->desc = desc;
599}
Jiang Liuaeeb5962014-11-15 22:24:05 +0800600
601static int msi_domain_ops_init(struct irq_domain *domain,
602 struct msi_domain_info *info,
603 unsigned int virq, irq_hw_number_t hwirq,
604 msi_alloc_info_t *arg)
605{
606 irq_domain_set_hwirq_and_chip(domain, virq, hwirq, info->chip,
607 info->chip_data);
608 if (info->handler && info->handler_name) {
609 __irq_set_handler(virq, info->handler, 0, info->handler_name);
610 if (info->handler_data)
611 irq_set_handler_data(virq, info->handler_data);
612 }
613 return 0;
614}
615
616static int msi_domain_ops_check(struct irq_domain *domain,
617 struct msi_domain_info *info,
618 struct device *dev)
619{
620 return 0;
621}
622
623static struct msi_domain_ops msi_domain_ops_default = {
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200624 .get_hwirq = msi_domain_ops_get_hwirq,
625 .msi_init = msi_domain_ops_init,
626 .msi_check = msi_domain_ops_check,
627 .msi_prepare = msi_domain_ops_prepare,
628 .set_desc = msi_domain_ops_set_desc,
629 .domain_alloc_irqs = __msi_domain_alloc_irqs,
630 .domain_free_irqs = __msi_domain_free_irqs,
Jiang Liuaeeb5962014-11-15 22:24:05 +0800631};
632
633static void msi_domain_update_dom_ops(struct msi_domain_info *info)
634{
635 struct msi_domain_ops *ops = info->ops;
636
637 if (ops == NULL) {
638 info->ops = &msi_domain_ops_default;
639 return;
640 }
641
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200642 if (ops->domain_alloc_irqs == NULL)
643 ops->domain_alloc_irqs = msi_domain_ops_default.domain_alloc_irqs;
644 if (ops->domain_free_irqs == NULL)
645 ops->domain_free_irqs = msi_domain_ops_default.domain_free_irqs;
646
647 if (!(info->flags & MSI_FLAG_USE_DEF_DOM_OPS))
648 return;
649
Jiang Liuaeeb5962014-11-15 22:24:05 +0800650 if (ops->get_hwirq == NULL)
651 ops->get_hwirq = msi_domain_ops_default.get_hwirq;
652 if (ops->msi_init == NULL)
653 ops->msi_init = msi_domain_ops_default.msi_init;
654 if (ops->msi_check == NULL)
655 ops->msi_check = msi_domain_ops_default.msi_check;
656 if (ops->msi_prepare == NULL)
657 ops->msi_prepare = msi_domain_ops_default.msi_prepare;
658 if (ops->set_desc == NULL)
659 ops->set_desc = msi_domain_ops_default.set_desc;
660}
661
662static void msi_domain_update_chip_ops(struct msi_domain_info *info)
663{
664 struct irq_chip *chip = info->chip;
665
Marc Zyngier0701c532015-10-13 19:14:45 +0100666 BUG_ON(!chip || !chip->irq_mask || !chip->irq_unmask);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800667 if (!chip->irq_set_affinity)
668 chip->irq_set_affinity = msi_domain_set_affinity;
669}
670
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100671/**
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700672 * msi_create_irq_domain - Create an MSI interrupt domain
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100673 * @fwnode: Optional fwnode of the interrupt controller
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100674 * @info: MSI domain info
675 * @parent: Parent irq domain
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700676 *
677 * Return: pointer to the created &struct irq_domain or %NULL on failure
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100678 */
Marc Zyngierbe5436c2015-10-13 12:51:44 +0100679struct irq_domain *msi_create_irq_domain(struct fwnode_handle *fwnode,
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100680 struct msi_domain_info *info,
681 struct irq_domain *parent)
682{
Marc Zyngiera97b8522017-05-12 12:55:37 +0100683 struct irq_domain *domain;
684
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200685 msi_domain_update_dom_ops(info);
Jiang Liuaeeb5962014-11-15 22:24:05 +0800686 if (info->flags & MSI_FLAG_USE_DEF_CHIP_OPS)
687 msi_domain_update_chip_ops(info);
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100688
Marc Zyngiera97b8522017-05-12 12:55:37 +0100689 domain = irq_domain_create_hierarchy(parent, IRQ_DOMAIN_FLAG_MSI, 0,
690 fwnode, &msi_domain_ops, info);
Thomas Gleixner01653082017-06-20 01:37:04 +0200691
692 if (domain && !domain->name && info->chip)
Marc Zyngiera97b8522017-05-12 12:55:37 +0100693 domain->name = info->chip->name;
694
695 return domain;
Jiang Liuf3cf8bb2014-11-12 11:39:03 +0100696}
697
Marc Zyngierb2eba392015-11-23 08:26:05 +0000698int msi_domain_prepare_irqs(struct irq_domain *domain, struct device *dev,
699 int nvec, msi_alloc_info_t *arg)
700{
701 struct msi_domain_info *info = domain->host_data;
702 struct msi_domain_ops *ops = info->ops;
703 int ret;
704
705 ret = ops->msi_check(domain, info, dev);
706 if (ret == 0)
707 ret = ops->msi_prepare(domain, dev, nvec, arg);
708
709 return ret;
710}
711
Marc Zyngier2145ac92015-11-23 08:26:06 +0000712int msi_domain_populate_irqs(struct irq_domain *domain, struct device *dev,
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100713 int virq_base, int nvec, msi_alloc_info_t *arg)
Marc Zyngier2145ac92015-11-23 08:26:06 +0000714{
715 struct msi_domain_info *info = domain->host_data;
716 struct msi_domain_ops *ops = info->ops;
717 struct msi_desc *desc;
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100718 int ret, virq;
Marc Zyngier2145ac92015-11-23 08:26:06 +0000719
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100720 msi_lock_descs(dev);
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100721 ret = msi_add_simple_msi_descs(dev, virq_base, nvec);
722 if (ret)
723 goto unlock;
Marc Zyngier2145ac92015-11-23 08:26:06 +0000724
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100725 for (virq = virq_base; virq < virq_base + nvec; virq++) {
726 desc = xa_load(&dev->msi.data->__store, virq);
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100727 desc->irq = virq;
Marc Zyngier2145ac92015-11-23 08:26:06 +0000728
729 ops->set_desc(arg, desc);
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100730 ret = irq_domain_alloc_irqs_hierarchy(domain, virq, 1, arg);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000731 if (ret)
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100732 goto fail;
Marc Zyngier2145ac92015-11-23 08:26:06 +0000733
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100734 irq_set_msi_desc(virq, desc);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000735 }
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100736 msi_unlock_descs(dev);
737 return 0;
Marc Zyngier2145ac92015-11-23 08:26:06 +0000738
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100739fail:
740 for (--virq; virq >= virq_base; virq--)
741 irq_domain_free_irqs_common(domain, virq, 1);
742 msi_free_msi_descs_range(dev, MSI_DESC_ALL, virq_base, virq_base + nvec - 1);
Thomas Gleixnercd6cf062021-12-06 23:51:52 +0100743unlock:
Thomas Gleixnera80713f2021-12-06 23:51:42 +0100744 msi_unlock_descs(dev);
Marc Zyngier2145ac92015-11-23 08:26:06 +0000745 return ret;
746}
747
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100748/*
749 * Carefully check whether the device can use reservation mode. If
750 * reservation mode is enabled then the early activation will assign a
751 * dummy vector to the device. If the PCI/MSI device does not support
752 * masking of the entry then this can result in spurious interrupts when
753 * the device driver is not absolutely careful. But even then a malfunction
754 * of the hardware could result in a spurious interrupt on the dummy vector
755 * and render the device unusable. If the entry can be masked then the core
756 * logic will prevent the spurious interrupt and reservation mode can be
757 * used. For now reservation mode is restricted to PCI/MSI.
758 */
759static bool msi_check_reservation_mode(struct irq_domain *domain,
760 struct msi_domain_info *info,
761 struct device *dev)
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100762{
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100763 struct msi_desc *desc;
764
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200765 switch(domain->bus_token) {
766 case DOMAIN_BUS_PCI_MSI:
767 case DOMAIN_BUS_VMD_MSI:
768 break;
769 default:
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100770 return false;
Thomas Gleixnerc6c9e2832020-08-26 13:16:51 +0200771 }
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100772
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100773 if (!(info->flags & MSI_FLAG_MUST_REACTIVATE))
774 return false;
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100775
776 if (IS_ENABLED(CONFIG_PCI_MSI) && pci_msi_ignore_mask)
777 return false;
778
779 /*
780 * Checking the first MSI descriptor is sufficient. MSIX supports
Thomas Gleixner9c8e9c92021-11-04 00:27:29 +0100781 * masking and MSI does so when the can_mask attribute is set.
Thomas Gleixnerbc976232017-12-29 10:47:22 +0100782 */
Thomas Gleixner495c66a2021-12-06 23:51:45 +0100783 desc = msi_first_desc(dev, MSI_DESC_ALL);
Thomas Gleixnere58f2252021-12-06 23:27:39 +0100784 return desc->pci.msi_attrib.is_msix || desc->pci.msi_attrib.can_mask;
Thomas Gleixnerda5dd9e2017-12-29 10:42:10 +0100785}
786
Thomas Gleixner890337622021-12-06 23:27:59 +0100787static int msi_handle_pci_fail(struct irq_domain *domain, struct msi_desc *desc,
788 int allocated)
789{
790 switch(domain->bus_token) {
791 case DOMAIN_BUS_PCI_MSI:
792 case DOMAIN_BUS_VMD_MSI:
793 if (IS_ENABLED(CONFIG_PCI_MSI))
794 break;
795 fallthrough;
796 default:
797 return -ENOSPC;
798 }
799
800 /* Let a failed PCI multi MSI allocation retry */
801 if (desc->nvec_used > 1)
802 return 1;
803
804 /* If there was a successful allocation let the caller know */
805 return allocated ? allocated : -ENOSPC;
806}
807
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100808#define VIRQ_CAN_RESERVE 0x01
809#define VIRQ_ACTIVATE 0x02
810#define VIRQ_NOMASK_QUIRK 0x04
811
812static int msi_init_virq(struct irq_domain *domain, int virq, unsigned int vflags)
813{
814 struct irq_data *irqd = irq_domain_get_irq_data(domain, virq);
815 int ret;
816
817 if (!(vflags & VIRQ_CAN_RESERVE)) {
818 irqd_clr_can_reserve(irqd);
819 if (vflags & VIRQ_NOMASK_QUIRK)
820 irqd_set_msi_nomask_quirk(irqd);
821 }
822
823 if (!(vflags & VIRQ_ACTIVATE))
824 return 0;
825
826 ret = irq_domain_activate_irq(irqd, vflags & VIRQ_CAN_RESERVE);
827 if (ret)
828 return ret;
829 /*
830 * If the interrupt uses reservation mode, clear the activated bit
831 * so request_irq() will assign the final vector.
832 */
833 if (vflags & VIRQ_CAN_RESERVE)
834 irqd_clr_activated(irqd);
835 return 0;
836}
837
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200838int __msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev,
839 int nvec)
Jiang Liud9109692014-11-15 22:24:04 +0800840{
841 struct msi_domain_info *info = domain->host_data;
842 struct msi_domain_ops *ops = info->ops;
Zenghui Yu06fde692020-12-18 14:00:39 +0800843 msi_alloc_info_t arg = { };
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100844 unsigned int vflags = 0;
845 struct msi_desc *desc;
Thomas Gleixner890337622021-12-06 23:27:59 +0100846 int allocated = 0;
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900847 int i, ret, virq;
Jiang Liud9109692014-11-15 22:24:04 +0800848
Marc Zyngierb2eba392015-11-23 08:26:05 +0000849 ret = msi_domain_prepare_irqs(domain, dev, nvec, &arg);
Jiang Liud9109692014-11-15 22:24:04 +0800850 if (ret)
851 return ret;
852
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100853 /*
854 * This flag is set by the PCI layer as we need to activate
855 * the MSI entries before the PCI layer enables MSI in the
856 * card. Otherwise the card latches a random msi message.
857 */
858 if (info->flags & MSI_FLAG_ACTIVATE_EARLY)
859 vflags |= VIRQ_ACTIVATE;
860
861 /*
862 * Interrupt can use a reserved vector and will not occupy
863 * a real device vector until the interrupt is requested.
864 */
865 if (msi_check_reservation_mode(domain, info, dev)) {
866 vflags |= VIRQ_CAN_RESERVE;
867 /*
868 * MSI affinity setting requires a special quirk (X86) when
869 * reservation mode is active.
870 */
871 if (domain->flags & IRQ_DOMAIN_MSI_NOMASK_QUIRK)
872 vflags |= VIRQ_NOMASK_QUIRK;
873 }
874
875 msi_for_each_desc(desc, dev, MSI_DESC_NOTASSOCIATED) {
Jiang Liud9109692014-11-15 22:24:04 +0800876 ops->set_desc(&arg, desc);
877
Thomas Gleixnerb6140912016-07-04 17:39:22 +0900878 virq = __irq_domain_alloc_irqs(domain, -1, desc->nvec_used,
Thomas Gleixner06ee6d52016-07-04 17:39:24 +0900879 dev_to_node(dev), &arg, false,
Thomas Gleixner0972fa52016-07-04 17:39:26 +0900880 desc->affinity);
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100881 if (virq < 0)
882 return msi_handle_pci_fail(domain, desc, allocated);
Jiang Liud9109692014-11-15 22:24:04 +0800883
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200884 for (i = 0; i < desc->nvec_used; i++) {
Jiang Liud9109692014-11-15 22:24:04 +0800885 irq_set_msi_desc_off(virq, i, desc);
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200886 irq_debugfs_copy_devname(virq + i, dev);
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100887 ret = msi_init_virq(domain, virq + i, vflags);
888 if (ret)
889 return ret;
Thomas Gleixner74a52572022-01-10 19:12:45 +0100890 }
891 if (info->flags & MSI_FLAG_DEV_SYSFS) {
892 ret = msi_sysfs_populate_desc(dev, desc);
893 if (ret)
894 return ret;
Thomas Gleixner07557cc2017-09-13 23:29:05 +0200895 }
Thomas Gleixner890337622021-12-06 23:27:59 +0100896 allocated++;
Jiang Liud9109692014-11-15 22:24:04 +0800897 }
Jiang Liud9109692014-11-15 22:24:04 +0800898 return 0;
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100899}
900
Thomas Gleixner645474e22021-12-06 23:51:12 +0100901static int msi_domain_add_simple_msi_descs(struct msi_domain_info *info,
902 struct device *dev,
903 unsigned int num_descs)
904{
905 if (!(info->flags & MSI_FLAG_ALLOC_SIMPLE_MSI_DESCS))
906 return 0;
907
908 return msi_add_simple_msi_descs(dev, 0, num_descs);
909}
910
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100911/**
912 * msi_domain_alloc_irqs_descs_locked - Allocate interrupts from a MSI interrupt domain
913 * @domain: The domain to allocate from
914 * @dev: Pointer to device struct of the device for which the interrupts
915 * are allocated
916 * @nvec: The number of interrupts to allocate
917 *
918 * Must be invoked from within a msi_lock_descs() / msi_unlock_descs()
919 * pair. Use this for MSI irqdomains which implement their own vector
920 * allocation/free.
921 *
922 * Return: %0 on success or an error code.
923 */
924int msi_domain_alloc_irqs_descs_locked(struct irq_domain *domain, struct device *dev,
925 int nvec)
926{
927 struct msi_domain_info *info = domain->host_data;
928 struct msi_domain_ops *ops = info->ops;
929 int ret;
930
931 lockdep_assert_held(&dev->msi.data->mutex);
932
Thomas Gleixner645474e22021-12-06 23:51:12 +0100933 ret = msi_domain_add_simple_msi_descs(info, dev, nvec);
934 if (ret)
935 return ret;
936
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100937 ret = ops->domain_alloc_irqs(domain, dev, nvec);
938 if (ret)
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100939 msi_domain_free_irqs_descs_locked(domain, dev);
Thomas Gleixnerbb9b4282017-09-13 23:29:11 +0200940 return ret;
Jiang Liud9109692014-11-15 22:24:04 +0800941}
942
943/**
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200944 * msi_domain_alloc_irqs - Allocate interrupts from a MSI interrupt domain
945 * @domain: The domain to allocate from
Jiang Liud9109692014-11-15 22:24:04 +0800946 * @dev: Pointer to device struct of the device for which the interrupts
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200947 * are allocated
948 * @nvec: The number of interrupts to allocate
949 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -0700950 * Return: %0 on success or an error code.
Jiang Liud9109692014-11-15 22:24:04 +0800951 */
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100952int msi_domain_alloc_irqs(struct irq_domain *domain, struct device *dev, int nvec)
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200953{
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100954 int ret;
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200955
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100956 msi_lock_descs(dev);
957 ret = msi_domain_alloc_irqs_descs_locked(domain, dev, nvec);
958 msi_unlock_descs(dev);
Thomas Gleixnerbf6e0542021-12-10 23:19:03 +0100959 return ret;
Thomas Gleixner43e9e702020-08-26 13:16:57 +0200960}
961
962void __msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
Jiang Liud9109692014-11-15 22:24:04 +0800963{
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100964 struct msi_domain_info *info = domain->host_data;
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100965 struct irq_data *irqd;
Jiang Liud9109692014-11-15 22:24:04 +0800966 struct msi_desc *desc;
Bixuan Cuidbbc9352021-05-18 11:31:17 +0800967 int i;
968
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100969 /* Only handle MSI entries which have an interrupt associated */
970 msi_for_each_desc(desc, dev, MSI_DESC_ASSOCIATED) {
971 /* Make sure all interrupts are deactivated */
972 for (i = 0; i < desc->nvec_used; i++) {
973 irqd = irq_domain_get_irq_data(domain, desc->irq + i);
974 if (irqd && irqd_is_activated(irqd))
975 irq_domain_deactivate_irq(irqd);
Marc Zyngierfe0c52f2015-01-26 19:10:19 +0000976 }
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100977
978 irq_domain_free_irqs(desc->irq, desc->nvec_used);
Thomas Gleixnerbf5e7582021-12-06 23:51:50 +0100979 if (info->flags & MSI_FLAG_DEV_SYSFS)
980 msi_sysfs_remove_desc(dev, desc);
Thomas Gleixneref8dd012021-12-06 23:51:44 +0100981 desc->irq = 0;
Jiang Liud9109692014-11-15 22:24:04 +0800982 }
983}
984
Thomas Gleixner645474e22021-12-06 23:51:12 +0100985static void msi_domain_free_msi_descs(struct msi_domain_info *info,
986 struct device *dev)
987{
988 if (info->flags & MSI_FLAG_FREE_MSI_DESCS)
989 msi_free_msi_descs(dev);
990}
991
Jiang Liud9109692014-11-15 22:24:04 +0800992/**
Thomas Gleixner0f62d942021-12-06 23:51:07 +0100993 * msi_domain_free_irqs_descs_locked - Free interrupts from a MSI interrupt @domain associated to @dev
994 * @domain: The domain to managing the interrupts
995 * @dev: Pointer to device struct of the device for which the interrupts
996 * are free
997 *
998 * Must be invoked from within a msi_lock_descs() / msi_unlock_descs()
999 * pair. Use this for MSI irqdomains which implement their own vector
1000 * allocation.
1001 */
1002void msi_domain_free_irqs_descs_locked(struct irq_domain *domain, struct device *dev)
1003{
1004 struct msi_domain_info *info = domain->host_data;
1005 struct msi_domain_ops *ops = info->ops;
1006
1007 lockdep_assert_held(&dev->msi.data->mutex);
1008
Thomas Gleixner0f62d942021-12-06 23:51:07 +01001009 ops->domain_free_irqs(domain, dev);
Thomas Gleixner645474e22021-12-06 23:51:12 +01001010 msi_domain_free_msi_descs(info, dev);
Thomas Gleixner0f62d942021-12-06 23:51:07 +01001011}
1012
1013/**
Randy Dunlap3b35e7e2021-08-10 16:48:35 -07001014 * msi_domain_free_irqs - Free interrupts from a MSI interrupt @domain associated to @dev
Thomas Gleixner43e9e702020-08-26 13:16:57 +02001015 * @domain: The domain to managing the interrupts
1016 * @dev: Pointer to device struct of the device for which the interrupts
1017 * are free
1018 */
1019void msi_domain_free_irqs(struct irq_domain *domain, struct device *dev)
1020{
Thomas Gleixner0f62d942021-12-06 23:51:07 +01001021 msi_lock_descs(dev);
1022 msi_domain_free_irqs_descs_locked(domain, dev);
1023 msi_unlock_descs(dev);
Thomas Gleixner43e9e702020-08-26 13:16:57 +02001024}
1025
1026/**
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01001027 * msi_get_domain_info - Get the MSI interrupt domain info for @domain
1028 * @domain: The interrupt domain to retrieve data from
1029 *
Randy Dunlap3b35e7e2021-08-10 16:48:35 -07001030 * Return: the pointer to the msi_domain_info stored in @domain->host_data.
Jiang Liuf3cf8bb2014-11-12 11:39:03 +01001031 */
1032struct msi_domain_info *msi_get_domain_info(struct irq_domain *domain)
1033{
1034 return (struct msi_domain_info *)domain->host_data;
1035}
1036
1037#endif /* CONFIG_GENERIC_MSI_IRQ_DOMAIN */