1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * ACPI GSI IRQ layer 4 * 5 * Copyright (C) 2015 ARM Ltd. 6 * Author: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> 7 */ 8 #include <linux/acpi.h> 9 #include <linux/irq.h> 10 #include <linux/irqdomain.h> 11 #include <linux/of.h> 12 13 enum acpi_irq_model_id acpi_irq_model; 14 15 static struct fwnode_handle *(*acpi_get_gsi_domain_id)(u32 gsi); 16 static u32 (*acpi_gsi_to_irq_fallback)(u32 gsi); 17 18 /** 19 * acpi_gsi_to_irq() - Retrieve the linux irq number for a given GSI 20 * @gsi: GSI IRQ number to map 21 * @irq: pointer where linux IRQ number is stored 22 * 23 * irq location updated with irq value [>0 on success, 0 on failure] 24 * 25 * Returns: 0 on success 26 * -EINVAL on failure 27 */ 28 int acpi_gsi_to_irq(u32 gsi, unsigned int *irq) 29 { 30 struct irq_domain *d; 31 32 d = irq_find_matching_fwnode(acpi_get_gsi_domain_id(gsi), 33 DOMAIN_BUS_ANY); 34 *irq = irq_find_mapping(d, gsi); 35 /* 36 * *irq == 0 means no mapping, that should be reported as a 37 * failure, unless there is an arch-specific fallback handler. 38 */ 39 if (!*irq && acpi_gsi_to_irq_fallback) 40 *irq = acpi_gsi_to_irq_fallback(gsi); 41 42 return (*irq > 0) ? 0 : -EINVAL; 43 } 44 EXPORT_SYMBOL_GPL(acpi_gsi_to_irq); 45 46 /** 47 * acpi_register_gsi() - Map a GSI to a linux IRQ number 48 * @dev: device for which IRQ has to be mapped 49 * @gsi: GSI IRQ number 50 * @trigger: trigger type of the GSI number to be mapped 51 * @polarity: polarity of the GSI to be mapped 52 * 53 * Returns: a valid linux IRQ number on success 54 * -EINVAL on failure 55 */ 56 int acpi_register_gsi(struct device *dev, u32 gsi, int trigger, 57 int polarity) 58 { 59 struct irq_fwspec fwspec; 60 61 fwspec.fwnode = acpi_get_gsi_domain_id(gsi); 62 if (WARN_ON(!fwspec.fwnode)) { 63 pr_warn("GSI: No registered irqchip, giving up\n"); 64 return -EINVAL; 65 } 66 67 fwspec.param[0] = gsi; 68 fwspec.param[1] = acpi_dev_get_irq_type(trigger, polarity); 69 fwspec.param_count = 2; 70 71 return irq_create_fwspec_mapping(&fwspec); 72 } 73 EXPORT_SYMBOL_GPL(acpi_register_gsi); 74 75 /** 76 * acpi_unregister_gsi() - Free a GSI<->linux IRQ number mapping 77 * @gsi: GSI IRQ number 78 */ 79 void acpi_unregister_gsi(u32 gsi) 80 { 81 struct irq_domain *d; 82 int irq; 83 84 if (WARN_ON(acpi_irq_model == ACPI_IRQ_MODEL_GIC && gsi < 16)) 85 return; 86 87 d = irq_find_matching_fwnode(acpi_get_gsi_domain_id(gsi), 88 DOMAIN_BUS_ANY); 89 irq = irq_find_mapping(d, gsi); 90 irq_dispose_mapping(irq); 91 } 92 EXPORT_SYMBOL_GPL(acpi_unregister_gsi); 93 94 /** 95 * acpi_get_irq_source_fwhandle() - Retrieve fwhandle from IRQ resource source. 96 * @source: acpi_resource_source to use for the lookup. 97 * 98 * Description: 99 * Retrieve the fwhandle of the device referenced by the given IRQ resource 100 * source. 101 * 102 * Return: 103 * The referenced device fwhandle or NULL on failure 104 */ 105 static struct fwnode_handle * 106 acpi_get_irq_source_fwhandle(const struct acpi_resource_source *source, 107 u32 gsi) 108 { 109 struct fwnode_handle *result; 110 struct acpi_device *device; 111 acpi_handle handle; 112 acpi_status status; 113 114 if (!source->string_length) 115 return acpi_get_gsi_domain_id(gsi); 116 117 status = acpi_get_handle(NULL, source->string_ptr, &handle); 118 if (WARN_ON(ACPI_FAILURE(status))) 119 return NULL; 120 121 device = acpi_get_acpi_dev(handle); 122 if (WARN_ON(!device)) 123 return NULL; 124 125 result = &device->fwnode; 126 acpi_put_acpi_dev(device); 127 return result; 128 } 129 130 /* 131 * Context for the resource walk used to lookup IRQ resources. 132 * Contains a return code, the lookup index, and references to the flags 133 * and fwspec where the result is returned. 134 */ 135 struct acpi_irq_parse_one_ctx { 136 int rc; 137 unsigned int index; 138 unsigned long *res_flags; 139 struct irq_fwspec *fwspec; 140 }; 141 142 /** 143 * acpi_irq_parse_one_match - Handle a matching IRQ resource. 144 * @fwnode: matching fwnode 145 * @hwirq: hardware IRQ number 146 * @triggering: triggering attributes of hwirq 147 * @polarity: polarity attributes of hwirq 148 * @polarity: polarity attributes of hwirq 149 * @shareable: shareable attributes of hwirq 150 * @wake_capable: wake capable attribute of hwirq 151 * @ctx: acpi_irq_parse_one_ctx updated by this function 152 * 153 * Description: 154 * Handle a matching IRQ resource by populating the given ctx with 155 * the information passed. 156 */ 157 static inline void acpi_irq_parse_one_match(struct fwnode_handle *fwnode, 158 u32 hwirq, u8 triggering, 159 u8 polarity, u8 shareable, 160 u8 wake_capable, 161 struct acpi_irq_parse_one_ctx *ctx) 162 { 163 if (!fwnode) 164 return; 165 ctx->rc = 0; 166 *ctx->res_flags = acpi_dev_irq_flags(triggering, polarity, shareable, wake_capable); 167 ctx->fwspec->fwnode = fwnode; 168 ctx->fwspec->param[0] = hwirq; 169 ctx->fwspec->param[1] = acpi_dev_get_irq_type(triggering, polarity); 170 ctx->fwspec->param_count = 2; 171 } 172 173 /** 174 * acpi_irq_parse_one_cb - Handle the given resource. 175 * @ares: resource to handle 176 * @context: context for the walk 177 * 178 * Description: 179 * This is called by acpi_walk_resources passing each resource returned by 180 * the _CRS method. We only inspect IRQ resources. Since IRQ resources 181 * might contain multiple interrupts we check if the index is within this 182 * one's interrupt array, otherwise we subtract the current resource IRQ 183 * count from the lookup index to prepare for the next resource. 184 * Once a match is found we call acpi_irq_parse_one_match to populate 185 * the result and end the walk by returning AE_CTRL_TERMINATE. 186 * 187 * Return: 188 * AE_OK if the walk should continue, AE_CTRL_TERMINATE if a matching 189 * IRQ resource was found. 190 */ 191 static acpi_status acpi_irq_parse_one_cb(struct acpi_resource *ares, 192 void *context) 193 { 194 struct acpi_irq_parse_one_ctx *ctx = context; 195 struct acpi_resource_irq *irq; 196 struct acpi_resource_extended_irq *eirq; 197 struct fwnode_handle *fwnode; 198 199 switch (ares->type) { 200 case ACPI_RESOURCE_TYPE_IRQ: 201 irq = &ares->data.irq; 202 if (ctx->index >= irq->interrupt_count) { 203 ctx->index -= irq->interrupt_count; 204 return AE_OK; 205 } 206 fwnode = acpi_get_gsi_domain_id(irq->interrupts[ctx->index]); 207 acpi_irq_parse_one_match(fwnode, irq->interrupts[ctx->index], 208 irq->triggering, irq->polarity, 209 irq->shareable, irq->wake_capable, ctx); 210 return AE_CTRL_TERMINATE; 211 case ACPI_RESOURCE_TYPE_EXTENDED_IRQ: 212 eirq = &ares->data.extended_irq; 213 if (eirq->producer_consumer == ACPI_PRODUCER) 214 return AE_OK; 215 if (ctx->index >= eirq->interrupt_count) { 216 ctx->index -= eirq->interrupt_count; 217 return AE_OK; 218 } 219 fwnode = acpi_get_irq_source_fwhandle(&eirq->resource_source, 220 eirq->interrupts[ctx->index]); 221 acpi_irq_parse_one_match(fwnode, eirq->interrupts[ctx->index], 222 eirq->triggering, eirq->polarity, 223 eirq->shareable, eirq->wake_capable, ctx); 224 return AE_CTRL_TERMINATE; 225 } 226 227 return AE_OK; 228 } 229 230 /** 231 * acpi_irq_parse_one - Resolve an interrupt for a device 232 * @handle: the device whose interrupt is to be resolved 233 * @index: index of the interrupt to resolve 234 * @fwspec: structure irq_fwspec filled by this function 235 * @flags: resource flags filled by this function 236 * 237 * Description: 238 * Resolves an interrupt for a device by walking its CRS resources to find 239 * the appropriate ACPI IRQ resource and populating the given struct irq_fwspec 240 * and flags. 241 * 242 * Return: 243 * The result stored in ctx.rc by the callback, or the default -EINVAL value 244 * if an error occurs. 245 */ 246 static int acpi_irq_parse_one(acpi_handle handle, unsigned int index, 247 struct irq_fwspec *fwspec, unsigned long *flags) 248 { 249 struct acpi_irq_parse_one_ctx ctx = { -EINVAL, index, flags, fwspec }; 250 251 acpi_walk_resources(handle, METHOD_NAME__CRS, acpi_irq_parse_one_cb, &ctx); 252 return ctx.rc; 253 } 254 255 /** 256 * acpi_irq_get - Lookup an ACPI IRQ resource and use it to initialize resource. 257 * @handle: ACPI device handle 258 * @index: ACPI IRQ resource index to lookup 259 * @res: Linux IRQ resource to initialize 260 * 261 * Description: 262 * Look for the ACPI IRQ resource with the given index and use it to initialize 263 * the given Linux IRQ resource. 264 * 265 * Return: 266 * 0 on success 267 * -EINVAL if an error occurs 268 * -EPROBE_DEFER if the IRQ lookup/conversion failed 269 */ 270 int acpi_irq_get(acpi_handle handle, unsigned int index, struct resource *res) 271 { 272 struct irq_fwspec fwspec; 273 struct irq_domain *domain; 274 unsigned long flags; 275 int rc; 276 277 rc = acpi_irq_parse_one(handle, index, &fwspec, &flags); 278 if (rc) 279 return rc; 280 281 domain = irq_find_matching_fwnode(fwspec.fwnode, DOMAIN_BUS_ANY); 282 if (!domain) 283 return -EPROBE_DEFER; 284 285 rc = irq_create_fwspec_mapping(&fwspec); 286 if (rc <= 0) 287 return -EINVAL; 288 289 res->start = rc; 290 res->end = rc; 291 res->flags = flags; 292 293 return 0; 294 } 295 EXPORT_SYMBOL_GPL(acpi_irq_get); 296 297 /** 298 * acpi_set_irq_model - Setup the GSI irqdomain information 299 * @model: the value assigned to acpi_irq_model 300 * @fwnode: the irq_domain identifier for mapping and looking up 301 * GSI interrupts 302 */ 303 void __init acpi_set_irq_model(enum acpi_irq_model_id model, 304 struct fwnode_handle *(*fn)(u32)) 305 { 306 acpi_irq_model = model; 307 acpi_get_gsi_domain_id = fn; 308 } 309 310 /** 311 * acpi_set_gsi_to_irq_fallback - Register a GSI transfer 312 * callback to fallback to arch specified implementation. 313 * @fn: arch-specific fallback handler 314 */ 315 void __init acpi_set_gsi_to_irq_fallback(u32 (*fn)(u32)) 316 { 317 acpi_gsi_to_irq_fallback = fn; 318 } 319 320 /** 321 * acpi_irq_create_hierarchy - Create a hierarchical IRQ domain with the default 322 * GSI domain as its parent. 323 * @flags: Irq domain flags associated with the domain 324 * @size: Size of the domain. 325 * @fwnode: Optional fwnode of the interrupt controller 326 * @ops: Pointer to the interrupt domain callbacks 327 * @host_data: Controller private data pointer 328 */ 329 struct irq_domain *acpi_irq_create_hierarchy(unsigned int flags, 330 unsigned int size, 331 struct fwnode_handle *fwnode, 332 const struct irq_domain_ops *ops, 333 void *host_data) 334 { 335 struct irq_domain *d; 336 337 /* This only works for the GIC model... */ 338 if (acpi_irq_model != ACPI_IRQ_MODEL_GIC) 339 return NULL; 340 341 d = irq_find_matching_fwnode(acpi_get_gsi_domain_id(0), 342 DOMAIN_BUS_ANY); 343 344 if (!d) 345 return NULL; 346 347 return irq_domain_create_hierarchy(d, flags, size, fwnode, ops, 348 host_data); 349 } 350 EXPORT_SYMBOL_GPL(acpi_irq_create_hierarchy); 351