Blame view

arch/arm/mach-ep93xx/ts72xx.c 6.26 KB
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * arch/arm/mach-ep93xx/ts72xx.c
   * Technologic Systems TS72xx SBC support.
   *
   * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or (at
   * your option) any later version.
   */
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
12
  #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
13
14
  #include <linux/kernel.h>
  #include <linux/init.h>
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
15
  #include <linux/platform_device.h>
fced80c73   Russell King   [ARM] Convert asm...
16
  #include <linux/io.h>
583ddafe1   Hartley Sweeten   [ARM] 5592/1: ep9...
17
  #include <linux/m48t86.h>
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
18
19
  #include <linux/mtd/nand.h>
  #include <linux/mtd/partitions.h>
583ddafe1   Hartley Sweeten   [ARM] 5592/1: ep9...
20

a09e64fbc   Russell King   [ARM] Move includ...
21
  #include <mach/hardware.h>
583ddafe1   Hartley Sweeten   [ARM] 5592/1: ep9...
22

e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
23
  #include <asm/mach-types.h>
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
24
  #include <asm/mach/map.h>
583ddafe1   Hartley Sweeten   [ARM] 5592/1: ep9...
25
  #include <asm/mach/arch.h>
258249ec0   Ryan Mallon   ep93xx: Move PHYS...
26
  #include "soc.h"
