blob: 1c63f93f4d45c46c07ea14de0fab61ff141a9e50 [file] [log] [blame]
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +05301/*
ramneek mehresh67b5c992014-08-22 10:56:05 +05302 * Copyright 2009-2014 Freescale Semiconductor, Inc.
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +05303 *
Stefan Roese88fbf932010-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 Tyser29514c72010-04-12 22:28:09 -05006 * cpu specific common code for 85xx/86xx processors.
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +05308 */
9
10#include <common.h>
11#include <libfdt.h>
12#include <fdt_support.h>
Kumar Gala819a4792010-06-09 22:33:53 -050013#include <asm/mp.h>
Kumar Gala8975d7a2010-12-30 12:09:53 -060014#include <asm/fsl_serdes.h>
Andy Fleming7832a462011-04-13 00:37:12 -050015#include <phy.h>
Ramneek Mehresh7f548e02011-06-08 17:14:20 +053016#include <hwconfig.h>
Kumar Gala3725f552011-07-29 08:51:26 -050017
ramneek mehreshd04f8fe2013-10-18 17:40:17 +053018#ifndef CONFIG_USB_MAX_CONTROLLER_COUNT
19#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
20#endif
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053021
Kumar Gala819a4792010-06-09 22:33:53 -050022#if defined(CONFIG_MP) && (defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx))
Kumar Galaa24926d2010-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 Aggrwal4ca72ae2009-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 Sun2adf2ce2012-08-17 08:20:26 +000051 u32 phys_cpu_id = thread_to_core(*reg);
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053052
York Sun2adf2ce2012-08-17 08:20:26 +000053 if (!is_core_valid(phys_cpu_id) || is_core_disabled(phys_cpu_id)) {
Kumar Galaa24926d2010-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 Aggrwal4ca72ae2009-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 Phillips6578bae2010-05-28 08:00:14 +000074#endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */
75
Kim Phillips6578bae2010-05-28 08:00:14 +000076/*
77 * update crypto node properties to a specified revision of the SEC
Kim Phillipsdef125f2010-06-01 12:24:27 -050078 * called with sec_rev == 0 if not on an E processor
Kim Phillips6578bae2010-05-28 08:00:14 +000079 */
Kim Phillipsdef125f2010-06-01 12:24:27 -050080#if CONFIG_SYS_FSL_SEC_COMPAT == 2 /* SEC 2.x/3.x */
Kim Phillips6578bae2010-05-28 08:00:14 +000081void fdt_fixup_crypto_node(void *blob, int sec_rev)
82{
Kim Phillips82eac672012-10-31 11:09:26 +000083 static const struct sec_rev_prop {
Kim Phillips6578bae2010-05-28 08:00:14 +000084 u32 sec_rev;
85 u32 num_channels;
86 u32 channel_fifo_len;
87 u32 exec_units_mask;
88 u32 descriptor_types_mask;
89 } sec_rev_prop_list [] = {
90 { 0x0200, 4, 24, 0x07e, 0x01010ebf }, /* SEC 2.0 */
91 { 0x0201, 4, 24, 0x0fe, 0x012b0ebf }, /* SEC 2.1 */
92 { 0x0202, 1, 24, 0x04c, 0x0122003f }, /* SEC 2.2 */
93 { 0x0204, 4, 24, 0x07e, 0x012b0ebf }, /* SEC 2.4 */
94 { 0x0300, 4, 24, 0x9fe, 0x03ab0ebf }, /* SEC 3.0 */
95 { 0x0301, 4, 24, 0xbfe, 0x03ab0ebf }, /* SEC 3.1 */
96 { 0x0303, 4, 24, 0x97c, 0x03a30abf }, /* SEC 3.3 */
97 };
Kim Phillips82eac672012-10-31 11:09:26 +000098 static char compat_strlist[ARRAY_SIZE(sec_rev_prop_list) *
99 sizeof("fsl,secX.Y")];
Kim Phillips6578bae2010-05-28 08:00:14 +0000100 int crypto_node, sec_idx, err;
101 char *p;
102 u32 val;
103
104 /* locate crypto node based on lowest common compatible */
105 crypto_node = fdt_node_offset_by_compatible(blob, -1, "fsl,sec2.0");
106 if (crypto_node == -FDT_ERR_NOTFOUND)
107 return;
108
109 /* delete it if not on an E-processor */
110 if (crypto_node > 0 && !sec_rev) {
111 fdt_del_node(blob, crypto_node);
112 return;
113 }
114
115 /* else we got called for possible uprev */
116 for (sec_idx = 0; sec_idx < ARRAY_SIZE(sec_rev_prop_list); sec_idx++)
117 if (sec_rev_prop_list[sec_idx].sec_rev == sec_rev)
118 break;
119
120 if (sec_idx == ARRAY_SIZE(sec_rev_prop_list)) {
121 puts("warning: unknown SEC revision number\n");
122 return;
123 }
124
125 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].num_channels);
126 err = fdt_setprop(blob, crypto_node, "fsl,num-channels", &val, 4);
127 if (err < 0)
128 printf("WARNING: could not set crypto property: %s\n",
129 fdt_strerror(err));
130
131 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].descriptor_types_mask);
132 err = fdt_setprop(blob, crypto_node, "fsl,descriptor-types-mask", &val, 4);
133 if (err < 0)
134 printf("WARNING: could not set crypto property: %s\n",
135 fdt_strerror(err));
136
137 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].exec_units_mask);
138 err = fdt_setprop(blob, crypto_node, "fsl,exec-units-mask", &val, 4);
139 if (err < 0)
140 printf("WARNING: could not set crypto property: %s\n",
141 fdt_strerror(err));
142
143 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].channel_fifo_len);
144 err = fdt_setprop(blob, crypto_node, "fsl,channel-fifo-len", &val, 4);
145 if (err < 0)
146 printf("WARNING: could not set crypto property: %s\n",
147 fdt_strerror(err));
148
149 val = 0;
150 while (sec_idx >= 0) {
151 p = compat_strlist + val;
152 val += sprintf(p, "fsl,sec%d.%d",
153 (sec_rev_prop_list[sec_idx].sec_rev & 0xff00) >> 8,
154 sec_rev_prop_list[sec_idx].sec_rev & 0x00ff) + 1;
155 sec_idx--;
156 }
157 err = fdt_setprop(blob, crypto_node, "compatible", &compat_strlist, val);
158 if (err < 0)
159 printf("WARNING: could not set crypto property: %s\n",
160 fdt_strerror(err));
161}
Kim Phillips1b625492010-06-01 12:24:34 -0500162#elif CONFIG_SYS_FSL_SEC_COMPAT >= 4 /* SEC4 */
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000163static u8 caam_get_era(void)
164{
165 static const struct {
166 u16 ip_id;
167 u8 maj_rev;
168 u8 era;
169 } caam_eras[] = {
170 {0x0A10, 1, 1},
171 {0x0A10, 2, 2},
172 {0x0A12, 1, 3},
173 {0x0A14, 1, 3},
174 {0x0A14, 2, 4},
175 {0x0A16, 1, 4},
176 {0x0A10, 3, 4},
177 {0x0A11, 1, 4},
178 {0x0A18, 1, 4},
179 {0x0A11, 2, 5},
180 {0x0A12, 2, 5},
181 {0x0A13, 1, 5},
182 {0x0A1C, 1, 5}
183 };
184
185 ccsr_sec_t __iomem *sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR;
Ruchika Guptabb7143b2014-09-09 11:50:31 +0530186 u32 secvid_ms = sec_in32(&sec->secvid_ms);
187 u32 ccbvid = sec_in32(&sec->ccbvid);
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000188 u16 ip_id = (secvid_ms & SEC_SECVID_MS_IPID_MASK) >>
189 SEC_SECVID_MS_IPID_SHIFT;
190 u8 maj_rev = (secvid_ms & SEC_SECVID_MS_MAJ_REV_MASK) >>
191 SEC_SECVID_MS_MAJ_REV_SHIFT;
192 u8 era = (ccbvid & SEC_CCBVID_ERA_MASK) >> SEC_CCBVID_ERA_SHIFT;
193
194 int i;
195
196 if (era) /* This is '0' prior to CAAM ERA-6 */
197 return era;
198
199 for (i = 0; i < ARRAY_SIZE(caam_eras); i++)
200 if (caam_eras[i].ip_id == ip_id &&
201 caam_eras[i].maj_rev == maj_rev)
202 return caam_eras[i].era;
203
204 return 0;
205}
206
207static void fdt_fixup_crypto_era(void *blob, u32 era)
208{
209 int err;
210 int crypto_node;
211
212 crypto_node = fdt_path_offset(blob, "crypto");
213 if (crypto_node < 0) {
214 printf("WARNING: Missing crypto node\n");
215 return;
216 }
217
218 err = fdt_setprop(blob, crypto_node, "fsl,sec-era", &era,
219 sizeof(era));
220 if (err < 0) {
221 printf("ERROR: could not set fsl,sec-era property: %s\n",
222 fdt_strerror(err));
223 }
224}
225
Kim Phillips1b625492010-06-01 12:24:34 -0500226void fdt_fixup_crypto_node(void *blob, int sec_rev)
227{
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000228 u8 era;
229
230 if (!sec_rev) {
Kim Phillips1b625492010-06-01 12:24:34 -0500231 fdt_del_node_and_alias(blob, "crypto");
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000232 return;
233 }
234
235 /* Add SEC ERA information in compatible */
236 era = caam_get_era();
237 if (era) {
238 fdt_fixup_crypto_era(blob, era);
239 } else {
240 printf("WARNING: Unable to get ERA for CAAM rev: %d\n",
241 sec_rev);
242 }
Kim Phillips1b625492010-06-01 12:24:34 -0500243}
Kim Phillipsdef125f2010-06-01 12:24:27 -0500244#endif
Kumar Gala6bc9fd52010-09-30 09:15:03 -0500245
Andy Fleming7832a462011-04-13 00:37:12 -0500246int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc)
Kumar Gala6bc9fd52010-09-30 09:15:03 -0500247{
Kumar Gala6bc9fd52010-09-30 09:15:03 -0500248 return fdt_setprop_string(blob, offset, "phy-connection-type",
Andy Fleming7832a462011-04-13 00:37:12 -0500249 phy_string_for_interface(phyc));
Kumar Gala6bc9fd52010-09-30 09:15:03 -0500250}
Kumar Gala8975d7a2010-12-30 12:09:53 -0600251
252#ifdef CONFIG_SYS_SRIO
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500253static inline void ft_disable_srio_port(void *blob, int srio_off, int port)
254{
255 int off = fdt_node_offset_by_prop_value(blob, srio_off,
256 "cell-index", &port, 4);
257 if (off >= 0) {
258 off = fdt_setprop_string(blob, off, "status", "disabled");
259 if (off > 0)
260 printf("WARNING unable to set status for fsl,srio "
261 "port %d: %s\n", port, fdt_strerror(off));
262 }
263}
264
265static inline void ft_disable_rman(void *blob)
266{
267 int off = fdt_node_offset_by_compatible(blob, -1, "fsl,rman");
268 if (off >= 0) {
269 off = fdt_setprop_string(blob, off, "status", "disabled");
270 if (off > 0)
271 printf("WARNING unable to set status for fsl,rman %s\n",
272 fdt_strerror(off));
273 }
274}
275
276static inline void ft_disable_rmu(void *blob)
277{
278 int off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio-rmu");
279 if (off >= 0) {
280 off = fdt_setprop_string(blob, off, "status", "disabled");
281 if (off > 0)
282 printf("WARNING unable to set status for "
283 "fsl,srio-rmu %s\n", fdt_strerror(off));
284 }
285}
286
Kumar Gala8975d7a2010-12-30 12:09:53 -0600287void ft_srio_setup(void *blob)
288{
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500289 int srio1_used = 0, srio2_used = 0;
290 int srio_off;
291
292 /* search for srio node, if doesn't exist just return - nothing todo */
293 srio_off = fdt_node_offset_by_compatible(blob, -1, "fsl,srio");
294 if (srio_off < 0)
295 return ;
296
Kumar Gala8975d7a2010-12-30 12:09:53 -0600297#ifdef CONFIG_SRIO1
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500298 if (is_serdes_configured(SRIO1))
299 srio1_used = 1;
Kumar Gala8975d7a2010-12-30 12:09:53 -0600300#endif
301#ifdef CONFIG_SRIO2
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500302 if (is_serdes_configured(SRIO2))
303 srio2_used = 1;
Kumar Gala8975d7a2010-12-30 12:09:53 -0600304#endif
Kumar Gala0e7ccae2011-10-14 00:03:58 -0500305
306 /* mark port1 disabled */
307 if (!srio1_used)
308 ft_disable_srio_port(blob, srio_off, 1);
309
310 /* mark port2 disabled */
311 if (!srio2_used)
312 ft_disable_srio_port(blob, srio_off, 2);
313
314 /* if both ports not used, disable controller, rmu and rman */
315 if (!srio1_used && !srio2_used) {
316 fdt_setprop_string(blob, srio_off, "status", "disabled");
317
318 ft_disable_rman(blob);
319 ft_disable_rmu(blob);
320 }
Kumar Gala8975d7a2010-12-30 12:09:53 -0600321}
322#endif