blob: 92737452994bc28a0fdee5a9c18af3a66d4b3626 [file] [log] [blame]
Poonam Aggrwalf8027f62009-09-02 19:40:36 +05301/*
ramneek mehresh5a529772012-02-06 19:17:29 +00002 * Copyright 2009-2012 Freescale Semiconductor, Inc.
Poonam Aggrwalf8027f62009-09-02 19:40:36 +05303 *
Stefan Roesea47a12b2010-04-15 16:07:28 +02004 * This file is derived from arch/powerpc/cpu/mpc85xx/cpu.c and
5 * arch/powerpc/cpu/mpc86xx/cpu.c. Basically this file contains
Peter Tyser8d1f2682010-04-12 22:28:09 -05006 * cpu specific common code for 85xx/86xx processors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Poonam Aggrwalf8027f62009-09-02 19:40:36 +05308 */
9
10#include <common.h>
11#include <libfdt.h>
12#include <fdt_support.h>
Kumar Gala8f3a7fa2010-06-09 22:33:53 -050013#include <asm/mp.h>
Kumar Galaa09b9b62010-12-30 12:09:53 -060014#include <asm/fsl_serdes.h>
Andy Fleming865ff852011-04-13 00:37:12 -050015#include <phy.h>
Ramneek Mehresh72f49802011-06-08 17:14:20 +053016#include <hwconfig.h>
Kumar Gala57567362011-07-29 08:51:26 -050017
ramneek mehreshf1810d82013-10-18 17:40:17 +053018#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
19#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
20#endif
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053021
Kumar Gala8f3a7fa2010-06-09 22:33:53 -050022#if defined(CONFIG_MP) && (defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx))
Kumar Gala11beefa2010-06-09 13:14:28 -050023static int ft_del_cpuhandle(void *blob, int cpuhandle)
24{
25 int off, ret = -FDT_ERR_NOTFOUND;
26
27 /* if we find a match, we'll delete at it which point the offsets are
28 * invalid so we start over from the beginning
29 */
30 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
31 &cpuhandle, 4);
32 while (off != -FDT_ERR_NOTFOUND) {
33 fdt_delprop(blob, off, "cpu-handle");
34 ret = 1;
35 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
36 &cpuhandle, 4);
37 }
38
39 return ret;
40}
41
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053042void ft_fixup_num_cores(void *blob) {
43 int off, num_cores, del_cores;
44
45 del_cores = 0;
46 num_cores = cpu_numcores();
47
48 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
49 while (off != -FDT_ERR_NOTFOUND) {
50 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
York Sun709389b2012-08-17 08:20:26 +000051 u32 phys_cpu_id = thread_to_core(*reg);
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053052
York Sun709389b2012-08-17 08:20:26 +000053 if (!is_core_valid(phys_cpu_id) || is_core_disabled(phys_cpu_id)) {
Kumar Gala11beefa2010-06-09 13:14:28 -050054 int ph = fdt_get_phandle(blob, off);
55
56 /* Delete the cpu node once there are no cpu handles */
57 if (-FDT_ERR_NOTFOUND == ft_del_cpuhandle(blob, ph)) {
58 fdt_del_node(blob, off);
59 del_cores++;
60 }
61 /* either we deleted some cpu handles or the cpu node
62 * so we reset the offset back to the start since we
63 * can't trust the offsets anymore
64 */
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053065 off = -1;
66 }
67 off = fdt_node_offset_by_prop_value(blob, off,
68 "device_type", "cpu", 4);
69 }
70 debug ("%x core system found\n", num_cores);
71 debug ("deleted %d extra core entry entries from device tree\n",
72 del_cores);
73}
Kim Phillips5d0c3b52010-05-28 08:00:14 +000074#endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */
75
ramneek mehresh79f49122012-02-10 00:36:43 +000076#if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
Ramneek Mehresh4765fb72011-11-08 13:09:20 +053077static int fdt_fixup_usb_mode_phy_type(void *blob, const char *mode,
78 const char *phy_type, int start_offset)
Kim Phillips5d0c3b52010-05-28 08:00:14 +000079{
ramneek mehresh79f49122012-02-10 00:36:43 +000080 const char *compat_dr = "fsl-usb2-dr";
81 const char *compat_mph = "fsl-usb2-mph";
Kim Phillips5d0c3b52010-05-28 08:00:14 +000082 const char *prop_mode = "dr_mode";
83 const char *prop_type = "phy_type";
ramneek mehresh79f49122012-02-10 00:36:43 +000084 const char *node_type = NULL;
Kim Phillips5d0c3b52010-05-28 08:00:14 +000085 int node_offset;
86 int err;
87
Ramneek Mehresh72f49802011-06-08 17:14:20 +053088 node_offset = fdt_node_offset_by_compatible(blob,
ramneek mehresh79f49122012-02-10 00:36:43 +000089 start_offset, compat_mph);
Kim Phillips5d0c3b52010-05-28 08:00:14 +000090 if (node_offset < 0) {
ramneek mehresh79f49122012-02-10 00:36:43 +000091 node_offset = fdt_node_offset_by_compatible(blob,
92 start_offset, compat_dr);
93 if (node_offset < 0) {
94 printf("WARNING: could not find compatible"
95 " node %s or %s: %s.\n", compat_mph,
96 compat_dr, fdt_strerror(node_offset));
97 return -1;
98 } else
99 node_type = compat_dr;
100 } else
101 node_type = compat_mph;
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000102
103 if (mode) {
104 err = fdt_setprop(blob, node_offset, prop_mode, mode,
105 strlen(mode) + 1);
106 if (err < 0)
107 printf("WARNING: could not set %s for %s: %s.\n",
ramneek mehresh79f49122012-02-10 00:36:43 +0000108 prop_mode, node_type, fdt_strerror(err));
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000109 }
110
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530111 if (phy_type) {
112 err = fdt_setprop(blob, node_offset, prop_type, phy_type,
113 strlen(phy_type) + 1);
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000114 if (err < 0)
115 printf("WARNING: could not set %s for %s: %s.\n",
ramneek mehresh79f49122012-02-10 00:36:43 +0000116 prop_type, node_type, fdt_strerror(err));
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000117 }
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530118
Ramneek Mehresh4765fb72011-11-08 13:09:20 +0530119 return node_offset;
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530120}
121
122void fdt_fixup_dr_usb(void *blob, bd_t *bd)
123{
124 const char *modes[] = { "host", "peripheral", "otg" };
Ramneek Mehresh4765fb72011-11-08 13:09:20 +0530125 const char *phys[] = { "ulpi", "utmi" };
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000126 const char *dr_mode_type = NULL;
127 const char *dr_phy_type = NULL;
Ramneek Mehresh4765fb72011-11-08 13:09:20 +0530128 int usb_mode_off = -1;
129 int usb_phy_off = -1;
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530130 char str[5];
131 int i, j;
132
ramneek mehreshf1810d82013-10-18 17:40:17 +0530133 for (i = 1; i <= CONFIG_USB_MAX_CONTROLLER_COUNT; i++) {
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530134 int mode_idx = -1, phy_idx = -1;
ramneek mehresh5a529772012-02-06 19:17:29 +0000135 snprintf(str, 5, "%s%d", "usb", i);
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530136 if (hwconfig(str)) {
ramneek mehresh5a529772012-02-06 19:17:29 +0000137 for (j = 0; j < ARRAY_SIZE(modes); j++) {
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530138 if (hwconfig_subarg_cmp(str, "dr_mode",
139 modes[j])) {
140 mode_idx = j;
141 break;
142 }
143 }
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000144
ramneek mehresh5a529772012-02-06 19:17:29 +0000145 for (j = 0; j < ARRAY_SIZE(phys); j++) {
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530146 if (hwconfig_subarg_cmp(str, "phy_type",
147 phys[j])) {
148 phy_idx = j;
149 break;
150 }
151 }
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000152
ramneek mehreshdda48e82013-02-17 18:23:32 +0000153 if (mode_idx < 0 || phy_idx < 0) {
154 puts("ERROR: wrong usb mode/phy defined!!\n");
155 return;
156 }
157
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000158 dr_mode_type = modes[mode_idx];
159 dr_phy_type = phys[phy_idx];
160
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000161 if (mode_idx < 0 && phy_idx < 0) {
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530162 printf("WARNING: invalid phy or mode\n");
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000163 return;
164 }
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530165 }
ramneek mehresh9c889ec2012-09-18 22:28:51 +0000166
167 usb_mode_off = fdt_fixup_usb_mode_phy_type(blob,
168 dr_mode_type, NULL, usb_mode_off);
169
170 if (usb_mode_off < 0)
171 return;
172
173 usb_phy_off = fdt_fixup_usb_mode_phy_type(blob,
174 NULL, dr_phy_type, usb_phy_off);
175
176 if (usb_phy_off < 0)
177 return;
Ramneek Mehresh72f49802011-06-08 17:14:20 +0530178 }
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000179}
ramneek mehresh79f49122012-02-10 00:36:43 +0000180#endif /* defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB) */
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000181
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000182/*
183 * update crypto node properties to a specified revision of the SEC
Kim Phillips929a2132010-06-01 12:24:27 -0500184 * called with sec_rev == 0 if not on an E processor
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000185 */
Kim Phillips929a2132010-06-01 12:24:27 -0500186#if CONFIG_SYS_FSL_SEC_COMPAT == 2 /* SEC 2.x/3.x */
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000187void fdt_fixup_crypto_node(void *blob, int sec_rev)
188{
Kim Phillips345d6ef2012-10-31 11:09:26 +0000189 static const struct sec_rev_prop {
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000190 u32 sec_rev;
191 u32 num_channels;
192 u32 channel_fifo_len;
193 u32 exec_units_mask;
194 u32 descriptor_types_mask;
195 } sec_rev_prop_list [] = {
196 { 0x0200, 4, 24, 0x07e, 0x01010ebf }, /* SEC 2.0 */
197 { 0x0201, 4, 24, 0x0fe, 0x012b0ebf }, /* SEC 2.1 */
198 { 0x0202, 1, 24, 0x04c, 0x0122003f }, /* SEC 2.2 */
199 { 0x0204, 4, 24, 0x07e, 0x012b0ebf }, /* SEC 2.4 */
200 { 0x0300, 4, 24, 0x9fe, 0x03ab0ebf }, /* SEC 3.0 */
201 { 0x0301, 4, 24, 0xbfe, 0x03ab0ebf }, /* SEC 3.1 */
202 { 0x0303, 4, 24, 0x97c, 0x03a30abf }, /* SEC 3.3 */
203 };
Kim Phillips345d6ef2012-10-31 11:09:26 +0000204 static char compat_strlist[ARRAY_SIZE(sec_rev_prop_list) *
205 sizeof("fsl,secX.Y")];
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000206 int crypto_node, sec_idx, err;
207 char *p;
208 u32 val;
209
210 /* locate crypto node based on lowest common compatible */
211 crypto_node = fdt_node_offset_by_compatible(blob, -1, "fsl,sec2.0");
212 if (crypto_node == -FDT_ERR_NOTFOUND)
213 return;
214
215 /* delete it if not on an E-processor */
216 if (crypto_node > 0 && !sec_rev) {
217 fdt_del_node(blob, crypto_node);
218 return;
219 }
220
221 /* else we got called for possible uprev */
222 for (sec_idx = 0; sec_idx < ARRAY_SIZE(sec_rev_prop_list); sec_idx++)
223 if (sec_rev_prop_list[sec_idx].sec_rev == sec_rev)
224 break;
225
226 if (sec_idx == ARRAY_SIZE(sec_rev_prop_list)) {
227 puts("warning: unknown SEC revision number\n");
228 return;
229 }
230
231 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].num_channels);
232 err = fdt_setprop(blob, crypto_node, "fsl,num-channels", &val, 4);
233 if (err < 0)
234 printf("WARNING: could not set crypto property: %s\n",
235 fdt_strerror(err));
236
237 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].descriptor_types_mask);
238 err = fdt_setprop(blob, crypto_node, "fsl,descriptor-types-mask", &val, 4);
239 if (err < 0)
240 printf("WARNING: could not set crypto property: %s\n",
241 fdt_strerror(err));
242
243 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].exec_units_mask);
244 err = fdt_setprop(blob, crypto_node, "fsl,exec-units-mask", &val, 4);
245 if (err < 0)
246 printf("WARNING: could not set crypto property: %s\n",
247 fdt_strerror(err));
248
249 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].channel_fifo_len);
250 err = fdt_setprop(blob, crypto_node, "fsl,channel-fifo-len", &val, 4);
251 if (err < 0)
252 printf("WARNING: could not set crypto property: %s\n",
253 fdt_strerror(err));
254
255 val = 0;
256 while (sec_idx >= 0) {
257 p = compat_strlist + val;
258 val += sprintf(p, "fsl,sec%d.%d",
259 (sec_rev_prop_list[sec_idx].sec_rev & 0xff00) >> 8,
260 sec_rev_prop_list[sec_idx].sec_rev & 0x00ff) + 1;
261 sec_idx--;
262 }
263 err = fdt_setprop(blob, crypto_node, "compatible", &compat_strlist, val);
264 if (err < 0)
265 printf("WARNING: could not set crypto property: %s\n",
266 fdt_strerror(err));
267}
Kim Phillips22f292c2010-06-01 12:24:34 -0500268#elif CONFIG_SYS_FSL_SEC_COMPAT >= 4 /* SEC4 */
Vakul Garg5e95e2d2013-01-23 22:52:31 +0000269static u8 caam_get_era(void)
270{
271 static const struct {
272 u16 ip_id;
273 u8 maj_rev;
274 u8 era;
275 } caam_eras[] = {
276 {0x0A10, 1, 1},
277 {0x0A10, 2, 2},
278 {0x0A12, 1, 3},
279 {0x0A14, 1, 3},
280 {0x0A14, 2, 4},
281 {0x0A16, 1, 4},
282 {0x0A10, 3, 4},
283 {0x0A11, 1, 4},
284 {0x0A18, 1, 4},
285 {0x0A11, 2, 5},
286 {0x0A12, 2, 5},
287 {0x0A13, 1, 5},
288 {0x0A1C, 1, 5}
289 };
290
291 ccsr_sec_t __iomem *sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR;
292 u32 secvid_ms = in_be32(&sec->secvid_ms);
293 u32 ccbvid = in_be32(&sec->ccbvid);
294 u16 ip_id = (secvid_ms & SEC_SECVID_MS_IPID_MASK) >>
295 SEC_SECVID_MS_IPID_SHIFT;
296 u8 maj_rev = (secvid_ms & SEC_SECVID_MS_MAJ_REV_MASK) >>
297 SEC_SECVID_MS_MAJ_REV_SHIFT;
298 u8 era = (ccbvid & SEC_CCBVID_ERA_MASK) >> SEC_CCBVID_ERA_SHIFT;
299
300 int i;
301
302 if (era) /* This is '0' prior to CAAM ERA-6 */
303 return era;
304
305 for (i = 0; i < ARRAY_SIZE(caam_eras); i++)
306 if (caam_eras[i].ip_id == ip_id &&
307 caam_eras[i].maj_rev == maj_rev)
308 return caam_eras[i].era;
309
310 return 0;
311}
312
313static void fdt_fixup_crypto_era(void *blob, u32 era)
314{
315 int err;
316 int crypto_node;
317
318 crypto_node = fdt_path_offset(blob, "crypto");
319 if (crypto_node < 0) {
320 printf("WARNING: Missing crypto node\n");
321 return;
322 }
323
324 err = fdt_setprop(blob, crypto_node, "fsl,sec-era", &era,
325 sizeof(era));
326 if (err < 0) {
327 printf("ERROR: could not set fsl,sec-era property: %s\n",
328 fdt_strerror(err));
329 }
330}
331
Kim Phillips22f292c2010-06-01 12:24:34 -0500332void fdt_fixup_crypto_node(void *blob, int sec_rev)
333{
Vakul Garg5e95e2d2013-01-23 22:52:31 +0000334 u8 era;
335
336 if (!sec_rev) {
Kim Phillips22f292c2010-06-01 12:24:34 -0500337 fdt_del_node_and_alias(blob, "crypto");
Vakul Garg5e95e2d2013-01-23 22:52:31 +0000338 return;
339 }
340
341 /* Add SEC ERA information in compatible */
342 era = caam_get_era();
343 if (era) {
344 fdt_fixup_crypto_era(blob, era);
345 } else {
346 printf("WARNING: Unable to get ERA for CAAM rev: %d\n",
347 sec_rev);
348 }
Kim Phillips22f292c2010-06-01 12:24:34 -0500349}
Kim Phillips929a2132010-06-01 12:24:27 -0500350#endif
Kumar Galaa1964ea2010-09-30 09:15:03 -0500351
Andy Fleming865ff852011-04-13 00:37:12 -0500352int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc)
Kumar Galaa1964ea2010-09-30 09:15:03 -0500353{
Kumar Galaa1964ea2010-09-30 09:15:03 -0500354 return fdt_setprop_string(blob, offset, "phy-connection-type",
Andy Fleming865ff852011-04-13 00:37:12 -0500355 phy_string_for_interface(phyc));
Kumar Galaa1964ea2010-09-30 09:15:03 -0500356}
Kumar Galaa09b9b62010-12-30 12:09:53 -0600357
358#ifdef CONFIG_SYS_SRIO
Kumar Gala9c42ef62011-10-14 00:03:58 -0500359static inline void ft_disable_srio_port(void *blob, int srio_off, int port)
360{
361 int off = fdt_node_offset_by_prop_value(blob, srio_off,
362 "cell-index", &port, 4);
363 if (off >= 0) {
364 off = fdt_setprop_string(blob, off, "status", "disabled");
365 if (off > 0)
366 printf("WARNING unable to set status for fsl,srio "
367 "port %d: %s\n", port, fdt_strerror(off));
368 }
369}
370
371static inline void ft_disable_rman(void *blob)
372{
373 int off = fdt_node_offset_by_compatible(blob, -1, "fsl,rman");
374 if (off >= 0) {
375 off = fdt_setprop_string(blob, off, "status", "disabled");
376 if (off > 0)
377 printf("WARNING unable to set status for fsl,rman %s\n",
378 fdt_strerror(off));
379 }
380}
381
382static inline void ft_disable_rmu(void *blob)
383{
384 int off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio-rmu");
385 if (off >= 0) {
386 off = fdt_setprop_string(blob, off, "status", "disabled");
387 if (off > 0)
388 printf("WARNING unable to set status for "
389 "fsl,srio-rmu %s\n", fdt_strerror(off));
390 }
391}
392
Kumar Galaa09b9b62010-12-30 12:09:53 -0600393void ft_srio_setup(void *blob)
394{
Kumar Gala9c42ef62011-10-14 00:03:58 -0500395 int srio1_used = 0, srio2_used = 0;
396 int srio_off;
397
398 /* search for srio node, if doesn't exist just return - nothing todo */
399 srio_off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio");
400 if (srio_off < 0)
401 return ;
402
Kumar Galaa09b9b62010-12-30 12:09:53 -0600403#ifdef CONFIG_SRIO1
Kumar Gala9c42ef62011-10-14 00:03:58 -0500404 if (is_serdes_configured(SRIO1))
405 srio1_used = 1;
Kumar Galaa09b9b62010-12-30 12:09:53 -0600406#endif
407#ifdef CONFIG_SRIO2
Kumar Gala9c42ef62011-10-14 00:03:58 -0500408 if (is_serdes_configured(SRIO2))
409 srio2_used = 1;
Kumar Galaa09b9b62010-12-30 12:09:53 -0600410#endif
Kumar Gala9c42ef62011-10-14 00:03:58 -0500411
412 /* mark port1 disabled */
413 if (!srio1_used)
414 ft_disable_srio_port(blob, srio_off, 1);
415
416 /* mark port2 disabled */
417 if (!srio2_used)
418 ft_disable_srio_port(blob, srio_off, 2);
419
420 /* if both ports not used, disable controller, rmu and rman */
421 if (!srio1_used && !srio2_used) {
422 fdt_setprop_string(blob, srio_off, "status", "disabled");
423
424 ft_disable_rman(blob);
425 ft_disable_rmu(blob);
426 }
Kumar Galaa09b9b62010-12-30 12:09:53 -0600427}
428#endif