blob: e34af6c4d932edb93a4db7cc440e74b0edce9abc [file] [log] [blame]
David Feng12916822013-12-14 11:47:37 +08001/*
2 * (C) Copyright 2013
3 * David Feng <fenghua@phytium.com.cn>
4 * Sharma Bhupesh <bhupesh.sharma@freescale.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8#include <common.h>
9#include <malloc.h>
10#include <errno.h>
11#include <netdev.h>
12#include <asm/io.h>
13#include <linux/compiler.h>
David Fengd8bafe132015-01-31 11:55:29 +080014#include <dm/platdata.h>
15#include <dm/platform_data/serial_pl01x.h>
Liviu Dudau2fdc9b72015-10-19 11:08:32 +010016#include "pcie.h"
Alexander Grafe593bf52016-03-04 01:09:51 +010017#include <asm/armv8/mmu.h>
David Feng12916822013-12-14 11:47:37 +080018
19DECLARE_GLOBAL_DATA_PTR;
20
David Fengd8bafe132015-01-31 11:55:29 +080021static const struct pl01x_serial_platdata serial_platdata = {
22 .base = V2M_UART0,
23 .type = TYPE_PL011,
Linus Walleijd280ea02015-04-14 10:01:35 +020024 .clock = CONFIG_PL011_CLOCK,
David Fengd8bafe132015-01-31 11:55:29 +080025};
26
27U_BOOT_DEVICE(vexpress_serials) = {
28 .name = "serial_pl01x",
29 .platdata = &serial_platdata,
30};
31
Alexander Grafe593bf52016-03-04 01:09:51 +010032static struct mm_region vexpress64_mem_map[] = {
33 {
York Suncd4b0c52016-06-24 16:46:22 -070034 .virt = 0x0UL,
35 .phys = 0x0UL,
Alexander Grafe593bf52016-03-04 01:09:51 +010036 .size = 0x80000000UL,
37 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
38 PTE_BLOCK_NON_SHARE |
39 PTE_BLOCK_PXN | PTE_BLOCK_UXN
40 }, {
York Suncd4b0c52016-06-24 16:46:22 -070041 .virt = 0x80000000UL,
42 .phys = 0x80000000UL,
Alexander Grafe593bf52016-03-04 01:09:51 +010043 .size = 0xff80000000UL,
44 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
45 PTE_BLOCK_INNER_SHARE
46 }, {
47 /* List terminator */
48 0,
49 }
50};
51
52struct mm_region *mem_map = vexpress64_mem_map;
53
Ryan Harkinbc8d3bc2015-11-18 10:39:06 +000054/* This function gets replaced by platforms supporting PCIe.
55 * The replacement function, eg. on Juno, initialises the PCIe bus.
56 */
57__weak void vexpress64_pcie_init(void)
58{
59}
60
David Feng12916822013-12-14 11:47:37 +080061int board_init(void)
62{
Liviu Dudau2fdc9b72015-10-19 11:08:32 +010063 vexpress64_pcie_init();
David Feng12916822013-12-14 11:47:37 +080064 return 0;
65}
66
67int dram_init(void)
68{
David Feng12916822013-12-14 11:47:37 +080069 gd->ram_size = PHYS_SDRAM_1_SIZE;
70 return 0;
71}
72
Liviu Dudau2d0cee12015-10-19 11:08:31 +010073void dram_init_banksize(void)
74{
75 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
76 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
Ryan Harkin2c2b2182015-11-18 10:39:07 +000077#ifdef PHYS_SDRAM_2
Liviu Dudau2d0cee12015-10-19 11:08:31 +010078 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
79 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
Ryan Harkin2c2b2182015-11-18 10:39:07 +000080#endif
Liviu Dudau2d0cee12015-10-19 11:08:31 +010081}
82
David Feng12916822013-12-14 11:47:37 +080083/*
84 * Board specific reset that is system reset.
85 */
86void reset_cpu(ulong addr)
87{
88}
89
David Feng12916822013-12-14 11:47:37 +080090/*
91 * Board specific ethernet initialization routine.
92 */
93int board_eth_init(bd_t *bis)
94{
95 int rc = 0;
96#ifdef CONFIG_SMC91111
97 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
98#endif
Linus Walleijb31f9d72015-02-17 11:35:25 +010099#ifdef CONFIG_SMC911X
100 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
101#endif
David Feng12916822013-12-14 11:47:37 +0800102 return rc;
103}