blob: 32e4933d20ae3b67dbee12c1c1337b41d60340a0 [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 Glass1d91ba72019-11-14 12:57:37 -070020#include <cpu_func.h>
Simon Glass11c89f32017-05-17 17:18:03 -060021#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060022#include <env.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070023#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060024#include <net.h>
Ben Warren052a5ea2008-08-31 20:37:00 -070025#include <netdev.h>
Linus Walleijaa371bc2011-11-09 06:14:40 +000026#include <asm/io.h>
Linus Walleij616d9a02015-07-27 11:22:48 +020027#include <dm/platform_data/serial_pl01x.h>
Linus Walleij4c08ac02011-11-09 06:15:59 +000028#include "arm-ebi.h"
Linus Walleij6f716fe2011-11-09 06:16:37 +000029#include "integrator-sc.h"
Simon Glass0ffb9d62017-05-31 19:47:48 -060030#include <asm/mach-types.h>
Ben Warren052a5ea2008-08-31 20:37:00 -070031
Wolfgang Denk6405a152006-03-31 18:32:53 +020032DECLARE_GLOBAL_DATA_PTR;
33
Linus Walleij616d9a02015-07-27 11:22:48 +020034static const struct pl01x_serial_platdata serial_platdata = {
35 .base = 0x16000000,
36#ifdef CONFIG_ARCH_CINTEGRATOR
37 .type = TYPE_PL011,
38 .clock = 14745600,
39#else
40 .type = TYPE_PL010,
41 .clock = 0, /* Not used for PL010 */
42#endif
43};
44
45U_BOOT_DEVICE(integrator_serials) = {
46 .name = "serial_pl01x",
47 .platdata = &serial_platdata,
48};
49
wdenk4989f872004-03-14 15:06:13 +000050void peripheral_power_enable (void);
51
52#if defined(CONFIG_SHOW_BOOT_PROGRESS)
53void show_boot_progress(int progress)
54{
Wolfgang Denk34ca9d32005-09-25 18:49:35 +020055 printf("Boot reached stage %d\n", progress);
wdenk4989f872004-03-14 15:06:13 +000056}
57#endif
58
59#define COMP_MODE_ENABLE ((unsigned int)0x0000EAEF)
60
wdenk4989f872004-03-14 15:06:13 +000061/*
62 * Miscellaneous platform dependent initialisations
63 */
64
65int board_init (void)
66{
Linus Walleij4c08ac02011-11-09 06:15:59 +000067 u32 val;
68
wdenk4989f872004-03-14 15:06:13 +000069 /* arch number of Integrator Board */
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +020070#ifdef CONFIG_ARCH_CINTEGRATOR
71 gd->bd->bi_arch_number = MACH_TYPE_CINTEGRATOR;
72#else
wdenk767fbd42004-10-10 18:41:04 +000073 gd->bd->bi_arch_number = MACH_TYPE_INTEGRATOR;
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +020074#endif
wdenk4989f872004-03-14 15:06:13 +000075
76 /* adress of boot parameters */
77 gd->bd->bi_boot_params = 0x00000100;
78
Wolfgang Denk5d6879c2005-09-25 16:22:14 +020079#ifdef CONFIG_CM_REMAP
80extern void cm_remap(void);
81 cm_remap(); /* remaps writeable memory to 0x00000000 */
82#endif
Wolfgang Denk34ca9d32005-09-25 18:49:35 +020083
Linus Walleij6f716fe2011-11-09 06:16:37 +000084#ifdef CONFIG_ARCH_CINTEGRATOR
85 /*
86 * Flash protection on the Integrator/CP is in a simple register
87 */
88 val = readl(CP_FLASHPROG);
89 val |= (CP_FLASHPROG_FLVPPEN | CP_FLASHPROG_FLWREN);
90 writel(val, CP_FLASHPROG);
91#else
Linus Walleij4c08ac02011-11-09 06:15:59 +000092 /*
Linus Walleij6f716fe2011-11-09 06:16:37 +000093 * The Integrator/AP has some special protection mechanisms
94 * for the external memories, first the External Bus Interface (EBI)
95 * then the system controller (SC).
96 *
Linus Walleij4c08ac02011-11-09 06:15:59 +000097 * The system comes up with the flash memory non-writable and
98 * configuration locked. If we want U-Boot to be used for flash
99 * access we cannot have the flash memory locked.
100 */
101 writel(EBI_UNLOCK_MAGIC, EBI_BASE + EBI_LOCK_REG);
102 val = readl(EBI_BASE + EBI_CSR1_REG);
103 val &= EBI_CSR_WREN_MASK;
104 val |= EBI_CSR_WREN_ENABLE;
105 writel(val, EBI_BASE + EBI_CSR1_REG);
106 writel(0, EBI_BASE + EBI_LOCK_REG);
107
Linus Walleij6f716fe2011-11-09 06:16:37 +0000108 /*
109 * Set up the system controller to remove write protection from
110 * the flash memory and enable Vpp
111 */
112 writel(SC_CTRL_FLASHVPP | SC_CTRL_FLASHWP, SC_CTRLS);
113#endif
114
Simon Glassfbf091b2019-11-14 12:57:36 -0700115 icache_enable();
wdenk4989f872004-03-14 15:06:13 +0000116
wdenk4989f872004-03-14 15:06:13 +0000117 return 0;
118}
119
wdenk4989f872004-03-14 15:06:13 +0000120int misc_init_r (void)
121{
Simon Glass6a38e412017-08-03 12:22:09 -0600122 env_set("verify", "n");
wdenk4989f872004-03-14 15:06:13 +0000123 return (0);
124}
125
Linus Walleijfd042602011-10-23 21:02:03 +0000126/*
127 * The Integrator remaps the Flash memory to 0x00000000 and executes U-Boot
128 * from there, which means we cannot test the RAM underneath the ROM at this
129 * point. It will be unmapped later on, when we are executing from the
130 * relocated in RAM U-Boot. We simply assume that this RAM is usable if the
131 * RAM on higher addresses works fine.
132 */
133#define REMAPPED_FLASH_SZ 0x40000
134
wdenk4989f872004-03-14 15:06:13 +0000135int dram_init (void)
136{
Linus Walleijdf7645d2011-07-25 01:50:08 +0000137 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200138#ifdef CONFIG_CM_SPD_DETECT
139 {
140extern void dram_query(void);
Linus Walleijaa371bc2011-11-09 06:14:40 +0000141 u32 cm_reg_sdram;
142 u32 sdram_shift;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200143
144 dram_query(); /* Assembler accesses to CM registers */
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200145 /* Queries the SPD values */
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200146
147 /* Obtain the SDRAM size from the CM SDRAM register */
148
Linus Walleijaa371bc2011-11-09 06:14:40 +0000149 cm_reg_sdram = readl(CM_BASE + OS_SDRAM);
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200150 /* Register SDRAM size
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200151 *
Wolfgang Denk34ca9d32005-09-25 18:49:35 +0200152 * 0xXXXXXXbbb000bb 16 MB
153 * 0xXXXXXXbbb001bb 32 MB
154 * 0xXXXXXXbbb010bb 64 MB
155 * 0xXXXXXXbbb011bb 128 MB
156 * 0xXXXXXXbbb100bb 256 MB
157 *
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200158 */
Linus Walleijaa371bc2011-11-09 06:14:40 +0000159 sdram_shift = ((cm_reg_sdram & 0x0000001C)/4)%4;
Linus Walleijfd042602011-10-23 21:02:03 +0000160 gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE +
161 REMAPPED_FLASH_SZ,
Linus Walleijdf7645d2011-07-25 01:50:08 +0000162 0x01000000 << sdram_shift);
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200163 }
Linus Walleijdf7645d2011-07-25 01:50:08 +0000164#else
Linus Walleijfd042602011-10-23 21:02:03 +0000165 gd->ram_size = get_ram_size((long *) CONFIG_SYS_SDRAM_BASE +
166 REMAPPED_FLASH_SZ,
Linus Walleijdf7645d2011-07-25 01:50:08 +0000167 PHYS_SDRAM_1_SIZE);
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200168#endif /* CM_SPD_DETECT */
Linus Walleijfd042602011-10-23 21:02:03 +0000169 /* We only have one bank of RAM, set it to whatever was detected */
170 gd->bd->bi_dram[0].size = gd->ram_size;
Wolfgang Denk5d6879c2005-09-25 16:22:14 +0200171
wdenk4989f872004-03-14 15:06:13 +0000172 return 0;
173}
Wolfgang Denkadf20a12005-09-25 01:48:28 +0200174
Ben Warren0fd6aae2009-10-04 22:37:03 -0700175#ifdef CONFIG_CMD_NET
Ben Warren052a5ea2008-08-31 20:37:00 -0700176int board_eth_init(bd_t *bis)
177{
Ben Warren0fd6aae2009-10-04 22:37:03 -0700178 int rc = 0;
179#ifdef CONFIG_SMC91111
180 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
181#endif
Ben Warren0fd6aae2009-10-04 22:37:03 -0700182 rc += pci_eth_init(bis);
Ben Warren0fd6aae2009-10-04 22:37:03 -0700183 return rc;
Ben Warren052a5ea2008-08-31 20:37:00 -0700184}
Jean-Christophe PLAGNIOL-VILLARD693a7ae2009-05-17 00:58:37 +0200185#endif