blob: d97a445179ae883094f0374e005a62444b163ae9 [file] [log] [blame]
Scott Woodf64c98c2015-03-20 19:28:12 -07001/*
Mingkai Hu0e58b512015-10-26 19:47:50 +08002 * Copyright 2014-2015 Freescale Semiconductor
Scott Woodf64c98c2015-03-20 19:28:12 -07003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <fsl_ifc.h>
Tang Yuantian57894be2015-12-09 15:32:18 +08009#include <ahci.h>
10#include <scsi.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080011#include <asm/arch/soc.h>
Scott Woodae1df322015-03-20 19:28:13 -070012#include <asm/io.h>
Scott Wood8e728cd2015-03-24 13:25:02 -070013#include <asm/global_data.h>
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +053014#include <asm/arch-fsl-layerscape/config.h>
Aneesh Bansal39d5b3b2016-01-22 16:37:26 +053015#ifdef CONFIG_CHAIN_OF_TRUST
16#include <fsl_validate.h>
17#endif
Scott Wood8e728cd2015-03-24 13:25:02 -070018
19DECLARE_GLOBAL_DATA_PTR;
Scott Woodae1df322015-03-20 19:28:13 -070020
Prabhakar Kushwaha77f7ded2015-11-09 16:42:20 +053021#if defined(CONFIG_LS2080A) || defined(CONFIG_LS2085A)
Yao Yuanfae88052015-12-05 14:59:14 +080022/*
23 * This erratum requires setting a value to eddrtqcr1 to
24 * optimal the DDR performance.
25 */
26static void erratum_a008336(void)
27{
28 u32 *eddrtqcr1;
29
30#ifdef CONFIG_SYS_FSL_ERRATUM_A008336
31#ifdef CONFIG_SYS_FSL_DCSR_DDR_ADDR
32 eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR_ADDR + 0x800;
33 out_le32(eddrtqcr1, 0x63b30002);
34#endif
35#ifdef CONFIG_SYS_FSL_DCSR_DDR2_ADDR
36 eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR2_ADDR + 0x800;
37 out_le32(eddrtqcr1, 0x63b30002);
38#endif
39#endif
40}
41
42/*
43 * This erratum requires a register write before being Memory
44 * controller 3 being enabled.
45 */
46static void erratum_a008514(void)
47{
48 u32 *eddrtqcr1;
49
50#ifdef CONFIG_SYS_FSL_ERRATUM_A008514
51#ifdef CONFIG_SYS_FSL_DCSR_DDR3_ADDR
52 eddrtqcr1 = (void *)CONFIG_SYS_FSL_DCSR_DDR3_ADDR + 0x800;
53 out_le32(eddrtqcr1, 0x63b20002);
54#endif
55#endif
56}
Prabhakar Kushwaha22cfe962015-11-05 12:00:14 +053057#ifdef CONFIG_SYS_FSL_ERRATUM_A009635
58#define PLATFORM_CYCLE_ENV_VAR "a009635_interval_val"
59
60static unsigned long get_internval_val_mhz(void)
61{
62 char *interval = getenv(PLATFORM_CYCLE_ENV_VAR);
63 /*
64 * interval is the number of platform cycles(MHz) between
65 * wake up events generated by EPU.
66 */
67 ulong interval_mhz = get_bus_freq(0) / (1000 * 1000);
68
69 if (interval)
70 interval_mhz = simple_strtoul(interval, NULL, 10);
71
72 return interval_mhz;
73}
74
75void erratum_a009635(void)
76{
77 u32 val;
78 unsigned long interval_mhz = get_internval_val_mhz();
79
80 if (!interval_mhz)
81 return;
82
83 val = in_le32(DCSR_CGACRE5);
84 writel(val | 0x00000200, DCSR_CGACRE5);
85
86 val = in_le32(EPU_EPCMPR5);
87 writel(interval_mhz, EPU_EPCMPR5);
88 val = in_le32(EPU_EPCCR5);
89 writel(val | 0x82820000, EPU_EPCCR5);
90 val = in_le32(EPU_EPSMCR5);
91 writel(val | 0x002f0000, EPU_EPSMCR5);
92 val = in_le32(EPU_EPECR5);
93 writel(val | 0x20000000, EPU_EPECR5);
94 val = in_le32(EPU_EPGCR);
95 writel(val | 0x80000000, EPU_EPGCR);
96}
97#endif /* CONFIG_SYS_FSL_ERRATUM_A009635 */
98
Scott Woodae1df322015-03-20 19:28:13 -070099static void erratum_a008751(void)
100{
101#ifdef CONFIG_SYS_FSL_ERRATUM_A008751
102 u32 __iomem *scfg = (u32 __iomem *)SCFG_BASE;
103
104 writel(0x27672b2a, scfg + SCFG_USB3PRM1CR / 4);
105#endif
106}
Scott Woodf64c98c2015-03-20 19:28:12 -0700107
Scott Wood8e728cd2015-03-24 13:25:02 -0700108static void erratum_rcw_src(void)
109{
110#if defined(CONFIG_SPL)
111 u32 __iomem *dcfg_ccsr = (u32 __iomem *)DCFG_BASE;
112 u32 __iomem *dcfg_dcsr = (u32 __iomem *)DCFG_DCSR_BASE;
113 u32 val;
114
115 val = in_le32(dcfg_ccsr + DCFG_PORSR1 / 4);
116 val &= ~DCFG_PORSR1_RCW_SRC;
117 val |= DCFG_PORSR1_RCW_SRC_NOR;
118 out_le32(dcfg_dcsr + DCFG_DCSR_PORCR1 / 4, val);
119#endif
120}
121
York Sun0404a392015-03-23 10:41:35 -0700122#define I2C_DEBUG_REG 0x6
123#define I2C_GLITCH_EN 0x8
124/*
125 * This erratum requires setting glitch_en bit to enable
126 * digital glitch filter to improve clock stability.
127 */
128static void erratum_a009203(void)
129{
130 u8 __iomem *ptr;
131#ifdef CONFIG_SYS_I2C
132#ifdef I2C1_BASE_ADDR
133 ptr = (u8 __iomem *)(I2C1_BASE_ADDR + I2C_DEBUG_REG);
134
135 writeb(I2C_GLITCH_EN, ptr);
136#endif
137#ifdef I2C2_BASE_ADDR
138 ptr = (u8 __iomem *)(I2C2_BASE_ADDR + I2C_DEBUG_REG);
139
140 writeb(I2C_GLITCH_EN, ptr);
141#endif
142#ifdef I2C3_BASE_ADDR
143 ptr = (u8 __iomem *)(I2C3_BASE_ADDR + I2C_DEBUG_REG);
144
145 writeb(I2C_GLITCH_EN, ptr);
146#endif
147#ifdef I2C4_BASE_ADDR
148 ptr = (u8 __iomem *)(I2C4_BASE_ADDR + I2C_DEBUG_REG);
149
150 writeb(I2C_GLITCH_EN, ptr);
151#endif
152#endif
153}
154
Scott Woodf64c98c2015-03-20 19:28:12 -0700155void fsl_lsch3_early_init_f(void)
156{
Scott Woodae1df322015-03-20 19:28:13 -0700157 erratum_a008751();
Scott Wood8e728cd2015-03-24 13:25:02 -0700158 erratum_rcw_src();
Scott Woodf64c98c2015-03-20 19:28:12 -0700159 init_early_memctl_regs(); /* tighten IFC timing */
York Sun0404a392015-03-23 10:41:35 -0700160 erratum_a009203();
Yao Yuanfae88052015-12-05 14:59:14 +0800161 erratum_a008514();
162 erratum_a008336();
Scott Woodf64c98c2015-03-20 19:28:12 -0700163}
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800164
Tang Yuantian57894be2015-12-09 15:32:18 +0800165#ifdef CONFIG_SCSI_AHCI_PLAT
166int sata_init(void)
167{
168 struct ccsr_ahci __iomem *ccsr_ahci;
169
170 ccsr_ahci = (void *)CONFIG_SYS_SATA2;
171 out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
172 out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
173
174 ccsr_ahci = (void *)CONFIG_SYS_SATA1;
175 out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
176 out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
177
178 ahci_init((void __iomem *)CONFIG_SYS_SATA1);
179 scsi_scan(0);
180
181 return 0;
182}
183#endif
184
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800185#elif defined(CONFIG_LS1043A)
Tang Yuantian57894be2015-12-09 15:32:18 +0800186#ifdef CONFIG_SCSI_AHCI_PLAT
187int sata_init(void)
188{
189 struct ccsr_ahci __iomem *ccsr_ahci = (void *)CONFIG_SYS_SATA;
190
191 out_le32(&ccsr_ahci->ppcfg, AHCI_PORT_PHY_1_CFG);
192 out_le32(&ccsr_ahci->pp2c, AHCI_PORT_PHY_2_CFG);
193 out_le32(&ccsr_ahci->pp3c, AHCI_PORT_PHY_3_CFG);
194 out_le32(&ccsr_ahci->ptc, AHCI_PORT_TRANS_CFG);
195
196 ahci_init((void __iomem *)CONFIG_SYS_SATA);
197 scsi_scan(0);
198
199 return 0;
200}
201#endif
202
Mingkai Hu8beb0752015-12-07 16:58:54 +0800203static void erratum_a009929(void)
204{
205#ifdef CONFIG_SYS_FSL_ERRATUM_A009929
206 struct ccsr_gur *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
207 u32 __iomem *dcsr_cop_ccp = (void *)CONFIG_SYS_DCSR_COP_CCP_ADDR;
208 u32 rstrqmr1 = gur_in32(&gur->rstrqmr1);
209
210 rstrqmr1 |= 0x00000400;
211 gur_out32(&gur->rstrqmr1, rstrqmr1);
212 writel(0x01000000, dcsr_cop_ccp);
213#endif
214}
215
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800216void fsl_lsch2_early_init_f(void)
217{
218 struct ccsr_cci400 *cci = (struct ccsr_cci400 *)CONFIG_SYS_CCI400_ADDR;
Aneesh Bansal13d984d2015-12-08 13:54:27 +0530219 struct ccsr_scfg *scfg = (struct ccsr_scfg *)CONFIG_SYS_FSL_SCFG_ADDR;
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800220
221#ifdef CONFIG_FSL_IFC
222 init_early_memctl_regs(); /* tighten IFC timing */
223#endif
224
Aneesh Bansal13d984d2015-12-08 13:54:27 +0530225 /* Make SEC reads and writes snoopable */
226 setbits_be32(&scfg->snpcnfgcr, SCFG_SNPCNFGCR_SECRDSNP |
227 SCFG_SNPCNFGCR_SECWRSNP);
228
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800229 /*
230 * Enable snoop requests and DVM message requests for
231 * Slave insterface S4 (A53 core cluster)
232 */
233 out_le32(&cci->slave[4].snoop_ctrl,
234 CCI400_DVM_MESSAGE_REQ_EN | CCI400_SNOOP_REQ_EN);
Mingkai Hu8beb0752015-12-07 16:58:54 +0800235
236 /* Erratum */
237 erratum_a009929();
Mingkai Hue4e93ea2015-10-26 19:47:51 +0800238}
Mingkai Hu0e58b512015-10-26 19:47:50 +0800239#endif
Scott Wood8e728cd2015-03-24 13:25:02 -0700240
Mingkai Hu0e58b512015-10-26 19:47:50 +0800241#ifdef CONFIG_BOARD_LATE_INIT
242int board_late_init(void)
Scott Wood8e728cd2015-03-24 13:25:02 -0700243{
Tang Yuantian57894be2015-12-09 15:32:18 +0800244#ifdef CONFIG_SCSI_AHCI_PLAT
245 sata_init();
246#endif
Aneesh Bansal39d5b3b2016-01-22 16:37:26 +0530247#ifdef CONFIG_CHAIN_OF_TRUST
248 fsl_setenv_chain_of_trust();
249#endif
Tang Yuantian57894be2015-12-09 15:32:18 +0800250
Mingkai Hu0e58b512015-10-26 19:47:50 +0800251 return 0;
Scott Wood8e728cd2015-03-24 13:25:02 -0700252}
253#endif