Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 2 | /* |
Kumar Gala | 561e710 | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 3 | * Copyright 2007-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <command.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 8 | #include <env.h> |
Simon Glass | 4d72caa | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 9 | #include <image.h> |
Simon Glass | 5255932 | 2019-11-14 12:57:46 -0700 | [diff] [blame] | 10 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <net.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 13 | #include <pci.h> |
| 14 | #include <asm/processor.h> |
| 15 | #include <asm/mmu.h> |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 16 | #include <asm/cache.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 17 | #include <asm/immap_85xx.h> |
Kumar Gala | c851462 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 18 | #include <asm/fsl_pci.h> |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 19 | #include <fsl_ddr_sdram.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 20 | #include <asm/io.h> |
Kumar Gala | 5d27e02 | 2010-12-15 04:55:20 -0600 | [diff] [blame] | 21 | #include <asm/fsl_serdes.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 22 | #include <miiphy.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 23 | #include <linux/delay.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 24 | #include <linux/libfdt.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 25 | #include <fdt_support.h> |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 26 | #include <tsec.h> |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 27 | #include <fsl_mdio.h> |
Kumar Gala | b560ab8 | 2009-08-08 10:42:30 -0500 | [diff] [blame] | 28 | #include <netdev.h> |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 29 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 30 | #include "../common/sgmii_riser.h" |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 31 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 32 | int checkboard (void) |
| 33 | { |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 34 | u8 vboot; |
| 35 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 36 | |
Timur Tabi | 5d065c3 | 2012-03-15 11:42:27 +0000 | [diff] [blame] | 37 | printf("Board: MPC8572DS Sys ID: 0x%02x, " |
Kumar Gala | 6bb5b41 | 2009-07-14 22:42:01 -0500 | [diff] [blame] | 38 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 39 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 40 | in_8(pixis_base + PIXIS_PVER)); |
| 41 | |
| 42 | vboot = in_8(pixis_base + PIXIS_VBOOT); |
| 43 | switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) { |
| 44 | case PIXIS_VBOOT_LBMAP_NOR0: |
| 45 | puts ("vBank: 0\n"); |
| 46 | break; |
| 47 | case PIXIS_VBOOT_LBMAP_PJET: |
| 48 | puts ("Promjet\n"); |
| 49 | break; |
| 50 | case PIXIS_VBOOT_LBMAP_NAND: |
| 51 | puts ("NAND\n"); |
| 52 | break; |
| 53 | case PIXIS_VBOOT_LBMAP_NOR1: |
| 54 | puts ("vBank: 1\n"); |
| 55 | break; |
| 56 | } |
| 57 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 61 | |
| 62 | #if !defined(CONFIG_SPD_EEPROM) |
| 63 | /* |
| 64 | * Fixed sdram init -- doesn't use serial presence detect. |
| 65 | */ |
| 66 | |
| 67 | phys_size_t fixed_sdram (void) |
| 68 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 69 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
York Sun | 9a17eb5 | 2013-11-18 10:29:32 -0800 | [diff] [blame] | 70 | struct ccsr_ddr __iomem *ddr = &immap->im_ddr; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 71 | uint d_init; |
| 72 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 73 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 74 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 75 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 76 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 77 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 78 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 79 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 80 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
| 81 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 82 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 83 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 84 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 85 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 86 | |
| 87 | #if defined (CONFIG_DDR_ECC) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN; |
| 89 | ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS; |
| 90 | ddr->err_sbe = CONFIG_SYS_DDR_SBE; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 91 | #endif |
| 92 | asm("sync;isync"); |
| 93 | |
| 94 | udelay(500); |
| 95 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 96 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 97 | |
| 98 | #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 99 | d_init = 1; |
| 100 | debug("DDR - 1st controller: memory initializing\n"); |
| 101 | /* |
| 102 | * Poll until memory is initialized. |
| 103 | * 512 Meg at 400 might hit this 200 times or so. |
| 104 | */ |
| 105 | while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) { |
| 106 | udelay(1000); |
| 107 | } |
| 108 | debug("DDR: memory initialized\n\n"); |
| 109 | asm("sync; isync"); |
| 110 | udelay(500); |
| 111 | #endif |
| 112 | |
| 113 | return 512 * 1024 * 1024; |
| 114 | } |
| 115 | |
| 116 | #endif |
| 117 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 118 | #ifdef CONFIG_PCI |
| 119 | void pci_init_board(void) |
| 120 | { |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 121 | struct pci_controller *hose; |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 122 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 123 | fsl_pcie_init_board(0); |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 124 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 125 | hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR)); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 126 | |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 127 | if (hose) { |
| 128 | u32 temp32; |
| 129 | u8 uli_busno = hose->first_busno + 2; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 130 | |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 131 | /* |
| 132 | * Activate ULI1575 legacy chip by performing a fake |
| 133 | * memory access. Needed to make ULI RTC work. |
| 134 | * Device 1d has the first on-board memory BAR. |
| 135 | */ |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 136 | pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0), |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 137 | PCI_BASE_ADDRESS_1, &temp32); |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 138 | |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 139 | if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) { |
Kumar Gala | 18ea555 | 2010-12-17 06:53:52 -0600 | [diff] [blame] | 140 | void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0), |
Kumar Gala | f61dae7 | 2009-09-03 10:20:09 -0500 | [diff] [blame] | 141 | temp32, 4, 0); |
| 142 | debug(" uli1572 read to %p\n", p); |
| 143 | in_be32(p); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 144 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 145 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 146 | } |
| 147 | #endif |
| 148 | |
| 149 | int board_early_init_r(void) |
| 150 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 151 | const unsigned int flashbase = CONFIG_SYS_FLASH_BASE; |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 152 | int flash_esel = find_tlb_idx((void *)flashbase, 1); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 153 | |
| 154 | /* |
| 155 | * Remap Boot flash + PROMJET region to caching-inhibited |
| 156 | * so that flash can be erased properly. |
| 157 | */ |
| 158 | |
Kumar Gala | 7c0d4a7 | 2008-09-22 14:11:11 -0500 | [diff] [blame] | 159 | /* Flush d-cache and invalidate i-cache of any FLASH data */ |
Wolfgang Denk | 3cbd823 | 2008-11-02 16:14:22 +0100 | [diff] [blame] | 160 | flush_dcache(); |
| 161 | invalidate_icache(); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 162 | |
York Sun | 9d04568 | 2014-06-24 21:16:20 -0700 | [diff] [blame] | 163 | if (flash_esel == -1) { |
| 164 | /* very unlikely unless something is messed up */ |
| 165 | puts("Error: Could not find TLB for FLASH BASE\n"); |
| 166 | flash_esel = 2; /* give our best effort to continue */ |
| 167 | } else { |
| 168 | /* invalidate existing TLB entry for flash + promjet */ |
| 169 | disable_tlb(flash_esel); |
| 170 | } |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 171 | |
Kumar Gala | c953ddf | 2008-12-02 14:19:34 -0600 | [diff] [blame] | 172 | set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */ |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 173 | MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */ |
| 174 | 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */ |
| 175 | |
| 176 | return 0; |
| 177 | } |
| 178 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 179 | int board_eth_init(bd_t *bis) |
| 180 | { |
Bin Meng | 4521ae9 | 2016-01-11 22:41:14 -0800 | [diff] [blame] | 181 | #ifdef CONFIG_TSEC_ENET |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 182 | struct fsl_pq_mdio_info mdio_info; |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 183 | struct tsec_info_struct tsec_info[4]; |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 184 | int num = 0; |
| 185 | |
| 186 | #ifdef CONFIG_TSEC1 |
| 187 | SET_STD_TSEC_INFO(tsec_info[num], 1); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 188 | if (is_serdes_configured(SGMII_TSEC1)) { |
| 189 | puts("eTSEC1 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 190 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 191 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 192 | num++; |
| 193 | #endif |
| 194 | #ifdef CONFIG_TSEC2 |
| 195 | SET_STD_TSEC_INFO(tsec_info[num], 2); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 196 | if (is_serdes_configured(SGMII_TSEC2)) { |
| 197 | puts("eTSEC2 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 198 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 199 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 200 | num++; |
| 201 | #endif |
| 202 | #ifdef CONFIG_TSEC3 |
| 203 | SET_STD_TSEC_INFO(tsec_info[num], 3); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 204 | if (is_serdes_configured(SGMII_TSEC3)) { |
| 205 | puts("eTSEC3 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 206 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 207 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 208 | num++; |
| 209 | #endif |
| 210 | #ifdef CONFIG_TSEC4 |
| 211 | SET_STD_TSEC_INFO(tsec_info[num], 4); |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 212 | if (is_serdes_configured(SGMII_TSEC4)) { |
| 213 | puts("eTSEC4 is in sgmii mode.\n"); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 214 | tsec_info[num].flags |= TSEC_SGMII; |
Kumar Gala | 058d7dc | 2010-12-16 14:28:06 -0600 | [diff] [blame] | 215 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 216 | num++; |
| 217 | #endif |
| 218 | |
| 219 | if (!num) { |
| 220 | printf("No TSECs initialized\n"); |
| 221 | |
| 222 | return 0; |
| 223 | } |
| 224 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 225 | #ifdef CONFIG_FSL_SGMII_RISER |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 226 | fsl_sgmii_riser_init(tsec_info, num); |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 227 | #endif |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 228 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 229 | mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR; |
| 230 | mdio_info.name = DEFAULT_MII_NAME; |
| 231 | fsl_pq_mdio_init(bis, &mdio_info); |
| 232 | |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 233 | tsec_eth_init(bis, tsec_info, num); |
Bin Meng | 4521ae9 | 2016-01-11 22:41:14 -0800 | [diff] [blame] | 234 | #endif |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 235 | |
Kumar Gala | b560ab8 | 2009-08-08 10:42:30 -0500 | [diff] [blame] | 236 | return pci_eth_init(bis); |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 237 | } |
Liu Yu | 7e183ca | 2008-10-10 11:40:59 +0800 | [diff] [blame] | 238 | |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 239 | #if defined(CONFIG_OF_BOARD_SETUP) |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 240 | int ft_board_setup(void *blob, bd_t *bd) |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 241 | { |
Kumar Gala | b673051 | 2009-02-09 22:03:04 -0600 | [diff] [blame] | 242 | phys_addr_t base; |
| 243 | phys_size_t size; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 244 | |
| 245 | ft_cpu_setup(blob, bd); |
| 246 | |
Simon Glass | 723806c | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 247 | base = env_get_bootm_low(); |
| 248 | size = env_get_bootm_size(); |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 249 | |
| 250 | fdt_fixup_memory(blob, (u64)base, (u64)size); |
| 251 | |
Kumar Gala | 6525d51 | 2010-07-08 22:37:44 -0500 | [diff] [blame] | 252 | FT_FSL_PCI_SETUP; |
| 253 | |
Andy Fleming | feede8b | 2008-12-05 20:10:22 -0600 | [diff] [blame] | 254 | #ifdef CONFIG_FSL_SGMII_RISER |
| 255 | fsl_sgmii_riser_fdt_fixup(blob); |
| 256 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 257 | |
| 258 | return 0; |
Kumar Gala | 129ba61 | 2008-08-12 11:13:08 -0500 | [diff] [blame] | 259 | } |
| 260 | #endif |