e4d4a9027   Ryan Mallon   ARM: ep93xx: Move...
27
  #include "ts72xx.h"
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
28
29
30
  
  static struct map_desc ts72xx_io_desc[] __initdata = {
  	{
29fe651f8   Arnd Bergmann   ARM: ep93xx: use ...
31
  		.virtual	= (unsigned long)TS72XX_MODEL_VIRT_BASE,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
32
33
34
35
  		.pfn		= __phys_to_pfn(TS72XX_MODEL_PHYS_BASE),
  		.length		= TS72XX_MODEL_SIZE,
  		.type		= MT_DEVICE,
  	}, {
29fe651f8   Arnd Bergmann   ARM: ep93xx: use ...
36
  		.virtual	= (unsigned long)TS72XX_OPTIONS_VIRT_BASE,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
37
38
39
40
  		.pfn		= __phys_to_pfn(TS72XX_OPTIONS_PHYS_BASE),
  		.length		= TS72XX_OPTIONS_SIZE,
  		.type		= MT_DEVICE,
  	}, {
29fe651f8   Arnd Bergmann   ARM: ep93xx: use ...
41
  		.virtual	= (unsigned long)TS72XX_OPTIONS2_VIRT_BASE,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
42
43
44
  		.pfn		= __phys_to_pfn(TS72XX_OPTIONS2_PHYS_BASE),
  		.length		= TS72XX_OPTIONS2_SIZE,
  		.type		= MT_DEVICE,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
45
  	}, {
29fe651f8   Arnd Bergmann   ARM: ep93xx: use ...
46
  		.virtual	= (unsigned long)TS72XX_RTC_INDEX_VIRT_BASE,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
47
48
49
50
  		.pfn		= __phys_to_pfn(TS72XX_RTC_INDEX_PHYS_BASE),
  		.length		= TS72XX_RTC_INDEX_SIZE,
  		.type		= MT_DEVICE,
  	}, {
29fe651f8   Arnd Bergmann   ARM: ep93xx: use ...
51
  		.virtual	= (unsigned long)TS72XX_RTC_DATA_VIRT_BASE,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
52
53
54
  		.pfn		= __phys_to_pfn(TS72XX_RTC_DATA_PHYS_BASE),
  		.length		= TS72XX_RTC_DATA_SIZE,
  		.type		= MT_DEVICE,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
55
56
  	}
  };
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  static void __init ts72xx_map_io(void)
  {
  	ep93xx_map_io();
  	iotable_init(ts72xx_io_desc, ARRAY_SIZE(ts72xx_io_desc));
  }
  
  
  /*************************************************************************
   * NAND flash
   *************************************************************************/
  #define TS72XX_NAND_CONTROL_ADDR_LINE	22	/* 0xN0400000 */
  #define TS72XX_NAND_BUSY_ADDR_LINE	23	/* 0xN0800000 */
  
  static void ts72xx_nand_hwcontrol(struct mtd_info *mtd,
  				  int cmd, unsigned int ctrl)
  {
  	struct nand_chip *chip = mtd->priv;
  
  	if (ctrl & NAND_CTRL_CHANGE) {
  		void __iomem *addr = chip->IO_ADDR_R;
  		unsigned char bits;
  
  		addr += (1 << TS72XX_NAND_CONTROL_ADDR_LINE);
  
  		bits = __raw_readb(addr) & ~0x07;
  		bits |= (ctrl & NAND_NCE) << 2;	/* bit 0 -> bit 2 */
  		bits |= (ctrl & NAND_CLE);	/* bit 1 -> bit 1 */
  		bits |= (ctrl & NAND_ALE) >> 2;	/* bit 2 -> bit 0 */
  
  		__raw_writeb(bits, addr);
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
87
  	}
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
88

030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
89
90
91
92
93
94
95
96
97
98
99
100
101
  	if (cmd != NAND_CMD_NONE)
  		__raw_writeb(cmd, chip->IO_ADDR_W);
  }
  
  static int ts72xx_nand_device_ready(struct mtd_info *mtd)
  {
  	struct nand_chip *chip = mtd->priv;
  	void __iomem *addr = chip->IO_ADDR_R;
  
  	addr += (1 << TS72XX_NAND_BUSY_ADDR_LINE);
  
  	return !!(__raw_readb(addr) & 0x20);
  }
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
102
103
104
105
  #define TS72XX_BOOTROM_PART_SIZE	(SZ_16K)
  #define TS72XX_REDBOOT_PART_SIZE	(SZ_2M + SZ_1M)
  
  static struct mtd_partition ts72xx_nand_parts[] = {
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
106
  	{
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
107
108
109
110
  		.name		= "TS-BOOTROM",
  		.offset		= 0,
  		.size		= TS72XX_BOOTROM_PART_SIZE,
  		.mask_flags	= MTD_WRITEABLE,	/* force read-only */
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
111
  	}, {
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
112
  		.name		= "Linux",
78dd9e350   Dmitry Eremin-Solenikov   ts72xx: use MTDPA...
113
114
115
  		.offset		= MTDPART_OFS_RETAIN,
  		.size		= TS72XX_REDBOOT_PART_SIZE,
  				/* leave so much for last partition */
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
116
  	}, {
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
117
118
119
120
121
  		.name		= "RedBoot",
  		.offset		= MTDPART_OFS_APPEND,
  		.size		= MTDPART_SIZ_FULL,
  		.mask_flags	= MTD_WRITEABLE,	/* force read-only */
  	},
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
122
  };
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
123
124
125
126
127
  static struct platform_nand_data ts72xx_nand_data = {
  	.chip = {
  		.nr_chips	= 1,
  		.chip_offset	= 0,
  		.chip_delay	= 15,
78dd9e350   Dmitry Eremin-Solenikov   ts72xx: use MTDPA...
128
129
  		.partitions	= ts72xx_nand_parts,
  		.nr_partitions	= ARRAY_SIZE(ts72xx_nand_parts),
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  	},
  	.ctrl = {
  		.cmd_ctrl	= ts72xx_nand_hwcontrol,
  		.dev_ready	= ts72xx_nand_device_ready,
  	},
  };
  
  static struct resource ts72xx_nand_resource[] = {
  	{
  		.start		= 0,			/* filled in later */
  		.end		= 0,			/* filled in later */
  		.flags		= IORESOURCE_MEM,
  	},
  };
  
  static struct platform_device ts72xx_nand_flash = {
  	.name			= "gen_nand",
  	.id			= -1,
  	.dev.platform_data	= &ts72xx_nand_data,
  	.resource		= ts72xx_nand_resource,
  	.num_resources		= ARRAY_SIZE(ts72xx_nand_resource),
  };
3174c88af   Hartley Sweeten   [ARM] 5611/1: ep9...
152
153
  static void __init ts72xx_register_flash(void)
  {
16bcf78f8   Hartley Sweeten   ARM: 6168/1: ep93...
154
155
156
  	/*
  	 * TS7200 has NOR flash all other TS72xx board have NAND flash.
  	 */
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
157
  	if (board_is_ts7200()) {
16bcf78f8   Hartley Sweeten   ARM: 6168/1: ep93...
158
  		ep93xx_register_flash(2, EP93XX_CS6_PHYS_BASE, SZ_16M);
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
159
160
161
162
163
164
165
166
167
168
169
170
171
  	} else {
  		resource_size_t start;
  
  		if (is_ts9420_installed())
  			start = EP93XX_CS7_PHYS_BASE;
  		else
  			start = EP93XX_CS6_PHYS_BASE;
  
  		ts72xx_nand_resource[0].start = start;
  		ts72xx_nand_resource[0].end = start + SZ_16M - 1;
  
  		platform_device_register(&ts72xx_nand_flash);
  	}
3174c88af   Hartley Sweeten   [ARM] 5611/1: ep9...
172
  }
