3 * Vincent Dubey, Xa SA, vincent.dubey@xa-ch.com
6 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
12 * SPDX-License-Identifier: GPL-2.0+
17 #include <asm/arch/pxa.h>
19 DECLARE_GLOBAL_DATA_PTR;
22 * Miscelaneous platform dependent initialisations
27 /* We have RAM, disable cache */
31 /* arch number of xaeniax */
32 gd->bd->bi_arch_number = 585;
34 /* adress of boot parameters */
35 gd->bd->bi_boot_params = 0xa0000100;
40 int board_late_init(void)
42 setenv("stdout", "serial");
43 setenv("stderr", "serial");
50 gd->ram_size = PHYS_SDRAM_1_SIZE;
54 void dram_init_banksize(void)
56 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
57 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
61 int board_eth_init(bd_t *bis)
64 #ifdef CONFIG_SMC91111
65 rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);