blob: f4e80840b2ec9a086914b300590e2e54aaa1f083 [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"
David Feng12916822013-12-14 11:47:37 +080017
18DECLARE_GLOBAL_DATA_PTR;
19
David Fengd8bafe132015-01-31 11:55:29 +080020static const struct pl01x_serial_platdata serial_platdata = {
21 .base = V2M_UART0,
22 .type = TYPE_PL011,
Linus Walleijd280ea02015-04-14 10:01:35 +020023 .clock = CONFIG_PL011_CLOCK,
David Fengd8bafe132015-01-31 11:55:29 +080024};
25
26U_BOOT_DEVICE(vexpress_serials) = {
27 .name = "serial_pl01x",
28 .platdata = &serial_platdata,
29};
30
David Feng12916822013-12-14 11:47:37 +080031int board_init(void)
32{
Liviu Dudau2fdc9b72015-10-19 11:08:32 +010033 vexpress64_pcie_init();
David Feng12916822013-12-14 11:47:37 +080034 return 0;
35}
36
37int dram_init(void)
38{
David Feng12916822013-12-14 11:47:37 +080039 gd->ram_size = PHYS_SDRAM_1_SIZE;
40 return 0;
41}
42
Liviu Dudau2d0cee12015-10-19 11:08:31 +010043void dram_init_banksize(void)
44{
45 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
46 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
47 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
48 gd->bd->bi_dram[1].size = PHYS_SDRAM_2_SIZE;
49}
50
David Feng12916822013-12-14 11:47:37 +080051/*
52 * Board specific reset that is system reset.
53 */
54void reset_cpu(ulong addr)
55{
56}
57
David Feng12916822013-12-14 11:47:37 +080058/*
59 * Board specific ethernet initialization routine.
60 */
61int board_eth_init(bd_t *bis)
62{
63 int rc = 0;
64#ifdef CONFIG_SMC91111
65 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
66#endif
Linus Walleijb31f9d72015-02-17 11:35:25 +010067#ifdef CONFIG_SMC911X
68 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
69#endif
David Feng12916822013-12-14 11:47:37 +080070 return rc;
71}