030d2dd45   H Hartley Sweeten   mtd: Update ep93x...
173

fd0a0ac1c   Lennert Buytenhek   [PATCH] ep93xx bu...
174
  static unsigned char ts72xx_rtc_readbyte(unsigned long addr)
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
175
176
177
178
  {
  	__raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
  	return __raw_readb(TS72XX_RTC_DATA_VIRT_BASE);
  }
fd0a0ac1c   Lennert Buytenhek   [PATCH] ep93xx bu...
179
  static void ts72xx_rtc_writebyte(unsigned char value, unsigned long addr)
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
180
181
182
183
184
185
  {
  	__raw_writeb(addr, TS72XX_RTC_INDEX_VIRT_BASE);
  	__raw_writeb(value, TS72XX_RTC_DATA_VIRT_BASE);
  }
  
  static struct m48t86_ops ts72xx_rtc_ops = {
e48f3fa37   Hartley Sweeten   [ARM] 5342/1: ep9...
186
187
  	.readbyte	= ts72xx_rtc_readbyte,
  	.writebyte	= ts72xx_rtc_writebyte,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
188
189
190
  };
  
  static struct platform_device ts72xx_rtc_device = {
e48f3fa37   Hartley Sweeten   [ARM] 5342/1: ep9...
191
192
193
194
  	.name		= "rtc-m48t86",
  	.id		= -1,
  	.dev		= {
  		.platform_data	= &ts72xx_rtc_ops,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
195
  	},
e48f3fa37   Hartley Sweeten   [ARM] 5342/1: ep9...
196
  	.num_resources	= 0,
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
197
  };
12926dc41   Mika Westerberg   [WATCHDOG] ep93xx...
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
  static struct resource ts72xx_wdt_resources[] = {
  	{
  		.start	= TS72XX_WDT_CONTROL_PHYS_BASE,
  		.end	= TS72XX_WDT_CONTROL_PHYS_BASE + SZ_4K - 1,
  		.flags	= IORESOURCE_MEM,
  	},
  	{
  		.start	= TS72XX_WDT_FEED_PHYS_BASE,
  		.end	= TS72XX_WDT_FEED_PHYS_BASE + SZ_4K - 1,
  		.flags	= IORESOURCE_MEM,
  	},
  };
  
  static struct platform_device ts72xx_wdt_device = {
  	.name		= "ts72xx-wdt",
  	.id		= -1,
  	.num_resources 	= ARRAY_SIZE(ts72xx_wdt_resources),
  	.resource	= ts72xx_wdt_resources,
  };
b370e082e   Hartley Sweeten   ARM: 5992/1: ep93...
217
  static struct ep93xx_eth_data __initdata ts72xx_eth_data = {
e48f3fa37   Hartley Sweeten   [ARM] 5342/1: ep9...
218
  	.phy_id		= 1,
730ee9f35   Lennert Buytenhek   [ARM] 3879/1: ep9...
219
  };
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
220
221
222
  static void __init ts72xx_init_machine(void)
  {
  	ep93xx_init_devices();
3174c88af   Hartley Sweeten   [ARM] 5611/1: ep9...
223
  	ts72xx_register_flash();
7ba01f972   Lennert Buytenhek   [ARM] 3451/1: ep9...
224
  	platform_device_register(&ts72xx_rtc_device);
12926dc41   Mika Westerberg   [WATCHDOG] ep93xx...
225
  	platform_device_register(&ts72xx_wdt_device);
730ee9f35   Lennert Buytenhek   [ARM] 3879/1: ep9...
226

a0a08fdca   Hartley Sweeten   [ARM] 5273/2: ep9...
227
  	ep93xx_register_eth(&ts72xx_eth_data, 1);
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
228
229
230
231
  }
  
  MACHINE_START(TS72XX, "Technologic Systems TS-72xx SBC")
  	/* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
e562cf172   Nicolas Pitre   ARM: mach-ep93xx:...
232
  	.atag_offset	= 0x100,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
233
234
  	.map_io		= ts72xx_map_io,
  	.init_irq	= ep93xx_init_irq,
6bb27d734   Stephen Warren   ARM: delete struc...
235
  	.init_time	= ep93xx_timer_init,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
236
  	.init_machine	= ts72xx_init_machine,
c914283f5   Shawn Guo   ARM: ep93xx: use ...
237
  	.init_late	= ep93xx_init_late,
3275166e0   Russell King   ARM: restart: ep9...
238
  	.restart	= ep93xx_restart,
e7736d47a   Lennert Buytenhek   [ARM] 3369/1: ep9...
239
  MACHINE_END