Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 4 | * Marius Groeger <mgroeger@sysgo.de> |
| 5 | * |
| 6 | * (C) Copyright 2002 |
| 7 | * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch> |
| 8 | * |
| 9 | * (C) Copyright 2003 |
| 10 | * Texas Instruments, <www.ti.com> |
| 11 | * Kshitij Gupta <Kshitij@ti.com> |
| 12 | * |
| 13 | * (C) Copyright 2004 |
| 14 | * ARM Ltd. |
| 15 | * Philippe Robin, <philippe.robin@arm.com> |
| 16 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 17 | * SPDX-License-Identifier: GPL-2.0+ |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 18 | */ |
| 19 | #include <common.h> |
John Rigby | 10ed93d | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 20 | #include <malloc.h> |
| 21 | #include <errno.h> |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 22 | #include <netdev.h> |
| 23 | #include <asm/io.h> |
Simon Glass | c62db35 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 24 | #include <asm/mach-types.h> |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 25 | #include <asm/arch/systimer.h> |
| 26 | #include <asm/arch/sysctrl.h> |
| 27 | #include <asm/arch/wdt.h> |
Dirk Behme | a6f479c | 2011-05-23 07:40:26 +0000 | [diff] [blame] | 28 | #include "../drivers/mmc/arm_pl180_mmci.h" |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 29 | |
Ryan Harkin | cd4f46e | 2013-04-09 02:20:31 +0000 | [diff] [blame] | 30 | static struct systimer *systimer_base = (struct systimer *)V2M_TIMER01; |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 31 | static struct sysctrl *sysctrl_base = (struct sysctrl *)SCTL_BASE; |
| 32 | |
| 33 | static void flash__init(void); |
| 34 | static void vexpress_timer_init(void); |
| 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
| 37 | #if defined(CONFIG_SHOW_BOOT_PROGRESS) |
| 38 | void show_boot_progress(int progress) |
| 39 | { |
| 40 | printf("Boot reached stage %d\n", progress); |
| 41 | } |
| 42 | #endif |
| 43 | |
| 44 | static inline void delay(ulong loops) |
| 45 | { |
| 46 | __asm__ volatile ("1:\n" |
| 47 | "subs %0, %1, #1\n" |
| 48 | "bne 1b" : "=r" (loops) : "0" (loops)); |
| 49 | } |
| 50 | |
| 51 | int board_init(void) |
| 52 | { |
| 53 | gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR; |
| 54 | gd->bd->bi_arch_number = MACH_TYPE_VEXPRESS; |
| 55 | gd->flags = 0; |
| 56 | |
| 57 | icache_enable(); |
| 58 | flash__init(); |
| 59 | vexpress_timer_init(); |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
| 64 | int board_eth_init(bd_t *bis) |
| 65 | { |
| 66 | int rc = 0; |
| 67 | #ifdef CONFIG_SMC911X |
| 68 | rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); |
| 69 | #endif |
| 70 | return rc; |
| 71 | } |
| 72 | |
Matt Waddel | f0c6452 | 2011-04-16 11:54:08 +0000 | [diff] [blame] | 73 | int cpu_mmc_init(bd_t *bis) |
| 74 | { |
| 75 | int rc = 0; |
John Rigby | 10ed93d | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 76 | (void) bis; |
Matt Waddel | f0c6452 | 2011-04-16 11:54:08 +0000 | [diff] [blame] | 77 | #ifdef CONFIG_ARM_PL180_MMCI |
John Rigby | 10ed93d | 2012-07-31 08:59:31 +0000 | [diff] [blame] | 78 | struct pl180_mmc_host *host; |
| 79 | |
| 80 | host = malloc(sizeof(struct pl180_mmc_host)); |
| 81 | if (!host) |
| 82 | return -ENOMEM; |
| 83 | memset(host, 0, sizeof(*host)); |
| 84 | |
| 85 | strcpy(host->name, "MMC"); |
| 86 | host->base = (struct sdi_registers *)CONFIG_ARM_PL180_MMCI_BASE; |
| 87 | host->pwr_init = INIT_PWR; |
| 88 | host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V1 | SDI_CLKCR_CLKEN; |
| 89 | host->voltages = VOLTAGE_WINDOW_MMC; |
| 90 | host->caps = 0; |
| 91 | host->clock_in = ARM_MCLK; |
| 92 | host->clock_min = ARM_MCLK / (2 * (SDI_CLKCR_CLKDIV_INIT_V1 + 1)); |
| 93 | host->clock_max = CONFIG_ARM_PL180_MMCI_CLOCK_FREQ; |
| 94 | rc = arm_pl180_mmci_init(host); |
Matt Waddel | f0c6452 | 2011-04-16 11:54:08 +0000 | [diff] [blame] | 95 | #endif |
| 96 | return rc; |
| 97 | } |
| 98 | |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 99 | static void flash__init(void) |
| 100 | { |
| 101 | /* Setup the sytem control register to allow writing to flash */ |
| 102 | writel(readl(&sysctrl_base->scflashctrl) | VEXPRESS_FLASHPROG_FLVPPEN, |
| 103 | &sysctrl_base->scflashctrl); |
| 104 | } |
| 105 | |
| 106 | int dram_init(void) |
| 107 | { |
Matt Waddel | 9d37cf3 | 2010-11-02 17:25:21 -0600 | [diff] [blame] | 108 | gd->ram_size = |
| 109 | get_ram_size((long *)CONFIG_SYS_SDRAM_BASE, PHYS_SDRAM_1_SIZE); |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 110 | return 0; |
| 111 | } |
| 112 | |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 113 | int dram_init_banksize(void) |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 114 | { |
| 115 | gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |
Matt Waddel | 9d37cf3 | 2010-11-02 17:25:21 -0600 | [diff] [blame] | 116 | gd->bd->bi_dram[0].size = |
| 117 | get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE); |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 118 | gd->bd->bi_dram[1].start = PHYS_SDRAM_2; |
Matt Waddel | 9d37cf3 | 2010-11-02 17:25:21 -0600 | [diff] [blame] | 119 | gd->bd->bi_dram[1].size = |
| 120 | get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE); |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 121 | |
| 122 | return 0; |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 123 | } |
| 124 | |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 125 | /* |
| 126 | * Start timer: |
| 127 | * Setup a 32 bit timer, running at 1KHz |
| 128 | * Versatile Express Motherboard provides 1 MHz timer |
| 129 | */ |
| 130 | static void vexpress_timer_init(void) |
| 131 | { |
| 132 | /* |
| 133 | * Set clock frequency in system controller: |
| 134 | * VEXPRESS_REFCLK is 32KHz |
| 135 | * VEXPRESS_TIMCLK is 1MHz |
| 136 | */ |
| 137 | writel(SP810_TIMER0_ENSEL | SP810_TIMER1_ENSEL | |
| 138 | SP810_TIMER2_ENSEL | SP810_TIMER3_ENSEL | |
| 139 | readl(&sysctrl_base->scctrl), &sysctrl_base->scctrl); |
| 140 | |
| 141 | /* |
| 142 | * Set Timer0 to be: |
| 143 | * Enabled, free running, no interrupt, 32-bit, wrapping |
| 144 | */ |
| 145 | writel(SYSTIMER_RELOAD, &systimer_base->timer0load); |
| 146 | writel(SYSTIMER_RELOAD, &systimer_base->timer0value); |
Ryan Harkin | 9b58a3f | 2013-04-09 02:20:30 +0000 | [diff] [blame] | 147 | writel(SYSTIMER_EN | SYSTIMER_32BIT | |
| 148 | readl(&systimer_base->timer0control), |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 149 | &systimer_base->timer0control); |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 150 | } |
| 151 | |
Ryan Harkin | cd4f46e | 2013-04-09 02:20:31 +0000 | [diff] [blame] | 152 | int v2m_cfg_write(u32 devfn, u32 data) |
| 153 | { |
| 154 | /* Configuration interface broken? */ |
| 155 | u32 val; |
| 156 | |
| 157 | devfn |= SYS_CFG_START | SYS_CFG_WRITE; |
| 158 | |
| 159 | val = readl(V2M_SYS_CFGSTAT); |
| 160 | writel(val & ~SYS_CFG_COMPLETE, V2M_SYS_CFGSTAT); |
| 161 | |
| 162 | writel(data, V2M_SYS_CFGDATA); |
| 163 | writel(devfn, V2M_SYS_CFGCTRL); |
| 164 | |
| 165 | do { |
| 166 | val = readl(V2M_SYS_CFGSTAT); |
| 167 | } while (val == 0); |
| 168 | |
| 169 | return !!(val & SYS_CFG_ERR); |
| 170 | } |
| 171 | |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 172 | /* Use the ARM Watchdog System to cause reset */ |
| 173 | void reset_cpu(ulong addr) |
| 174 | { |
Ryan Harkin | cd4f46e | 2013-04-09 02:20:31 +0000 | [diff] [blame] | 175 | if (v2m_cfg_write(SYS_CFG_REBOOT | SYS_CFG_SITE_MB, 0)) |
| 176 | printf("Unable to reboot\n"); |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 177 | } |
| 178 | |
Matt Waddel | b80e41a | 2010-10-07 15:48:45 -0600 | [diff] [blame] | 179 | void lowlevel_init(void) |
| 180 | { |
| 181 | } |
| 182 | |
| 183 | ulong get_board_rev(void){ |
| 184 | return readl((u32 *)SYS_ID); |
| 185 | } |
Liming Wang | d721a3a | 2012-02-22 04:56:31 +0000 | [diff] [blame] | 186 | |
Jan Kiszka | 104d6fb | 2015-04-21 07:18:24 +0200 | [diff] [blame] | 187 | #ifdef CONFIG_ARMV7_NONSEC |
Andre Przywara | e261c83 | 2013-09-19 18:06:46 +0200 | [diff] [blame] | 188 | /* Setting the address at which secondary cores start from. |
| 189 | * Versatile Express uses one address for all cores, so ignore corenr |
| 190 | */ |
| 191 | void smp_set_core_boot_addr(unsigned long addr, int corenr) |
| 192 | { |
| 193 | /* The SYSFLAGS register on VExpress needs to be cleared first |
| 194 | * by writing to the next address, since any writes to the address |
| 195 | * at offset 0 will only be ORed in |
| 196 | */ |
| 197 | writel(~0, CONFIG_SYSFLAGS_ADDR + 4); |
| 198 | writel(addr, CONFIG_SYSFLAGS_ADDR); |
| 199 | } |
| 200 | #endif |