blob: 4959a7fd6dcf445544d26642b0f2a323ea3885ba [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk4989f872004-03-14 15:06:13 +00002/*
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>
wdenk4989f872004-03-14 15:06:13 +000017 */
18
19#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060020#include <bootstage.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070021#include <cpu_func.h>
Simon Glass11c89f32017-05-17 17:18:03 -060022#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060023#include <env.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070024#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060025#include <net.h>
Ben Warren052a5ea2008-08-31 20:37:00 -070026#include <netdev.h>
Tom Rini7d1e60d2022-03-30 18:07:15 -040027#include <armcoremodule.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060028#include <asm/global_data.h>
Linus Walleijaa371bc2011-11-09 06:14:40 +000029#include <asm/io.h>
Linus Walleij616d9a02015-07-27 11:22:48 +020030#include <dm/platform_data/serial_pl01x.h>
Linus Walleij4c08ac02011-11-09 06:15:59 +000031#include "arm-ebi.h"
Linus Walleij6f716fe2011-11-09 06:16:37 +000032#include "integrator-sc.h"
Simon Glass0ffb9d62017-05-31 19:47:48 -060033#include <asm/mach-types.h>
Ben Warren052a5ea2008-08-31 20:37:00 -070034
Wolfgang Denk6405a152006-03-31 18:32:53 +020035DECLARE_GLOBAL_DATA_PTR;
36
Simon Glassb75b15b2020-12-03 16:55:23 -070037static const struct pl01x_serial_plat serial_plat = {
Linus Walleij616d9a02015-07-27 11:22:48 +020038 .base = 0x16000000,
39#ifdef CONFIG_ARCH_CINTEGRATOR
40 .type = TYPE_PL011,
41 .clock = 14745600,
42#else
43 .type = TYPE_PL010,
44 .clock = 0, /* Not used for PL010 */
45#endif
46};
47
Simon Glass1d8364a2020-12-28 20:34:54 -070048U_BOOT_DRVINFO(integrator_serials) = {
Linus Walleij616d9a02015-07-27 11:22:48 +020049 .name = "serial_pl01x",
Simon Glassb75b15b2020-12-03 16:55:23 -070050 .plat = &serial_plat,
Linus Walleij616d9a02015-07-27 11:22:48 +020051};
52
wdenk4989f872004-03-14 15:06:13 +000053void peripheral_power_enable (void);
54
55#if defined(CONFIG_SHOW_BOOT_PROGRESS)
56void show_boot_progress(int progress)
57{
Wolfgang Denk34ca9d32005-09-25 18:49:35 +020058 printf("Boot reached stage %d\n", progress);
wdenk4989f872004-03-14 15:06:13 +000059}
60#endif
61
62#define COMP_MODE_ENABLE ((unsigned int)0x0000EAEF)
63
wdenk4989f872004-03-14 15:06:13 +000064/*
65 * Miscellaneous platform dependent initialisations
66 */
67
68int board_init (void)
69{
Linus Walleij4c08ac02011-11-09 06:15:59 +000070 u32 val;
71
wdenk4989f872004-03-14 15:06:13 +000072 /* arch number of Integrator Board */
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +020073#ifdef CONFIG_ARCH_CINTEGRATOR
74 gd->bd->bi_arch_number = MACH_TYPE_CINTEGRATOR;
75#else
wdenk767fbd42004-10-10 18:41:04 +000076 gd->bd->bi_arch_number = MACH_TYPE_INTEGRATOR;
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +020077#endif
wdenk4989f872004-03-14 15:06:13 +000078
79 /* adress of boot parameters */
80 gd->bd->bi_boot_params = 0x00000100;
81
Wolfgang Denk5d6879c2005-09-25 16:22:14 +020082#ifdef CONFIG_CM_REMAP
83extern void cm_remap(void);
84 cm_remap(); /* remaps writeable memory to 0x00000000 */
85#endif
Wolfgang Denk34ca9d32005-09-25 18:49:35 +020086
Linus Walleij6f716fe2011-11-09 06:16:37 +000087#ifdef CONFIG_ARCH_CINTEGRATOR
88 /*
89 * Flash protection on the Integrator/CP is in a simple register
90 */
91 val = readl(CP_FLASHPROG);
92 val |= (CP_FLASHPROG_FLVPPEN | CP_FLASHPROG_FLWREN);
93 writel(val, CP_FLASHPROG);
94#else
Linus Walleij4c08ac02011-11-09 06:15:59 +000095 /*
Linus Walleij6f716fe2011-11-09 06:16:37 +000096 * The Integrator/AP has some special protection mechanisms
97 * for the external memories, first the External Bus Interface (EBI)
98 * then the system controller (SC).
99 *
Linus Walleij4c08ac02011-11-09 06:15:59 +0000100 * The system comes up with the flash memory non-writable and
101 * configuration locked. If we want U-Boot to be used for flash
102 * access we cannot have the flash memory locked.
103 */
104 writel(EBI_UNLOCK_MAGIC, EBI_BASE + EBI_LOCK_REG);
105 val = readl(EBI_BASE + EBI_CSR1_REG);
106 val &= EBI_CSR_WREN_MASK;
107 val |= EBI_CSR_WREN_ENABLE;
108 writel(val, EBI_BASE + EBI_CSR1_REG);
109 writel(0, EBI_BASE + EBI_LOCK_REG);
110
Linus Walleij6f716fe2011-11-09 06:16:37 +0000111 /*
112 * Set up the system controller to remove write protection from
113 * the flash memory and enable Vpp
114 */
115 writel(SC_CTRL_FLASHVPP | SC_CTRL_FLASHWP, SC_CTRLS);
116#endif
117
Simon Glassfbf091b2019-11-14 12:57:36 -0700118 icache_enable();
wdenk4989f872004-03-14 15:06:13 +0000119
wdenk4989f872004-03-14 15:06:13 +0000120 return 0;
121}
122
wdenk4989f872004-03-14 15:06:13 +0000123int misc_init_r (void)
124{
Simon Glass6a38e412017-08-03 12:22:09 -0600125 env_set("verify", "n");
wdenk4989f872004-03-14 15:06:13 +0000126 return (0);
127}
128
Linus Walleijfd042602011-10-23 21:02:03 +0000129/*
130 * The Integrator remaps the Flash memory to 0x00000000 and executes U-Boot
131 * from there, which means we cannot test the RAM underneath the ROM at this
132 * point. It will be unmapped later on, when we are executing from the
133 * relocated in RAM U-Boot. We simply assume that this RAM is usable if the
134 * RAM on higher addresses works fine.
135 */
136#define REMAPPED_FLASH_SZ 0x40000
137
wdenk4989f872004-03-14 15:06:13 +0000138int dram_init (void)
139{
Linus Walleijdf7645d2011-07-25 01:50:08 +0000140 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200141#ifdef CONFIG_CM_SPD_DETECT
142 {
143extern void dram_query(void);
Linus Walleijaa371bc2011-11-09 06:14:40 +0000144 u32 cm_reg_sdram;
145 u32 sdram_shift;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200146
147 dram_query(); /* Assembler accesses to CM registers */
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200148 /* Queries the SPD values */
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200149
150 /* Obtain the SDRAM size from the CM SDRAM register */
151
Linus Walleijaa371bc2011-11-09 06:14:40 +0000152 cm_reg_sdram = readl(CM_BASE + OS_SDRAM);
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200153 /* Register SDRAM size
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200154 *
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200155 * 0xXXXXXXbbb000bb 16 MB
156 * 0xXXXXXXbbb001bb 32 MB
157 * 0xXXXXXXbbb010bb 64 MB
158 * 0xXXXXXXbbb011bb 128 MB
159 * 0xXXXXXXbbb100bb 256 MB
160 *
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200161 */
Linus Walleijaa371bc2011-11-09 06:14:40 +0000162 sdram_shift = ((cm_reg_sdram & 0x0000001C)/4)%4;
Linus Walleijfd042602011-10-23 21:02:03 +0000163 gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE +
164 REMAPPED_FLASH_SZ,
Linus Walleijdf7645d2011-07-25 01:50:08 +0000165 0x01000000 << sdram_shift);
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200166 }
Linus Walleijdf7645d2011-07-25 01:50:08 +0000167#else
Linus Walleijfd042602011-10-23 21:02:03 +0000168 gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE +
169 REMAPPED_FLASH_SZ,
Linus Walleijdf7645d2011-07-25 01:50:08 +0000170 PHYS_SDRAM_1_SIZE);
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200171#endif /* CM_SPD_DETECT */
Linus Walleijfd042602011-10-23 21:02:03 +0000172 /* We only have one bank of RAM, set it to whatever was detected */
173 gd->bd->bi_dram[0].size = gd->ram_size;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200174
wdenk4989f872004-03-14 15:06:13 +0000175 return 0;
176}
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200177
Ben Warren0fd6aae2009-10-04 22:37:03 -0700178#ifdef CONFIG_CMD_NET
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900179int board_eth_init(struct bd_info *bis)
Ben Warren052a5ea2008-08-31 20:37:00 -0700180{
Ben Warren0fd6aae2009-10-04 22:37:03 -0700181 int rc = 0;
Ben Warren0fd6aae2009-10-04 22:37:03 -0700182 return rc;
Ben Warren052a5ea2008-08-31 20:37:00 -0700183}
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +0200184#endif