*/
#include <linux/platform_device.h>
+#include <linux/mtd/mtd.h>
+#include <linux/mtd/partitions.h>
#include <linux/spi/spi.h>
#include <linux/spi/flash.h>
#include <linux/input.h>
#define WP543_BUTTONS_POLL_INTERVAL 20
+#ifdef CONFIG_MTD_PARTITIONS
+static struct mtd_partition wp543_partitions[] = {
+ {
+ .name = "myloader",
+ .offset = 0,
+ .size = 0x20000,
+ .mask_flags = MTD_WRITEABLE,
+ } , {
+ .name = "kernel",
+ .offset = 0x30000,
+ .size = 0xd0000,
+ } , {
+ .name = "rootfs",
+ .offset = 0x100000,
+ .size = 0x100000,
+ }
+};
+#endif /* CONFIG_MTD_PARTITIONS */
+
static struct flash_platform_data wp543_flash_data = {
- /* TODO: add partition map */
+#ifdef CONFIG_MTD_PARTITIONS
+ .parts = wp543_partitions,
+ .nr_parts = ARRAY_SIZE(wp543_partitions),
+#endif
};
static struct spi_board_info wp543_spi_info[] = {