Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 5 | * Marius Groeger <mgroeger@sysgo.de> |
| 6 | * |
| 7 | * (C) Copyright 2002 |
| 8 | * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch> |
| 9 | * |
| 10 | * (C) Copyright 2003 |
| 11 | * Texas Instruments, <www.ti.com> |
| 12 | * Kshitij Gupta <Kshitij@ti.com> |
| 13 | * |
| 14 | * (C) Copyright 2004 |
| 15 | * ARM Ltd. |
| 16 | * Philippe Robin, <philippe.robin@arm.com> |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 20 | #include <bootstage.h> |
Simon Glass | 1d91ba7 | 2019-11-14 12:57:37 -0700 | [diff] [blame] | 21 | #include <cpu_func.h> |
Simon Glass | 11c89f3 | 2017-05-17 17:18:03 -0600 | [diff] [blame] | 22 | #include <dm.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 23 | #include <env.h> |
Simon Glass | 8e16b1e | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 24 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 25 | #include <net.h> |
Ben Warren | 052a5ea | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 26 | #include <netdev.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 27 | #include <asm/global_data.h> |
Linus Walleij | aa371bc | 2011-11-09 06:14:40 +0000 | [diff] [blame] | 28 | #include <asm/io.h> |
Linus Walleij | 616d9a0 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 29 | #include <dm/platform_data/serial_pl01x.h> |
Linus Walleij | 4c08ac0 | 2011-11-09 06:15:59 +0000 | [diff] [blame] | 30 | #include "arm-ebi.h" |
Linus Walleij | 6f716fe | 2011-11-09 06:16:37 +0000 | [diff] [blame] | 31 | #include "integrator-sc.h" |
Simon Glass | 0ffb9d6 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 32 | #include <asm/mach-types.h> |
Ben Warren | 052a5ea | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 33 | |
Wolfgang Denk | 6405a15 | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 36 | static const struct pl01x_serial_plat serial_plat = { |
Linus Walleij | 616d9a0 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 37 | .base = 0x16000000, |
| 38 | #ifdef CONFIG_ARCH_CINTEGRATOR |
| 39 | .type = TYPE_PL011, |
| 40 | .clock = 14745600, |
| 41 | #else |
| 42 | .type = TYPE_PL010, |
| 43 | .clock = 0, /* Not used for PL010 */ |
| 44 | #endif |
| 45 | }; |
| 46 | |
Simon Glass | 1d8364a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 47 | U_BOOT_DRVINFO(integrator_serials) = { |
Linus Walleij | 616d9a0 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 48 | .name = "serial_pl01x", |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 49 | .plat = &serial_plat, |
Linus Walleij | 616d9a0 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 52 | void peripheral_power_enable (void); |
| 53 | |
| 54 | #if defined(CONFIG_SHOW_BOOT_PROGRESS) |
| 55 | void show_boot_progress(int progress) |
| 56 | { |
Wolfgang Denk | 34ca9d3 | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 57 | printf("Boot reached stage %d\n", progress); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 58 | } |
| 59 | #endif |
| 60 | |
| 61 | #define COMP_MODE_ENABLE ((unsigned int)0x0000EAEF) |
| 62 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 63 | /* |
| 64 | * Miscellaneous platform dependent initialisations |
| 65 | */ |
| 66 | |
| 67 | int board_init (void) |
| 68 | { |
Linus Walleij | 4c08ac0 | 2011-11-09 06:15:59 +0000 | [diff] [blame] | 69 | u32 val; |
| 70 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 71 | /* arch number of Integrator Board */ |
Jean-Christophe PLAGNIOL-VILLARD | 693a7ae | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 72 | #ifdef CONFIG_ARCH_CINTEGRATOR |
| 73 | gd->bd->bi_arch_number = MACH_TYPE_CINTEGRATOR; |
| 74 | #else |
wdenk | 767fbd4 | 2004-10-10 18:41:04 +0000 | [diff] [blame] | 75 | gd->bd->bi_arch_number = MACH_TYPE_INTEGRATOR; |
Jean-Christophe PLAGNIOL-VILLARD | 693a7ae | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 76 | #endif |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 77 | |
| 78 | /* adress of boot parameters */ |
| 79 | gd->bd->bi_boot_params = 0x00000100; |
| 80 | |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 81 | #ifdef CONFIG_CM_REMAP |
| 82 | extern void cm_remap(void); |
| 83 | cm_remap(); /* remaps writeable memory to 0x00000000 */ |
| 84 | #endif |
Wolfgang Denk | 34ca9d3 | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 85 | |
Linus Walleij | 6f716fe | 2011-11-09 06:16:37 +0000 | [diff] [blame] | 86 | #ifdef CONFIG_ARCH_CINTEGRATOR |
| 87 | /* |
| 88 | * Flash protection on the Integrator/CP is in a simple register |
| 89 | */ |
| 90 | val = readl(CP_FLASHPROG); |
| 91 | val |= (CP_FLASHPROG_FLVPPEN | CP_FLASHPROG_FLWREN); |
| 92 | writel(val, CP_FLASHPROG); |
| 93 | #else |
Linus Walleij | 4c08ac0 | 2011-11-09 06:15:59 +0000 | [diff] [blame] | 94 | /* |
Linus Walleij | 6f716fe | 2011-11-09 06:16:37 +0000 | [diff] [blame] | 95 | * The Integrator/AP has some special protection mechanisms |
| 96 | * for the external memories, first the External Bus Interface (EBI) |
| 97 | * then the system controller (SC). |
| 98 | * |
Linus Walleij | 4c08ac0 | 2011-11-09 06:15:59 +0000 | [diff] [blame] | 99 | * The system comes up with the flash memory non-writable and |
| 100 | * configuration locked. If we want U-Boot to be used for flash |
| 101 | * access we cannot have the flash memory locked. |
| 102 | */ |
| 103 | writel(EBI_UNLOCK_MAGIC, EBI_BASE + EBI_LOCK_REG); |
| 104 | val = readl(EBI_BASE + EBI_CSR1_REG); |
| 105 | val &= EBI_CSR_WREN_MASK; |
| 106 | val |= EBI_CSR_WREN_ENABLE; |
| 107 | writel(val, EBI_BASE + EBI_CSR1_REG); |
| 108 | writel(0, EBI_BASE + EBI_LOCK_REG); |
| 109 | |
Linus Walleij | 6f716fe | 2011-11-09 06:16:37 +0000 | [diff] [blame] | 110 | /* |
| 111 | * Set up the system controller to remove write protection from |
| 112 | * the flash memory and enable Vpp |
| 113 | */ |
| 114 | writel(SC_CTRL_FLASHVPP | SC_CTRL_FLASHWP, SC_CTRLS); |
| 115 | #endif |
| 116 | |
Simon Glass | fbf091b | 2019-11-14 12:57:36 -0700 | [diff] [blame] | 117 | icache_enable(); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 118 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 119 | return 0; |
| 120 | } |
| 121 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 122 | int misc_init_r (void) |
| 123 | { |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 124 | env_set("verify", "n"); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 125 | return (0); |
| 126 | } |
| 127 | |
Linus Walleij | fd04260 | 2011-10-23 21:02:03 +0000 | [diff] [blame] | 128 | /* |
| 129 | * The Integrator remaps the Flash memory to 0x00000000 and executes U-Boot |
| 130 | * from there, which means we cannot test the RAM underneath the ROM at this |
| 131 | * point. It will be unmapped later on, when we are executing from the |
| 132 | * relocated in RAM U-Boot. We simply assume that this RAM is usable if the |
| 133 | * RAM on higher addresses works fine. |
| 134 | */ |
| 135 | #define REMAPPED_FLASH_SZ 0x40000 |
| 136 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 137 | int dram_init (void) |
| 138 | { |
Linus Walleij | df7645d | 2011-07-25 01:50:08 +0000 | [diff] [blame] | 139 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 140 | #ifdef CONFIG_CM_SPD_DETECT |
| 141 | { |
| 142 | extern void dram_query(void); |
Linus Walleij | aa371bc | 2011-11-09 06:14:40 +0000 | [diff] [blame] | 143 | u32 cm_reg_sdram; |
| 144 | u32 sdram_shift; |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 145 | |
| 146 | dram_query(); /* Assembler accesses to CM registers */ |
Wolfgang Denk | 34ca9d3 | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 147 | /* Queries the SPD values */ |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 148 | |
| 149 | /* Obtain the SDRAM size from the CM SDRAM register */ |
| 150 | |
Linus Walleij | aa371bc | 2011-11-09 06:14:40 +0000 | [diff] [blame] | 151 | cm_reg_sdram = readl(CM_BASE + OS_SDRAM); |
Wolfgang Denk | 34ca9d3 | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 152 | /* Register SDRAM size |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 153 | * |
Wolfgang Denk | 34ca9d3 | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 154 | * 0xXXXXXXbbb000bb 16 MB |
| 155 | * 0xXXXXXXbbb001bb 32 MB |
| 156 | * 0xXXXXXXbbb010bb 64 MB |
| 157 | * 0xXXXXXXbbb011bb 128 MB |
| 158 | * 0xXXXXXXbbb100bb 256 MB |
| 159 | * |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 160 | */ |
Linus Walleij | aa371bc | 2011-11-09 06:14:40 +0000 | [diff] [blame] | 161 | sdram_shift = ((cm_reg_sdram & 0x0000001C)/4)%4; |
Linus Walleij | fd04260 | 2011-10-23 21:02:03 +0000 | [diff] [blame] | 162 | gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE + |
| 163 | REMAPPED_FLASH_SZ, |
Linus Walleij | df7645d | 2011-07-25 01:50:08 +0000 | [diff] [blame] | 164 | 0x01000000 << sdram_shift); |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 165 | } |
Linus Walleij | df7645d | 2011-07-25 01:50:08 +0000 | [diff] [blame] | 166 | #else |
Linus Walleij | fd04260 | 2011-10-23 21:02:03 +0000 | [diff] [blame] | 167 | gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE + |
| 168 | REMAPPED_FLASH_SZ, |
Linus Walleij | df7645d | 2011-07-25 01:50:08 +0000 | [diff] [blame] | 169 | PHYS_SDRAM_1_SIZE); |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 170 | #endif /* CM_SPD_DETECT */ |
Linus Walleij | fd04260 | 2011-10-23 21:02:03 +0000 | [diff] [blame] | 171 | /* We only have one bank of RAM, set it to whatever was detected */ |
| 172 | gd->bd->bi_dram[0].size = gd->ram_size; |
Wolfgang Denk | 5d6879c | 2005-09-25 16:22:14 +0200 | [diff] [blame] | 173 | |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 174 | return 0; |
| 175 | } |
Wolfgang Denk | adf20a1 | 2005-09-25 01:48:28 +0200 | [diff] [blame] | 176 | |
Ben Warren | 0fd6aae | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 177 | #ifdef CONFIG_CMD_NET |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 178 | int board_eth_init(struct bd_info *bis) |
Ben Warren | 052a5ea | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 179 | { |
Ben Warren | 0fd6aae | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 180 | int rc = 0; |
| 181 | #ifdef CONFIG_SMC91111 |
| 182 | rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); |
| 183 | #endif |
Ben Warren | 0fd6aae | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 184 | rc += pci_eth_init(bis); |
Ben Warren | 0fd6aae | 2009-10-04 22:37:03 -0700 | [diff] [blame] | 185 | return rc; |
Ben Warren | 052a5ea | 2008-08-31 20:37:00 -0700 | [diff] [blame] | 186 | } |
Jean-Christophe PLAGNIOL-VILLARD | 693a7ae | 2009-05-17 00:58:37 +0200 | [diff] [blame] | 187 | #endif |