1bc7b9300SIan Lepore /*-
2*29fe5efcSMarius Strobl * Copyright (c) 2005 by Marius Strobl <marius@FreeBSD.org>
3bc7b9300SIan Lepore * Copyright (c) 2015 Ian Lepore <ian@freebsd.org>
4bc7b9300SIan Lepore * All rights reserved.
5bc7b9300SIan Lepore *
6bc7b9300SIan Lepore * Redistribution and use in source and binary forms, with or without
7bc7b9300SIan Lepore * modification, are permitted provided that the following conditions
8bc7b9300SIan Lepore * are met:
9bc7b9300SIan Lepore * 1. Redistributions of source code must retain the above copyright
10bc7b9300SIan Lepore * notice, this list of conditions and the following disclaimer.
11bc7b9300SIan Lepore * 2. Redistributions in binary form must reproduce the above copyright
12bc7b9300SIan Lepore * notice, this list of conditions and the following disclaimer in the
13bc7b9300SIan Lepore * documentation and/or other materials provided with the distribution.
14bc7b9300SIan Lepore *
15bc7b9300SIan Lepore * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16bc7b9300SIan Lepore * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17bc7b9300SIan Lepore * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18bc7b9300SIan Lepore * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19bc7b9300SIan Lepore * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20bc7b9300SIan Lepore * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21bc7b9300SIan Lepore * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22bc7b9300SIan Lepore * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23bc7b9300SIan Lepore * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24bc7b9300SIan Lepore * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25bc7b9300SIan Lepore * SUCH DAMAGE.
26bc7b9300SIan Lepore *
27bc7b9300SIan Lepore * The initial ofw_reg_to_paddr() implementation has been copied from powerpc
28bc7b9300SIan Lepore * ofw_machdep.c OF_decode_addr(). It was added by Marcel Moolenaar, who did not
29bc7b9300SIan Lepore * assert copyright with the addition but still deserves credit for the work.
30*29fe5efcSMarius Strobl * The powerpc OF_decode_addr() in turn was based on the sparc64 counterpart
31*29fe5efcSMarius Strobl * written by Marius Strobl.
32bc7b9300SIan Lepore */
33bc7b9300SIan Lepore
34bc7b9300SIan Lepore #include <sys/param.h>
35fd4d7757SWarner Losh #include <sys/boot.h>
36bc7b9300SIan Lepore #include <sys/bus.h>
37bc7b9300SIan Lepore #include <sys/libkern.h>
389ed9b267SJustin Hibbits #include <sys/reboot.h>
39910905c7SZbigniew Bodek #include <sys/rman.h>
40bc7b9300SIan Lepore
41bc7b9300SIan Lepore #include <machine/bus.h>
42bc7b9300SIan Lepore
43bc7b9300SIan Lepore #include <dev/ofw/openfirm.h>
44a259e55bSZbigniew Bodek #include <dev/ofw/ofw_pci.h>
4536e9c2ceSZbigniew Bodek #include <dev/ofw/ofw_subr.h>
46bc7b9300SIan Lepore
47bc7b9300SIan Lepore static void
get_addr_props(phandle_t node,uint32_t * addrp,uint32_t * sizep,int * pcip)48bc7b9300SIan Lepore get_addr_props(phandle_t node, uint32_t *addrp, uint32_t *sizep, int *pcip)
49bc7b9300SIan Lepore {
50bc7b9300SIan Lepore char type[64];
51bc7b9300SIan Lepore uint32_t addr, size;
52bc7b9300SIan Lepore int pci, res;
53bc7b9300SIan Lepore
54bc7b9300SIan Lepore res = OF_getencprop(node, "#address-cells", &addr, sizeof(addr));
55bc7b9300SIan Lepore if (res == -1)
56bc7b9300SIan Lepore addr = 2;
57bc7b9300SIan Lepore res = OF_getencprop(node, "#size-cells", &size, sizeof(size));
58bc7b9300SIan Lepore if (res == -1)
59bc7b9300SIan Lepore size = 1;
60bc7b9300SIan Lepore pci = 0;
61bc7b9300SIan Lepore if (addr == 3 && size == 2) {
62bc7b9300SIan Lepore res = OF_getprop(node, "device_type", type, sizeof(type));
63bc7b9300SIan Lepore if (res != -1) {
64bc7b9300SIan Lepore type[sizeof(type) - 1] = '\0';
656f3fcd76SJustin Hibbits if (strcmp(type, "pci") == 0 ||
666f3fcd76SJustin Hibbits strcmp(type, "pciex")== 0)
676f3fcd76SJustin Hibbits pci = 1;
68bc7b9300SIan Lepore }
69bc7b9300SIan Lepore }
70bc7b9300SIan Lepore if (addrp != NULL)
71bc7b9300SIan Lepore *addrp = addr;
72bc7b9300SIan Lepore if (sizep != NULL)
73bc7b9300SIan Lepore *sizep = size;
74bc7b9300SIan Lepore if (pcip != NULL)
75bc7b9300SIan Lepore *pcip = pci;
76bc7b9300SIan Lepore }
77bc7b9300SIan Lepore
78bc7b9300SIan Lepore int
ofw_reg_to_paddr(phandle_t dev,int regno,bus_addr_t * paddr,bus_size_t * psize,pcell_t * ppci_hi)79bc7b9300SIan Lepore ofw_reg_to_paddr(phandle_t dev, int regno, bus_addr_t *paddr,
80bc7b9300SIan Lepore bus_size_t *psize, pcell_t *ppci_hi)
81bc7b9300SIan Lepore {
820f6efb44SEmmanuel Vadot static pcell_t cell[256];
830f6efb44SEmmanuel Vadot pcell_t pci_hi;
84b958a08eSAndrew Turner uint64_t addr, raddr, baddr;
85b958a08eSAndrew Turner uint64_t size, rsize;
86bc7b9300SIan Lepore uint32_t c, nbridge, naddr, nsize;
87bc7b9300SIan Lepore phandle_t bridge, parent;
88bc7b9300SIan Lepore u_int spc, rspc;
89bc7b9300SIan Lepore int pci, pcib, res;
90bc7b9300SIan Lepore
91bc7b9300SIan Lepore /* Sanity checking. */
92bc7b9300SIan Lepore if (dev == 0)
93bc7b9300SIan Lepore return (EINVAL);
94bc7b9300SIan Lepore bridge = OF_parent(dev);
95bc7b9300SIan Lepore if (bridge == 0)
96bc7b9300SIan Lepore return (EINVAL);
97bc7b9300SIan Lepore if (regno < 0)
98bc7b9300SIan Lepore return (EINVAL);
99bc7b9300SIan Lepore if (paddr == NULL || psize == NULL)
100bc7b9300SIan Lepore return (EINVAL);
101bc7b9300SIan Lepore
102bc7b9300SIan Lepore get_addr_props(bridge, &naddr, &nsize, &pci);
103bc7b9300SIan Lepore res = OF_getencprop(dev, (pci) ? "assigned-addresses" : "reg",
104bc7b9300SIan Lepore cell, sizeof(cell));
105bc7b9300SIan Lepore if (res == -1)
106bc7b9300SIan Lepore return (ENXIO);
107bc7b9300SIan Lepore if (res % sizeof(cell[0]))
108bc7b9300SIan Lepore return (ENXIO);
109bc7b9300SIan Lepore res /= sizeof(cell[0]);
110bc7b9300SIan Lepore regno *= naddr + nsize;
111bc7b9300SIan Lepore if (regno + naddr + nsize > res)
112bc7b9300SIan Lepore return (EINVAL);
113bc7b9300SIan Lepore pci_hi = pci ? cell[regno] : OFW_PADDR_NOT_PCI;
114bc7b9300SIan Lepore spc = pci_hi & OFW_PCI_PHYS_HI_SPACEMASK;
115bc7b9300SIan Lepore addr = 0;
116bc7b9300SIan Lepore for (c = 0; c < naddr; c++)
117bc7b9300SIan Lepore addr = ((uint64_t)addr << 32) | cell[regno++];
118bc7b9300SIan Lepore size = 0;
119bc7b9300SIan Lepore for (c = 0; c < nsize; c++)
120bc7b9300SIan Lepore size = ((uint64_t)size << 32) | cell[regno++];
121bc7b9300SIan Lepore /*
122bc7b9300SIan Lepore * Map the address range in the bridge's decoding window as given
123bc7b9300SIan Lepore * by the "ranges" property. If a node doesn't have such property
124bc7b9300SIan Lepore * or the property is empty, we assume an identity mapping. The
125bc7b9300SIan Lepore * standard says a missing property indicates no possible mapping.
126bc7b9300SIan Lepore * This code is more liberal since the intended use is to get a
127bc7b9300SIan Lepore * console running early, and a printf to warn of malformed data
128bc7b9300SIan Lepore * is probably futile before the console is fully set up.
129bc7b9300SIan Lepore */
130bc7b9300SIan Lepore parent = OF_parent(bridge);
131bc7b9300SIan Lepore while (parent != 0) {
132bc7b9300SIan Lepore get_addr_props(parent, &nbridge, NULL, &pcib);
133bc7b9300SIan Lepore res = OF_getencprop(bridge, "ranges", cell, sizeof(cell));
134bc7b9300SIan Lepore if (res < 1)
135bc7b9300SIan Lepore goto next;
136bc7b9300SIan Lepore if (res % sizeof(cell[0]))
137bc7b9300SIan Lepore return (ENXIO);
138bc7b9300SIan Lepore /* Capture pci_hi if we just transitioned onto a PCI bus. */
139bc7b9300SIan Lepore if (pcib && pci_hi == OFW_PADDR_NOT_PCI) {
140bc7b9300SIan Lepore pci_hi = cell[0];
141bc7b9300SIan Lepore spc = pci_hi & OFW_PCI_PHYS_HI_SPACEMASK;
142bc7b9300SIan Lepore }
143bc7b9300SIan Lepore res /= sizeof(cell[0]);
144bc7b9300SIan Lepore regno = 0;
145bc7b9300SIan Lepore while (regno < res) {
14667bcc941SIan Lepore rspc = (pci ? cell[regno] : OFW_PADDR_NOT_PCI) &
14767bcc941SIan Lepore OFW_PCI_PHYS_HI_SPACEMASK;
148bc7b9300SIan Lepore if (rspc != spc) {
149bc7b9300SIan Lepore regno += naddr + nbridge + nsize;
150bc7b9300SIan Lepore continue;
151bc7b9300SIan Lepore }
152bc7b9300SIan Lepore raddr = 0;
153bc7b9300SIan Lepore for (c = 0; c < naddr; c++)
154bc7b9300SIan Lepore raddr = ((uint64_t)raddr << 32) | cell[regno++];
155bc7b9300SIan Lepore rspc = (pcib)
156bc7b9300SIan Lepore ? cell[regno] & OFW_PCI_PHYS_HI_SPACEMASK
157bc7b9300SIan Lepore : OFW_PADDR_NOT_PCI;
158bc7b9300SIan Lepore baddr = 0;
159bc7b9300SIan Lepore for (c = 0; c < nbridge; c++)
160bc7b9300SIan Lepore baddr = ((uint64_t)baddr << 32) | cell[regno++];
161bc7b9300SIan Lepore rsize = 0;
162bc7b9300SIan Lepore for (c = 0; c < nsize; c++)
163bc7b9300SIan Lepore rsize = ((uint64_t)rsize << 32) | cell[regno++];
164bc7b9300SIan Lepore if (addr < raddr || addr >= raddr + rsize)
165bc7b9300SIan Lepore continue;
166bc7b9300SIan Lepore addr = addr - raddr + baddr;
167bc7b9300SIan Lepore if (rspc != OFW_PADDR_NOT_PCI)
168bc7b9300SIan Lepore spc = rspc;
169bc7b9300SIan Lepore }
170bc7b9300SIan Lepore next:
171bc7b9300SIan Lepore bridge = parent;
172bc7b9300SIan Lepore parent = OF_parent(bridge);
173bc7b9300SIan Lepore get_addr_props(bridge, &naddr, &nsize, &pci);
174bc7b9300SIan Lepore }
175bc7b9300SIan Lepore
176b958a08eSAndrew Turner KASSERT(addr <= BUS_SPACE_MAXADDR,
177ec064639SJustin Hibbits ("Bus address is too large: %jx", (uintmax_t)addr));
178b958a08eSAndrew Turner KASSERT(size <= BUS_SPACE_MAXSIZE,
1797900c60aSAndrew Turner ("Bus size is too large: %jx", (uintmax_t)size));
180b958a08eSAndrew Turner
181bc7b9300SIan Lepore *paddr = addr;
182bc7b9300SIan Lepore *psize = size;
183bc7b9300SIan Lepore if (ppci_hi != NULL)
184bc7b9300SIan Lepore *ppci_hi = pci_hi;
185bc7b9300SIan Lepore
186bc7b9300SIan Lepore return (0);
187bc7b9300SIan Lepore }
1889ed9b267SJustin Hibbits
1899ed9b267SJustin Hibbits /*
1909ed9b267SJustin Hibbits * This is intended to be called early on, right after the OF system is
1919ed9b267SJustin Hibbits * initialized, so pmap may not be up yet.
1929ed9b267SJustin Hibbits */
1939ed9b267SJustin Hibbits int
ofw_parse_bootargs(void)1949ed9b267SJustin Hibbits ofw_parse_bootargs(void)
1959ed9b267SJustin Hibbits {
1969ed9b267SJustin Hibbits phandle_t chosen;
1979ed9b267SJustin Hibbits char buf[2048]; /* early stack supposedly big enough */
1989ed9b267SJustin Hibbits int err;
1999ed9b267SJustin Hibbits
2009ed9b267SJustin Hibbits chosen = OF_finddevice("/chosen");
201108117ccSOleksandr Tymoshenko if (chosen == -1)
2029ed9b267SJustin Hibbits return (chosen);
2039ed9b267SJustin Hibbits
2049ed9b267SJustin Hibbits if ((err = OF_getprop(chosen, "bootargs", buf, sizeof(buf))) != -1) {
205eed42ff1SWarner Losh boothowto |= boot_parse_cmdline(buf);
2069ed9b267SJustin Hibbits return (0);
2079ed9b267SJustin Hibbits }
2089ed9b267SJustin Hibbits
2099ed9b267SJustin Hibbits return (err);
2109ed9b267SJustin Hibbits }
211