X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Farm%2Fmach-sa1100%2Fhackkit.c;h=5708417797142c93136e6bd37b157f30ef8dfc49;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=e79bb441c8fece8b8f5b64398cb5906e56e5537d;hpb=5273a3df6485dc2ad6aa7ddd441b9a21970f003b;p=linux-2.6.git diff --git a/arch/arm/mach-sa1100/hackkit.c b/arch/arm/mach-sa1100/hackkit.c index e79bb441c..570841779 100644 --- a/arch/arm/mach-sa1100/hackkit.c +++ b/arch/arm/mach-sa1100/hackkit.c @@ -19,6 +19,8 @@ #include #include #include +#include +#include #include #include @@ -28,6 +30,7 @@ #include #include +#include #include #include #include @@ -39,8 +42,6 @@ */ /* init funcs */ -static int __init hackkit_init(void); -static void __init hackkit_init_irq(void); static void __init hackkit_map_io(void); static u_int hackkit_get_mctrl(struct uart_port *port); @@ -83,11 +84,6 @@ static void __init hackkit_map_io(void) Ser1SDCR0 |= SDCR0_SUS; } -static void __init hackkit_init_irq(void) -{ - /* none used yet */ -} - /** * hackkit_uart_pm - powermgmt callback function for system 3 UART * @port: uart port structure @@ -144,34 +140,61 @@ static u_int hackkit_get_mctrl(struct uart_port *port) return ret; } -static int __init hackkit_init(void) -{ - int ret = 0; - - if ( !machine_is_hackkit() ) { - ret = -EINVAL; - goto DONE; +static struct mtd_partition hackkit_partitions[] = { + { + .name = "BLOB", + .size = 0x00040000, + .offset = 0x00000000, + .mask_flags = MTD_WRITEABLE, /* force read-only */ + }, { + .name = "config", + .size = 0x00040000, + .offset = MTDPART_OFS_APPEND, + }, { + .name = "kernel", + .size = 0x00100000, + .offset = MTDPART_OFS_APPEND, + }, { + .name = "initrd", + .size = 0x00180000, + .offset = MTDPART_OFS_APPEND, + }, { + .name = "rootfs", + .size = 0x700000, + .offset = MTDPART_OFS_APPEND, + }, { + .name = "data", + .size = MTDPART_SIZ_FULL, + .offset = MTDPART_OFS_APPEND, } +}; + +static struct flash_platform_data hackkit_flash_data = { + .map_name = "cfi_probe", + .parts = hackkit_partitions, + .nr_parts = ARRAY_SIZE(hackkit_partitions), +}; - hackkit_init_irq(); +static struct resource hackkit_flash_resource = { + .start = SA1100_CS0_PHYS, + .end = SA1100_CS0_PHYS + SZ_32M, + .flags = IORESOURCE_MEM, +}; - ret = 0; -DONE: - return ret; +static void __init hackkit_init(void) +{ + sa11x0_set_flash_data(&hackkit_flash_data, &hackkit_flash_resource, 1); } /********************************************************************** * Exported Functions */ -/********************************************************************** - * kernel magic macros - */ -arch_initcall(hackkit_init); - MACHINE_START(HACKKIT, "HackKit Cpu Board") BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000) BOOT_PARAMS(0xc0000100) MAPIO(hackkit_map_io) INITIRQ(sa1100_init_irq) + .timer = &sa1100_timer, + .init_machine = hackkit_init, MACHINE_END