Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | // SPDX-License-Identifier: GPL-2.0-only #include <linux/types.h> #include <linux/ioport.h> #include <linux/slab.h> #include <linux/export.h> #include <linux/io.h> #include <linux/mcb.h> #include "mcb-internal.h" struct mcb_parse_priv { phys_addr_t mapbase; void __iomem *base; }; #define for_each_chameleon_cell(dtype, p) \ for ((dtype) = get_next_dtype((p)); \ (dtype) != CHAMELEON_DTYPE_END; \ (dtype) = get_next_dtype((p))) static inline uint32_t get_next_dtype(void __iomem *p) { uint32_t dtype; dtype = readl(p); return dtype >> 28; } static int chameleon_parse_bdd(struct mcb_bus *bus, struct chameleon_bar *cb, void __iomem *base) { return 0; } static int chameleon_parse_gdd(struct mcb_bus *bus, struct chameleon_bar *cb, void __iomem *base, int bar_count) { struct chameleon_gdd __iomem *gdd = (struct chameleon_gdd __iomem *) base; struct mcb_device *mdev; u32 dev_mapbase; u32 offset; u32 size; int ret; __le32 reg1; __le32 reg2; mdev = mcb_alloc_dev(bus); if (!mdev) return -ENOMEM; reg1 = readl(&gdd->reg1); reg2 = readl(&gdd->reg2); offset = readl(&gdd->offset); size = readl(&gdd->size); mdev->id = GDD_DEV(reg1); mdev->rev = GDD_REV(reg1); mdev->var = GDD_VAR(reg1); mdev->bar = GDD_BAR(reg2); mdev->group = GDD_GRP(reg2); mdev->inst = GDD_INS(reg2); /* * If the BAR is missing, dev_mapbase is zero, or if the * device is IO mapped we just print a warning and go on with the * next device, instead of completely stop the gdd parser */ if (mdev->bar > bar_count - 1) { pr_info("No BAR for 16z%03d\n", mdev->id); ret = 0; goto err; } dev_mapbase = cb[mdev->bar].addr; if (!dev_mapbase) { pr_info("BAR not assigned for 16z%03d\n", mdev->id); ret = 0; goto err; } if (dev_mapbase & 0x01) { pr_info("IO mapped Device (16z%03d) not yet supported\n", mdev->id); ret = 0; goto err; } pr_debug("Found a 16z%03d\n", mdev->id); mdev->irq.start = GDD_IRQ(reg1); mdev->irq.end = GDD_IRQ(reg1); mdev->irq.flags = IORESOURCE_IRQ; mdev->mem.start = dev_mapbase + offset; mdev->mem.end = mdev->mem.start + size - 1; mdev->mem.flags = IORESOURCE_MEM; ret = mcb_device_register(bus, mdev); if (ret < 0) goto err; return 0; err: mcb_free_dev(mdev); return ret; } static void chameleon_parse_bar(void __iomem *base, struct chameleon_bar *cb, int bar_count) { char __iomem *p = base; int i; /* skip reg1 */ p += sizeof(__le32); for (i = 0; i < bar_count; i++) { cb[i].addr = readl(p); cb[i].size = readl(p + 4); p += sizeof(struct chameleon_bar); } } static int chameleon_get_bar(void __iomem **base, phys_addr_t mapbase, struct chameleon_bar **cb) { struct chameleon_bar *c; int bar_count; __le32 reg; u32 dtype; /* * For those devices which are not connected * to the PCI Bus (e.g. LPC) there is a bar * descriptor located directly after the * chameleon header. This header is comparable * to a PCI header. */ dtype = get_next_dtype(*base); if (dtype == CHAMELEON_DTYPE_BAR) { reg = readl(*base); bar_count = BAR_CNT(reg); if (bar_count <= 0 || bar_count > CHAMELEON_BAR_MAX) return -ENODEV; c = kcalloc(bar_count, sizeof(struct chameleon_bar), GFP_KERNEL); if (!c) return -ENOMEM; chameleon_parse_bar(*base, c, bar_count); *base += BAR_DESC_SIZE(bar_count); } else { c = kzalloc(sizeof(struct chameleon_bar), GFP_KERNEL); if (!c) return -ENOMEM; bar_count = 1; c->addr = mapbase; } *cb = c; return bar_count; } int chameleon_parse_cells(struct mcb_bus *bus, phys_addr_t mapbase, void __iomem *base) { struct chameleon_fpga_header *header; struct chameleon_bar *cb; void __iomem *p = base; int num_cells = 0; uint32_t dtype; int bar_count; int ret; u32 hsize; u32 table_size; hsize = sizeof(struct chameleon_fpga_header); header = kzalloc(hsize, GFP_KERNEL); if (!header) return -ENOMEM; /* Extract header information */ memcpy_fromio(header, p, hsize); /* We only support chameleon v2 at the moment */ header->magic = le16_to_cpu(header->magic); if (header->magic != CHAMELEONV2_MAGIC) { pr_err("Unsupported chameleon version 0x%x\n", header->magic); ret = -ENODEV; goto free_header; } p += hsize; bus->revision = header->revision; bus->model = header->model; bus->minor = header->minor; snprintf(bus->name, CHAMELEON_FILENAME_LEN + 1, "%s", header->filename); bar_count = chameleon_get_bar(&p, mapbase, &cb); if (bar_count < 0) { ret = bar_count; goto free_header; } for_each_chameleon_cell(dtype, p) { switch (dtype) { case CHAMELEON_DTYPE_GENERAL: ret = chameleon_parse_gdd(bus, cb, p, bar_count); if (ret < 0) goto free_bar; p += sizeof(struct chameleon_gdd); break; case CHAMELEON_DTYPE_BRIDGE: chameleon_parse_bdd(bus, cb, p); p += sizeof(struct chameleon_bdd); break; case CHAMELEON_DTYPE_END: break; default: pr_err("Invalid chameleon descriptor type 0x%x\n", dtype); ret = -EINVAL; goto free_bar; } num_cells++; } if (num_cells == 0) { ret = -EINVAL; goto free_bar; } table_size = p - base; pr_debug("%d cell(s) found. Chameleon table size: 0x%04x bytes\n", num_cells, table_size); kfree(cb); kfree(header); return table_size; free_bar: kfree(cb); free_header: kfree(header); return ret; } EXPORT_SYMBOL_NS_GPL(chameleon_parse_cells, MCB); |