Merge remote-tracking branch 's5p/for-next'
[linux-2.6/next.git] / arch / mips / lantiq / xway / mach-easy50601.c
blobd5aaf637ab1918f9b41a78783c36a7c842a750d7
1 /*
2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
6 * Copyright (C) 2010 John Crispin <blogic@openwrt.org>
7 */
9 #include <linux/init.h>
10 #include <linux/platform_device.h>
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
13 #include <linux/mtd/physmap.h>
14 #include <linux/input.h>
16 #include <lantiq.h>
18 #include "../machtypes.h"
19 #include "devices.h"
21 static struct mtd_partition easy50601_partitions[] = {
23 .name = "uboot",
24 .offset = 0x0,
25 .size = 0x10000,
28 .name = "uboot_env",
29 .offset = 0x10000,
30 .size = 0x10000,
33 .name = "linux",
34 .offset = 0x20000,
35 .size = 0xE0000,
38 .name = "rootfs",
39 .offset = 0x100000,
40 .size = 0x300000,
44 static struct physmap_flash_data easy50601_flash_data = {
45 .nr_parts = ARRAY_SIZE(easy50601_partitions),
46 .parts = easy50601_partitions,
49 static void __init easy50601_init(void)
51 ltq_register_nor(&easy50601_flash_data);
54 MIPS_MACHINE(LTQ_MACH_EASY50601,
55 "EASY50601",
56 "EASY50601 Eval Board",
57 easy50601_init);