| * Vincent Dubey, Xa SA, vincent.dubey@xa-ch.com |
| * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
| * Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| * Marius Groeger <mgroeger@sysgo.de> |
| * SPDX-License-Identifier: GPL-2.0+ |
| #include <asm/arch/pxa.h> |
| * Miscelaneous platform dependent initialisations |
| /* We have RAM, disable cache */ |
| /* arch number of xaeniax */ |
| gd->bd->bi_arch_number = 585; |
| /* adress of boot parameters */ |
| gd->bd->bi_boot_params = 0xa0000100; |
| int board_late_init(void) |
| setenv("stdout", "serial"); |
| setenv("stderr", "serial"); |
| gd->ram_size = PHYS_SDRAM_1_SIZE; |
| void dram_init_banksize(void) |
| gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |
| gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; |
| int board_eth_init(bd_t *bis) |
| rc = smc91111_initialize(0, CONFIG_SMC91111_BASE); |