blob: 6ad2543438674733fc713042806c7b7cd1c5c41a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +02002/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +02006 */
7
8#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -06009#include <env.h>
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020010#include <netdev.h>
11#include <asm/cache.h>
Lei Wena7efd712011-10-18 20:11:42 +053012#include <asm/io.h>
13#include <asm/arch/cpu.h>
Stefan Roese3dc23f72014-10-22 12:13:06 +020014#include <asm/arch/soc.h>
DrEagle3fe3b4f2014-07-25 21:07:30 +020015#include <mvebu_mmc.h>
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020016
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020017void reset_cpu(unsigned long ignored)
18{
19 struct kwcpu_registers *cpureg =
20 (struct kwcpu_registers *)KW_CPU_REG_BASE;
21
22 writel(readl(&cpureg->rstoutn_mask) | (1 << 2),
23 &cpureg->rstoutn_mask);
24 writel(readl(&cpureg->sys_soft_rst) | 1,
25 &cpureg->sys_soft_rst);
26 while (1) ;
27}
28
29/*
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020030 * Window Size
31 * Used with the Base register to set the address window size and location.
32 * Must be programmed from LSB to MSB as sequence of ones followed by
33 * sequence of zeros. The number of ones specifies the size of the window in
34 * 64 KByte granularity (e.g., a value of 0x00FF specifies 256 = 16 MByte).
35 * NOTE: A value of 0x0 specifies 64-KByte size.
36 */
Prafulla Wadaskar78eabb92009-06-29 20:55:54 +053037unsigned int kw_winctrl_calcsize(unsigned int sizeval)
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020038{
39 int i;
40 unsigned int j = 0;
41 u32 val = sizeval >> 1;
42
Prafulla Wadaskarf1060562010-08-26 14:43:55 +053043 for (i = 0; val >= 0x10000; i++) {
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020044 j |= (1 << i);
45 val = val >> 1;
46 }
47 return (0x0000ffff & j);
48}
49
Chris Packham8ef078b2019-03-13 20:47:03 +130050static struct mbus_win windows[] = {
51 /* Window 0: PCIE MEM address space */
52 { KW_DEFADR_PCI_MEM, 1024 * 1024 * 256,
53 KWCPU_TARGET_PCIE, KWCPU_ATTR_PCIE_MEM },
54
55 /* Window 1: PCIE IO address space */
56 { KW_DEFADR_PCI_IO, 1024 * 64,
57 KWCPU_TARGET_PCIE, KWCPU_ATTR_PCIE_IO },
58
59 /* Window 2: NAND Flash address space */
60 { KW_DEFADR_NANDF, 1024 * 1024 * 128,
61 KWCPU_TARGET_MEMORY, KWCPU_ATTR_NANDFLASH },
62
63 /* Window 3: SPI Flash address space */
64 { KW_DEFADR_SPIF, 1024 * 1024 * 128,
65 KWCPU_TARGET_MEMORY, KWCPU_ATTR_SPIFLASH },
66
67 /* Window 4: BOOT Memory address space */
68 { KW_DEFADR_BOOTROM, 1024 * 1024 * 128,
69 KWCPU_TARGET_MEMORY, KWCPU_ATTR_BOOTROM },
70
71 /* Window 5: Security SRAM address space */
72 { KW_DEFADR_SASRAM, 1024 * 64,
73 KWCPU_TARGET_SASRAM, KWCPU_ATTR_SASRAM },
74};
75
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +020076/*
Prafulla Wadaskar49d2cb42009-08-20 20:59:28 +053077 * SYSRSTn Duration Counter Support
78 *
79 * Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
80 * When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
81 * The SYSRSTn duration counter is useful for implementing a manufacturer
82 * or factory reset. Upon a long reset assertion that is greater than a
83 * pre-configured environment variable value for sysrstdelay,
84 * The counter value is stored in the SYSRSTn Length Counter Register
85 * The counter is based on the 25-MHz reference clock (40ns)
86 * It is a 29-bit counter, yielding a maximum counting duration of
87 * 2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
88 * it remains at this value until counter reset is triggered by setting
89 * bit 31 of KW_REG_SYSRST_CNT
90 */
91static void kw_sysrst_action(void)
92{
93 int ret;
Simon Glass00caae62017-08-03 12:22:12 -060094 char *s = env_get("sysrstcmd");
Prafulla Wadaskar49d2cb42009-08-20 20:59:28 +053095
96 if (!s) {
97 debug("Error.. %s failed, check sysrstcmd\n",
98 __FUNCTION__);
99 return;
100 }
101
102 debug("Starting %s process...\n", __FUNCTION__);
Simon Glass53071532012-02-14 19:59:21 +0000103 ret = run_command(s, 0);
Thomas Betker73671da2014-06-05 20:07:56 +0200104 if (ret != 0)
Prafulla Wadaskar49d2cb42009-08-20 20:59:28 +0530105 debug("Error.. %s failed\n", __FUNCTION__);
106 else
107 debug("%s process finished\n", __FUNCTION__);
108}
109
110static void kw_sysrst_check(void)
111{
112 u32 sysrst_cnt, sysrst_dly;
113 char *s;
114
115 /*
116 * no action if sysrstdelay environment variable is not defined
117 */
Simon Glass00caae62017-08-03 12:22:12 -0600118 s = env_get("sysrstdelay");
Prafulla Wadaskar49d2cb42009-08-20 20:59:28 +0530119 if (s == NULL)
120 return;
121
122 /* read sysrstdelay value */
123 sysrst_dly = (u32) simple_strtoul(s, NULL, 10);
124
125 /* read SysRst Length counter register (bits 28:0) */
126 sysrst_cnt = (0x1fffffff & readl(KW_REG_SYSRST_CNT));
127 debug("H/w Rst hold time: %d.%d secs\n",
128 sysrst_cnt / SYSRST_CNT_1SEC_VAL,
129 sysrst_cnt % SYSRST_CNT_1SEC_VAL);
130
131 /* clear the counter for next valid read*/
132 writel(1 << 31, KW_REG_SYSRST_CNT);
133
134 /*
135 * sysrst_action:
136 * if H/w Reset key is pressed and hold for time
137 * more than sysrst_dly in seconds
138 */
139 if (sysrst_cnt >= SYSRST_CNT_1SEC_VAL * sysrst_dly)
140 kw_sysrst_action();
141}
142
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200143#if defined(CONFIG_DISPLAY_CPUINFO)
144int print_cpuinfo(void)
145{
Luka Perkov62d1e992013-12-23 01:23:07 +0100146 char *rev = "??";
Prafulla Wadaskarc0cd0202010-09-20 17:19:42 +0530147 u16 devid = (readl(KW_REG_PCIE_DEVID) >> 16) & 0xffff;
148 u8 revid = readl(KW_REG_PCIE_REVID) & 0xff;
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200149
Prafulla Wadaskarc0cd0202010-09-20 17:19:42 +0530150 if ((readl(KW_REG_DEVICE_ID) & 0x03) > 2) {
151 printf("Error.. %s:Unsupported Kirkwood SoC 88F%04x\n", __FUNCTION__, devid);
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200152 return -1;
153 }
Prafulla Wadaskarc0cd0202010-09-20 17:19:42 +0530154
155 switch (revid) {
156 case 0:
Luka Perkov62d1e992013-12-23 01:23:07 +0100157 if (devid == 0x6281)
158 rev = "Z0";
159 else if (devid == 0x6282)
160 rev = "A0";
161 break;
162 case 1:
163 rev = "A1";
Prafulla Wadaskarc0cd0202010-09-20 17:19:42 +0530164 break;
165 case 2:
166 rev = "A0";
167 break;
168 case 3:
169 rev = "A1";
170 break;
171 default:
Prafulla Wadaskarc0cd0202010-09-20 17:19:42 +0530172 break;
173 }
174
175 printf("SoC: Kirkwood 88F%04x_%s\n", devid, rev);
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200176 return 0;
177}
178#endif /* CONFIG_DISPLAY_CPUINFO */
179
180#ifdef CONFIG_ARCH_CPU_INIT
181int arch_cpu_init(void)
182{
183 u32 reg;
184 struct kwcpu_registers *cpureg =
185 (struct kwcpu_registers *)KW_CPU_REG_BASE;
186
Chris Packham8ef078b2019-03-13 20:47:03 +1300187 /* Linux expects the internal registers to be at 0xf1000000 */
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200188 writel(KW_REGS_PHY_BASE, KW_OFFSET_REG);
189
190 /* Enable and invalidate L2 cache in write through mode */
191 writel(readl(&cpureg->l2_cfg) | 0x18, &cpureg->l2_cfg);
192 invalidate_l2_cache();
193
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200194#ifdef CONFIG_KIRKWOOD_RGMII_PAD_1V8
195 /*
196 * Configures the I/O voltage of the pads connected to Egigabit
197 * Ethernet interface to 1.8V
Robert P. J. Day1bce2ae2013-09-16 07:15:45 -0400198 * By default it is set to 3.3V
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200199 */
200 reg = readl(KW_REG_MPP_OUT_DRV_REG);
201 reg |= (1 << 7);
202 writel(reg, KW_REG_MPP_OUT_DRV_REG);
203#endif
204#ifdef CONFIG_KIRKWOOD_EGIGA_INIT
205 /*
206 * Set egiga port0/1 in normal functional mode
207 * This is required becasue on kirkwood by default ports are in reset mode
208 * OS egiga driver may not have provision to set them in normal mode
209 * and if u-boot is build without network support, network may fail at OS level
210 */
211 reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(0));
212 reg &= ~(1 << 4); /* Clear PortReset Bit */
213 writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(0)));
214 reg = readl(KWGBE_PORT_SERIAL_CONTROL1_REG(1));
215 reg &= ~(1 << 4); /* Clear PortReset Bit */
216 writel(reg, (KWGBE_PORT_SERIAL_CONTROL1_REG(1)));
217#endif
218#ifdef CONFIG_KIRKWOOD_PCIE_INIT
219 /*
220 * Enable PCI Express Port0
221 */
222 reg = readl(&cpureg->ctrl_stat);
223 reg |= (1 << 0); /* Set PEX0En Bit */
224 writel(reg, &cpureg->ctrl_stat);
225#endif
226 return 0;
227}
228#endif /* CONFIG_ARCH_CPU_INIT */
229
230/*
231 * SOC specific misc init
232 */
233#if defined(CONFIG_ARCH_MISC_INIT)
234int arch_misc_init(void)
235{
236 volatile u32 temp;
237
238 /*CPU streaming & write allocate */
239 temp = readfr_extra_feature_reg();
240 temp &= ~(1 << 28); /* disable wr alloc */
241 writefr_extra_feature_reg(temp);
242
243 temp = readfr_extra_feature_reg();
244 temp &= ~(1 << 29); /* streaming disabled */
245 writefr_extra_feature_reg(temp);
246
247 /* L2Cache settings */
248 temp = readfr_extra_feature_reg();
249 /* Disable L2C pre fetch - Set bit 24 */
250 temp |= (1 << 24);
251 /* enable L2C - Set bit 22 */
252 temp |= (1 << 22);
253 writefr_extra_feature_reg(temp);
254
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200255 /* Change reset vector to address 0x0 */
256 temp = get_cr();
257 set_cr(temp & ~CR_V);
258
Chris Packham8ef078b2019-03-13 20:47:03 +1300259 /* Configure mbus windows */
260 mvebu_mbus_probe(windows, ARRAY_SIZE(windows));
261
Prafulla Wadaskar49d2cb42009-08-20 20:59:28 +0530262 /* checks and execute resset to factory event */
263 kw_sysrst_check();
264
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200265 return 0;
266}
267#endif /* CONFIG_ARCH_MISC_INIT */
268
Albert Aribaudd44265a2010-07-12 22:24:28 +0200269#ifdef CONFIG_MVGBE
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200270int cpu_eth_init(bd_t *bis)
271{
Albert Aribaudd44265a2010-07-12 22:24:28 +0200272 mvgbe_initialize(bis);
Prafulla Wadaskar4efb77d2009-06-20 11:01:53 +0200273 return 0;
274}
275#endif
DrEagle3fe3b4f2014-07-25 21:07:30 +0200276
277#ifdef CONFIG_MVEBU_MMC
278int board_mmc_init(bd_t *bis)
279{
280 mvebu_mmc_init(bis);
281 return 0;
282}
283#endif /* CONFIG_MVEBU_MMC */