blob: c9956b639837456f09af004d3bcb23b4a1176d53 [file] [log] [blame]
Poonam Aggrwalf8027f62009-09-02 19:40:36 +05301/*
Kim Phillips5d0c3b52010-05-28 08:00:14 +00002 * Copyright 2009-2010 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.
Poonam Aggrwalf8027f62009-09-02 19:40:36 +05307 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <libfdt.h>
28#include <fdt_support.h>
29
Kim Phillips5d0c3b52010-05-28 08:00:14 +000030#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
Kumar Gala11beefa2010-06-09 13:14:28 -050031static int ft_del_cpuhandle(void *blob, int cpuhandle)
32{
33 int off, ret = -FDT_ERR_NOTFOUND;
34
35 /* if we find a match, we'll delete at it which point the offsets are
36 * invalid so we start over from the beginning
37 */
38 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
39 &cpuhandle, 4);
40 while (off != -FDT_ERR_NOTFOUND) {
41 fdt_delprop(blob, off, "cpu-handle");
42 ret = 1;
43 off = fdt_node_offset_by_prop_value(blob, -1, "cpu-handle",
44 &cpuhandle, 4);
45 }
46
47 return ret;
48}
49
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053050void ft_fixup_num_cores(void *blob) {
51 int off, num_cores, del_cores;
52
53 del_cores = 0;
54 num_cores = cpu_numcores();
55
56 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
57 while (off != -FDT_ERR_NOTFOUND) {
58 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
59
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053060 if (*reg > num_cores-1) {
Kumar Gala11beefa2010-06-09 13:14:28 -050061 int ph = fdt_get_phandle(blob, off);
62
63 /* Delete the cpu node once there are no cpu handles */
64 if (-FDT_ERR_NOTFOUND == ft_del_cpuhandle(blob, ph)) {
65 fdt_del_node(blob, off);
66 del_cores++;
67 }
68 /* either we deleted some cpu handles or the cpu node
69 * so we reset the offset back to the start since we
70 * can't trust the offsets anymore
71 */
Poonam Aggrwalf8027f62009-09-02 19:40:36 +053072 off = -1;
73 }
74 off = fdt_node_offset_by_prop_value(blob, off,
75 "device_type", "cpu", 4);
76 }
77 debug ("%x core system found\n", num_cores);
78 debug ("deleted %d extra core entry entries from device tree\n",
79 del_cores);
80}
Kim Phillips5d0c3b52010-05-28 08:00:14 +000081#endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */
82
83#ifdef CONFIG_HAS_FSL_DR_USB
84void fdt_fixup_dr_usb(void *blob, bd_t *bd)
85{
86 char *mode;
87 char *type;
88 const char *compat = "fsl-usb2-dr";
89 const char *prop_mode = "dr_mode";
90 const char *prop_type = "phy_type";
91 int node_offset;
92 int err;
93
94 mode = getenv("usb_dr_mode");
95 type = getenv("usb_phy_type");
96 if (!mode && !type)
97 return;
98
99 node_offset = fdt_node_offset_by_compatible(blob, 0, compat);
100 if (node_offset < 0) {
101 printf("WARNING: could not find compatible node %s: %s.\n",
102 compat, fdt_strerror(node_offset));
103 return;
104 }
105
106 if (mode) {
107 err = fdt_setprop(blob, node_offset, prop_mode, mode,
108 strlen(mode) + 1);
109 if (err < 0)
110 printf("WARNING: could not set %s for %s: %s.\n",
111 prop_mode, compat, fdt_strerror(err));
112 }
113
114 if (type) {
115 err = fdt_setprop(blob, node_offset, prop_type, type,
116 strlen(type) + 1);
117 if (err < 0)
118 printf("WARNING: could not set %s for %s: %s.\n",
119 prop_type, compat, fdt_strerror(err));
120 }
121}
122#endif /* CONFIG_HAS_FSL_DR_USB */
123
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000124/*
125 * update crypto node properties to a specified revision of the SEC
Kim Phillips929a2132010-06-01 12:24:27 -0500126 * called with sec_rev == 0 if not on an E processor
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000127 */
Kim Phillips929a2132010-06-01 12:24:27 -0500128#if CONFIG_SYS_FSL_SEC_COMPAT == 2 /* SEC 2.x/3.x */
Kim Phillips5d0c3b52010-05-28 08:00:14 +0000129void fdt_fixup_crypto_node(void *blob, int sec_rev)
130{
131 const struct sec_rev_prop {
132 u32 sec_rev;
133 u32 num_channels;
134 u32 channel_fifo_len;
135 u32 exec_units_mask;
136 u32 descriptor_types_mask;
137 } sec_rev_prop_list [] = {
138 { 0x0200, 4, 24, 0x07e, 0x01010ebf }, /* SEC 2.0 */
139 { 0x0201, 4, 24, 0x0fe, 0x012b0ebf }, /* SEC 2.1 */
140 { 0x0202, 1, 24, 0x04c, 0x0122003f }, /* SEC 2.2 */
141 { 0x0204, 4, 24, 0x07e, 0x012b0ebf }, /* SEC 2.4 */
142 { 0x0300, 4, 24, 0x9fe, 0x03ab0ebf }, /* SEC 3.0 */
143 { 0x0301, 4, 24, 0xbfe, 0x03ab0ebf }, /* SEC 3.1 */
144 { 0x0303, 4, 24, 0x97c, 0x03a30abf }, /* SEC 3.3 */
145 };
146 char compat_strlist[ARRAY_SIZE(sec_rev_prop_list) *
147 sizeof("fsl,secX.Y")];
148 int crypto_node, sec_idx, err;
149 char *p;
150 u32 val;
151
152 /* locate crypto node based on lowest common compatible */
153 crypto_node = fdt_node_offset_by_compatible(blob, -1, "fsl,sec2.0");
154 if (crypto_node == -FDT_ERR_NOTFOUND)
155 return;
156
157 /* delete it if not on an E-processor */
158 if (crypto_node > 0 && !sec_rev) {
159 fdt_del_node(blob, crypto_node);
160 return;
161 }
162
163 /* else we got called for possible uprev */
164 for (sec_idx = 0; sec_idx < ARRAY_SIZE(sec_rev_prop_list); sec_idx++)
165 if (sec_rev_prop_list[sec_idx].sec_rev == sec_rev)
166 break;
167
168 if (sec_idx == ARRAY_SIZE(sec_rev_prop_list)) {
169 puts("warning: unknown SEC revision number\n");
170 return;
171 }
172
173 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].num_channels);
174 err = fdt_setprop(blob, crypto_node, "fsl,num-channels", &val, 4);
175 if (err < 0)
176 printf("WARNING: could not set crypto property: %s\n",
177 fdt_strerror(err));
178
179 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].descriptor_types_mask);
180 err = fdt_setprop(blob, crypto_node, "fsl,descriptor-types-mask", &val, 4);
181 if (err < 0)
182 printf("WARNING: could not set crypto property: %s\n",
183 fdt_strerror(err));
184
185 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].exec_units_mask);
186 err = fdt_setprop(blob, crypto_node, "fsl,exec-units-mask", &val, 4);
187 if (err < 0)
188 printf("WARNING: could not set crypto property: %s\n",
189 fdt_strerror(err));
190
191 val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].channel_fifo_len);
192 err = fdt_setprop(blob, crypto_node, "fsl,channel-fifo-len", &val, 4);
193 if (err < 0)
194 printf("WARNING: could not set crypto property: %s\n",
195 fdt_strerror(err));
196
197 val = 0;
198 while (sec_idx >= 0) {
199 p = compat_strlist + val;
200 val += sprintf(p, "fsl,sec%d.%d",
201 (sec_rev_prop_list[sec_idx].sec_rev & 0xff00) >> 8,
202 sec_rev_prop_list[sec_idx].sec_rev & 0x00ff) + 1;
203 sec_idx--;
204 }
205 err = fdt_setprop(blob, crypto_node, "compatible", &compat_strlist, val);
206 if (err < 0)
207 printf("WARNING: could not set crypto property: %s\n",
208 fdt_strerror(err));
209}
Kim Phillips22f292c2010-06-01 12:24:34 -0500210#elif CONFIG_SYS_FSL_SEC_COMPAT >= 4 /* SEC4 */
211void fdt_fixup_crypto_node(void *blob, int sec_rev)
212{
213 if (!sec_rev)
214 fdt_del_node_and_alias(blob, "crypto");
215}
Kim Phillips929a2132010-06-01 12:24:27 -0500216#endif