blob: a5c0df785bfec6bb7c3355a667560dff0b011c21 [file] [log] [blame]
Peter Griffin6feb3482008-11-28 22:56:45 +09001/*
Paul Mundtea0aac12008-12-08 14:32:03 +09002 * Renesas Technology Europe RSK+ Support.
Peter Griffin6feb3482008-11-28 22:56:45 +09003 *
Paul Mundtea0aac12008-12-08 14:32:03 +09004 * Copyright (C) 2008 Paul Mundt
Peter Griffin6feb3482008-11-28 22:56:45 +09005 * Copyright (C) 2008 Peter Griffin <pgriffin@mpc-data.co.uk>
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11#include <linux/init.h>
12#include <linux/types.h>
13#include <linux/platform_device.h>
14#include <linux/interrupt.h>
15#include <linux/mtd/mtd.h>
16#include <linux/mtd/partitions.h>
17#include <linux/mtd/physmap.h>
Magnus Damm88345412009-10-26 10:08:55 +000018#ifdef CONFIG_MTD
Peter Griffin6feb3482008-11-28 22:56:45 +090019#include <linux/mtd/map.h>
Magnus Damm88345412009-10-26 10:08:55 +000020#endif
Peter Griffin6feb3482008-11-28 22:56:45 +090021#include <asm/machvec.h>
22#include <asm/io.h>
23
Paul Mundtea0aac12008-12-08 14:32:03 +090024static struct mtd_partition rsk_partitions[] = {
Peter Griffin6feb3482008-11-28 22:56:45 +090025 {
26 .name = "Bootloader",
27 .offset = 0x00000000,
28 .size = 0x00040000,
29 .mask_flags = MTD_WRITEABLE,
30 }, {
31 .name = "Kernel",
32 .offset = MTDPART_OFS_NXTBLK,
33 .size = 0x001c0000,
34 }, {
35 .name = "Flash_FS",
36 .offset = MTDPART_OFS_NXTBLK,
37 .size = MTDPART_SIZ_FULL,
38 }
39};
40
41static struct physmap_flash_data flash_data = {
Magnus Damm88345412009-10-26 10:08:55 +000042 .parts = rsk_partitions,
43 .nr_parts = ARRAY_SIZE(rsk_partitions),
Peter Griffin6feb3482008-11-28 22:56:45 +090044 .width = 2,
45};
46
47static struct resource flash_resource = {
48 .start = 0x20000000,
49 .end = 0x20400000,
50 .flags = IORESOURCE_MEM,
51};
52
53static struct platform_device flash_device = {
54 .name = "physmap-flash",
55 .id = -1,
56 .resource = &flash_resource,
57 .num_resources = 1,
58 .dev = {
59 .platform_data = &flash_data,
60 },
61};
62
Magnus Damm88345412009-10-26 10:08:55 +000063#ifdef CONFIG_MTD
64static const char *probes[] = { "cmdlinepart", NULL };
Peter Griffin6feb3482008-11-28 22:56:45 +090065
Paul Mundtea0aac12008-12-08 14:32:03 +090066static struct map_info rsk_flash_map = {
Peter Griffin6feb3482008-11-28 22:56:45 +090067 .name = "RSK+ Flash",
68 .size = 0x400000,
69 .bankwidth = 2,
70};
71
Magnus Damm88345412009-10-26 10:08:55 +000072static struct mtd_info *flash_mtd;
73
74static struct mtd_partition *parsed_partitions;
75
Peter Griffin6feb3482008-11-28 22:56:45 +090076static void __init set_mtd_partitions(void)
77{
78 int nr_parts = 0;
79
Paul Mundtea0aac12008-12-08 14:32:03 +090080 simple_map_init(&rsk_flash_map);
81 flash_mtd = do_map_probe("cfi_probe", &rsk_flash_map);
Peter Griffin6feb3482008-11-28 22:56:45 +090082 nr_parts = parse_mtd_partitions(flash_mtd, probes,
83 &parsed_partitions, 0);
84 /* If there is no partition table, used the hard coded table */
Magnus Damm88345412009-10-26 10:08:55 +000085 if (nr_parts > 0) {
Peter Griffin6feb3482008-11-28 22:56:45 +090086 flash_data.nr_parts = nr_parts;
87 flash_data.parts = parsed_partitions;
88 }
89}
Magnus Damm88345412009-10-26 10:08:55 +000090#else
91static inline void set_mtd_partitions(void) {}
92#endif
Peter Griffin6feb3482008-11-28 22:56:45 +090093
Paul Mundtea0aac12008-12-08 14:32:03 +090094static struct platform_device *rsk_devices[] __initdata = {
Peter Griffin6feb3482008-11-28 22:56:45 +090095 &flash_device,
96};
97
Paul Mundtea0aac12008-12-08 14:32:03 +090098static int __init rsk_devices_setup(void)
Peter Griffin6feb3482008-11-28 22:56:45 +090099{
100 set_mtd_partitions();
Paul Mundtea0aac12008-12-08 14:32:03 +0900101 return platform_add_devices(rsk_devices,
102 ARRAY_SIZE(rsk_devices));
Peter Griffin6feb3482008-11-28 22:56:45 +0900103}
Paul Mundtea0aac12008-12-08 14:32:03 +0900104device_initcall(rsk_devices_setup);
Peter Griffin6feb3482008-11-28 22:56:45 +0900105
106/*
107 * The Machine Vector
108 */
Paul Mundtea0aac12008-12-08 14:32:03 +0900109static struct sh_machine_vector mv_rsk __initmv = {
110 .mv_name = "RSK+",
Peter Griffin6feb3482008-11-28 22:56:45 +0900111};