blob: eba21647d96cf2fce0658d47665e58cbf748f1d4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Sricharan9310ff72011-11-15 09:49:55 -05002/*
3 *
4 * Functions for omap5 based boards.
5 *
6 * (C) Copyright 2011
7 * Texas Instruments, <www.ti.com>
8 *
9 * Author :
10 * Aneesh V <aneesh@ti.com>
11 * Steve Sakoman <steve@sakoman.com>
12 * Sricharan <r.sricharan@ti.com>
Sricharan9310ff72011-11-15 09:49:55 -050013 */
14#include <common.h>
Lokesh Vutlad999d052016-11-23 13:25:28 +053015#include <palmas.h>
Sricharan9310ff72011-11-15 09:49:55 -050016#include <asm/armv7.h>
17#include <asm/arch/cpu.h>
18#include <asm/arch/sys_proto.h>
Lokesh Vutla61c517f2013-05-30 02:54:32 +000019#include <asm/arch/clock.h>
Alexey Brodkin267d8e22014-02-26 17:47:58 +040020#include <linux/sizes.h>
Sricharan9310ff72011-11-15 09:49:55 -050021#include <asm/utils.h>
22#include <asm/arch/gpio.h>
Lokesh Vutla0f42de62012-05-22 00:03:25 +000023#include <asm/emif.h>
SRICHARAN R4b1b61c2013-04-24 00:41:22 +000024#include <asm/omap_common.h>
Sricharan9310ff72011-11-15 09:49:55 -050025
SRICHARAN R4b1b61c2013-04-24 00:41:22 +000026u32 *const omap_si_rev = (u32 *)OMAP_SRAM_SCRATCH_OMAP_REV;
Sricharan9310ff72011-11-15 09:49:55 -050027
Tom Rini7bc2bca2015-07-31 19:55:09 -040028#ifndef CONFIG_DM_GPIO
Axel Lin01a461f2013-06-21 18:54:25 +080029static struct gpio_bank gpio_bank_54xx[8] = {
Tom Rini7bc2bca2015-07-31 19:55:09 -040030 { (void *)OMAP54XX_GPIO1_BASE },
31 { (void *)OMAP54XX_GPIO2_BASE },
32 { (void *)OMAP54XX_GPIO3_BASE },
33 { (void *)OMAP54XX_GPIO4_BASE },
34 { (void *)OMAP54XX_GPIO5_BASE },
35 { (void *)OMAP54XX_GPIO6_BASE },
36 { (void *)OMAP54XX_GPIO7_BASE },
37 { (void *)OMAP54XX_GPIO8_BASE },
Sricharan9310ff72011-11-15 09:49:55 -050038};
39
40const struct gpio_bank *const omap_gpio_bank = gpio_bank_54xx;
Tom Rini7bc2bca2015-07-31 19:55:09 -040041#endif
Sricharan9310ff72011-11-15 09:49:55 -050042
Lokesh Vutla5dedc172015-06-04 16:42:33 +053043void do_set_mux32(u32 base, struct pad_conf_entry const *array, int size)
44{
45 int i;
46 struct pad_conf_entry *pad = (struct pad_conf_entry *)array;
47
48 for (i = 0; i < size; i++, pad++)
49 writel(pad->val, base + pad->offset);
50}
51
Sricharan9310ff72011-11-15 09:49:55 -050052#ifdef CONFIG_SPL_BUILD
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000053/* LPDDR2 specific IO settings */
54static void io_settings_lpddr2(void)
55{
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000056 const struct ctrl_ioregs *ioregs;
57
58 get_ioregs(&ioregs);
59 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch1_0);
60 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch1_1);
61 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch2_0);
62 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch2_1);
63 writel(ioregs->ctrl_lpddr2ch, (*ctrl)->control_lpddr2ch1_0);
64 writel(ioregs->ctrl_lpddr2ch, (*ctrl)->control_lpddr2ch1_1);
65 writel(ioregs->ctrl_ddrio_0, (*ctrl)->control_ddrio_0);
66 writel(ioregs->ctrl_ddrio_1, (*ctrl)->control_ddrio_1);
67 writel(ioregs->ctrl_ddrio_2, (*ctrl)->control_ddrio_2);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000068}
69
70/* DDR3 specific IO settings */
71static void io_settings_ddr3(void)
72{
73 u32 io_settings = 0;
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000074 const struct ctrl_ioregs *ioregs;
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000075
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000076 get_ioregs(&ioregs);
77 writel(ioregs->ctrl_ddr3ch, (*ctrl)->control_ddr3ch1_0);
78 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch1_0);
79 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch1_1);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000080
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000081 writel(ioregs->ctrl_ddr3ch, (*ctrl)->control_ddr3ch2_0);
82 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch2_0);
83 writel(ioregs->ctrl_ddrch, (*ctrl)->control_ddrch2_1);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000084
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000085 writel(ioregs->ctrl_ddrio_0, (*ctrl)->control_ddrio_0);
86 writel(ioregs->ctrl_ddrio_1, (*ctrl)->control_ddrio_1);
Lokesh Vutla8c74b902015-06-03 14:43:26 +053087
88 if (!is_dra7xx()) {
89 writel(ioregs->ctrl_ddrio_2, (*ctrl)->control_ddrio_2);
90 writel(ioregs->ctrl_lpddr2ch, (*ctrl)->control_lpddr2ch1_1);
91 }
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000092
93 /* omap5432 does not use lpddr2 */
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000094 writel(ioregs->ctrl_lpddr2ch, (*ctrl)->control_lpddr2ch1_0);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +000095
Lokesh Vutlad8ac0502013-02-04 04:22:05 +000096 writel(ioregs->ctrl_emif_sdram_config_ext,
97 (*ctrl)->control_emif1_sdram_config_ext);
Lokesh Vutla8c74b902015-06-03 14:43:26 +053098 if (!is_dra72x())
99 writel(ioregs->ctrl_emif_sdram_config_ext,
100 (*ctrl)->control_emif2_sdram_config_ext);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000101
Sricharan Rffa98182013-05-30 03:19:39 +0000102 if (is_omap54xx()) {
103 /* Disable DLL select */
104 io_settings = (readl((*ctrl)->control_port_emif1_sdram_config)
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000105 & 0xFFEFFFFF);
Sricharan Rffa98182013-05-30 03:19:39 +0000106 writel(io_settings,
107 (*ctrl)->control_port_emif1_sdram_config);
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000108
Sricharan Rffa98182013-05-30 03:19:39 +0000109 io_settings = (readl((*ctrl)->control_port_emif2_sdram_config)
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000110 & 0xFFEFFFFF);
Sricharan Rffa98182013-05-30 03:19:39 +0000111 writel(io_settings,
112 (*ctrl)->control_port_emif2_sdram_config);
113 } else {
114 writel(ioregs->ctrl_ddr_ctrl_ext_0,
115 (*ctrl)->control_ddr_control_ext_0);
116 }
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000117}
118
Sricharan9310ff72011-11-15 09:49:55 -0500119/*
120 * Some tuning of IOs for optimal power and performance
121 */
122void do_io_settings(void)
123{
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000124 u32 io_settings = 0, mask = 0;
Tom Rinibe8d6352015-06-05 15:51:11 +0530125 struct emif_reg_struct *emif = (struct emif_reg_struct *)EMIF1_BASE;
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000126
127 /* Impedance settings EMMC, C2C 1,2, hsi2 */
128 mask = (ds_mask << 2) | (ds_mask << 8) |
129 (ds_mask << 16) | (ds_mask << 18);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000130 io_settings = readl((*ctrl)->control_smart1io_padconf_0) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000131 (~mask);
132 io_settings |= (ds_60_ohm << 8) | (ds_45_ohm << 16) |
133 (ds_45_ohm << 18) | (ds_60_ohm << 2);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000134 writel(io_settings, (*ctrl)->control_smart1io_padconf_0);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000135
136 /* Impedance settings Mcspi2 */
137 mask = (ds_mask << 30);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000138 io_settings = readl((*ctrl)->control_smart1io_padconf_1) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000139 (~mask);
140 io_settings |= (ds_60_ohm << 30);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000141 writel(io_settings, (*ctrl)->control_smart1io_padconf_1);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000142
143 /* Impedance settings C2C 3,4 */
144 mask = (ds_mask << 14) | (ds_mask << 16);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000145 io_settings = readl((*ctrl)->control_smart1io_padconf_2) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000146 (~mask);
147 io_settings |= (ds_45_ohm << 14) | (ds_45_ohm << 16);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000148 writel(io_settings, (*ctrl)->control_smart1io_padconf_2);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000149
150 /* Slew rate settings EMMC, C2C 1,2 */
151 mask = (sc_mask << 8) | (sc_mask << 16) | (sc_mask << 18);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000152 io_settings = readl((*ctrl)->control_smart2io_padconf_0) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000153 (~mask);
154 io_settings |= (sc_fast << 8) | (sc_na << 16) | (sc_na << 18);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000155 writel(io_settings, (*ctrl)->control_smart2io_padconf_0);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000156
157 /* Slew rate settings hsi2, Mcspi2 */
158 mask = (sc_mask << 24) | (sc_mask << 28);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000159 io_settings = readl((*ctrl)->control_smart2io_padconf_1) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000160 (~mask);
161 io_settings |= (sc_fast << 28) | (sc_fast << 24);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000162 writel(io_settings, (*ctrl)->control_smart2io_padconf_1);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000163
164 /* Slew rate settings C2C 3,4 */
165 mask = (sc_mask << 16) | (sc_mask << 18);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000166 io_settings = readl((*ctrl)->control_smart2io_padconf_2) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000167 (~mask);
168 io_settings |= (sc_na << 16) | (sc_na << 18);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000169 writel(io_settings, (*ctrl)->control_smart2io_padconf_2);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000170
171 /* impedance and slew rate settings for usb */
172 mask = (usb_i_mask << 29) | (usb_i_mask << 26) | (usb_i_mask << 23) |
173 (usb_i_mask << 20) | (usb_i_mask << 17) | (usb_i_mask << 14);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000174 io_settings = readl((*ctrl)->control_smart3io_padconf_1) &
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000175 (~mask);
176 io_settings |= (ds_60_ohm << 29) | (ds_60_ohm << 26) |
177 (ds_60_ohm << 23) | (sc_fast << 20) |
178 (sc_fast << 17) | (sc_fast << 14);
Lokesh Vutla834b6b02013-02-04 04:22:04 +0000179 writel(io_settings, (*ctrl)->control_smart3io_padconf_1);
SRICHARAN R8ec587d2012-03-12 02:25:36 +0000180
Tom Rinibe8d6352015-06-05 15:51:11 +0530181 if (emif_sdram_type(emif->emif_sdram_config) == EMIF_SDRAM_TYPE_LPDDR2)
Lokesh Vutlaff7b2a92012-05-22 00:03:23 +0000182 io_settings_lpddr2();
183 else
184 io_settings_ddr3();
Sricharan9310ff72011-11-15 09:49:55 -0500185}
Lokesh Vutla28049632013-02-12 01:33:45 +0000186
187static const struct srcomp_params srcomp_parameters[NUM_SYS_CLKS] = {
188 {0x45, 0x1}, /* 12 MHz */
189 {-1, -1}, /* 13 MHz */
190 {0x63, 0x2}, /* 16.8 MHz */
191 {0x57, 0x2}, /* 19.2 MHz */
192 {0x20, 0x1}, /* 26 MHz */
193 {-1, -1}, /* 27 MHz */
194 {0x41, 0x3} /* 38.4 MHz */
195};
196
197void srcomp_enable(void)
198{
199 u32 srcomp_value, mul_factor, div_factor, clk_val, i;
200 u32 sysclk_ind = get_sys_clk_index();
201 u32 omap_rev = omap_revision();
202
Lokesh Vutla51bc17a2013-05-30 03:19:32 +0000203 if (!is_omap54xx())
204 return;
205
Lokesh Vutla28049632013-02-12 01:33:45 +0000206 mul_factor = srcomp_parameters[sysclk_ind].multiply_factor;
207 div_factor = srcomp_parameters[sysclk_ind].divide_factor;
208
209 for (i = 0; i < 4; i++) {
210 srcomp_value = readl((*ctrl)->control_srcomp_north_side + i*4);
211 srcomp_value &=
212 ~(MULTIPLY_FACTOR_XS_MASK | DIVIDE_FACTOR_XS_MASK);
213 srcomp_value |= (mul_factor << MULTIPLY_FACTOR_XS_SHIFT) |
214 (div_factor << DIVIDE_FACTOR_XS_SHIFT);
215 writel(srcomp_value, (*ctrl)->control_srcomp_north_side + i*4);
216 }
217
218 if ((omap_rev == OMAP5430_ES1_0) || (omap_rev == OMAP5432_ES1_0)) {
219 clk_val = readl((*prcm)->cm_coreaon_io_srcomp_clkctrl);
220 clk_val |= OPTFCLKEN_SRCOMP_FCLK_MASK;
221 writel(clk_val, (*prcm)->cm_coreaon_io_srcomp_clkctrl);
222
223 for (i = 0; i < 4; i++) {
224 srcomp_value =
225 readl((*ctrl)->control_srcomp_north_side + i*4);
226 srcomp_value &= ~PWRDWN_XS_MASK;
227 writel(srcomp_value,
228 (*ctrl)->control_srcomp_north_side + i*4);
229
230 while (((readl((*ctrl)->control_srcomp_north_side + i*4)
231 & SRCODE_READ_XS_MASK) >>
232 SRCODE_READ_XS_SHIFT) == 0)
233 ;
234
235 srcomp_value =
236 readl((*ctrl)->control_srcomp_north_side + i*4);
237 srcomp_value &= ~OVERRIDE_XS_MASK;
238 writel(srcomp_value,
239 (*ctrl)->control_srcomp_north_side + i*4);
240 }
241 } else {
242 srcomp_value = readl((*ctrl)->control_srcomp_east_side_wkup);
243 srcomp_value &= ~(MULTIPLY_FACTOR_XS_MASK |
244 DIVIDE_FACTOR_XS_MASK);
245 srcomp_value |= (mul_factor << MULTIPLY_FACTOR_XS_SHIFT) |
246 (div_factor << DIVIDE_FACTOR_XS_SHIFT);
247 writel(srcomp_value, (*ctrl)->control_srcomp_east_side_wkup);
248
249 for (i = 0; i < 4; i++) {
250 srcomp_value =
251 readl((*ctrl)->control_srcomp_north_side + i*4);
252 srcomp_value |= SRCODE_OVERRIDE_SEL_XS_MASK;
253 writel(srcomp_value,
254 (*ctrl)->control_srcomp_north_side + i*4);
255
256 srcomp_value =
257 readl((*ctrl)->control_srcomp_north_side + i*4);
258 srcomp_value &= ~OVERRIDE_XS_MASK;
259 writel(srcomp_value,
260 (*ctrl)->control_srcomp_north_side + i*4);
261 }
262
263 srcomp_value =
264 readl((*ctrl)->control_srcomp_east_side_wkup);
265 srcomp_value |= SRCODE_OVERRIDE_SEL_XS_MASK;
266 writel(srcomp_value, (*ctrl)->control_srcomp_east_side_wkup);
267
268 srcomp_value =
269 readl((*ctrl)->control_srcomp_east_side_wkup);
270 srcomp_value &= ~OVERRIDE_XS_MASK;
271 writel(srcomp_value, (*ctrl)->control_srcomp_east_side_wkup);
272
273 clk_val = readl((*prcm)->cm_coreaon_io_srcomp_clkctrl);
274 clk_val |= OPTFCLKEN_SRCOMP_FCLK_MASK;
275 writel(clk_val, (*prcm)->cm_coreaon_io_srcomp_clkctrl);
276
277 clk_val = readl((*prcm)->cm_wkupaon_io_srcomp_clkctrl);
278 clk_val |= OPTFCLKEN_SRCOMP_FCLK_MASK;
279 writel(clk_val, (*prcm)->cm_wkupaon_io_srcomp_clkctrl);
280
281 for (i = 0; i < 4; i++) {
282 while (((readl((*ctrl)->control_srcomp_north_side + i*4)
283 & SRCODE_READ_XS_MASK) >>
284 SRCODE_READ_XS_SHIFT) == 0)
285 ;
286
287 srcomp_value =
288 readl((*ctrl)->control_srcomp_north_side + i*4);
289 srcomp_value &= ~SRCODE_OVERRIDE_SEL_XS_MASK;
290 writel(srcomp_value,
291 (*ctrl)->control_srcomp_north_side + i*4);
292 }
293
294 while (((readl((*ctrl)->control_srcomp_east_side_wkup) &
295 SRCODE_READ_XS_MASK) >> SRCODE_READ_XS_SHIFT) == 0)
296 ;
297
298 srcomp_value =
299 readl((*ctrl)->control_srcomp_east_side_wkup);
300 srcomp_value &= ~SRCODE_OVERRIDE_SEL_XS_MASK;
301 writel(srcomp_value, (*ctrl)->control_srcomp_east_side_wkup);
302 }
303}
Sricharan9310ff72011-11-15 09:49:55 -0500304#endif
305
Lokesh Vutla0f42de62012-05-22 00:03:25 +0000306void config_data_eye_leveling_samples(u32 emif_base)
307{
SRICHARAN Re02f5f82013-11-08 17:40:37 +0530308 const struct ctrl_ioregs *ioregs;
309
310 get_ioregs(&ioregs);
311
Lokesh Vutla0f42de62012-05-22 00:03:25 +0000312 /*EMIF_SDRAM_CONFIG_EXT-Read data eye leveling no of samples =4*/
313 if (emif_base == EMIF1_BASE)
SRICHARAN Re02f5f82013-11-08 17:40:37 +0530314 writel(ioregs->ctrl_emif_sdram_config_ext_final,
315 (*ctrl)->control_emif1_sdram_config_ext);
Lokesh Vutla0f42de62012-05-22 00:03:25 +0000316 else if (emif_base == EMIF2_BASE)
SRICHARAN Re02f5f82013-11-08 17:40:37 +0530317 writel(ioregs->ctrl_emif_sdram_config_ext_final,
318 (*ctrl)->control_emif2_sdram_config_ext);
Lokesh Vutla0f42de62012-05-22 00:03:25 +0000319}
320
Nishanth Menone24175a2015-03-09 17:12:07 -0500321void init_cpu_configuration(void)
322{
323 u32 l2actlr;
324
325 asm volatile("mrc p15, 1, %0, c15, c0, 0" : "=r"(l2actlr));
326 /*
327 * L2ACTLR: Ensure to enable the following:
328 * 3: Disable clean/evict push to external
329 * 4: Disable WriteUnique and WriteLineUnique transactions from master
330 * 8: Disable DVM/CMO message broadcast
331 */
332 l2actlr |= 0x118;
333 omap_smc1(OMAP5_SERVICE_L2ACTLR_SET, l2actlr);
334}
335
Sricharan9310ff72011-11-15 09:49:55 -0500336void init_omap_revision(void)
337{
338 /*
339 * For some of the ES2/ES1 boards ID_CODE is not reliable:
340 * Also, ES1 and ES2 have different ARM revisions
341 * So use ARM revision for identification
342 */
343 unsigned int rev = cortex_rev();
344
SRICHARAN Rcf850562013-02-12 01:33:41 +0000345 switch (readl(CONTROL_ID_CODE)) {
346 case OMAP5430_CONTROL_ID_CODE_ES1_0:
347 *omap_si_rev = OMAP5430_ES1_0;
348 if (rev == MIDR_CORTEX_A15_R2P2)
349 *omap_si_rev = OMAP5430_ES2_0;
350 break;
351 case OMAP5432_CONTROL_ID_CODE_ES1_0:
352 *omap_si_rev = OMAP5432_ES1_0;
353 if (rev == MIDR_CORTEX_A15_R2P2)
354 *omap_si_rev = OMAP5432_ES2_0;
355 break;
356 case OMAP5430_CONTROL_ID_CODE_ES2_0:
357 *omap_si_rev = OMAP5430_ES2_0;
358 break;
359 case OMAP5432_CONTROL_ID_CODE_ES2_0:
360 *omap_si_rev = OMAP5432_ES2_0;
SRICHARAN R602476e2012-03-12 02:25:39 +0000361 break;
Praneeth Bajjuri9b21ff42017-08-21 12:50:52 +0530362 case DRA762_CONTROL_ID_CODE_ES1_0:
363 *omap_si_rev = DRA762_ES1_0;
364 break;
Lokesh Vutla43c296f2013-02-12 21:29:03 +0000365 case DRA752_CONTROL_ID_CODE_ES1_0:
366 *omap_si_rev = DRA752_ES1_0;
367 break;
Nishanth Menon60475ff2014-01-14 10:54:42 -0600368 case DRA752_CONTROL_ID_CODE_ES1_1:
369 *omap_si_rev = DRA752_ES1_1;
370 break;
Nishanth Menon4de16682015-08-13 09:50:58 -0500371 case DRA752_CONTROL_ID_CODE_ES2_0:
372 *omap_si_rev = DRA752_ES2_0;
373 break;
Lokesh Vutla75725492014-05-15 11:08:38 +0530374 case DRA722_CONTROL_ID_CODE_ES1_0:
375 *omap_si_rev = DRA722_ES1_0;
376 break;
Ravi Babuaf9af442016-03-15 18:09:11 -0500377 case DRA722_CONTROL_ID_CODE_ES2_0:
378 *omap_si_rev = DRA722_ES2_0;
379 break;
Vishal Mahaveer42d25eb2017-08-26 16:51:22 -0500380 case DRA722_CONTROL_ID_CODE_ES2_1:
381 *omap_si_rev = DRA722_ES2_1;
382 break;
Sricharan9310ff72011-11-15 09:49:55 -0500383 default:
SRICHARAN Rd3901b12012-03-12 02:25:40 +0000384 *omap_si_rev = OMAP5430_SILICON_ID_INVALID;
Sricharan9310ff72011-11-15 09:49:55 -0500385 }
Nishanth Menone24175a2015-03-09 17:12:07 -0500386 init_cpu_configuration();
Sricharan9310ff72011-11-15 09:49:55 -0500387}
SRICHARAN Ra8f08fd2012-03-12 02:25:52 +0000388
Lokesh Vutla69483e62017-12-29 11:47:51 +0530389void init_package_revision(void)
390{
391 unsigned int die_id[4] = { 0 };
392 u8 package;
393
394 omap_die_id(die_id);
395 package = (die_id[2] >> 16) & 0x3;
396
397 if (is_dra76x()) {
398 switch (package) {
399 case DRA762_ABZ_PACKAGE:
400 *omap_si_rev = DRA762_ABZ_ES1_0;
401 break;
402 case DRA762_ACD_PACKAGE:
403 default:
404 *omap_si_rev = DRA762_ACD_ES1_0;
405 break;
406 }
407 }
408}
409
Paul Kocialkowskic68d5692015-08-27 19:37:11 +0200410void omap_die_id(unsigned int *die_id)
411{
412 die_id[0] = readl((*ctrl)->control_std_fuse_die_id_0);
413 die_id[1] = readl((*ctrl)->control_std_fuse_die_id_1);
414 die_id[2] = readl((*ctrl)->control_std_fuse_die_id_2);
415 die_id[3] = readl((*ctrl)->control_std_fuse_die_id_3);
416}
417
SRICHARAN Ra8f08fd2012-03-12 02:25:52 +0000418void reset_cpu(ulong ignored)
419{
420 u32 omap_rev = omap_revision();
421
422 /*
423 * WARM reset is not functional in case of OMAP5430 ES1.0 soc.
424 * So use cold reset in case instead.
425 */
426 if (omap_rev == OMAP5430_ES1_0)
Lokesh Vutla15c2c702013-02-17 23:33:37 +0000427 writel(PRM_RSTCTRL_RESET << 0x1, (*prcm)->prm_rstctrl);
SRICHARAN Ra8f08fd2012-03-12 02:25:52 +0000428 else
Lokesh Vutla15c2c702013-02-17 23:33:37 +0000429 writel(PRM_RSTCTRL_RESET, (*prcm)->prm_rstctrl);
430}
431
432u32 warm_reset(void)
433{
434 return readl((*prcm)->prm_rstst) & PRM_RSTST_WARM_RESET_MASK;
SRICHARAN Ra8f08fd2012-03-12 02:25:52 +0000435}
Lokesh Vutla100c2d82013-04-17 20:49:40 +0000436
437void setup_warmreset_time(void)
438{
439 u32 rst_time, rst_val;
440
Tom Rini50e221a2017-05-12 22:33:17 -0400441 /*
442 * MAX value for PRM_RSTTIME[9:0]RSTTIME1 stored is 0x3ff.
443 * 0x3ff is in the no of FUNC_32K_CLK cycles. Converting cycles
444 * into microsec and passing the value.
445 */
446 rst_time = usec_to_32k(CONFIG_OMAP_PLATFORM_RESET_TIME_MAX_USEC)
447 << RSTTIME1_SHIFT;
Lokesh Vutla100c2d82013-04-17 20:49:40 +0000448
449 if (rst_time > RSTTIME1_MASK)
450 rst_time = RSTTIME1_MASK;
451
452 rst_val = readl((*prcm)->prm_rsttime) & ~RSTTIME1_MASK;
453 rst_val |= rst_time;
454 writel(rst_val, (*prcm)->prm_rsttime);
455}
Praveen Rao3206b8a2015-03-09 17:12:06 -0500456
457void v7_arch_cp15_set_l2aux_ctrl(u32 l2auxctrl, u32 cpu_midr,
458 u32 cpu_rev_comb, u32 cpu_variant,
459 u32 cpu_rev)
460{
461 omap_smc1(OMAP5_SERVICE_L2ACTLR_SET, l2auxctrl);
462}
Nishanth Menon2740b832015-07-27 16:26:06 -0500463
464void v7_arch_cp15_set_acr(u32 acr, u32 cpu_midr, u32 cpu_rev_comb,
465 u32 cpu_variant, u32 cpu_rev)
466{
Nishanth Menon2b244cc2015-07-27 16:26:07 -0500467
468#ifdef CONFIG_ARM_ERRATA_801819
469 /*
470 * DRA72x processors are uniprocessors and DONOT have
471 * ACP (Accelerator Coherency Port) hooked to ACE (AXI Coherency
472 * Extensions) Hence the erratum workaround is not applicable for
473 * DRA72x processors.
474 */
475 if (is_dra72x())
476 acr &= ~((0x3 << 23) | (0x3 << 25));
477#endif
Nishanth Menon2740b832015-07-27 16:26:06 -0500478 omap_smc1(OMAP5_SERVICE_ACR_SET, acr);
479}
Lokesh Vutlad999d052016-11-23 13:25:28 +0530480
481#if defined(CONFIG_PALMAS_POWER)
Lokesh Vutla8352d272017-08-21 12:50:49 +0530482__weak void board_mmc_poweron_ldo(uint voltage)
483{
Lokesh Vutla22fa8192017-08-21 12:50:50 +0530484 palmas_mmc1_poweron_ldo(LDO1_VOLTAGE, LDO1_CTRL, voltage);
Lokesh Vutla8352d272017-08-21 12:50:49 +0530485}
486
Lokesh Vutlad999d052016-11-23 13:25:28 +0530487void vmmc_pbias_config(uint voltage)
488{
489 u32 value = 0;
Lokesh Vutlad999d052016-11-23 13:25:28 +0530490
491 value = readl((*ctrl)->control_pbias);
492 value &= ~SDCARD_PWRDNZ;
493 writel(value, (*ctrl)->control_pbias);
494 udelay(10); /* wait 10 us */
495 value &= ~SDCARD_BIAS_PWRDNZ;
496 writel(value, (*ctrl)->control_pbias);
497
Lokesh Vutla8352d272017-08-21 12:50:49 +0530498 board_mmc_poweron_ldo(voltage);
Lokesh Vutlad999d052016-11-23 13:25:28 +0530499
500 value = readl((*ctrl)->control_pbias);
501 value |= SDCARD_BIAS_PWRDNZ;
502 writel(value, (*ctrl)->control_pbias);
503 udelay(150); /* wait 150 us */
504 value |= SDCARD_PWRDNZ;
505 writel(value, (*ctrl)->control_pbias);
506 udelay(150); /* wait 150 us */
507}
508#endif