blob: c059ce1dd338315d2968a02d27507e7ade9307e8 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001
2#include <linux/io.h>
3#include <linux/ioport.h>
4#include <linux/module.h>
5#include <linux/of_address.h>
6#include <linux/pci_regs.h>
7#include <linux/string.h>
8
9/* Max address size we deal with */
10#define OF_MAX_ADDR_CELLS 4
11#define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
12 (ns) > 0)
13
14static struct of_bus *of_match_bus(struct device_node *np);
15static int __of_address_to_resource(struct device_node *dev,
16 const __be32 *addrp, u64 size, unsigned int flags,
17 const char *name, struct resource *r);
18
19/* Debug utility */
20#ifdef DEBUG
21static void of_dump_addr(const char *s, const __be32 *addr, int na)
22{
23 printk(KERN_DEBUG "%s", s);
24 while (na--)
25 printk(" %08x", be32_to_cpu(*(addr++)));
26 printk("\n");
27}
28#else
29static void of_dump_addr(const char *s, const __be32 *addr, int na) { }
30#endif
31
32/* Callbacks for bus specific translators */
33struct of_bus {
34 const char *name;
35 const char *addresses;
36 int (*match)(struct device_node *parent);
37 void (*count_cells)(struct device_node *child,
38 int *addrc, int *sizec);
39 u64 (*map)(u32 *addr, const __be32 *range,
40 int na, int ns, int pna);
41 int (*translate)(u32 *addr, u64 offset, int na);
42 unsigned int (*get_flags)(const __be32 *addr);
43};
44
45/*
46 * Default translator (generic bus)
47 */
48
49static void of_bus_default_count_cells(struct device_node *dev,
50 int *addrc, int *sizec)
51{
52 if (addrc)
53 *addrc = of_n_addr_cells(dev);
54 if (sizec)
55 *sizec = of_n_size_cells(dev);
56}
57
58static u64 of_bus_default_map(u32 *addr, const __be32 *range,
59 int na, int ns, int pna)
60{
61 u64 cp, s, da;
62
63 cp = of_read_number(range, na);
64 s = of_read_number(range + na + pna, ns);
65 da = of_read_number(addr, na);
66
67 pr_debug("OF: default map, cp=%llx, s=%llx, da=%llx\n",
68 (unsigned long long)cp, (unsigned long long)s,
69 (unsigned long long)da);
70
71 if (da < cp || da >= (cp + s))
72 return OF_BAD_ADDR;
73 return da - cp;
74}
75
76static int of_bus_default_translate(u32 *addr, u64 offset, int na)
77{
78 u64 a = of_read_number(addr, na);
79 memset(addr, 0, na * 4);
80 a += offset;
81 if (na > 1)
82 addr[na - 2] = cpu_to_be32(a >> 32);
83 addr[na - 1] = cpu_to_be32(a & 0xffffffffu);
84
85 return 0;
86}
87
88static unsigned int of_bus_default_get_flags(const __be32 *addr)
89{
90 return IORESOURCE_MEM;
91}
92
93#ifdef CONFIG_PCI
94/*
95 * PCI bus specific translator
96 */
97
98static int of_bus_pci_match(struct device_node *np)
99{
100 /* "vci" is for the /chaos bridge on 1st-gen PCI powermacs */
101 return !strcmp(np->type, "pci") || !strcmp(np->type, "vci");
102}
103
104static void of_bus_pci_count_cells(struct device_node *np,
105 int *addrc, int *sizec)
106{
107 if (addrc)
108 *addrc = 3;
109 if (sizec)
110 *sizec = 2;
111}
112
113static unsigned int of_bus_pci_get_flags(const __be32 *addr)
114{
115 unsigned int flags = 0;
116 u32 w = be32_to_cpup(addr);
117
118 switch((w >> 24) & 0x03) {
119 case 0x01:
120 flags |= IORESOURCE_IO;
121 break;
122 case 0x02: /* 32 bits */
123 case 0x03: /* 64 bits */
124 flags |= IORESOURCE_MEM;
125 break;
126 }
127 if (w & 0x40000000)
128 flags |= IORESOURCE_PREFETCH;
129 return flags;
130}
131
132static u64 of_bus_pci_map(u32 *addr, const __be32 *range, int na, int ns,
133 int pna)
134{
135 u64 cp, s, da;
136 unsigned int af, rf;
137
138 af = of_bus_pci_get_flags(addr);
139 rf = of_bus_pci_get_flags(range);
140
141 /* Check address type match */
142 if ((af ^ rf) & (IORESOURCE_MEM | IORESOURCE_IO))
143 return OF_BAD_ADDR;
144
145 /* Read address values, skipping high cell */
146 cp = of_read_number(range + 1, na - 1);
147 s = of_read_number(range + na + pna, ns);
148 da = of_read_number(addr + 1, na - 1);
149
150 pr_debug("OF: PCI map, cp=%llx, s=%llx, da=%llx\n",
151 (unsigned long long)cp, (unsigned long long)s,
152 (unsigned long long)da);
153
154 if (da < cp || da >= (cp + s))
155 return OF_BAD_ADDR;
156 return da - cp;
157}
158
159static int of_bus_pci_translate(u32 *addr, u64 offset, int na)
160{
161 return of_bus_default_translate(addr + 1, offset, na - 1);
162}
163
164const __be32 *of_get_pci_address(struct device_node *dev, int bar_no, u64 *size,
165 unsigned int *flags)
166{
167 const __be32 *prop;
168 unsigned int psize;
169 struct device_node *parent;
170 struct of_bus *bus;
171 int onesize, i, na, ns;
172
173 /* Get parent & match bus type */
174 parent = of_get_parent(dev);
175 if (parent == NULL)
176 return NULL;
177 bus = of_match_bus(parent);
178 if (strcmp(bus->name, "pci")) {
179 of_node_put(parent);
180 return NULL;
181 }
182 bus->count_cells(dev, &na, &ns);
183 of_node_put(parent);
184 if (!OF_CHECK_COUNTS(na, ns))
185 return NULL;
186
187 /* Get "reg" or "assigned-addresses" property */
188 prop = of_get_property(dev, bus->addresses, &psize);
189 if (prop == NULL)
190 return NULL;
191 psize /= 4;
192
193 onesize = na + ns;
194 for (i = 0; psize >= onesize; psize -= onesize, prop += onesize, i++) {
195 u32 val = be32_to_cpu(prop[0]);
196 if ((val & 0xff) == ((bar_no * 4) + PCI_BASE_ADDRESS_0)) {
197 if (size)
198 *size = of_read_number(prop + na, ns);
199 if (flags)
200 *flags = bus->get_flags(prop);
201 return prop;
202 }
203 }
204 return NULL;
205}
206EXPORT_SYMBOL(of_get_pci_address);
207
208int of_pci_address_to_resource(struct device_node *dev, int bar,
209 struct resource *r)
210{
211 const __be32 *addrp;
212 u64 size;
213 unsigned int flags;
214
215 addrp = of_get_pci_address(dev, bar, &size, &flags);
216 if (addrp == NULL)
217 return -EINVAL;
218 return __of_address_to_resource(dev, addrp, size, flags, NULL, r);
219}
220EXPORT_SYMBOL_GPL(of_pci_address_to_resource);
221#endif /* CONFIG_PCI */
222
223/*
224 * ISA bus specific translator
225 */
226
227static int of_bus_isa_match(struct device_node *np)
228{
229 return !strcmp(np->name, "isa");
230}
231
232static void of_bus_isa_count_cells(struct device_node *child,
233 int *addrc, int *sizec)
234{
235 if (addrc)
236 *addrc = 2;
237 if (sizec)
238 *sizec = 1;
239}
240
241static u64 of_bus_isa_map(u32 *addr, const __be32 *range, int na, int ns,
242 int pna)
243{
244 u64 cp, s, da;
245
246 /* Check address type match */
247 if ((addr[0] ^ range[0]) & cpu_to_be32(1))
248 return OF_BAD_ADDR;
249
250 /* Read address values, skipping high cell */
251 cp = of_read_number(range + 1, na - 1);
252 s = of_read_number(range + na + pna, ns);
253 da = of_read_number(addr + 1, na - 1);
254
255 pr_debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n",
256 (unsigned long long)cp, (unsigned long long)s,
257 (unsigned long long)da);
258
259 if (da < cp || da >= (cp + s))
260 return OF_BAD_ADDR;
261 return da - cp;
262}
263
264static int of_bus_isa_translate(u32 *addr, u64 offset, int na)
265{
266 return of_bus_default_translate(addr + 1, offset, na - 1);
267}
268
269static unsigned int of_bus_isa_get_flags(const __be32 *addr)
270{
271 unsigned int flags = 0;
272 u32 w = be32_to_cpup(addr);
273
274 if (w & 1)
275 flags |= IORESOURCE_IO;
276 else
277 flags |= IORESOURCE_MEM;
278 return flags;
279}
280
281/*
282 * Array of bus specific translators
283 */
284
285static struct of_bus of_busses[] = {
286#ifdef CONFIG_PCI
287 /* PCI */
288 {
289 .name = "pci",
290 .addresses = "assigned-addresses",
291 .match = of_bus_pci_match,
292 .count_cells = of_bus_pci_count_cells,
293 .map = of_bus_pci_map,
294 .translate = of_bus_pci_translate,
295 .get_flags = of_bus_pci_get_flags,
296 },
297#endif /* CONFIG_PCI */
298 /* ISA */
299 {
300 .name = "isa",
301 .addresses = "reg",
302 .match = of_bus_isa_match,
303 .count_cells = of_bus_isa_count_cells,
304 .map = of_bus_isa_map,
305 .translate = of_bus_isa_translate,
306 .get_flags = of_bus_isa_get_flags,
307 },
308 /* Default */
309 {
310 .name = "default",
311 .addresses = "reg",
312 .match = NULL,
313 .count_cells = of_bus_default_count_cells,
314 .map = of_bus_default_map,
315 .translate = of_bus_default_translate,
316 .get_flags = of_bus_default_get_flags,
317 },
318};
319
320static struct of_bus *of_match_bus(struct device_node *np)
321{
322 int i;
323
324 for (i = 0; i < ARRAY_SIZE(of_busses); i++)
325 if (!of_busses[i].match || of_busses[i].match(np))
326 return &of_busses[i];
327 BUG();
328 return NULL;
329}
330
331static int of_empty_ranges_quirk(void)
332{
333 if (IS_ENABLED(CONFIG_PPC)) {
334 /* To save cycles, we cache the result */
335 static int quirk_state = -1;
336
337 if (quirk_state < 0)
338 quirk_state =
339 of_machine_is_compatible("Power Macintosh") ||
340 of_machine_is_compatible("MacRISC");
341 return quirk_state;
342 }
343 return false;
344}
345
346static int of_translate_one(struct device_node *parent, struct of_bus *bus,
347 struct of_bus *pbus, u32 *addr,
348 int na, int ns, int pna, const char *rprop)
349{
350 const __be32 *ranges;
351 unsigned int rlen;
352 int rone;
353 u64 offset = OF_BAD_ADDR;
354
355 /* Normally, an absence of a "ranges" property means we are
356 * crossing a non-translatable boundary, and thus the addresses
357 * below the current not cannot be converted to CPU physical ones.
358 * Unfortunately, while this is very clear in the spec, it's not
359 * what Apple understood, and they do have things like /uni-n or
360 * /ht nodes with no "ranges" property and a lot of perfectly
361 * useable mapped devices below them. Thus we treat the absence of
362 * "ranges" as equivalent to an empty "ranges" property which means
363 * a 1:1 translation at that level. It's up to the caller not to try
364 * to translate addresses that aren't supposed to be translated in
365 * the first place. --BenH.
366 *
367 * As far as we know, this damage only exists on Apple machines, so
368 * This code is only enabled on powerpc. --gcl
369 */
370 ranges = of_get_property(parent, rprop, &rlen);
371 if (ranges == NULL && !of_empty_ranges_quirk()) {
372 pr_err("OF: no ranges; cannot translate\n");
373 return 1;
374 }
375 if (ranges == NULL || rlen == 0) {
376 offset = of_read_number(addr, na);
377 memset(addr, 0, pna * 4);
378 pr_debug("OF: empty ranges; 1:1 translation\n");
379 goto finish;
380 }
381
382 pr_debug("OF: walking ranges...\n");
383
384 /* Now walk through the ranges */
385 rlen /= 4;
386 rone = na + pna + ns;
387 for (; rlen >= rone; rlen -= rone, ranges += rone) {
388 offset = bus->map(addr, ranges, na, ns, pna);
389 if (offset != OF_BAD_ADDR)
390 break;
391 }
392 if (offset == OF_BAD_ADDR) {
393 pr_debug("OF: not found !\n");
394 return 1;
395 }
396 memcpy(addr, ranges + na, 4 * pna);
397
398 finish:
399 of_dump_addr("OF: parent translation for:", addr, pna);
400 pr_debug("OF: with offset: %llx\n", (unsigned long long)offset);
401
402 /* Translate it into parent bus space */
403 return pbus->translate(addr, offset, pna);
404}
405
406/*
407 * Translate an address from the device-tree into a CPU physical address,
408 * this walks up the tree and applies the various bus mappings on the
409 * way.
410 *
411 * Note: We consider that crossing any level with #size-cells == 0 to mean
412 * that translation is impossible (that is we are not dealing with a value
413 * that can be mapped to a cpu physical address). This is not really specified
414 * that way, but this is traditionally the way IBM at least do things
415 */
416u64 __of_translate_address(struct device_node *dev, const __be32 *in_addr,
417 const char *rprop)
418{
419 struct device_node *parent = NULL;
420 struct of_bus *bus, *pbus;
421 u32 addr[OF_MAX_ADDR_CELLS];
422 int na, ns, pna, pns;
423 u64 result = OF_BAD_ADDR;
424
425 pr_debug("OF: ** translation for device %s **\n", dev->full_name);
426
427 /* Increase refcount at current level */
428 of_node_get(dev);
429
430 /* Get parent & match bus type */
431 parent = of_get_parent(dev);
432 if (parent == NULL)
433 goto bail;
434 bus = of_match_bus(parent);
435
436 /* Cound address cells & copy address locally */
437 bus->count_cells(dev, &na, &ns);
438 if (!OF_CHECK_COUNTS(na, ns)) {
439 printk(KERN_ERR "prom_parse: Bad cell count for %s\n",
440 dev->full_name);
441 goto bail;
442 }
443 memcpy(addr, in_addr, na * 4);
444
445 pr_debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
446 bus->name, na, ns, parent->full_name);
447 of_dump_addr("OF: translating address:", addr, na);
448
449 /* Translate */
450 for (;;) {
451 /* Switch to parent bus */
452 of_node_put(dev);
453 dev = parent;
454 parent = of_get_parent(dev);
455
456 /* If root, we have finished */
457 if (parent == NULL) {
458 pr_debug("OF: reached root node\n");
459 result = of_read_number(addr, na);
460 break;
461 }
462
463 /* Get new parent bus and counts */
464 pbus = of_match_bus(parent);
465 pbus->count_cells(dev, &pna, &pns);
466 if (!OF_CHECK_COUNTS(pna, pns)) {
467 printk(KERN_ERR "prom_parse: Bad cell count for %s\n",
468 dev->full_name);
469 break;
470 }
471
472 pr_debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
473 pbus->name, pna, pns, parent->full_name);
474
475 /* Apply bus translation */
476 if (of_translate_one(dev, bus, pbus, addr, na, ns, pna, rprop))
477 break;
478
479 /* Complete the move up one level */
480 na = pna;
481 ns = pns;
482 bus = pbus;
483
484 of_dump_addr("OF: one level translation:", addr, na);
485 }
486 bail:
487 of_node_put(parent);
488 of_node_put(dev);
489
490 return result;
491}
492
493u64 of_translate_address(struct device_node *dev, const __be32 *in_addr)
494{
495 return __of_translate_address(dev, in_addr, "ranges");
496}
497EXPORT_SYMBOL(of_translate_address);
498
499u64 of_translate_dma_address(struct device_node *dev, const __be32 *in_addr)
500{
501 return __of_translate_address(dev, in_addr, "dma-ranges");
502}
503EXPORT_SYMBOL(of_translate_dma_address);
504
505const __be32 *of_get_address(struct device_node *dev, int index, u64 *size,
506 unsigned int *flags)
507{
508 const __be32 *prop;
509 unsigned int psize;
510 struct device_node *parent;
511 struct of_bus *bus;
512 int onesize, i, na, ns;
513
514 /* Get parent & match bus type */
515 parent = of_get_parent(dev);
516 if (parent == NULL)
517 return NULL;
518 bus = of_match_bus(parent);
519 bus->count_cells(dev, &na, &ns);
520 of_node_put(parent);
521 if (!OF_CHECK_COUNTS(na, ns))
522 return NULL;
523
524 /* Get "reg" or "assigned-addresses" property */
525 prop = of_get_property(dev, bus->addresses, &psize);
526 if (prop == NULL)
527 return NULL;
528 psize /= 4;
529
530 onesize = na + ns;
531 for (i = 0; psize >= onesize; psize -= onesize, prop += onesize, i++)
532 if (i == index) {
533 if (size)
534 *size = of_read_number(prop + na, ns);
535 if (flags)
536 *flags = bus->get_flags(prop);
537 return prop;
538 }
539 return NULL;
540}
541EXPORT_SYMBOL(of_get_address);
542
543static int __of_address_to_resource(struct device_node *dev,
544 const __be32 *addrp, u64 size, unsigned int flags,
545 const char *name, struct resource *r)
546{
547 u64 taddr;
548
549 if ((flags & (IORESOURCE_IO | IORESOURCE_MEM)) == 0)
550 return -EINVAL;
551 taddr = of_translate_address(dev, addrp);
552 if (taddr == OF_BAD_ADDR)
553 return -EINVAL;
554 memset(r, 0, sizeof(struct resource));
555 if (flags & IORESOURCE_IO) {
556 unsigned long port;
557 port = pci_address_to_pio(taddr);
558 if (port == (unsigned long)-1)
559 return -EINVAL;
560 r->start = port;
561 r->end = port + size - 1;
562 } else {
563 r->start = taddr;
564 r->end = taddr + size - 1;
565 }
566 r->flags = flags;
567 r->name = name ? name : dev->full_name;
568
569 return 0;
570}
571
572/**
573 * of_address_to_resource - Translate device tree address and return as resource
574 *
575 * Note that if your address is a PIO address, the conversion will fail if
576 * the physical address can't be internally converted to an IO token with
577 * pci_address_to_pio(), that is because it's either called to early or it
578 * can't be matched to any host bridge IO space
579 */
580int of_address_to_resource(struct device_node *dev, int index,
581 struct resource *r)
582{
583 const __be32 *addrp;
584 u64 size;
585 unsigned int flags;
586 const char *name = NULL;
587
588 addrp = of_get_address(dev, index, &size, &flags);
589 if (addrp == NULL)
590 return -EINVAL;
591
592 /* Get optional "reg-names" property to add a name to a resource */
593 of_property_read_string_index(dev, "reg-names", index, &name);
594
595 return __of_address_to_resource(dev, addrp, size, flags, name, r);
596}
597EXPORT_SYMBOL_GPL(of_address_to_resource);
598
599struct device_node *of_find_matching_node_by_address(struct device_node *from,
600 const struct of_device_id *matches,
601 u64 base_address)
602{
603 struct device_node *dn = of_find_matching_node(from, matches);
604 struct resource res;
605
606 while (dn) {
607 if (of_address_to_resource(dn, 0, &res))
608 continue;
609 if (res.start == base_address)
610 return dn;
611 dn = of_find_matching_node(dn, matches);
612 }
613
614 return NULL;
615}
616
617
618/**
619 * of_iomap - Maps the memory mapped IO for a given device_node
620 * @device: the device whose io range will be mapped
621 * @index: index of the io range
622 *
623 * Returns a pointer to the mapped memory
624 */
625void __iomem *of_iomap(struct device_node *np, int index)
626{
627 struct resource res;
628
629 if (of_address_to_resource(np, index, &res))
630 return NULL;
631
632 return ioremap(res.start, resource_size(&res));
633}
634EXPORT_SYMBOL(of_iomap);