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