]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - arch/powerpc/boot/cuboot-pq2.c
d3d3388d552fbdf67a848aa7f5a9b494bb6967af
[mirror_ubuntu-artful-kernel.git] / arch / powerpc / boot / cuboot-pq2.c
1 /*
2 * Old U-boot compatibility for PowerQUICC II
3 * (a.k.a. 82xx with CPM, not the 8240 family of chips)
4 *
5 * Author: Scott Wood <scottwood@freescale.com>
6 *
7 * Copyright (c) 2007 Freescale Semiconductor, Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 */
13
14 #include "ops.h"
15 #include "stdio.h"
16 #include "cuboot.h"
17 #include "io.h"
18
19 #define TARGET_CPM2
20 #define TARGET_HAS_ETH1
21 #include "ppcboot.h"
22
23 static bd_t bd;
24
25 struct cs_range {
26 u32 csnum;
27 u32 base; /* must be zero */
28 u32 addr;
29 u32 size;
30 };
31
32 struct pci_range {
33 u32 flags;
34 u32 pci_addr[2];
35 u32 phys_addr;
36 u32 size[2];
37 };
38
39 struct cs_range cs_ranges_buf[MAX_PROP_LEN / sizeof(struct cs_range)];
40 struct pci_range pci_ranges_buf[MAX_PROP_LEN / sizeof(struct pci_range)];
41
42 /* Different versions of u-boot put the BCSR in different places, and
43 * some don't set up the PCI PIC at all, so we assume the device tree is
44 * sane and update the BRx registers appropriately.
45 *
46 * For any node defined as compatible with fsl,pq2-chipselect,
47 * #address/#size must be 2/1 for chipselect bus, 1/1 for parent bus,
48 * and ranges must be for whole chip selects.
49 */
50 static void update_cs_ranges(void)
51 {
52 u32 ctrl_ph;
53 void *ctrl_node, *bus_node, *parent_node;
54 u32 *ctrl_addr;
55 unsigned long ctrl_size;
56 u32 naddr, nsize;
57 int len;
58 int i;
59
60 bus_node = finddevice("/chipselect");
61 if (!bus_node || !dt_is_compatible(bus_node, "fsl,pq2-chipselect"))
62 return;
63
64 dt_get_reg_format(bus_node, &naddr, &nsize);
65 if (naddr != 2 || nsize != 1)
66 goto err;
67
68 parent_node = get_parent(bus_node);
69 if (!parent_node)
70 goto err;
71
72 dt_get_reg_format(parent_node, &naddr, &nsize);
73 if (naddr != 1 || nsize != 1)
74 goto err;
75
76 len = getprop(bus_node, "fsl,ctrl", &ctrl_ph, 4);
77 if (len != 4)
78 goto err;
79
80 ctrl_node = find_node_by_prop_value(NULL, "linux,phandle",
81 (char *)&ctrl_ph, 4);
82 if (!ctrl_node)
83 goto err;
84
85 if (!dt_is_compatible(ctrl_node, "fsl,pq2-chipselect-ctrl"))
86 goto err;
87
88 if (!dt_xlate_reg(ctrl_node, 0, (unsigned long *)&ctrl_addr,
89 &ctrl_size))
90 goto err;
91
92 len = getprop(bus_node, "ranges", cs_ranges_buf, sizeof(cs_ranges_buf));
93
94 for (i = 0; i < len / sizeof(struct cs_range); i++) {
95 u32 base, option;
96 int cs = cs_ranges_buf[i].csnum;
97 if (cs >= ctrl_size / 8)
98 goto err;
99
100 if (cs_ranges_buf[i].base != 0)
101 goto err;
102
103 base = in_be32(&ctrl_addr[cs * 2]);
104
105 /* If CS is already valid, use the existing flags.
106 * Otherwise, guess a sane default.
107 */
108 if (base & 1) {
109 base &= 0x7fff;
110 option = in_be32(&ctrl_addr[cs * 2 + 1]) & 0x7fff;
111 } else {
112 base = 0x1801;
113 option = 0x10;
114 }
115
116 out_be32(&ctrl_addr[cs * 2], 0);
117 out_be32(&ctrl_addr[cs * 2 + 1],
118 option | ~(cs_ranges_buf[i].size - 1));
119 out_be32(&ctrl_addr[cs * 2], base | cs_ranges_buf[i].addr);
120 }
121
122 return;
123
124 err:
125 printf("Bad /chipselect or fsl,pq2-chipselect-ctrl node\r\n");
126 }
127
128 /* Older u-boots don't set PCI up properly. Update the hardware to match
129 * the device tree. The prefetch mem region and non-prefetch mem region
130 * must be contiguous in the host bus. As required by the PCI binding,
131 * PCI #addr/#size must be 3/2. The parent bus must be 1/1. Only
132 * 32-bit PCI is supported. All three region types (prefetchable mem,
133 * non-prefetchable mem, and I/O) must be present.
134 */
135 static void fixup_pci(void)
136 {
137 struct pci_range *mem = NULL, *mmio = NULL,
138 *io = NULL, *mem_base = NULL;
139 u32 *pci_regs[3];
140 u8 *soc_regs;
141 int i, len;
142 void *node, *parent_node, *soc_node;
143 u32 naddr, nsize, mem_log2;
144
145 node = finddevice("/pci");
146 if (!node || !dt_is_compatible(node, "fsl,pq2-pci"))
147 return;
148
149 soc_node = finddevice("/soc");
150 if (!soc_node || !dt_is_compatible(soc_node, "fsl,pq2-soc"))
151 goto err;
152
153 for (i = 0; i < 3; i++)
154 if (!dt_xlate_reg(node, i,
155 (unsigned long *)&pci_regs[i], NULL))
156 goto err;
157
158 if (!dt_xlate_reg(soc_node, 0, (unsigned long *)&soc_regs, NULL))
159 goto err;
160
161 dt_get_reg_format(node, &naddr, &nsize);
162 if (naddr != 3 || nsize != 2)
163 goto err;
164
165 parent_node = get_parent(node);
166 if (!parent_node)
167 goto err;
168
169 dt_get_reg_format(parent_node, &naddr, &nsize);
170 if (naddr != 1 || nsize != 1)
171 goto err;
172
173 len = getprop(node, "ranges", pci_ranges_buf,
174 sizeof(pci_ranges_buf));
175
176 for (i = 0; i < len / sizeof(struct pci_range); i++) {
177 u32 flags = pci_ranges_buf[i].flags & 0x43000000;
178
179 if (flags == 0x42000000)
180 mem = &pci_ranges_buf[i];
181 else if (flags == 0x02000000)
182 mmio = &pci_ranges_buf[i];
183 else if (flags == 0x01000000)
184 io = &pci_ranges_buf[i];
185 }
186
187 if (!mem || !mmio || !io)
188 goto err;
189
190 if (mem->phys_addr + mem->size[1] == mmio->phys_addr)
191 mem_base = mem;
192 else if (mmio->phys_addr + mmio->size[1] == mem->phys_addr)
193 mem_base = mmio;
194 else
195 goto err;
196
197 out_be32(&pci_regs[1][0], mem_base->phys_addr | 1);
198 out_be32(&pci_regs[2][0], ~(mem->size[1] + mmio->size[1] - 1));
199
200 out_be32(&pci_regs[1][1], io->phys_addr | 1);
201 out_be32(&pci_regs[2][1], ~(io->size[1] - 1));
202
203 out_le32(&pci_regs[0][0], mem->pci_addr[1] >> 12);
204 out_le32(&pci_regs[0][2], mem->phys_addr >> 12);
205 out_le32(&pci_regs[0][4], (~(mem->size[1] - 1) >> 12) | 0xa0000000);
206
207 out_le32(&pci_regs[0][6], mmio->pci_addr[1] >> 12);
208 out_le32(&pci_regs[0][8], mmio->phys_addr >> 12);
209 out_le32(&pci_regs[0][10], (~(mmio->size[1] - 1) >> 12) | 0x80000000);
210
211 out_le32(&pci_regs[0][12], io->pci_addr[1] >> 12);
212 out_le32(&pci_regs[0][14], io->phys_addr >> 12);
213 out_le32(&pci_regs[0][16], (~(io->size[1] - 1) >> 12) | 0xc0000000);
214
215 /* Inbound translation */
216 out_le32(&pci_regs[0][58], 0);
217 out_le32(&pci_regs[0][60], 0);
218
219 mem_log2 = 1 << (__ilog2_u32(bd.bi_memsize - 1) + 1);
220 out_le32(&pci_regs[0][62], 0xa0000000 | ~((1 << (mem_log2 - 12)) - 1));
221
222 /* If PCI is disabled, drive RST high to enable. */
223 if (!(in_le32(&pci_regs[0][32]) & 1)) {
224 /* Tpvrh (Power valid to RST# high) 100 ms */
225 udelay(100000);
226
227 out_le32(&pci_regs[0][32], 1);
228
229 /* Trhfa (RST# high to first cfg access) 2^25 clocks */
230 udelay(1020000);
231 }
232
233 /* Enable bus master and memory access */
234 out_le32(&pci_regs[0][64], 0x80000004);
235 out_le32(&pci_regs[0][65], in_le32(&pci_regs[0][65]) | 6);
236
237 /* Park the bus on PCI, and elevate PCI's arbitration priority,
238 * as required by section 9.6 of the user's manual.
239 */
240 out_8(&soc_regs[0x10028], 3);
241 out_be32((u32 *)&soc_regs[0x1002c], 0x01236745);
242
243 return;
244
245 err:
246 printf("Bad PCI node\r\n");
247 }
248
249 static void pq2_platform_fixups(void)
250 {
251 void *node;
252
253 dt_fixup_memory(bd.bi_memstart, bd.bi_memsize);
254 dt_fixup_mac_addresses(bd.bi_enetaddr, bd.bi_enet1addr);
255 dt_fixup_cpu_clocks(bd.bi_intfreq, bd.bi_busfreq / 4, bd.bi_busfreq);
256
257 node = finddevice("/soc/cpm");
258 if (node)
259 setprop(node, "clock-frequency", &bd.bi_cpmfreq, 4);
260
261 node = finddevice("/soc/cpm/brg");
262 if (node)
263 setprop(node, "clock-frequency", &bd.bi_brgfreq, 4);
264
265 update_cs_ranges();
266 fixup_pci();
267 }
268
269 void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
270 unsigned long r6, unsigned long r7)
271 {
272 CUBOOT_INIT();
273 ft_init(_dtb_start, _dtb_end - _dtb_start, 32);
274 serial_console_init();
275 platform_ops.fixups = pq2_platform_fixups;
276 }