blob: 1b4bbc503733eb2c3c461aa1abf3126a869130c4 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Adrian Alonsoc5752f72015-09-02 13:54:19 -05002/*
3 * Copyright (C) 2015 Freescale Semiconductor, Inc.
Adrian Alonsoc5752f72015-09-02 13:54:19 -05004 */
5
6#include <common.h>
7#include <asm/io.h>
8#include <asm/arch/imx-regs.h>
9#include <asm/arch/clock.h>
10#include <asm/arch/sys_proto.h>
Stefano Babic552a8482017-06-29 10:16:06 +020011#include <asm/mach-imx/dma.h>
12#include <asm/mach-imx/hab.h>
13#include <asm/mach-imx/rdc-sema.h>
Peng Fan35c4ce52016-01-28 16:55:09 +080014#include <asm/arch/imx-rdc.h>
Adrian Alonsoc5752f72015-09-02 13:54:19 -050015#include <asm/arch/crm_regs.h>
16#include <dm.h>
17#include <imx_thermal.h>
Bryan O'Donoghued1ceb0c2018-01-26 16:27:58 +000018#include <fsl_sec.h>
Bryan O'Donoghueca831822018-03-26 15:27:32 +010019#include <asm/setup.h>
Adrian Alonsoc5752f72015-09-02 13:54:19 -050020
Anson Huangb0598372018-08-08 09:17:49 +080021#define IOMUXC_GPR1 0x4
22#define BM_IOMUXC_GPR1_IRQ 0x1000
23
24#define GPC_LPCR_A7_BSC 0x0
25#define GPC_LPCR_M4 0x8
26#define GPC_SLPCR 0x14
27#define GPC_PGC_ACK_SEL_A7 0x24
28#define GPC_IMR1_CORE0 0x30
29#define GPC_IMR1_CORE1 0x40
30#define GPC_IMR1_M4 0x50
31#define GPC_PGC_CPU_MAPPING 0xec
32#define GPC_PGC_C0_PUPSCR 0x804
33#define GPC_PGC_SCU_TIMING 0x890
34#define GPC_PGC_C1_PUPSCR 0x844
35
36#define BM_LPCR_A7_BSC_IRQ_SRC_A7_WAKEUP 0x70000000
37#define BM_LPCR_A7_BSC_CPU_CLK_ON_LPM 0x4000
38#define BM_LPCR_M4_MASK_DSM_TRIGGER 0x80000000
39#define BM_SLPCR_EN_DSM 0x80000000
40#define BM_SLPCR_RBC_EN 0x40000000
41#define BM_SLPCR_REG_BYPASS_COUNT 0x3f000000
42#define BM_SLPCR_VSTBY 0x4
43#define BM_SLPCR_SBYOS 0x2
44#define BM_SLPCR_BYPASS_PMIC_READY 0x1
45#define BM_SLPCR_EN_A7_FASTWUP_WAIT_MODE 0x10000
46
47#define BM_GPC_PGC_ACK_SEL_A7_DUMMY_PUP_ACK 0x80000000
48#define BM_GPC_PGC_ACK_SEL_A7_DUMMY_PDN_ACK 0x8000
49
50#define BM_GPC_PGC_CORE_PUPSCR 0x7fff80
51
Adrian Alonsoc5752f72015-09-02 13:54:19 -050052#if defined(CONFIG_IMX_THERMAL)
53static const struct imx_thermal_plat imx7_thermal_plat = {
54 .regs = (void *)ANATOP_BASE_ADDR,
55 .fuse_bank = 3,
56 .fuse_word = 3,
57};
58
59U_BOOT_DEVICE(imx7_thermal) = {
60 .name = "imx_thermal",
61 .platdata = &imx7_thermal_plat,
62};
63#endif
64
Peng Fane872f272017-08-12 22:10:57 +080065#if CONFIG_IS_ENABLED(IMX_RDC)
Peng Fan35c4ce52016-01-28 16:55:09 +080066/*
67 * In current design, if any peripheral was assigned to both A7 and M4,
68 * it will receive ipg_stop or ipg_wait when any of the 2 platforms enter
69 * low power mode. So M4 sleep will cause some peripherals fail to work
70 * at A7 core side. At default, all resources are in domain 0 - 3.
71 *
72 * There are 26 peripherals impacted by this IC issue:
73 * SIM2(sim2/emvsim2)
74 * SIM1(sim1/emvsim1)
75 * UART1/UART2/UART3/UART4/UART5/UART6/UART7
76 * SAI1/SAI2/SAI3
77 * WDOG1/WDOG2/WDOG3/WDOG4
78 * GPT1/GPT2/GPT3/GPT4
79 * PWM1/PWM2/PWM3/PWM4
80 * ENET1/ENET2
81 * Software Workaround:
82 * Here we setup some resources to domain 0 where M4 codes will move
83 * the M4 out of this domain. Then M4 is not able to access them any longer.
84 * This is a workaround for ic issue. So the peripherals are not shared
85 * by them. This way requires the uboot implemented the RDC driver and
86 * set the 26 IPs above to domain 0 only. M4 code will assign resource
87 * to its own domain, if it want to use the resource.
88 */
89static rdc_peri_cfg_t const resources[] = {
90 (RDC_PER_SIM1 | RDC_DOMAIN(0)),
91 (RDC_PER_SIM2 | RDC_DOMAIN(0)),
92 (RDC_PER_UART1 | RDC_DOMAIN(0)),
93 (RDC_PER_UART2 | RDC_DOMAIN(0)),
94 (RDC_PER_UART3 | RDC_DOMAIN(0)),
95 (RDC_PER_UART4 | RDC_DOMAIN(0)),
96 (RDC_PER_UART5 | RDC_DOMAIN(0)),
97 (RDC_PER_UART6 | RDC_DOMAIN(0)),
98 (RDC_PER_UART7 | RDC_DOMAIN(0)),
99 (RDC_PER_SAI1 | RDC_DOMAIN(0)),
100 (RDC_PER_SAI2 | RDC_DOMAIN(0)),
101 (RDC_PER_SAI3 | RDC_DOMAIN(0)),
102 (RDC_PER_WDOG1 | RDC_DOMAIN(0)),
103 (RDC_PER_WDOG2 | RDC_DOMAIN(0)),
104 (RDC_PER_WDOG3 | RDC_DOMAIN(0)),
105 (RDC_PER_WDOG4 | RDC_DOMAIN(0)),
106 (RDC_PER_GPT1 | RDC_DOMAIN(0)),
107 (RDC_PER_GPT2 | RDC_DOMAIN(0)),
108 (RDC_PER_GPT3 | RDC_DOMAIN(0)),
109 (RDC_PER_GPT4 | RDC_DOMAIN(0)),
110 (RDC_PER_PWM1 | RDC_DOMAIN(0)),
111 (RDC_PER_PWM2 | RDC_DOMAIN(0)),
112 (RDC_PER_PWM3 | RDC_DOMAIN(0)),
113 (RDC_PER_PWM4 | RDC_DOMAIN(0)),
114 (RDC_PER_ENET1 | RDC_DOMAIN(0)),
115 (RDC_PER_ENET2 | RDC_DOMAIN(0)),
116};
117
118static void isolate_resource(void)
119{
120 imx_rdc_setup_peripherals(resources, ARRAY_SIZE(resources));
121}
122#endif
123
Adrian Alonsobb955142015-10-12 13:48:13 -0500124#if defined(CONFIG_SECURE_BOOT)
125struct imx_sec_config_fuse_t const imx_sec_config_fuse = {
126 .bank = 1,
127 .word = 3,
128};
129#endif
130
Fabio Estevame25a0652016-02-28 12:33:17 -0300131static bool is_mx7d(void)
132{
133 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
134 struct fuse_bank *bank = &ocotp->bank[1];
135 struct fuse_bank1_regs *fuse =
136 (struct fuse_bank1_regs *)bank->fuse_regs;
137 int val;
138
139 val = readl(&fuse->tester4);
140 if (val & 1)
141 return false;
142 else
143 return true;
144}
145
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500146u32 get_cpu_rev(void)
147{
148 struct mxc_ccm_anatop_reg *ccm_anatop = (struct mxc_ccm_anatop_reg *)
149 ANATOP_BASE_ADDR;
150 u32 reg = readl(&ccm_anatop->digprog);
151 u32 type = (reg >> 16) & 0xff;
152
Fabio Estevame25a0652016-02-28 12:33:17 -0300153 if (!is_mx7d())
154 type = MXC_CPU_MX7S;
155
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500156 reg &= 0xff;
157 return (type << 12) | reg;
158}
159
160#ifdef CONFIG_REVISION_TAG
161u32 __weak get_board_rev(void)
162{
163 return get_cpu_rev();
164}
165#endif
166
Peng Fand9699de2016-01-04 13:16:41 +0800167static void imx_enet_mdio_fixup(void)
168{
169 struct iomuxc_gpr_base_regs *gpr_regs =
170 (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
171
172 /*
173 * The management data input/output (MDIO) requires open-drain,
174 * i.MX7D TO1.0 ENET MDIO pin has no open drain, but TO1.1 supports
175 * this feature. So to TO1.1, need to enable open drain by setting
176 * bits GPR0[8:7].
177 */
178
179 if (soc_rev() >= CHIP_REV_1_1) {
180 setbits_le32(&gpr_regs->gpr[0],
181 IOMUXC_GPR_GPR0_ENET_MDIO_OPEN_DRAIN_MASK);
182 }
183}
184
Jun Niebc7c9ed2019-05-08 14:38:30 +0800185static void init_cpu_basic(void)
186{
187 imx_enet_mdio_fixup();
188
189#ifdef CONFIG_APBH_DMA
190 /* Start APBH DMA */
191 mxs_dma_init();
192#endif
193}
194
195#ifndef CONFIG_SKIP_LOWLEVEL_INIT
196/* enable all periherial can be accessed in nosec mode */
197static void init_csu(void)
198{
199 int i = 0;
200
201 for (i = 0; i < CSU_NUM_REGS; i++)
202 writel(CSU_INIT_SEC_LEVEL0, CSU_IPS_BASE_ADDR + i * 4);
203}
204
Anson Huangb0598372018-08-08 09:17:49 +0800205static void imx_gpcv2_init(void)
206{
207 u32 val, i;
208
209 /*
210 * Force IOMUXC irq pending, so that the interrupt to GPC can be
211 * used to deassert dsm_request signal when the signal gets
212 * asserted unexpectedly.
213 */
214 val = readl(IOMUXC_GPR_BASE_ADDR + IOMUXC_GPR1);
215 val |= BM_IOMUXC_GPR1_IRQ;
216 writel(val, IOMUXC_GPR_BASE_ADDR + IOMUXC_GPR1);
217
218 /* Initially mask all interrupts */
219 for (i = 0; i < 4; i++) {
220 writel(~0, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE0 + i * 4);
221 writel(~0, GPC_IPS_BASE_ADDR + GPC_IMR1_CORE1 + i * 4);
222 writel(~0, GPC_IPS_BASE_ADDR + GPC_IMR1_M4 + i * 4);
223 }
224
225 /* set SCU timing */
226 writel((0x59 << 10) | 0x5B | (0x2 << 20),
227 GPC_IPS_BASE_ADDR + GPC_PGC_SCU_TIMING);
228
229 /* only external IRQs to wake up LPM and core 0/1 */
230 val = readl(GPC_IPS_BASE_ADDR + GPC_LPCR_A7_BSC);
231 val |= BM_LPCR_A7_BSC_IRQ_SRC_A7_WAKEUP;
232 writel(val, GPC_IPS_BASE_ADDR + GPC_LPCR_A7_BSC);
233
234 /* set C0 power up timming per design requirement */
235 val = readl(GPC_IPS_BASE_ADDR + GPC_PGC_C0_PUPSCR);
236 val &= ~BM_GPC_PGC_CORE_PUPSCR;
237 val |= (0x1A << 7);
238 writel(val, GPC_IPS_BASE_ADDR + GPC_PGC_C0_PUPSCR);
239
240 /* set C1 power up timming per design requirement */
241 val = readl(GPC_IPS_BASE_ADDR + GPC_PGC_C1_PUPSCR);
242 val &= ~BM_GPC_PGC_CORE_PUPSCR;
243 val |= (0x1A << 7);
244 writel(val, GPC_IPS_BASE_ADDR + GPC_PGC_C1_PUPSCR);
245
246 /* dummy ack for time slot by default */
247 writel(BM_GPC_PGC_ACK_SEL_A7_DUMMY_PUP_ACK |
248 BM_GPC_PGC_ACK_SEL_A7_DUMMY_PDN_ACK,
249 GPC_IPS_BASE_ADDR + GPC_PGC_ACK_SEL_A7);
250
251 /* mask M4 DSM trigger */
252 writel(readl(GPC_IPS_BASE_ADDR + GPC_LPCR_M4) |
253 BM_LPCR_M4_MASK_DSM_TRIGGER,
254 GPC_IPS_BASE_ADDR + GPC_LPCR_M4);
255
256 /* set mega/fast mix in A7 domain */
257 writel(0x1, GPC_IPS_BASE_ADDR + GPC_PGC_CPU_MAPPING);
258
259 /* DSM related settings */
260 val = readl(GPC_IPS_BASE_ADDR + GPC_SLPCR);
261 val &= ~(BM_SLPCR_EN_DSM | BM_SLPCR_VSTBY | BM_SLPCR_RBC_EN |
262 BM_SLPCR_SBYOS | BM_SLPCR_BYPASS_PMIC_READY |
263 BM_SLPCR_REG_BYPASS_COUNT);
264 val |= BM_SLPCR_EN_A7_FASTWUP_WAIT_MODE;
265 writel(val, GPC_IPS_BASE_ADDR + GPC_SLPCR);
266
267 /*
268 * disabling RBC need to delay at least 2 cycles of CKIL(32K)
269 * due to hardware design requirement, which is
270 * ~61us, here we use 65us for safe
271 */
272 udelay(65);
273}
274
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500275int arch_cpu_init(void)
276{
277 init_aips();
278
Peng Fan7de47032015-10-23 10:13:04 +0800279 init_csu();
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500280 /* Disable PDE bit of WMCR register */
Fabio Estevame2162d72017-11-23 10:55:33 -0200281 imx_wdog_disable_powerdown();
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500282
Jun Niebc7c9ed2019-05-08 14:38:30 +0800283 init_cpu_basic();
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500284
Peng Fane872f272017-08-12 22:10:57 +0800285#if CONFIG_IS_ENABLED(IMX_RDC)
286 isolate_resource();
287#endif
Peng Fan35c4ce52016-01-28 16:55:09 +0800288
Bryan O'Donoghue723f8352018-04-05 19:46:06 +0100289 init_snvs();
290
Anson Huangb0598372018-08-08 09:17:49 +0800291 imx_gpcv2_init();
292
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500293 return 0;
294}
Jun Niebc7c9ed2019-05-08 14:38:30 +0800295#else
296int arch_cpu_init(void)
297{
298 init_cpu_basic();
299
300 return 0;
301}
Rui Miguel Silvabe277c32018-09-05 11:56:05 +0100302#endif
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500303
Stefan Agnerec7fde32016-07-13 00:25:39 -0700304#ifdef CONFIG_ARCH_MISC_INIT
305int arch_misc_init(void)
306{
307#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
308 if (is_mx7d())
Simon Glass382bee52017-08-03 12:22:09 -0600309 env_set("soc", "imx7d");
Stefan Agnerec7fde32016-07-13 00:25:39 -0700310 else
Simon Glass382bee52017-08-03 12:22:09 -0600311 env_set("soc", "imx7s");
Stefan Agnerec7fde32016-07-13 00:25:39 -0700312#endif
313
Bryan O'Donoghued1ceb0c2018-01-26 16:27:58 +0000314#ifdef CONFIG_FSL_CAAM
315 sec_init();
316#endif
317
Stefan Agnerec7fde32016-07-13 00:25:39 -0700318 return 0;
319}
320#endif
321
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500322#ifdef CONFIG_SERIAL_TAG
Bryan O'Donoghue1ab1ffd2018-03-26 15:27:33 +0100323/*
324 * OCOTP_TESTER
325 * i.MX 7Solo Applications Processor Reference Manual, Rev. 0.1, 08/2016
326 * OCOTP_TESTER describes a unique ID based on silicon wafer
327 * and die X/Y position
328 *
329 * OCOTOP_TESTER offset 0x410
330 * 31:0 fuse 0
331 * FSL-wide unique, encoded LOT ID STD II/SJC CHALLENGE/ Unique ID
332 *
333 * OCOTP_TESTER1 offset 0x420
334 * 31:24 fuse 1
335 * The X-coordinate of the die location on the wafer/SJC CHALLENGE/ Unique ID
336 * 23:16 fuse 1
337 * The Y-coordinate of the die location on the wafer/SJC CHALLENGE/ Unique ID
338 * 15:11 fuse 1
339 * The wafer number of the wafer on which the device was fabricated/SJC
340 * CHALLENGE/ Unique ID
341 * 10:0 fuse 1
342 * FSL-wide unique, encoded LOT ID STD II/SJC CHALLENGE/ Unique ID
343 */
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500344void get_board_serial(struct tag_serialnr *serialnr)
345{
346 struct ocotp_regs *ocotp = (struct ocotp_regs *)OCOTP_BASE_ADDR;
347 struct fuse_bank *bank = &ocotp->bank[0];
348 struct fuse_bank0_regs *fuse =
349 (struct fuse_bank0_regs *)bank->fuse_regs;
350
351 serialnr->low = fuse->tester0;
352 serialnr->high = fuse->tester1;
353}
354#endif
355
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500356void set_wdog_reset(struct wdog_regs *wdog)
357{
358 u32 reg = readw(&wdog->wcr);
359 /*
360 * Output WDOG_B signal to reset external pmic or POR_B decided by
361 * the board desgin. Without external reset, the peripherals/DDR/
362 * PMIC are not reset, that may cause system working abnormal.
363 */
364 reg = readw(&wdog->wcr);
365 reg |= 1 << 3;
366 /*
367 * WDZST bit is write-once only bit. Align this bit in kernel,
368 * otherwise kernel code will have no chance to set this bit.
369 */
370 reg |= 1 << 0;
371 writew(reg, &wdog->wcr);
372}
373
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500374void s_init(void)
375{
Adrian Alonsoc5752f72015-09-02 13:54:19 -0500376 /* clock configuration. */
377 clock_init();
378
379 return;
380}
Peng Fan9f8fa182016-05-19 13:02:16 +0800381
382void reset_misc(void)
383{
Fabio Estevambab289c2018-12-11 16:40:37 -0200384#ifndef CONFIG_SPL_BUILD
Igor Opaniuk8c1df092019-06-04 00:05:59 +0300385#if defined(CONFIG_VIDEO_MXS) && !defined(CONFIG_DM_VIDEO)
Peng Fan9f8fa182016-05-19 13:02:16 +0800386 lcdif_power_down();
387#endif
Fabio Estevambab289c2018-12-11 16:40:37 -0200388#endif
Peng Fan9f8fa182016-05-19 13:02:16 +0800389}
390