Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 |
| 4 | * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com. |
| 5 | * |
| 6 | * Copyright 2004 Freescale Semiconductor. |
| 7 | * (C) Copyright 2002,2003, Motorola Inc. |
| 8 | * Xianghua Xiao, (X.Xiao@motorola.com) |
| 9 | * |
| 10 | * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com> |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Simon Glass | d96c260 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 14 | #include <clock_legacy.h> |
Simon Glass | 3a7d557 | 2019-08-01 09:46:42 -0600 | [diff] [blame] | 15 | #include <env.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 16 | #include <init.h> |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 17 | #include <pci.h> |
Simon Glass | b79fdc7 | 2020-05-10 11:39:54 -0600 | [diff] [blame] | 18 | #include <uuid.h> |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 19 | #include <asm/processor.h> |
| 20 | #include <asm/immap_85xx.h> |
| 21 | #include <ioports.h> |
| 22 | #include <flash.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> |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 25 | #include <fdt_support.h> |
Andy Fleming | e1eb0e2 | 2008-06-10 18:49:34 -0500 | [diff] [blame] | 26 | #include <asm/io.h> |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 27 | #include <i2c.h> |
| 28 | #include <mb862xx.h> |
| 29 | #include <video_fb.h> |
Sergei Poselenov | 59abd15 | 2008-06-06 15:42:41 +0200 | [diff] [blame] | 30 | #include "upm_table.h" |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 31 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
| 34 | extern flash_info_t flash_info[]; /* FLASH chips info */ |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 35 | extern GraphicDevice mb862xx; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 36 | |
| 37 | void local_bus_init (void); |
| 38 | ulong flash_get_size (ulong base, int banknum); |
| 39 | |
| 40 | int checkboard (void) |
| 41 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 43 | char buf[64]; |
Sergei Poselenov | 5e1882d | 2008-05-27 13:47:00 +0200 | [diff] [blame] | 44 | int f; |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 45 | int i = env_get_f("serial#", buf, sizeof(buf)); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 46 | #ifdef CONFIG_PCI |
| 47 | char *src; |
| 48 | #endif |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 49 | |
| 50 | puts("Board: Socrates"); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 51 | if (i > 0) { |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 52 | puts(", serial# "); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 53 | puts(buf); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 54 | } |
| 55 | putc('\n'); |
| 56 | |
Heiko Schocher | 2a51fe0 | 2019-10-16 05:55:54 +0200 | [diff] [blame] | 57 | #if defined(CONFIG_PCI) || defined(CONFIG_DM_PCI) |
Andy Fleming | e1eb0e2 | 2008-06-10 18:49:34 -0500 | [diff] [blame] | 58 | /* Check the PCI_clk sel bit */ |
| 59 | if (in_be32(&gur->porpllsr) & (1<<15)) { |
Sergei Poselenov | 5e1882d | 2008-05-27 13:47:00 +0200 | [diff] [blame] | 60 | src = "SYSCLK"; |
| 61 | f = CONFIG_SYS_CLK_FREQ; |
| 62 | } else { |
| 63 | src = "PCI_CLK"; |
| 64 | f = CONFIG_PCI_CLK_FREQ; |
| 65 | } |
| 66 | printf ("PCI1: 32 bit, %d MHz (%s)\n", f/1000000, src); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 67 | #else |
| 68 | printf ("PCI1: disabled\n"); |
| 69 | #endif |
| 70 | |
| 71 | /* |
| 72 | * Initialize local bus. |
| 73 | */ |
| 74 | local_bus_init (); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 75 | return 0; |
| 76 | } |
| 77 | |
| 78 | int misc_init_r (void) |
| 79 | { |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 80 | /* |
| 81 | * Adjust flash start and offset to detected values |
| 82 | */ |
| 83 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 84 | gd->bd->bi_flashoffset = 0; |
| 85 | |
| 86 | /* |
| 87 | * Check if boot FLASH isn't max size |
| 88 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | if (gd->bd->bi_flashsize < (0 - CONFIG_SYS_FLASH0)) { |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 90 | set_lbc_or(0, gd->bd->bi_flashstart | |
| 91 | (CONFIG_SYS_OR0_PRELIM & 0x00007fff)); |
| 92 | set_lbc_br(0, gd->bd->bi_flashstart | |
| 93 | (CONFIG_SYS_BR0_PRELIM & 0x00007fff)); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 94 | |
| 95 | /* |
| 96 | * Re-check to get correct base address |
| 97 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | flash_get_size(gd->bd->bi_flashstart, CONFIG_SYS_MAX_FLASH_BANKS - 1); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | /* |
| 102 | * Check if only one FLASH bank is available |
| 103 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 104 | if (gd->bd->bi_flashsize != CONFIG_SYS_MAX_FLASH_BANKS * (0 - CONFIG_SYS_FLASH0)) { |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 105 | set_lbc_or(1, 0); |
| 106 | set_lbc_br(1, 0); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 107 | |
| 108 | /* |
| 109 | * Re-do flash protection upon new addresses |
| 110 | */ |
Simon Glass | a595a0e | 2020-05-10 11:39:53 -0600 | [diff] [blame] | 111 | flash_protect(FLAG_PROTECT_CLEAR, |
| 112 | gd->bd->bi_flashstart, 0xffffffff, |
| 113 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 114 | |
| 115 | /* Monitor protection ON by default */ |
Simon Glass | a595a0e | 2020-05-10 11:39:53 -0600 | [diff] [blame] | 116 | flash_protect(FLAG_PROTECT_SET, |
| 117 | CONFIG_SYS_MONITOR_BASE, CONFIG_SYS_MONITOR_BASE + |
| 118 | monitor_flash_len - 1, |
| 119 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 120 | |
| 121 | /* Environment protection ON by default */ |
Simon Glass | a595a0e | 2020-05-10 11:39:53 -0600 | [diff] [blame] | 122 | flash_protect(FLAG_PROTECT_SET, |
| 123 | CONFIG_ENV_ADDR, |
| 124 | CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1, |
| 125 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 126 | |
| 127 | /* Redundant environment protection ON by default */ |
Simon Glass | a595a0e | 2020-05-10 11:39:53 -0600 | [diff] [blame] | 128 | flash_protect(FLAG_PROTECT_SET, |
| 129 | CONFIG_ENV_ADDR_REDUND, |
| 130 | CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 132 | } |
| 133 | |
Heiko Schocher | 2a51fe0 | 2019-10-16 05:55:54 +0200 | [diff] [blame] | 134 | #if defined(CONFIG_DM_PCI) |
| 135 | pci_init(); |
| 136 | #endif |
| 137 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 138 | return 0; |
| 139 | } |
| 140 | |
| 141 | /* |
| 142 | * Initialize Local Bus |
| 143 | */ |
| 144 | void local_bus_init (void) |
| 145 | { |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 146 | volatile fsl_lbc_t *lbc = LBC_BASE_ADDR; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 147 | volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 148 | sys_info_t sysinfo; |
| 149 | uint clkdiv; |
| 150 | uint lbc_mhz; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 151 | uint lcrr = CONFIG_SYS_LBC_LCRR; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 152 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 153 | get_sys_info (&sysinfo); |
Trent Piepho | a5d212a | 2008-12-03 15:16:34 -0800 | [diff] [blame] | 154 | clkdiv = lbc->lcrr & LCRR_CLKDIV; |
Prabhakar Kushwaha | 997399f | 2013-08-16 14:52:26 +0530 | [diff] [blame] | 155 | lbc_mhz = sysinfo.freq_systembus / 1000000 / clkdiv; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 156 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 157 | /* Disable PLL bypass for Local Bus Clock >= 66 MHz */ |
| 158 | if (lbc_mhz >= 66) |
| 159 | lcrr &= ~LCRR_DBYP; /* DLL Enabled */ |
| 160 | else |
| 161 | lcrr |= LCRR_DBYP; /* DLL Bypass */ |
| 162 | |
| 163 | out_be32 (&lbc->lcrr, lcrr); |
| 164 | asm ("sync;isync;msync"); |
| 165 | |
| 166 | out_be32 (&lbc->ltesr, 0xffffffff); /* Clear LBC error interrupts */ |
| 167 | out_be32 (&lbc->lteir, 0xffffffff); /* Enable LBC error interrupts */ |
| 168 | out_be32 (&ecm->eedr, 0xffffffff); /* Clear ecm errors */ |
| 169 | out_be32 (&ecm->eeer, 0xffffffff); /* Enable ecm errors */ |
| 170 | |
| 171 | /* Init UPMA for FPGA access */ |
| 172 | out_be32 (&lbc->mamr, 0x44440); /* Use a customer-supplied value */ |
Simon Glass | 6d1fdb1 | 2019-12-28 10:44:57 -0700 | [diff] [blame] | 173 | upmconfig(UPMA, (uint *)UPMTableA, sizeof(UPMTableA) / sizeof(int)); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 174 | |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 175 | /* Init UPMB for Lime controller access */ |
| 176 | out_be32 (&lbc->mbmr, 0x444440); /* Use a customer-supplied value */ |
Simon Glass | 6d1fdb1 | 2019-12-28 10:44:57 -0700 | [diff] [blame] | 177 | upmconfig(UPMB, (uint *)UPMTableB, sizeof(UPMTableB) / sizeof(int)); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 180 | #ifdef CONFIG_BOARD_EARLY_INIT_R |
| 181 | int board_early_init_r (void) |
| 182 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 183 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 184 | |
| 185 | /* set and reset the GPIO pin 2 which will reset the W83782G chip */ |
| 186 | out_8((unsigned char*)&gur->gpoutdr, 0x3F ); |
| 187 | out_be32((unsigned int*)&gur->gpiocr, 0x200 ); /* enable GPOut */ |
| 188 | udelay(200); |
| 189 | out_8( (unsigned char*)&gur->gpoutdr, 0x1F ); |
| 190 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 191 | return (0); |
| 192 | } |
| 193 | #endif /* CONFIG_BOARD_EARLY_INIT_R */ |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 194 | |
Robert P. J. Day | 7ffe3cd | 2016-05-19 15:23:12 -0400 | [diff] [blame] | 195 | #ifdef CONFIG_OF_BOARD_SETUP |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 196 | int ft_board_setup(void *blob, struct bd_info *bd) |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 197 | { |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 198 | u32 val[12]; |
| 199 | int rc, i = 0; |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 200 | |
| 201 | ft_cpu_setup(blob, bd); |
| 202 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 203 | /* Fixup NOR FLASH mapping */ |
| 204 | val[i++] = 0; /* chip select number */ |
| 205 | val[i++] = 0; /* always 0 */ |
| 206 | val[i++] = gd->bd->bi_flashstart; |
| 207 | val[i++] = gd->bd->bi_flashsize; |
| 208 | |
Heiko Schocher | 4c65a44 | 2019-10-16 05:55:51 +0200 | [diff] [blame] | 209 | #if defined(CONFIG_VIDEO_MB862xx) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 210 | if (mb862xx.frameAdrs == CONFIG_SYS_LIME_BASE) { |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 211 | /* Fixup LIME mapping */ |
| 212 | val[i++] = 2; /* chip select number */ |
| 213 | val[i++] = 0; /* always 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 214 | val[i++] = CONFIG_SYS_LIME_BASE; |
| 215 | val[i++] = CONFIG_SYS_LIME_SIZE; |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 216 | } |
Heiko Schocher | 4c65a44 | 2019-10-16 05:55:51 +0200 | [diff] [blame] | 217 | #endif |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 218 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 219 | /* Fixup FPGA mapping */ |
| 220 | val[i++] = 3; /* chip select number */ |
| 221 | val[i++] = 0; /* always 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | val[i++] = CONFIG_SYS_FPGA_BASE; |
| 223 | val[i++] = CONFIG_SYS_FPGA_SIZE; |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 224 | |
| 225 | rc = fdt_find_and_setprop(blob, "/localbus", "ranges", |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 226 | val, i * sizeof(u32), 1); |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 227 | if (rc) |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 228 | printf("Unable to update localbus ranges, err=%s\n", |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 229 | fdt_strerror(rc)); |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 230 | |
| 231 | return 0; |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 232 | } |
Robert P. J. Day | 7ffe3cd | 2016-05-19 15:23:12 -0400 | [diff] [blame] | 233 | #endif /* CONFIG_OF_BOARD_SETUP */ |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 234 | |
Heiko Schocher | 39642ab | 2019-10-16 05:55:49 +0200 | [diff] [blame] | 235 | #if defined(CONFIG_OF_SEPARATE) |
| 236 | void *board_fdt_blob_setup(void) |
| 237 | { |
| 238 | void *fw_dtb; |
| 239 | |
| 240 | fw_dtb = (void *)(CONFIG_SYS_TEXT_BASE - CONFIG_ENV_SECT_SIZE); |
| 241 | if (fdt_magic(fw_dtb) != FDT_MAGIC) { |
| 242 | printf("DTB is not passed via %x\n", (u32)fw_dtb); |
| 243 | return NULL; |
| 244 | } |
| 245 | |
| 246 | return fw_dtb; |
| 247 | } |
| 248 | #endif |
Heiko Schocher | 98beb60 | 2019-10-16 05:55:53 +0200 | [diff] [blame] | 249 | |
| 250 | int get_serial_clock(void) |
| 251 | { |
| 252 | return 333333330; |
| 253 | } |