9
0
Fork 0

ipe337: switch to resources

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
This commit is contained in:
Jean-Christophe PLAGNIOL-VILLARD 2011-07-29 13:31:19 +08:00
parent 08cdbd3ae3
commit 3d59ba2669
1 changed files with 4 additions and 16 deletions

View File

@ -5,13 +5,6 @@
#include <partition.h>
#include <fs.h>
static struct device_d smc911x_dev = {
.id = -1,
.name = "smc911x",
.map_base = 0x24000000,
.size = 4096,
};
static int ipe337_devices_init(void) {
add_cfi_flash_device(-1, 0x20000000, 32 * 1024 * 1024, 0);
add_mem_device("ram0", 0x0, 128 * 1024 * 1024,
@ -23,7 +16,8 @@ static int ipe337_devices_init(void) {
mdelay(100);
*pFIO0_FLAG_S = (1<<12);
register_device(&smc911x_dev);
add_generic_device("smc911x", -1, NULL, 0x24000000, 4096,
IORESOURCE_MEM, NULL);
devfs_add_partition("nor0", 0x00000, 0x20000, PARTITION_FIXED, "self0");
devfs_add_partition("nor0", 0x20000, 0x20000, PARTITION_FIXED, "env0");
@ -35,16 +29,10 @@ static int ipe337_devices_init(void) {
device_initcall(ipe337_devices_init);
static struct device_d blackfin_serial_device = {
.id = -1,
.name = "blackfin_serial",
.map_base = 0,
.size = 4096,
};
static int blackfin_console_init(void)
{
register_device(&blackfin_serial_device);
add_generic_device("blackfin_serial", -1, NULL, 0, 4096,
IORESOURCE_MEM, NULL);
return 0;
}