2 * Copyright 2013 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
10 #include <linux/compiler.h>
12 #include <asm/processor.h>
13 #include <asm/cache.h>
14 #include <asm/immap_85xx.h>
15 #include <asm/fsl_law.h>
16 #include <asm/fsl_serdes.h>
17 #include <asm/fsl_portals.h>
18 #include <asm/fsl_liodn.h>
20 #include <asm/mpc85xx_gpio.h>
25 DECLARE_GLOBAL_DATA_PTR;
29 struct cpu_type *cpu = gd->arch.cpu;
32 printf("Board: %sRDB\n", cpu->name);
33 printf("Board rev: 0x%02x CPLD ver: 0x%02x, ",
34 CPLD_READ(hw_ver), CPLD_READ(sw_ver));
36 sw = CPLD_READ(flash_ctl_status);
37 sw = ((sw & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT);
40 printf("vBank: %d\n", sw);
42 printf("Unsupported Bank=%x\n", sw);
47 int board_early_init_r(void)
49 #ifdef CONFIG_SYS_FLASH_BASE
50 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
51 const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
54 * Remap Boot flash region to caching-inhibited
55 * so that flash can be erased properly.
58 /* Flush d-cache and invalidate i-cache of any FLASH data */
62 /* invalidate existing TLB entry for flash */
63 disable_tlb(flash_esel);
65 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
66 MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
67 0, flash_esel, BOOKE_PAGESZ_256M, 1);
70 #ifdef CONFIG_SYS_DPAA_QBMAN
82 void ft_board_setup(void *blob, bd_t *bd)
87 ft_cpu_setup(blob, bd);
89 base = getenv_bootm_low();
90 size = getenv_bootm_size();
92 fdt_fixup_memory(blob, (u64)base, (u64)size);
95 pci_of_setup(blob, bd);
98 fdt_fixup_liodn(blob);
100 #ifdef CONFIG_HAS_FSL_DR_USB
101 fdt_fixup_dr_usb(blob, bd);
104 #ifdef CONFIG_SYS_DPAA_FMAN
105 fdt_fixup_fman_ethernet(blob);
109 #ifdef CONFIG_DEEP_SLEEP
110 void board_mem_sleep_setup(void)
112 /* does not provide HW signals for power management */
113 CPLD_WRITE(misc_ctl_status, (CPLD_READ(misc_ctl_status) & ~0x40));
114 /* Disable MCKE isolation */
115 gpio_set_value(2, 0);