9
0
Fork 0

nios2: use barebox_add_memory_bank in generic.c

In the nios2 generic board generic.c file, use the
new barebox_add_memory_bank to init ram memory.

Signed-off-by: Franck Jullien <franck.jullien@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Franck Jullien 2012-11-14 23:23:32 +01:00 committed by Sascha Hauer
parent 9b8fa53626
commit 5cd86790e7
1 changed files with 9 additions and 2 deletions

View File

@ -3,6 +3,7 @@
#include <driver.h>
#include <partition.h>
#include <fs.h>
#include <memory.h>
static int phy_address = 1;
@ -32,11 +33,17 @@ static struct device_d mac_dev = {
.platform_data = &phy_address,
};
static int mem_init(void)
{
barebox_add_memory_bank("ram0", NIOS_SOPC_MEMORY_BASE, NIOS_SOPC_MEMORY_SIZE);
return 0;
}
mem_initcall(mem_init);
static int generic_devices_init(void)
{
add_cfi_flash_device(DEVICE_ID_DYNAMIC, NIOS_SOPC_FLASH_BASE, NIOS_SOPC_FLASH_SIZE, 0);
add_mem_device("ram0", NIOS_SOPC_MEMORY_BASE, NIOS_SOPC_MEMORY_SIZE,
IORESOURCE_MEM_WRITEABLE);
platform_device_register(&mac_dev);
/*register_device(&epcs_flash_device);*/