blob: 3c4c233391dc43b0d730c80d60e5bdd3319418db [file] [log] [blame]
Lennert Buytenheke7736d42006-03-20 17:10:13 +00001/*
2 * arch/arm/mach-ep93xx/ts72xx.c
3 * Technologic Systems TS72xx SBC support.
4 *
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 */
12
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -070013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Lennert Buytenheke7736d42006-03-20 17:10:13 +000015#include <linux/kernel.h>
16#include <linux/init.h>
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +010017#include <linux/platform_device.h>
Russell Kingfced80c2008-09-06 12:10:45 +010018#include <linux/io.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010019#include <linux/m48t86.h>
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -070020#include <linux/mtd/nand.h>
21#include <linux/mtd/partitions.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010024
Jamie Iles9a6879b2011-09-27 20:07:05 +010025#include <asm/hardware/vic.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000026#include <asm/mach-types.h>
Lennert Buytenheke7736d42006-03-20 17:10:13 +000027#include <asm/mach/map.h>
Hartley Sweeten583ddaf2009-07-06 17:39:50 +010028#include <asm/mach/arch.h>
29
Ryan Mallon258249e2012-01-11 09:06:08 +110030#include "soc.h"
Ryan Mallone4d4a902012-09-17 09:09:08 +100031#include "ts72xx.h"
Lennert Buytenheke7736d42006-03-20 17:10:13 +000032
33static struct map_desc ts72xx_io_desc[] __initdata = {
34 {
Arnd Bergmann29fe6512012-09-14 23:34:32 +020035 .virtual = (unsigned long)TS72XX_MODEL_VIRT_BASE,
Lennert Buytenheke7736d42006-03-20 17:10:13 +000036 .pfn = __phys_to_pfn(TS72XX_MODEL_PHYS_BASE),
37 .length = TS72XX_MODEL_SIZE,
38 .type = MT_DEVICE,
39 }, {
Arnd Bergmann29fe6512012-09-14 23:34:32 +020040 .virtual = (unsigned long)TS72XX_OPTIONS_VIRT_BASE,
Lennert Buytenheke7736d42006-03-20 17:10:13 +000041 .pfn = __phys_to_pfn(TS72XX_OPTIONS_PHYS_BASE),
42 .length = TS72XX_OPTIONS_SIZE,
43 .type = MT_DEVICE,
44 }, {
Arnd Bergmann29fe6512012-09-14 23:34:32 +020045 .virtual = (unsigned long)TS72XX_OPTIONS2_VIRT_BASE,
Lennert Buytenheke7736d42006-03-20 17:10:13 +000046 .pfn = __phys_to_pfn(TS72XX_OPTIONS2_PHYS_BASE),
47 .length = TS72XX_OPTIONS2_SIZE,
48 .type = MT_DEVICE,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +010049 }, {
Arnd Bergmann29fe6512012-09-14 23:34:32 +020050 .virtual = (unsigned long)TS72XX_RTC_INDEX_VIRT_BASE,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +010051 .pfn = __phys_to_pfn(TS72XX_RTC_INDEX_PHYS_BASE),
52 .length = TS72XX_RTC_INDEX_SIZE,
53 .type = MT_DEVICE,
54 }, {
Arnd Bergmann29fe6512012-09-14 23:34:32 +020055 .virtual = (unsigned long)TS72XX_RTC_DATA_VIRT_BASE,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +010056 .pfn = __phys_to_pfn(TS72XX_RTC_DATA_PHYS_BASE),
57 .length = TS72XX_RTC_DATA_SIZE,
58 .type = MT_DEVICE,
Lennert Buytenheke7736d42006-03-20 17:10:13 +000059 }
60};
61
Lennert Buytenheke7736d42006-03-20 17:10:13 +000062static void __init ts72xx_map_io(void)
63{
64 ep93xx_map_io();
65 iotable_init(ts72xx_io_desc, ARRAY_SIZE(ts72xx_io_desc));
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -070066}
Lennert Buytenheke7736d42006-03-20 17:10:13 +000067
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -070068
69/*************************************************************************
70 * NAND flash
71 *************************************************************************/
72#define TS72XX_NAND_CONTROL_ADDR_LINE 22 /* 0xN0400000 */
73#define TS72XX_NAND_BUSY_ADDR_LINE 23 /* 0xN0800000 */
74
75static void ts72xx_nand_hwcontrol(struct mtd_info *mtd,
76 int cmd, unsigned int ctrl)
77{
78 struct nand_chip *chip = mtd->priv;
79
80 if (ctrl & NAND_CTRL_CHANGE) {
81 void __iomem *addr = chip->IO_ADDR_R;
82 unsigned char bits;
83
84 addr += (1 << TS72XX_NAND_CONTROL_ADDR_LINE);
85
86 bits = __raw_readb(addr) & ~0x07;
87 bits |= (ctrl & NAND_NCE) << 2; /* bit 0 -> bit 2 */
88 bits |= (ctrl & NAND_CLE); /* bit 1 -> bit 1 */
89 bits |= (ctrl & NAND_ALE) >> 2; /* bit 2 -> bit 0 */
90
91 __raw_writeb(bits, addr);
92 }
93
94 if (cmd != NAND_CMD_NONE)
95 __raw_writeb(cmd, chip->IO_ADDR_W);
96}
97
98static int ts72xx_nand_device_ready(struct mtd_info *mtd)
99{
100 struct nand_chip *chip = mtd->priv;
101 void __iomem *addr = chip->IO_ADDR_R;
102
103 addr += (1 << TS72XX_NAND_BUSY_ADDR_LINE);
104
105 return !!(__raw_readb(addr) & 0x20);
106}
107
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700108#define TS72XX_BOOTROM_PART_SIZE (SZ_16K)
109#define TS72XX_REDBOOT_PART_SIZE (SZ_2M + SZ_1M)
110
111static struct mtd_partition ts72xx_nand_parts[] = {
112 {
113 .name = "TS-BOOTROM",
114 .offset = 0,
115 .size = TS72XX_BOOTROM_PART_SIZE,
116 .mask_flags = MTD_WRITEABLE, /* force read-only */
117 }, {
118 .name = "Linux",
Dmitry Eremin-Solenikov78dd9e32011-06-06 18:04:15 +0400119 .offset = MTDPART_OFS_RETAIN,
120 .size = TS72XX_REDBOOT_PART_SIZE,
121 /* leave so much for last partition */
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700122 }, {
123 .name = "RedBoot",
124 .offset = MTDPART_OFS_APPEND,
125 .size = MTDPART_SIZ_FULL,
126 .mask_flags = MTD_WRITEABLE, /* force read-only */
127 },
128};
129
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700130static struct platform_nand_data ts72xx_nand_data = {
131 .chip = {
132 .nr_chips = 1,
133 .chip_offset = 0,
134 .chip_delay = 15,
Dmitry Eremin-Solenikov78dd9e32011-06-06 18:04:15 +0400135 .partitions = ts72xx_nand_parts,
136 .nr_partitions = ARRAY_SIZE(ts72xx_nand_parts),
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700137 },
138 .ctrl = {
139 .cmd_ctrl = ts72xx_nand_hwcontrol,
140 .dev_ready = ts72xx_nand_device_ready,
141 },
142};
143
144static struct resource ts72xx_nand_resource[] = {
145 {
146 .start = 0, /* filled in later */
147 .end = 0, /* filled in later */
148 .flags = IORESOURCE_MEM,
149 },
150};
151
152static struct platform_device ts72xx_nand_flash = {
153 .name = "gen_nand",
154 .id = -1,
155 .dev.platform_data = &ts72xx_nand_data,
156 .resource = ts72xx_nand_resource,
157 .num_resources = ARRAY_SIZE(ts72xx_nand_resource),
158};
159
160
Hartley Sweeten3174c882009-07-20 18:12:23 +0100161static void __init ts72xx_register_flash(void)
162{
Hartley Sweeten16bcf782010-06-10 16:19:08 +0100163 /*
164 * TS7200 has NOR flash all other TS72xx board have NAND flash.
165 */
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700166 if (board_is_ts7200()) {
Hartley Sweeten16bcf782010-06-10 16:19:08 +0100167 ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_16M);
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700168 } else {
169 resource_size_t start;
170
171 if (is_ts9420_installed())
172 start = EP93XX_CS7_PHYS_BASE;
173 else
174 start = EP93XX_CS6_PHYS_BASE;
175
176 ts72xx_nand_resource[0].start = start;
177 ts72xx_nand_resource[0].end = start + SZ_16M - 1;
178
179 platform_device_register(&ts72xx_nand_flash);
180 }
Hartley Sweeten3174c882009-07-20 18:12:23 +0100181}
182
H Hartley Sweeten030d2dd2010-01-05 14:59:56 -0700183
Lennert Buytenhekfd0a0ac2006-06-08 00:43:40 -0700184static unsigned char ts72xx_rtc_readbyte(unsigned long addr)
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100185{
186 __raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
187 return __raw_readb(TS72XX_RTC_DATA_VIRT_BASE);
188}
189
Lennert Buytenhekfd0a0ac2006-06-08 00:43:40 -0700190static void ts72xx_rtc_writebyte(unsigned char value, unsigned long addr)
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100191{
192 __raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
193 __raw_writeb(value, TS72XX_RTC_DATA_VIRT_BASE);
194}
195
196static struct m48t86_ops ts72xx_rtc_ops = {
Hartley Sweetene48f3fa2008-12-08 17:57:22 +0100197 .readbyte = ts72xx_rtc_readbyte,
198 .writebyte = ts72xx_rtc_writebyte,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100199};
200
201static struct platform_device ts72xx_rtc_device = {
Hartley Sweetene48f3fa2008-12-08 17:57:22 +0100202 .name = "rtc-m48t86",
203 .id = -1,
204 .dev = {
205 .platform_data = &ts72xx_rtc_ops,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100206 },
Hartley Sweetene48f3fa2008-12-08 17:57:22 +0100207 .num_resources = 0,
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100208};
209
Mika Westerberg12926dc2009-11-29 17:03:03 +0200210static struct resource ts72xx_wdt_resources[] = {
211 {
212 .start = TS72XX_WDT_CONTROL_PHYS_BASE,
213 .end = TS72XX_WDT_CONTROL_PHYS_BASE + SZ_4K - 1,
214 .flags = IORESOURCE_MEM,
215 },
216 {
217 .start = TS72XX_WDT_FEED_PHYS_BASE,
218 .end = TS72XX_WDT_FEED_PHYS_BASE + SZ_4K - 1,
219 .flags = IORESOURCE_MEM,
220 },
221};
222
223static struct platform_device ts72xx_wdt_device = {
224 .name = "ts72xx-wdt",
225 .id = -1,
226 .num_resources = ARRAY_SIZE(ts72xx_wdt_resources),
227 .resource = ts72xx_wdt_resources,
228};
229
Hartley Sweetenb370e082010-03-18 18:04:06 +0100230static struct ep93xx_eth_data __initdata ts72xx_eth_data = {
Hartley Sweetene48f3fa2008-12-08 17:57:22 +0100231 .phy_id = 1,
Lennert Buytenhek730ee9f2006-09-29 21:17:36 +0100232};
233
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000234static void __init ts72xx_init_machine(void)
235{
236 ep93xx_init_devices();
Hartley Sweeten3174c882009-07-20 18:12:23 +0100237 ts72xx_register_flash();
Lennert Buytenhek7ba01f92006-04-02 16:17:40 +0100238 platform_device_register(&ts72xx_rtc_device);
Mika Westerberg12926dc2009-11-29 17:03:03 +0200239 platform_device_register(&ts72xx_wdt_device);
Lennert Buytenhek730ee9f2006-09-29 21:17:36 +0100240
Hartley Sweetena0a08fd2008-10-04 20:01:49 +0100241 ep93xx_register_eth(&ts72xx_eth_data, 1);
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000242}
243
244MACHINE_START(TS72XX, "Technologic Systems TS-72xx SBC")
245 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
Nicolas Pitree562cf12011-07-05 22:38:11 -0400246 .atag_offset = 0x100,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000247 .map_io = ts72xx_map_io,
248 .init_irq = ep93xx_init_irq,
Jamie Iles9a6879b2011-09-27 20:07:05 +0100249 .handle_irq = vic_handle_irq,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000250 .timer = &ep93xx_timer,
251 .init_machine = ts72xx_init_machine,
Shawn Guoc9142832012-04-26 10:05:15 +0800252 .init_late = ep93xx_init_late,
Russell King32751662011-11-05 09:54:14 +0000253 .restart = ep93xx_restart,
Lennert Buytenheke7736d42006-03-20 17:10:13 +0000254MACHINE_END