2 * (C) Copyright 2013 Keymile AG
5 * Copyright 2011,2012 Freescale Semiconductor, Inc.
7 * SPDX-License-Identifier: GPL-2.0+
13 #include <linux/compiler.h>
15 #include <asm/processor.h>
16 #include <asm/cache.h>
17 #include <asm/immap_85xx.h>
18 #include <asm/fsl_law.h>
19 #include <asm/fsl_serdes.h>
20 #include <asm/fsl_portals.h>
21 #include <asm/fsl_liodn.h>
24 #include "../common/common.h"
27 DECLARE_GLOBAL_DATA_PTR;
31 printf("Board: Keymile %s\n", CONFIG_KM_BOARD_NAME);
36 /* TODO: implement the I2C deblocking function */
37 int i2c_make_abort(void)
45 int board_early_init_f(void)
47 ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
49 /* board only uses the DDR_MCK0, so disable the DDR_MCK1/2/3 */
50 setbits_be32(&gur->ddrclkdr, 0x001f000f);
52 /* take the Zarlinks out of reset as soon as possible */
53 qrio_prst(ZL30158_RST, false, false);
54 qrio_prst(ZL30343_RST, false, false);
56 /* and set their reset to power-up only */
57 qrio_prstcfg(ZL30158_RST, PRSTCFG_POWUP_RST);
58 qrio_prstcfg(ZL30343_RST, PRSTCFG_POWUP_RST);
63 int board_early_init_r(void)
65 /* Flush d-cache and invalidate i-cache of any FLASH data */
75 unsigned long get_board_sys_clk(unsigned long dummy)
80 #define WDMASK_OFF 0x16
82 static void qrio_wdmask(u8 bit, bool wden)
85 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
87 wdmask = in_be16(qrio_base + WDMASK_OFF);
92 wdmask &= ~(1 << bit);
94 out_be16(qrio_base + WDMASK_OFF, wdmask);
99 void qrio_prst(u8 bit, bool en, bool wden)
102 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
104 qrio_wdmask(bit, wden);
106 prst = in_be16(qrio_base + PRST_OFF);
113 out_be16(qrio_base + PRST_OFF, prst);
116 #define PRSTCFG_OFF 0x1c
118 void qrio_prstcfg(u8 bit, u8 mode)
122 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
124 prstcfg = in_be32(qrio_base + PRSTCFG_OFF);
126 for (i = 0; i < 2; i++) {
128 set_bit(2*bit+i, &prstcfg);
130 clear_bit(2*bit+i, &prstcfg);
133 out_be32(qrio_base + PRSTCFG_OFF, prstcfg);
137 #define BOOTCOUNT_OFF 0x12
139 void bootcount_store(ulong counter)
142 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
144 val = (counter <= 255) ? (u8)counter : 255;
145 out_8(qrio_base + BOOTCOUNT_OFF, val);
148 ulong bootcount_load(void)
151 void __iomem *qrio_base = (void *)CONFIG_SYS_QRIO_BASE;
152 val = in_8(qrio_base + BOOTCOUNT_OFF);
156 #define NUM_SRDS_BANKS 2
159 int misc_init_r(void)
161 serdes_corenet_t *regs = (void *)CONFIG_SYS_FSL_CORENET_SERDES_ADDR;
162 u32 expected[NUM_SRDS_BANKS] = {SRDS_PLLCR0_RFCK_SEL_100,
163 SRDS_PLLCR0_RFCK_SEL_125};
166 /* check SERDES reference clocks */
167 for (i = 0; i < NUM_SRDS_BANKS; i++) {
168 u32 actual = in_be32(®s->bank[i].pllcr0);
169 actual &= SRDS_PLLCR0_RFCK_SEL_MASK;
170 if (actual != expected[i]) {
171 printf("Warning: SERDES bank %u expects reference \
172 clock %sMHz, but actual is %sMHz\n", i + 1,
173 serdes_clock_to_string(expected[i]),
174 serdes_clock_to_string(actual));
178 /* take the mgmt eth phy out of reset */
179 qrio_prst(PHY_RST, false, false);
184 #if defined(CONFIG_HUSH_INIT_VAR)
185 int hush_init_var(void)
192 #if defined(CONFIG_LAST_STAGE_INIT)
193 int last_stage_init(void)
200 #ifdef CONFIG_SYS_DPAA_FMAN
201 void fdt_fixup_fman_mac_addresses(void *blob)
205 unsigned char mac_addr[6];
207 /* get the mac addr from env */
208 tmp = getenv("ethaddr");
210 printf("ethaddr env variable not defined\n");
213 for (i = 0; i < 6; i++) {
214 mac_addr[i] = tmp ? simple_strtoul(tmp, &end, 16) : 0;
216 tmp = (*end) ? end+1 : end;
219 /* find the correct fdt ethernet path and correct it */
220 node = fdt_path_offset(blob, "/soc/fman/ethernet@e8000");
222 printf("no /soc/fman/ethernet path offset\n");
225 ret = fdt_setprop(blob, node, "local-mac-address", &mac_addr, 6);
227 printf("error setting local-mac-address property\n");
233 void ft_board_setup(void *blob, bd_t *bd)
238 ft_cpu_setup(blob, bd);
240 base = getenv_bootm_low();
241 size = getenv_bootm_size();
243 fdt_fixup_memory(blob, (u64)base, (u64)size);
245 #if defined(CONFIG_HAS_FSL_DR_USB) || defined(CONFIG_HAS_FSL_MPH_USB)
246 fdt_fixup_dr_usb(blob, bd);
250 pci_of_setup(blob, bd);
253 fdt_fixup_liodn(blob);
254 #ifdef CONFIG_SYS_DPAA_FMAN
255 fdt_fixup_fman_ethernet(blob);
256 fdt_fixup_fman_mac_addresses(blob);