| 1 | /* |
| 2 | * Copyright (C) 2016 Marvell |
| 3 | * |
| 4 | * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | */ |
| 10 | |
| 11 | #define pr_fmt(fmt) "GIC-ODMI: " fmt |
| 12 | |
| 13 | #include <linux/irq.h> |
| 14 | #include <linux/irqchip.h> |
| 15 | #include <linux/irqdomain.h> |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/msi.h> |
| 18 | #include <linux/of_address.h> |
| 19 | #include <linux/slab.h> |
| 20 | |
| 21 | #include <linux/irqchip/irq-msi-lib.h> |
| 22 | |
| 23 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
| 24 | |
| 25 | #define GICP_ODMIN_SET 0x40 |
| 26 | #define GICP_ODMI_INT_NUM_SHIFT 12 |
| 27 | #define GICP_ODMIN_GM_EP_R0 0x110 |
| 28 | #define GICP_ODMIN_GM_EP_R1 0x114 |
| 29 | #define GICP_ODMIN_GM_EA_R0 0x108 |
| 30 | #define GICP_ODMIN_GM_EA_R1 0x118 |
| 31 | |
| 32 | /* |
| 33 | * We don't support the group events, so we simply have 8 interrupts |
| 34 | * per frame. |
| 35 | */ |
| 36 | #define NODMIS_SHIFT 3 |
| 37 | #define NODMIS_PER_FRAME (1 << NODMIS_SHIFT) |
| 38 | #define NODMIS_MASK (NODMIS_PER_FRAME - 1) |
| 39 | |
| 40 | struct odmi_data { |
| 41 | struct resource res; |
| 42 | void __iomem *base; |
| 43 | unsigned int spi_base; |
| 44 | }; |
| 45 | |
| 46 | static struct odmi_data *odmis; |
| 47 | static unsigned long *odmis_bm; |
| 48 | static unsigned int odmis_count; |
| 49 | |
| 50 | /* Protects odmis_bm */ |
| 51 | static DEFINE_SPINLOCK(odmis_bm_lock); |
| 52 | |
| 53 | static void odmi_compose_msi_msg(struct irq_data *d, struct msi_msg *msg) |
| 54 | { |
| 55 | struct odmi_data *odmi; |
| 56 | phys_addr_t addr; |
| 57 | unsigned int odmin; |
| 58 | |
| 59 | if (WARN_ON(d->hwirq >= odmis_count * NODMIS_PER_FRAME)) |
| 60 | return; |
| 61 | |
| 62 | odmi = &odmis[d->hwirq >> NODMIS_SHIFT]; |
| 63 | odmin = d->hwirq & NODMIS_MASK; |
| 64 | |
| 65 | addr = odmi->res.start + GICP_ODMIN_SET; |
| 66 | |
| 67 | msg->address_hi = upper_32_bits(addr); |
| 68 | msg->address_lo = lower_32_bits(addr); |
| 69 | msg->data = odmin << GICP_ODMI_INT_NUM_SHIFT; |
| 70 | } |
| 71 | |
| 72 | static struct irq_chip odmi_irq_chip = { |
| 73 | .name = "ODMI" , |
| 74 | .irq_mask = irq_chip_mask_parent, |
| 75 | .irq_unmask = irq_chip_unmask_parent, |
| 76 | .irq_eoi = irq_chip_eoi_parent, |
| 77 | .irq_set_affinity = irq_chip_set_affinity_parent, |
| 78 | .irq_compose_msi_msg = odmi_compose_msi_msg, |
| 79 | }; |
| 80 | |
| 81 | static int odmi_irq_domain_alloc(struct irq_domain *domain, unsigned int virq, |
| 82 | unsigned int nr_irqs, void *args) |
| 83 | { |
| 84 | struct odmi_data *odmi = NULL; |
| 85 | struct irq_fwspec fwspec; |
| 86 | struct irq_data *d; |
| 87 | unsigned int hwirq, odmin; |
| 88 | int ret; |
| 89 | |
| 90 | spin_lock(lock: &odmis_bm_lock); |
| 91 | hwirq = find_first_zero_bit(addr: odmis_bm, NODMIS_PER_FRAME * odmis_count); |
| 92 | if (hwirq >= NODMIS_PER_FRAME * odmis_count) { |
| 93 | spin_unlock(lock: &odmis_bm_lock); |
| 94 | return -ENOSPC; |
| 95 | } |
| 96 | |
| 97 | __set_bit(hwirq, odmis_bm); |
| 98 | spin_unlock(lock: &odmis_bm_lock); |
| 99 | |
| 100 | odmi = &odmis[hwirq >> NODMIS_SHIFT]; |
| 101 | odmin = hwirq & NODMIS_MASK; |
| 102 | |
| 103 | fwspec.fwnode = domain->parent->fwnode; |
| 104 | fwspec.param_count = 3; |
| 105 | fwspec.param[0] = GIC_SPI; |
| 106 | fwspec.param[1] = odmi->spi_base - 32 + odmin; |
| 107 | fwspec.param[2] = IRQ_TYPE_EDGE_RISING; |
| 108 | |
| 109 | ret = irq_domain_alloc_irqs_parent(domain, irq_base: virq, nr_irqs: 1, arg: &fwspec); |
| 110 | if (ret) { |
| 111 | pr_err("Cannot allocate parent IRQ\n" ); |
| 112 | spin_lock(lock: &odmis_bm_lock); |
| 113 | __clear_bit(odmin, odmis_bm); |
| 114 | spin_unlock(lock: &odmis_bm_lock); |
| 115 | return ret; |
| 116 | } |
| 117 | |
| 118 | /* Configure the interrupt line to be edge */ |
| 119 | d = irq_domain_get_irq_data(domain: domain->parent, virq); |
| 120 | d->chip->irq_set_type(d, IRQ_TYPE_EDGE_RISING); |
| 121 | |
| 122 | irq_domain_set_hwirq_and_chip(domain, virq, hwirq, |
| 123 | chip: &odmi_irq_chip, NULL); |
| 124 | |
| 125 | return 0; |
| 126 | } |
| 127 | |
| 128 | static void odmi_irq_domain_free(struct irq_domain *domain, |
| 129 | unsigned int virq, unsigned int nr_irqs) |
| 130 | { |
| 131 | struct irq_data *d = irq_domain_get_irq_data(domain, virq); |
| 132 | |
| 133 | if (d->hwirq >= odmis_count * NODMIS_PER_FRAME) { |
| 134 | pr_err("Failed to teardown msi. Invalid hwirq %lu\n" , d->hwirq); |
| 135 | return; |
| 136 | } |
| 137 | |
| 138 | irq_domain_free_irqs_parent(domain, irq_base: virq, nr_irqs); |
| 139 | |
| 140 | /* Actually free the MSI */ |
| 141 | spin_lock(lock: &odmis_bm_lock); |
| 142 | __clear_bit(d->hwirq, odmis_bm); |
| 143 | spin_unlock(lock: &odmis_bm_lock); |
| 144 | } |
| 145 | |
| 146 | static const struct irq_domain_ops odmi_domain_ops = { |
| 147 | .select = msi_lib_irq_domain_select, |
| 148 | .alloc = odmi_irq_domain_alloc, |
| 149 | .free = odmi_irq_domain_free, |
| 150 | }; |
| 151 | |
| 152 | #define ODMI_MSI_FLAGS_REQUIRED (MSI_FLAG_USE_DEF_DOM_OPS | \ |
| 153 | MSI_FLAG_USE_DEF_CHIP_OPS) |
| 154 | |
| 155 | #define ODMI_MSI_FLAGS_SUPPORTED (MSI_GENERIC_FLAGS_MASK) |
| 156 | |
| 157 | static const struct msi_parent_ops odmi_msi_parent_ops = { |
| 158 | .supported_flags = ODMI_MSI_FLAGS_SUPPORTED, |
| 159 | .required_flags = ODMI_MSI_FLAGS_REQUIRED, |
| 160 | .chip_flags = MSI_CHIP_FLAG_SET_EOI, |
| 161 | .bus_select_token = DOMAIN_BUS_GENERIC_MSI, |
| 162 | .bus_select_mask = MATCH_PLATFORM_MSI, |
| 163 | .prefix = "ODMI-" , |
| 164 | .init_dev_msi_info = msi_lib_init_dev_msi_info, |
| 165 | }; |
| 166 | |
| 167 | static int __init mvebu_odmi_init(struct device_node *node, |
| 168 | struct device_node *parent) |
| 169 | { |
| 170 | struct irq_domain_info info = { |
| 171 | .fwnode = of_fwnode_handle(node), |
| 172 | .ops = &odmi_domain_ops, |
| 173 | .size = odmis_count * NODMIS_PER_FRAME, |
| 174 | .parent = irq_find_host(node: parent), |
| 175 | }; |
| 176 | int ret, i; |
| 177 | |
| 178 | if (of_property_read_u32(np: node, propname: "marvell,odmi-frames" , out_value: &odmis_count)) |
| 179 | return -EINVAL; |
| 180 | |
| 181 | odmis = kcalloc(odmis_count, sizeof(struct odmi_data), GFP_KERNEL); |
| 182 | if (!odmis) |
| 183 | return -ENOMEM; |
| 184 | |
| 185 | odmis_bm = bitmap_zalloc(nbits: odmis_count * NODMIS_PER_FRAME, GFP_KERNEL); |
| 186 | if (!odmis_bm) { |
| 187 | ret = -ENOMEM; |
| 188 | goto err_alloc; |
| 189 | } |
| 190 | |
| 191 | for (i = 0; i < odmis_count; i++) { |
| 192 | struct odmi_data *odmi = &odmis[i]; |
| 193 | |
| 194 | ret = of_address_to_resource(dev: node, index: i, r: &odmi->res); |
| 195 | if (ret) |
| 196 | goto err_unmap; |
| 197 | |
| 198 | odmi->base = of_io_request_and_map(device: node, index: i, name: "odmi" ); |
| 199 | if (IS_ERR(ptr: odmi->base)) { |
| 200 | ret = PTR_ERR(ptr: odmi->base); |
| 201 | goto err_unmap; |
| 202 | } |
| 203 | |
| 204 | if (of_property_read_u32_index(np: node, propname: "marvell,spi-base" , |
| 205 | index: i, out_value: &odmi->spi_base)) { |
| 206 | ret = -EINVAL; |
| 207 | goto err_unmap; |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | if (msi_create_parent_irq_domain(info: &info, msi_parent_ops: &odmi_msi_parent_ops)) |
| 212 | return 0; |
| 213 | |
| 214 | ret = -ENOMEM; |
| 215 | |
| 216 | err_unmap: |
| 217 | for (i = 0; i < odmis_count; i++) { |
| 218 | struct odmi_data *odmi = &odmis[i]; |
| 219 | |
| 220 | if (odmi->base && !IS_ERR(ptr: odmi->base)) |
| 221 | iounmap(addr: odmis[i].base); |
| 222 | } |
| 223 | bitmap_free(bitmap: odmis_bm); |
| 224 | err_alloc: |
| 225 | kfree(objp: odmis); |
| 226 | return ret; |
| 227 | } |
| 228 | |
| 229 | IRQCHIP_DECLARE(mvebu_odmi, "marvell,odmi-controller" , mvebu_odmi_init); |
| 230 | |