1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2019 Google, LLC
4 * Written by Simon Glass <sjg@chromium.org>
7 #define LOG_CATEGORY UCLASS_IRQ
10 #include <dt-structs.h>
13 #include <dm/device-internal.h>
15 int irq_route_pmc_gpio_gpe(struct udevice *dev, uint pmc_gpe_num)
17 const struct irq_ops *ops = irq_get_ops(dev);
19 if (!ops->route_pmc_gpio_gpe)
22 return ops->route_pmc_gpio_gpe(dev, pmc_gpe_num);
25 int irq_set_polarity(struct udevice *dev, uint irq, bool active_low)
27 const struct irq_ops *ops = irq_get_ops(dev);
29 if (!ops->set_polarity)
32 return ops->set_polarity(dev, irq, active_low);
35 int irq_snapshot_polarities(struct udevice *dev)
37 const struct irq_ops *ops = irq_get_ops(dev);
39 if (!ops->snapshot_polarities)
42 return ops->snapshot_polarities(dev);
45 int irq_restore_polarities(struct udevice *dev)
47 const struct irq_ops *ops = irq_get_ops(dev);
49 if (!ops->restore_polarities)
52 return ops->restore_polarities(dev);
55 int irq_read_and_clear(struct irq *irq)
57 const struct irq_ops *ops = irq_get_ops(irq->dev);
59 if (!ops->read_and_clear)
62 return ops->read_and_clear(irq);
65 #if CONFIG_IS_ENABLED(OF_PLATDATA)
66 int irq_get_by_phandle(struct udevice *dev, const struct phandle_2_arg *cells,
71 ret = device_get_by_ofplat_idx(cells->idx, &irq->dev);
74 irq->id = cells->arg[0];
77 * Note: we could call irq_of_xlate_default() here to do this properly.
78 * For now, this is good enough for existing cases.
80 irq->flags = cells->arg[1];
85 static int irq_of_xlate_default(struct irq *irq,
86 struct ofnode_phandle_args *args)
88 log_debug("(irq=%p)\n", irq);
90 if (args->args_count > 1) {
91 log_debug("Invalid args_count: %d\n", args->args_count);
96 irq->id = args->args[0];
103 static int irq_get_by_index_tail(int ret, ofnode node,
104 struct ofnode_phandle_args *args,
105 const char *list_name, int index,
108 struct udevice *dev_irq;
109 const struct irq_ops *ops;
116 ret = uclass_get_device_by_ofnode(UCLASS_IRQ, args->node, &dev_irq);
118 log_debug("uclass_get_device_by_ofnode failed: err=%d\n", ret);
124 ops = irq_get_ops(dev_irq);
127 ret = ops->of_xlate(irq, args);
129 ret = irq_of_xlate_default(irq, args);
131 log_debug("of_xlate() failed: %d\n", ret);
135 return irq_request(dev_irq, irq);
137 log_debug("Node '%s', property '%s', failed to request IRQ index %d: %d\n",
138 ofnode_get_name(node), list_name, index, ret);
142 int irq_get_by_index(struct udevice *dev, int index, struct irq *irq)
144 struct ofnode_phandle_args args;
147 ret = dev_read_phandle_with_args(dev, "interrupts-extended",
148 "#interrupt-cells", 0, index, &args);
150 return irq_get_by_index_tail(ret, dev_ofnode(dev), &args,
151 "interrupts-extended", index > 0, irq);
153 #endif /* OF_PLATDATA */
155 int irq_request(struct udevice *dev, struct irq *irq)
157 const struct irq_ops *ops;
159 log_debug("(dev=%p, irq=%p)\n", dev, irq);
160 ops = irq_get_ops(dev);
167 return ops->request(irq);
170 int irq_first_device_type(enum irq_dev_t type, struct udevice **devp)
174 ret = uclass_first_device_drvdata(UCLASS_IRQ, type, devp);
181 #if CONFIG_IS_ENABLED(ACPIGEN)
182 int irq_get_acpi(const struct irq *irq, struct acpi_irq *acpi_irq)
186 if (!irq_is_valid(irq))
189 ops = irq_get_ops(irq->dev);
193 return ops->get_acpi(irq, acpi_irq);
197 UCLASS_DRIVER(irq) = {