blob: a67f37e3af96eb23b5f9f9c693bbce6e369f2786 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala64dd1782009-09-11 13:52:45 -05002/*
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +00003 * Copyright 2009-2012 Freescale Semiconductor, Inc
Kumar Gala64dd1782009-09-11 13:52:45 -05004 */
5
6#include <common.h>
Tom Rini4ddbade2022-05-25 12:16:03 -04007#include <system-constants.h>
Simon Glass40d9b242020-05-10 11:40:07 -06008#include <asm-offsets.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06009#include <asm/global_data.h>
Kumar Gala64dd1782009-09-11 13:52:45 -050010#include <asm/processor.h>
11#include <asm/mmu.h>
12#include <asm/fsl_law.h>
Poonam Aggrwalee90b1c2011-06-29 16:32:50 +053013#include <asm/io.h>
Kumar Gala64dd1782009-09-11 13:52:45 -050014
15DECLARE_GLOBAL_DATA_PTR;
16
Prabhakar Kushwahad324f472013-04-16 13:27:44 +053017#ifdef CONFIG_A003399_NOR_WORKAROUND
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053018void setup_ifc(void)
19{
Tom Rini6a5dccc2022-11-16 13:10:41 -050020 struct fsl_ifc ifc_regs = {(void *)CFG_SYS_IFC_ADDR, (void *)NULL};
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053021 u32 _mas0, _mas1, _mas2, _mas3, _mas7;
Tom Rini6a5dccc2022-11-16 13:10:41 -050022 phys_addr_t flash_phys = CFG_SYS_FLASH_BASE_PHYS;
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053023
24 /*
25 * Adjust the TLB we were running out of to match the phys addr of the
26 * chip select we are adjusting and will return to.
27 */
Tom Rini6a5dccc2022-11-16 13:10:41 -050028 flash_phys += (~CFG_SYS_AMASK0) + 1 - 4*1024*1024;
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053029
30 _mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(15);
31 _mas1 = MAS1_VALID | MAS1_TID(0) | MAS1_TS | MAS1_IPROT |
32 MAS1_TSIZE(BOOKE_PAGESZ_4M);
Simon Glass72cc5382022-10-20 18:22:39 -060033 _mas2 = FSL_BOOKE_MAS2(CONFIG_TEXT_BASE, MAS2_I | MAS2_G);
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053034 _mas3 = FSL_BOOKE_MAS3(flash_phys, 0, MAS3_SW|MAS3_SR|MAS3_SX);
35 _mas7 = FSL_BOOKE_MAS7(flash_phys);
36
37 mtspr(MAS0, _mas0);
38 mtspr(MAS1, _mas1);
39 mtspr(MAS2, _mas2);
40 mtspr(MAS3, _mas3);
41 mtspr(MAS7, _mas7);
42
43 asm volatile("isync;msync;tlbwe;isync");
44
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +000045#if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB)
46/*
47 * TLB entry for debuggging in AS1
48 * Create temporary TLB entry in AS0 to handle debug exception
49 * As on debug exception MSR is cleared i.e. Address space is changed
50 * to 0. A TLB entry (in AS0) is required to handle debug exception generated
51 * in AS1.
52 *
53 * TLB entry is created for IVPR + IVOR15 to map on valid OP code address
54 * bacause flash's physical address is going to change as
Tom Rini6a5dccc2022-11-16 13:10:41 -050055 * CFG_SYS_FLASH_BASE_PHYS.
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +000056 */
57 _mas0 = MAS0_TLBSEL(1) |
58 MAS0_ESEL(CONFIG_SYS_PPC_E500_DEBUG_TLB);
59 _mas1 = MAS1_VALID | MAS1_TID(0) | MAS1_IPROT |
60 MAS1_TSIZE(BOOKE_PAGESZ_4M);
Simon Glass72cc5382022-10-20 18:22:39 -060061 _mas2 = FSL_BOOKE_MAS2(CONFIG_TEXT_BASE, MAS2_I | MAS2_G);
Prabhakar Kushwahabc8d57c2012-04-29 23:56:43 +000062 _mas3 = FSL_BOOKE_MAS3(flash_phys, 0, MAS3_SW|MAS3_SR|MAS3_SX);
63 _mas7 = FSL_BOOKE_MAS7(flash_phys);
64
65 mtspr(MAS0, _mas0);
66 mtspr(MAS1, _mas1);
67 mtspr(MAS2, _mas2);
68 mtspr(MAS3, _mas3);
69 mtspr(MAS7, _mas7);
70
71 asm volatile("isync;msync;tlbwe;isync");
72#endif
73
74 /* Change flash's physical address */
Tom Rini6a5dccc2022-11-16 13:10:41 -050075 ifc_out32(&(ifc_regs.gregs->cspr_cs[0].cspr), CFG_SYS_CSPR0);
76 ifc_out32(&(ifc_regs.gregs->csor_cs[0].csor), CFG_SYS_CSOR0);
77 ifc_out32(&(ifc_regs.gregs->amask_cs[0].amask), CFG_SYS_AMASK0);
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053078
Bin Meng75a6a372022-10-26 12:40:07 +080079 return;
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053080}
81#endif
82
Kumar Gala64dd1782009-09-11 13:52:45 -050083/* We run cpu_init_early_f in AS = 1 */
Alexander Grafc3468482014-04-11 17:09:45 +020084void cpu_init_early_f(void *fdt)
Kumar Gala64dd1782009-09-11 13:52:45 -050085{
86 u32 mas0, mas1, mas2, mas3, mas7;
Poonam Aggrwalaf54a5f2011-06-29 16:32:52 +053087#ifdef CONFIG_SYS_FSL_ERRATUM_P1010_A003549
Tom Rinid5c3bf22022-10-28 20:27:12 -040088 ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
Poonam Aggrwalaf54a5f2011-06-29 16:32:52 +053089#endif
Prabhakar Kushwahad324f472013-04-16 13:27:44 +053090#ifdef CONFIG_A003399_NOR_WORKAROUND
Tom Rinid5c3bf22022-10-28 20:27:12 -040091 ccsr_l2cache_t *l2cache = (void *)CFG_SYS_MPC85xx_L2_ADDR;
Poonam Aggrwal66a02212011-11-01 18:58:20 +053092 u32 *dst, *src;
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053093 void (*setup_ifc_sram)(void);
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +020094 int i;
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +053095#endif
Kumar Gala64dd1782009-09-11 13:52:45 -050096
97 /* Pointer is writable since we allocated a register for it */
Tom Rini4ddbade2022-05-25 12:16:03 -040098 gd = (gd_t *)SYS_INIT_SP_ADDR;
Kumar Gala64dd1782009-09-11 13:52:45 -050099
mario.six@gdsys.ccd5928cd2016-04-05 15:05:37 +0200100 /* gd area was zeroed during startup */
Kumar Gala64dd1782009-09-11 13:52:45 -0500101
York Sun51e91e82016-11-18 12:29:51 -0800102#ifdef CONFIG_ARCH_QEMU_E500
Alexander Grafc3468482014-04-11 17:09:45 +0200103 /*
Tom Rini6a5dccc2022-11-16 13:10:41 -0500104 * CFG_SYS_CCSRBAR_PHYS below may use gd->fdt_blob on ePAPR systems,
Alexander Grafc3468482014-04-11 17:09:45 +0200105 * so we need to populate it before it accesses it.
106 */
107 gd->fdt_blob = fdt;
York Sun2038b772014-04-30 14:43:45 -0700108#endif
Alexander Grafc3468482014-04-11 17:09:45 +0200109
Poonam Aggrwalee90b1c2011-06-29 16:32:50 +0530110 mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(13);
111 mas1 = MAS1_VALID | MAS1_TID(0) | MAS1_TS | MAS1_TSIZE(BOOKE_PAGESZ_1M);
Tom Rini6a5dccc2022-11-16 13:10:41 -0500112 mas2 = FSL_BOOKE_MAS2(CFG_SYS_CCSRBAR, MAS2_I|MAS2_G);
113 mas3 = FSL_BOOKE_MAS3(CFG_SYS_CCSRBAR_PHYS, 0, MAS3_SW|MAS3_SR);
114 mas7 = FSL_BOOKE_MAS7(CFG_SYS_CCSRBAR_PHYS);
Kumar Gala64dd1782009-09-11 13:52:45 -0500115
116 write_tlb(mas0, mas1, mas2, mas3, mas7);
117
Poonam Aggrwalaf54a5f2011-06-29 16:32:52 +0530118/*
119 * Work Around for IFC Erratum A-003549. This issue is P1010
120 * specific. LCLK(a free running clk signal) is muxed with IFC_CS3 on P1010 SOC
121 * Hence specifically selecting CS3.
122 */
123#ifdef CONFIG_SYS_FSL_ERRATUM_P1010_A003549
124 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_LCLK_IFC_CS3);
125#endif
126
Bin Mengc39f3402021-02-25 17:22:27 +0800127#ifdef CONFIG_FSL_LAW
Kumar Gala64dd1782009-09-11 13:52:45 -0500128 init_laws();
Bin Mengc39f3402021-02-25 17:22:27 +0800129#endif
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +0530130
131/*
132 * Work Around for IFC Erratum A003399, issue will hit only when execution
133 * from NOR Flash
134 */
Prabhakar Kushwahad324f472013-04-16 13:27:44 +0530135#ifdef CONFIG_A003399_NOR_WORKAROUND
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +0530136#define SRAM_BASE_ADDR (0x00000000)
137 /* TLB for SRAM */
138 mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(9);
139 mas1 = MAS1_VALID | MAS1_TID(0) | MAS1_TS |
140 MAS1_TSIZE(BOOKE_PAGESZ_1M);
141 mas2 = FSL_BOOKE_MAS2(SRAM_BASE_ADDR, MAS2_I);
142 mas3 = FSL_BOOKE_MAS3(SRAM_BASE_ADDR, 0, MAS3_SX|MAS3_SW|MAS3_SR);
143 mas7 = FSL_BOOKE_MAS7(0);
144
145 write_tlb(mas0, mas1, mas2, mas3, mas7);
146
147 out_be32(&l2cache->l2srbar0, SRAM_BASE_ADDR);
148
149 out_be32(&l2cache->l2errdis,
150 (MPC85xx_L2ERRDIS_MBECC | MPC85xx_L2ERRDIS_SBECC));
151
152 out_be32(&l2cache->l2ctl,
153 (MPC85xx_L2CTL_L2E | MPC85xx_L2CTL_L2SRAM_ENTIRE));
154
155 /*
156 * Copy the code in setup_ifc to L2SRAM. Do a word copy
157 * because NOR Flash on P1010 does not support byte
158 * access (Erratum IFC-A002769)
159 */
160 setup_ifc_sram = (void *)SRAM_BASE_ADDR;
161 dst = (u32 *) SRAM_BASE_ADDR;
162 src = (u32 *) setup_ifc;
Wolfgang Denk6ae80832014-11-06 14:02:57 +0100163 for (i = 0; i < 1024; i++) {
164 /* cppcheck-suppress nullPointer */
Poonam Aggrwal66a02212011-11-01 18:58:20 +0530165 *dst++ = *src++;
Wolfgang Denk6ae80832014-11-06 14:02:57 +0100166 }
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +0530167
Wolfgang Denk6ae80832014-11-06 14:02:57 +0100168 /* cppcheck-suppress nullPointer */
Poonam Aggrwal46b86ca2011-07-07 20:36:47 +0530169 setup_ifc_sram();
170
171 /* CLEANUP */
172 clrbits_be32(&l2cache->l2ctl,
173 (MPC85xx_L2CTL_L2E |
174 MPC85xx_L2CTL_L2SRAM_ENTIRE));
175 out_be32(&l2cache->l2srbar0, 0x0);
176#endif
177
Poonam Aggrwalee90b1c2011-06-29 16:32:50 +0530178 invalidate_tlb(1);
Ruchika Gupta8ca8d822010-12-15 17:02:08 +0000179
Prabhakar Kushwaha11dee962013-07-05 11:59:26 +0530180#if defined(CONFIG_SYS_PPC_E500_DEBUG_TLB) && \
Tom Rini6b15c162022-05-13 12:26:35 -0400181 !(CONFIG_IS_ENABLED(INIT_MINIMAL) && defined(CONFIG_SPL_BUILD)) && \
Prabhakar Kushwaha11dee962013-07-05 11:59:26 +0530182 !defined(CONFIG_NAND_SPL)
Prabhakar Kushwahac2ea92b2013-06-13 10:14:00 +0530183 disable_tlb(CONFIG_SYS_PPC_E500_DEBUG_TLB);
184#endif
185
Kumar Gala64dd1782009-09-11 13:52:45 -0500186 init_tlbs();
187}