]> git.sur5r.net Git - u-boot/blob - board/Marvell/aspenite/aspenite.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / board / Marvell / aspenite / aspenite.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2010
4  * Marvell Semiconductor <www.marvell.com>
5  * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
6  * Contributor: Mahavir Jain <mjain@marvell.com>
7  */
8
9 #include <common.h>
10 #include <mvmfp.h>
11 #include <asm/mach-types.h>
12 #include <asm/arch/cpu.h>
13 #include <asm/arch/mfp.h>
14 #include <asm/arch/armada100.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 int board_early_init_f(void)
19 {
20         u32 mfp_cfg[] = {
21                 /* I2C */
22                 MFP105_CI2C_SDA,
23                 MFP106_CI2C_SCL,
24
25                 /* Enable Console on UART1 */
26                 MFP107_UART1_RXD,
27                 MFP108_UART1_TXD,
28
29                 MFP_EOC         /*End of configureation*/
30         };
31         /* configure MFP's */
32         mfp_config(mfp_cfg);
33         return 0;
34 }
35
36 int board_init(void)
37 {
38         /* arch number of Board */
39         gd->bd->bi_arch_number = MACH_TYPE_ASPENITE;
40         /* adress of boot parameters */
41         gd->bd->bi_boot_params = armd1_sdram_base(0) + 0x100;
42         return 0;
43 }