Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2009-2013 Freescale Semiconductor, Inc. |
Camelia Groza | a85b8c7 | 2023-07-11 15:49:14 +0300 | [diff] [blame] | 4 | * Copyright 2021-2023 NXP |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 9 | #include <env.h> |
Simon Glass | 807765b | 2019-12-28 10:44:54 -0700 | [diff] [blame] | 10 | #include <fdt_support.h> |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 11 | #include <i2c.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 13 | #include <init.h> |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 14 | #include <netdev.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 16 | #include <linux/compiler.h> |
| 17 | #include <asm/mmu.h> |
| 18 | #include <asm/processor.h> |
| 19 | #include <asm/immap_85xx.h> |
| 20 | #include <asm/fsl_law.h> |
| 21 | #include <asm/fsl_serdes.h> |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 22 | #include <asm/fsl_liodn.h> |
Camelia Groza | b14f37c | 2023-07-11 15:49:15 +0300 | [diff] [blame] | 23 | #include <clock_legacy.h> |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 24 | #include <fm_eth.h> |
| 25 | #include "t208xrdb.h" |
| 26 | #include "cpld.h" |
Ying Zhang | e5abb92 | 2015-03-10 14:21:36 +0800 | [diff] [blame] | 27 | #include "../common/vid.h" |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Camelia Groza | c91b130 | 2021-06-11 15:28:06 +0300 | [diff] [blame] | 31 | u8 get_hw_revision(void) |
| 32 | { |
| 33 | u8 ver = CPLD_READ(hw_ver); |
| 34 | |
| 35 | switch (ver) { |
| 36 | default: |
| 37 | case 0x1: |
| 38 | return 'C'; |
| 39 | case 0x0: |
| 40 | return 'D'; |
| 41 | case 0x2: |
| 42 | return 'E'; |
| 43 | } |
| 44 | } |
| 45 | |
Camelia Groza | b14f37c | 2023-07-11 15:49:15 +0300 | [diff] [blame] | 46 | #if CONFIG_IS_ENABLED(DM_SERIAL) |
| 47 | int get_serial_clock(void) |
| 48 | { |
| 49 | return get_bus_freq(0) / 2; |
| 50 | } |
| 51 | #endif |
| 52 | |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 53 | int checkboard(void) |
| 54 | { |
| 55 | struct cpu_type *cpu = gd->arch.cpu; |
| 56 | static const char *freq[3] = {"100.00MHZ", "125.00MHz", "156.25MHZ"}; |
| 57 | |
| 58 | printf("Board: %sRDB, ", cpu->name); |
Camelia Groza | c91b130 | 2021-06-11 15:28:06 +0300 | [diff] [blame] | 59 | printf("Board rev: %c CPLD ver: 0x%02x, boot from ", |
| 60 | get_hw_revision(), CPLD_READ(sw_ver)); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 61 | |
| 62 | #ifdef CONFIG_SDCARD |
| 63 | puts("SD/MMC\n"); |
| 64 | #elif CONFIG_SPIFLASH |
| 65 | puts("SPI\n"); |
| 66 | #else |
| 67 | u8 reg; |
| 68 | |
| 69 | reg = CPLD_READ(flash_csr); |
| 70 | |
| 71 | if (reg & CPLD_BOOT_SEL) { |
| 72 | puts("NAND\n"); |
| 73 | } else { |
| 74 | reg = ((reg & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT); |
Shengzhou Liu | ef531c7 | 2014-04-18 16:43:41 +0800 | [diff] [blame] | 75 | printf("NOR vBank%d\n", reg); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 76 | } |
| 77 | #endif |
| 78 | |
| 79 | puts("SERDES Reference Clocks:\n"); |
| 80 | printf("SD1_CLK1=%s, SD1_CLK2=%s\n", freq[2], freq[0]); |
| 81 | printf("SD2_CLK1=%s, SD2_CLK2=%s\n", freq[0], freq[0]); |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | int board_early_init_r(void) |
| 87 | { |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 88 | const unsigned int flashbase = CFG_SYS_FLASH_BASE; |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 89 | int flash_esel = find_tlb_idx((void *)flashbase, 1); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 90 | /* |
| 91 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 92 | * so that flash can be erased properly. |
| 93 | */ |
| 94 | |
| 95 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
| 96 | flush_dcache(); |
| 97 | invalidate_icache(); |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 98 | if (flash_esel == -1) { |
| 99 | /* very unlikely unless something is messed up */ |
| 100 | puts("Error: Could not find TLB for FLASH BASE\n"); |
| 101 | flash_esel = 2; /* give our best effort to continue */ |
| 102 | } else { |
| 103 | /* invalidate existing TLB entry for flash + promjet */ |
| 104 | disable_tlb(flash_esel); |
| 105 | } |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 106 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 107 | set_tlb(1, flashbase, CFG_SYS_FLASH_BASE_PHYS, |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 108 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, |
| 109 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); |
| 110 | |
Ying Zhang | e5abb92 | 2015-03-10 14:21:36 +0800 | [diff] [blame] | 111 | /* |
| 112 | * Adjust core voltage according to voltage ID |
| 113 | * This function changes I2C mux to channel 2. |
| 114 | */ |
| 115 | if (adjust_vdd(0)) |
| 116 | printf("Warning: Adjusting core voltage failed.\n"); |
Camelia Groza | a85b8c7 | 2023-07-11 15:49:14 +0300 | [diff] [blame] | 117 | |
| 118 | pci_init(); |
| 119 | |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 120 | return 0; |
| 121 | } |
| 122 | |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 123 | int misc_init_r(void) |
| 124 | { |
Shengzhou Liu | fd3a78a | 2015-04-22 10:59:50 +0800 | [diff] [blame] | 125 | u8 reg; |
| 126 | |
| 127 | /* Reset CS4315 PHY */ |
| 128 | reg = CPLD_READ(reset_ctl); |
| 129 | reg |= CPLD_RSTCON_EDC_RST; |
| 130 | CPLD_WRITE(reset_ctl, reg); |
| 131 | |
Camelia Groza | 6466b95 | 2021-07-29 19:31:20 +0300 | [diff] [blame] | 132 | /* Enable POR for boards revisions D and up */ |
| 133 | if (get_hw_revision() >= 'D') { |
| 134 | reg = CPLD_READ(misc_csr); |
| 135 | reg |= CPLD_MISC_POR_EN; |
| 136 | CPLD_WRITE(misc_csr, reg); |
| 137 | } |
| 138 | |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 139 | return 0; |
| 140 | } |
| 141 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 142 | int ft_board_setup(void *blob, struct bd_info *bd) |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 143 | { |
| 144 | phys_addr_t base; |
| 145 | phys_size_t size; |
| 146 | |
| 147 | ft_cpu_setup(blob, bd); |
| 148 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 149 | base = env_get_bootm_low(); |
| 150 | size = env_get_bootm_size(); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 151 | |
| 152 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 153 | |
| 154 | #ifdef CONFIG_PCI |
| 155 | pci_of_setup(blob, bd); |
| 156 | #endif |
| 157 | |
| 158 | fdt_fixup_liodn(blob); |
Sriram Dash | a5c289b | 2016-09-16 17:12:15 +0530 | [diff] [blame] | 159 | fsl_fdt_fixup_dr_usb(blob, bd); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 160 | |
| 161 | #ifdef CONFIG_SYS_DPAA_FMAN |
Camelia Groza | 8092e9d | 2021-04-13 19:47:57 +0300 | [diff] [blame] | 162 | fdt_fixup_board_fman_ethernet(blob); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 163 | fdt_fixup_board_enet(blob); |
Camelia Groza | 4e21a55 | 2021-06-16 17:47:31 +0530 | [diff] [blame] | 164 | fdt_fixup_board_phy(blob); |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 165 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 166 | |
| 167 | return 0; |
Shengzhou Liu | 8d67c36 | 2014-03-05 15:04:48 +0800 | [diff] [blame] | 168 | } |
Kuldeep Singh | 8ae83cc | 2021-08-10 11:20:10 +0530 | [diff] [blame] | 169 | |
| 170 | ulong *cs4340_get_fw_addr(void) |
| 171 | { |
| 172 | ulong cortina_fw_addr = CONFIG_CORTINA_FW_ADDR; |
| 173 | |
| 174 | #ifdef CONFIG_SYS_CORTINA_FW_IN_NOR |
| 175 | u8 reg; |
| 176 | |
| 177 | reg = CPLD_READ(flash_csr); |
| 178 | if (!(reg & CPLD_BOOT_SEL)) { |
| 179 | reg = ((reg & CPLD_LBMAP_MASK) >> CPLD_LBMAP_SHIFT); |
| 180 | if (reg == 0) |
| 181 | cortina_fw_addr = CORTINA_FW_ADDR_IFCNOR; |
| 182 | else if (reg == 4) |
| 183 | cortina_fw_addr = CORTINA_FW_ADDR_IFCNOR_ALTBANK; |
| 184 | } |
| 185 | #endif |
| 186 | |
| 187 | return (ulong *)cortina_fw_addr; |
| 188 | } |