blob: c6133c6ec18f815e7a4efa93cdbf12deb65eb879 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* linux/arch/arm/mach-s3c2410/mach-bast.c
2 *
Ben Dooksccae9412009-11-13 22:54:14 +00003 * Copyright 2003-2008 Simtec Electronics
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * http://www.simtec.co.uk/products/EB2410ITX/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011*/
12
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/interrupt.h>
16#include <linux/list.h>
17#include <linux/timer.h>
18#include <linux/init.h>
Ben Dooksec976d62009-05-13 22:52:24 +010019#include <linux/gpio.h>
Rafael J. Wysockibb072c32011-04-22 22:03:21 +020020#include <linux/syscore_ops.h>
Ben Dooksb6d1f542006-12-17 23:22:26 +010021#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Ben Dooksd97a6662005-06-23 21:56:47 +010023#include <linux/dm9000.h>
Ben Dooksb7a12d12008-07-03 11:24:37 +010024#include <linux/ata_platform.h>
Ben Dooks042cf0f2008-07-03 11:24:41 +010025#include <linux/i2c.h>
Russell Kingfced80c2008-09-06 12:10:45 +010026#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Ben Dooks5ce4b1f2007-07-12 10:44:53 +010028#include <net/ax88796.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32#include <asm/mach/irq.h>
33
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/bast-map.h>
35#include <mach/bast-irq.h>
36#include <mach/bast-cpld.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Russell Kinga09e64f2008-08-05 16:14:15 +010038#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/irq.h>
40#include <asm/mach-types.h>
41
42//#include <asm/debug-ll.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010043#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010044#include <mach/regs-gpio.h>
45#include <mach/regs-mem.h>
46#include <mach/regs-lcd.h>
Ben Dooks58c8d572005-10-28 15:31:46 +010047
Ben Dooks885f9eb2009-07-18 10:12:26 +010048#include <plat/hwmon.h>
Ben Dooks7926b5a2008-10-30 10:14:35 +000049#include <plat/nand.h>
Ben Dooks9498cb72008-10-30 10:14:33 +000050#include <plat/iic.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010051#include <mach/fb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <linux/mtd/mtd.h>
54#include <linux/mtd/nand.h>
55#include <linux/mtd/nand_ecc.h>
56#include <linux/mtd/partitions.h>
57
Ben Dooks65cc3372005-07-18 10:24:32 +010058#include <linux/serial_8250.h>
59
Ben Dooksd5120ae2008-10-07 23:09:51 +010060#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010061#include <plat/devs.h>
62#include <plat/cpu.h>
Ben Dooksca0b4902009-07-30 23:23:39 +010063#include <plat/cpu-freq.h>
Ben Dooks40b956f2010-05-04 14:38:49 +090064#include <plat/gpio-cfg.h>
Ben Dooks4d3a3462009-11-13 22:34:20 +000065#include <plat/audio-simtec.h>
Ben Dooks9d529c62008-07-03 11:24:39 +010066
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include "usb-simtec.h"
Ben Dooks9d529c62008-07-03 11:24:39 +010068#include "nor-simtec.h"
Kukjin Kimb27b0722012-01-03 14:02:03 +010069#include "common.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Ben Dooksccae9412009-11-13 22:54:14 +000071#define COPYRIGHT ", Copyright 2004-2008 Simtec Electronics"
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* macros for virtual address mods for the io space entries */
74#define VA_C5(item) ((unsigned long)(item) + BAST_VAM_CS5)
75#define VA_C4(item) ((unsigned long)(item) + BAST_VAM_CS4)
76#define VA_C3(item) ((unsigned long)(item) + BAST_VAM_CS3)
77#define VA_C2(item) ((unsigned long)(item) + BAST_VAM_CS2)
78
79/* macros to modify the physical addresses for io space */
80
Ben Dooks1d23b652005-11-08 19:15:31 +000081#define PA_CS2(item) (__phys_to_pfn((item) + S3C2410_CS2))
82#define PA_CS3(item) (__phys_to_pfn((item) + S3C2410_CS3))
83#define PA_CS4(item) (__phys_to_pfn((item) + S3C2410_CS4))
84#define PA_CS5(item) (__phys_to_pfn((item) + S3C2410_CS5))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86static struct map_desc bast_iodesc[] __initdata = {
87 /* ISA IO areas */
Ben Dooks1d23b652005-11-08 19:15:31 +000088 {
89 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
90 .pfn = PA_CS2(BAST_PA_ISAIO),
91 .length = SZ_16M,
92 .type = MT_DEVICE,
93 }, {
94 .virtual = (u32)S3C24XX_VA_ISA_WORD,
95 .pfn = PA_CS3(BAST_PA_ISAIO),
96 .length = SZ_16M,
97 .type = MT_DEVICE,
98 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 /* bast CPLD control registers, and external interrupt controls */
Ben Dooks1d23b652005-11-08 19:15:31 +0000100 {
101 .virtual = (u32)BAST_VA_CTRL1,
102 .pfn = __phys_to_pfn(BAST_PA_CTRL1),
103 .length = SZ_1M,
104 .type = MT_DEVICE,
105 }, {
106 .virtual = (u32)BAST_VA_CTRL2,
107 .pfn = __phys_to_pfn(BAST_PA_CTRL2),
108 .length = SZ_1M,
109 .type = MT_DEVICE,
110 }, {
111 .virtual = (u32)BAST_VA_CTRL3,
112 .pfn = __phys_to_pfn(BAST_PA_CTRL3),
113 .length = SZ_1M,
114 .type = MT_DEVICE,
115 }, {
116 .virtual = (u32)BAST_VA_CTRL4,
117 .pfn = __phys_to_pfn(BAST_PA_CTRL4),
118 .length = SZ_1M,
119 .type = MT_DEVICE,
120 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 /* PC104 IRQ mux */
Ben Dooks1d23b652005-11-08 19:15:31 +0000122 {
123 .virtual = (u32)BAST_VA_PC104_IRQREQ,
124 .pfn = __phys_to_pfn(BAST_PA_PC104_IRQREQ),
125 .length = SZ_1M,
126 .type = MT_DEVICE,
127 }, {
128 .virtual = (u32)BAST_VA_PC104_IRQRAW,
129 .pfn = __phys_to_pfn(BAST_PA_PC104_IRQRAW),
130 .length = SZ_1M,
131 .type = MT_DEVICE,
132 }, {
133 .virtual = (u32)BAST_VA_PC104_IRQMASK,
134 .pfn = __phys_to_pfn(BAST_PA_PC104_IRQMASK),
135 .length = SZ_1M,
136 .type = MT_DEVICE,
137 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* peripheral space... one for each of fast/slow/byte/16bit */
140 /* note, ide is only decoded in word space, even though some registers
141 * are only 8bit */
142
143 /* slow, byte */
144 { VA_C2(BAST_VA_ISAIO), PA_CS2(BAST_PA_ISAIO), SZ_16M, MT_DEVICE },
145 { VA_C2(BAST_VA_ISAMEM), PA_CS2(BAST_PA_ISAMEM), SZ_16M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 { VA_C2(BAST_VA_SUPERIO), PA_CS2(BAST_PA_SUPERIO), SZ_1M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 /* slow, word */
149 { VA_C3(BAST_VA_ISAIO), PA_CS3(BAST_PA_ISAIO), SZ_16M, MT_DEVICE },
150 { VA_C3(BAST_VA_ISAMEM), PA_CS3(BAST_PA_ISAMEM), SZ_16M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 { VA_C3(BAST_VA_SUPERIO), PA_CS3(BAST_PA_SUPERIO), SZ_1M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 /* fast, byte */
154 { VA_C4(BAST_VA_ISAIO), PA_CS4(BAST_PA_ISAIO), SZ_16M, MT_DEVICE },
155 { VA_C4(BAST_VA_ISAMEM), PA_CS4(BAST_PA_ISAMEM), SZ_16M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 { VA_C4(BAST_VA_SUPERIO), PA_CS4(BAST_PA_SUPERIO), SZ_1M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /* fast, word */
159 { VA_C5(BAST_VA_ISAIO), PA_CS5(BAST_PA_ISAIO), SZ_16M, MT_DEVICE },
160 { VA_C5(BAST_VA_ISAMEM), PA_CS5(BAST_PA_ISAMEM), SZ_16M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 { VA_C5(BAST_VA_SUPERIO), PA_CS5(BAST_PA_SUPERIO), SZ_1M, MT_DEVICE },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
164#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
165#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
166#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
167
168static struct s3c24xx_uart_clksrc bast_serial_clocks[] = {
169 [0] = {
170 .name = "uclk",
171 .divisor = 1,
172 .min_baud = 0,
173 .max_baud = 0,
174 },
175 [1] = {
176 .name = "pclk",
177 .divisor = 1,
178 .min_baud = 0,
Ben Dooksb526bf22005-11-16 15:05:12 +0000179 .max_baud = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 }
181};
182
183
Ben Dooks66a9b492006-06-18 23:04:05 +0100184static struct s3c2410_uartcfg bast_uartcfgs[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 [0] = {
186 .hwport = 0,
187 .flags = 0,
188 .ucon = UCON,
189 .ulcon = ULCON,
190 .ufcon = UFCON,
191 .clocks = bast_serial_clocks,
Ben Dooksb526bf22005-11-16 15:05:12 +0000192 .clocks_size = ARRAY_SIZE(bast_serial_clocks),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 },
194 [1] = {
195 .hwport = 1,
196 .flags = 0,
197 .ucon = UCON,
198 .ulcon = ULCON,
199 .ufcon = UFCON,
200 .clocks = bast_serial_clocks,
Ben Dooksb526bf22005-11-16 15:05:12 +0000201 .clocks_size = ARRAY_SIZE(bast_serial_clocks),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 },
203 /* port 2 is not actually used */
204 [2] = {
205 .hwport = 2,
206 .flags = 0,
207 .ucon = UCON,
208 .ulcon = ULCON,
209 .ufcon = UFCON,
210 .clocks = bast_serial_clocks,
Ben Dooksb526bf22005-11-16 15:05:12 +0000211 .clocks_size = ARRAY_SIZE(bast_serial_clocks),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 }
213};
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* NAND Flash on BAST board */
216
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100217#ifdef CONFIG_PM
Rafael J. Wysockibb072c32011-04-22 22:03:21 +0200218static int bast_pm_suspend(void)
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100219{
220 /* ensure that an nRESET is not generated on resume. */
Ben Dooks408c8b82010-05-04 12:49:04 +0900221 gpio_direction_output(S3C2410_GPA(21), 1);
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100222 return 0;
223}
224
Rafael J. Wysockibb072c32011-04-22 22:03:21 +0200225static void bast_pm_resume(void)
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100226{
Ben Dooks40b956f2010-05-04 14:38:49 +0900227 s3c_gpio_cfgpin(S3C2410_GPA(21), S3C2410_GPA21_nRSTOUT);
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100228}
229
230#else
231#define bast_pm_suspend NULL
232#define bast_pm_resume NULL
233#endif
234
Rafael J. Wysockibb072c32011-04-22 22:03:21 +0200235static struct syscore_ops bast_pm_syscore_ops = {
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100236 .suspend = bast_pm_suspend,
237 .resume = bast_pm_resume,
238};
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static int smartmedia_map[] = { 0 };
241static int chip0_map[] = { 1 };
242static int chip1_map[] = { 2 };
243static int chip2_map[] = { 3 };
244
Ben Dooks2a3a1802009-09-28 13:59:49 +0300245static struct mtd_partition __initdata bast_default_nand_part[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 [0] = {
247 .name = "Boot Agent",
248 .size = SZ_16K,
Ben Dooksb526bf22005-11-16 15:05:12 +0000249 .offset = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 },
251 [1] = {
252 .name = "/boot",
253 .size = SZ_4M - SZ_16K,
254 .offset = SZ_16K,
255 },
256 [2] = {
257 .name = "user",
258 .offset = SZ_4M,
259 .size = MTDPART_SIZ_FULL,
260 }
261};
262
263/* the bast has 4 selectable slots for nand-flash, the three
264 * on-board chip areas, as well as the external SmartMedia
265 * slot.
266 *
267 * Note, there is no current hot-plug support for the SmartMedia
268 * socket.
269*/
270
Ben Dooks2a3a1802009-09-28 13:59:49 +0300271static struct s3c2410_nand_set __initdata bast_nand_sets[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 [0] = {
273 .name = "SmartMedia",
274 .nr_chips = 1,
275 .nr_map = smartmedia_map,
Ben Dooksd3ef7ee4a2009-12-23 19:25:02 +0000276 .options = NAND_SCAN_SILENT_NODEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .nr_partitions = ARRAY_SIZE(bast_default_nand_part),
Ben Dooksb526bf22005-11-16 15:05:12 +0000278 .partitions = bast_default_nand_part,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 },
280 [1] = {
281 .name = "chip0",
282 .nr_chips = 1,
283 .nr_map = chip0_map,
284 .nr_partitions = ARRAY_SIZE(bast_default_nand_part),
Ben Dooksb526bf22005-11-16 15:05:12 +0000285 .partitions = bast_default_nand_part,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 },
287 [2] = {
288 .name = "chip1",
289 .nr_chips = 1,
290 .nr_map = chip1_map,
Ben Dooksd3ef7ee4a2009-12-23 19:25:02 +0000291 .options = NAND_SCAN_SILENT_NODEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .nr_partitions = ARRAY_SIZE(bast_default_nand_part),
Ben Dooksb526bf22005-11-16 15:05:12 +0000293 .partitions = bast_default_nand_part,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 },
295 [3] = {
296 .name = "chip2",
297 .nr_chips = 1,
298 .nr_map = chip2_map,
Ben Dooksd3ef7ee4a2009-12-23 19:25:02 +0000299 .options = NAND_SCAN_SILENT_NODEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .nr_partitions = ARRAY_SIZE(bast_default_nand_part),
Ben Dooksb526bf22005-11-16 15:05:12 +0000301 .partitions = bast_default_nand_part,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303};
304
305static void bast_nand_select(struct s3c2410_nand_set *set, int slot)
306{
307 unsigned int tmp;
308
309 slot = set->nr_map[slot] & 3;
310
311 pr_debug("bast_nand: selecting slot %d (set %p,%p)\n",
312 slot, set, set->nr_map);
313
314 tmp = __raw_readb(BAST_VA_CTRL2);
315 tmp &= BAST_CPLD_CTLR2_IDERST;
316 tmp |= slot;
317 tmp |= BAST_CPLD_CTRL2_WNAND;
318
319 pr_debug("bast_nand: ctrl2 now %02x\n", tmp);
320
321 __raw_writeb(tmp, BAST_VA_CTRL2);
322}
323
Ben Dooks2a3a1802009-09-28 13:59:49 +0300324static struct s3c2410_platform_nand __initdata bast_nand_info = {
Ben Dooksb048dbf2005-10-20 23:21:19 +0100325 .tacls = 30,
326 .twrph0 = 60,
327 .twrph1 = 60,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 .nr_sets = ARRAY_SIZE(bast_nand_sets),
329 .sets = bast_nand_sets,
330 .select_chip = bast_nand_select,
331};
332
Ben Dooksd97a6662005-06-23 21:56:47 +0100333/* DM9000 */
334
335static struct resource bast_dm9k_resource[] = {
336 [0] = {
337 .start = S3C2410_CS5 + BAST_PA_DM9000,
338 .end = S3C2410_CS5 + BAST_PA_DM9000 + 3,
Ben Dooksb526bf22005-11-16 15:05:12 +0000339 .flags = IORESOURCE_MEM,
Ben Dooksd97a6662005-06-23 21:56:47 +0100340 },
341 [1] = {
342 .start = S3C2410_CS5 + BAST_PA_DM9000 + 0x40,
343 .end = S3C2410_CS5 + BAST_PA_DM9000 + 0x40 + 0x3f,
Ben Dooksb526bf22005-11-16 15:05:12 +0000344 .flags = IORESOURCE_MEM,
Ben Dooksd97a6662005-06-23 21:56:47 +0100345 },
346 [2] = {
347 .start = IRQ_DM9000,
348 .end = IRQ_DM9000,
Ben Dooks9cf345e2008-07-03 11:24:22 +0100349 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
Ben Dooksd97a6662005-06-23 21:56:47 +0100350 }
351
352};
353
354/* for the moment we limit ourselves to 16bit IO until some
355 * better IO routines can be written and tested
356*/
357
Ben Dooks9f693d72005-10-12 19:58:07 +0100358static struct dm9000_plat_data bast_dm9k_platdata = {
Ben Dooksb526bf22005-11-16 15:05:12 +0000359 .flags = DM9000_PLATF_16BITONLY,
Ben Dooksd97a6662005-06-23 21:56:47 +0100360};
361
362static struct platform_device bast_device_dm9k = {
363 .name = "dm9000",
364 .id = 0,
365 .num_resources = ARRAY_SIZE(bast_dm9k_resource),
366 .resource = bast_dm9k_resource,
367 .dev = {
368 .platform_data = &bast_dm9k_platdata,
369 }
370};
371
Ben Dooks65cc3372005-07-18 10:24:32 +0100372/* serial devices */
373
374#define SERIAL_BASE (S3C2410_CS2 + BAST_PA_SUPERIO)
375#define SERIAL_FLAGS (UPF_BOOT_AUTOCONF | UPF_IOREMAP | UPF_SHARE_IRQ)
376#define SERIAL_CLK (1843200)
377
378static struct plat_serial8250_port bast_sio_data[] = {
379 [0] = {
380 .mapbase = SERIAL_BASE + 0x2f8,
381 .irq = IRQ_PCSERIAL1,
382 .flags = SERIAL_FLAGS,
383 .iotype = UPIO_MEM,
384 .regshift = 0,
385 .uartclk = SERIAL_CLK,
386 },
387 [1] = {
388 .mapbase = SERIAL_BASE + 0x3f8,
389 .irq = IRQ_PCSERIAL2,
390 .flags = SERIAL_FLAGS,
391 .iotype = UPIO_MEM,
392 .regshift = 0,
393 .uartclk = SERIAL_CLK,
394 },
395 { }
396};
397
398static struct platform_device bast_sio = {
399 .name = "serial8250",
Russell King6df29de2005-09-08 16:04:41 +0100400 .id = PLAT8250_DEV_PLATFORM,
Ben Dooks65cc3372005-07-18 10:24:32 +0100401 .dev = {
402 .platform_data = &bast_sio_data,
403 },
404};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ben Dooks1fcf8442005-08-03 19:49:16 +0100406/* we have devices on the bus which cannot work much over the
407 * standard 100KHz i2c bus frequency
408*/
409
Ben Dooks3e1b7762008-10-31 16:14:40 +0000410static struct s3c2410_platform_i2c __initdata bast_i2c_info = {
Ben Dooks1fcf8442005-08-03 19:49:16 +0100411 .flags = 0,
412 .slave_addr = 0x10,
Daniel Silverstonec564e6a2009-03-13 13:53:46 +0000413 .frequency = 100*1000,
Ben Dooks1fcf8442005-08-03 19:49:16 +0100414};
415
Ben Dooks5ce4b1f2007-07-12 10:44:53 +0100416/* Asix AX88796 10/100 ethernet controller */
417
418static struct ax_plat_data bast_asix_platdata = {
419 .flags = AXFLG_MAC_FROMDEV,
420 .wordlength = 2,
421 .dcr_val = 0x48,
422 .rcr_val = 0x40,
423};
424
425static struct resource bast_asix_resource[] = {
426 [0] = {
427 .start = S3C2410_CS5 + BAST_PA_ASIXNET,
428 .end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x18 * 0x20) - 1,
429 .flags = IORESOURCE_MEM,
430 },
431 [1] = {
432 .start = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1f * 0x20),
433 .end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1f * 0x20),
434 .flags = IORESOURCE_MEM,
435 },
436 [2] = {
437 .start = IRQ_ASIX,
438 .end = IRQ_ASIX,
439 .flags = IORESOURCE_IRQ
440 }
441};
442
443static struct platform_device bast_device_asix = {
444 .name = "ax88796",
445 .id = 0,
446 .num_resources = ARRAY_SIZE(bast_asix_resource),
447 .resource = bast_asix_resource,
448 .dev = {
449 .platform_data = &bast_asix_platdata
450 }
451};
452
453/* Asix AX88796 10/100 ethernet controller parallel port */
454
455static struct resource bast_asixpp_resource[] = {
456 [0] = {
457 .start = S3C2410_CS5 + BAST_PA_ASIXNET + (0x18 * 0x20),
458 .end = S3C2410_CS5 + BAST_PA_ASIXNET + (0x1b * 0x20) - 1,
459 .flags = IORESOURCE_MEM,
460 }
461};
462
463static struct platform_device bast_device_axpp = {
464 .name = "ax88796-pp",
465 .id = 0,
466 .num_resources = ARRAY_SIZE(bast_asixpp_resource),
467 .resource = bast_asixpp_resource,
468};
469
470/* LCD/VGA controller */
Ben Dooks58c8d572005-10-28 15:31:46 +0100471
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700472static struct s3c2410fb_display __initdata bast_lcd_info[] = {
473 {
Krzysztof Helt1f411532007-10-16 01:28:57 -0700474 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700475 .width = 640,
476 .height = 480,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700477
Krzysztof Helt69816692007-10-16 01:29:06 -0700478 .pixclock = 33333,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700479 .xres = 640,
480 .yres = 480,
481 .bpp = 4,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700482 .left_margin = 40,
483 .right_margin = 20,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700484 .hsync_len = 88,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700485 .upper_margin = 30,
486 .lower_margin = 32,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700487 .vsync_len = 3,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700488
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700489 .lcdcon5 = 0x00014b02,
Ben Dooks58c8d572005-10-28 15:31:46 +0100490 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700491 {
Krzysztof Helt1f411532007-10-16 01:28:57 -0700492 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700493 .width = 640,
494 .height = 480,
Ben Dooks58c8d572005-10-28 15:31:46 +0100495
Krzysztof Helt69816692007-10-16 01:29:06 -0700496 .pixclock = 33333,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700497 .xres = 640,
498 .yres = 480,
499 .bpp = 8,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700500 .left_margin = 40,
501 .right_margin = 20,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700502 .hsync_len = 88,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700503 .upper_margin = 30,
504 .lower_margin = 32,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700505 .vsync_len = 3,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700506
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700507 .lcdcon5 = 0x00014b02,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700508 },
509 {
Krzysztof Helt1f411532007-10-16 01:28:57 -0700510 .type = S3C2410_LCDCON1_TFT,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700511 .width = 640,
512 .height = 480,
513
Krzysztof Helt69816692007-10-16 01:29:06 -0700514 .pixclock = 33333,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700515 .xres = 640,
516 .yres = 480,
517 .bpp = 16,
Krzysztof Helt1f411532007-10-16 01:28:57 -0700518 .left_margin = 40,
519 .right_margin = 20,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700520 .hsync_len = 88,
Krzysztof Helt5f20f692007-10-16 01:28:59 -0700521 .upper_margin = 30,
522 .lower_margin = 32,
Krzysztof Helt93d11f52007-10-16 01:29:00 -0700523 .vsync_len = 3,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700524
Krzysztof Heltf28ef572007-10-16 01:28:58 -0700525 .lcdcon5 = 0x00014b02,
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700526 },
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700527};
528
529/* LCD/VGA controller */
530
531static struct s3c2410fb_mach_info __initdata bast_fb_info = {
532
533 .displays = bast_lcd_info,
534 .num_displays = ARRAY_SIZE(bast_lcd_info),
Ben Dooks9cbae122007-12-23 03:09:38 +0100535 .default_display = 1,
Ben Dooks58c8d572005-10-28 15:31:46 +0100536};
537
Ben Dooks042cf0f2008-07-03 11:24:41 +0100538/* I2C devices fitted. */
539
540static struct i2c_board_info bast_i2c_devs[] __initdata = {
541 {
542 I2C_BOARD_INFO("tlv320aic23", 0x1a),
543 }, {
544 I2C_BOARD_INFO("simtec-pmu", 0x6b),
545 }, {
546 I2C_BOARD_INFO("ch7013", 0x75),
547 },
548};
Ben Dooksb7a12d12008-07-03 11:24:37 +0100549
Ben Dooks885f9eb2009-07-18 10:12:26 +0100550static struct s3c_hwmon_pdata bast_hwmon_info = {
551 /* LCD contrast (0-6.6V) */
552 .in[0] = &(struct s3c_hwmon_chcfg) {
553 .name = "lcd-contrast",
554 .mult = 3300,
555 .div = 512,
556 },
557 /* LED current feedback */
558 .in[1] = &(struct s3c_hwmon_chcfg) {
559 .name = "led-feedback",
560 .mult = 3300,
561 .div = 1024,
562 },
563 /* LCD feedback (0-6.6V) */
564 .in[2] = &(struct s3c_hwmon_chcfg) {
565 .name = "lcd-feedback",
566 .mult = 3300,
567 .div = 512,
568 },
569 /* Vcore (1.8-2.0V), Vref 3.3V */
570 .in[3] = &(struct s3c_hwmon_chcfg) {
571 .name = "vcore",
572 .mult = 3300,
573 .div = 1024,
574 },
575};
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* Standard BAST devices */
Ben Dooks885f9eb2009-07-18 10:12:26 +0100578// cat /sys/devices/platform/s3c24xx-adc/s3c-hwmon/in_0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580static struct platform_device *bast_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +0000581 &s3c_device_ohci,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 &s3c_device_lcd,
583 &s3c_device_wdt,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000584 &s3c_device_i2c0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 &s3c_device_rtc,
586 &s3c_device_nand,
Ben Dooks885f9eb2009-07-18 10:12:26 +0100587 &s3c_device_adc,
588 &s3c_device_hwmon,
Ben Dooksd97a6662005-06-23 21:56:47 +0100589 &bast_device_dm9k,
Ben Dooks5ce4b1f2007-07-12 10:44:53 +0100590 &bast_device_asix,
591 &bast_device_axpp,
Ben Dooks65cc3372005-07-18 10:24:32 +0100592 &bast_sio,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593};
594
Ben Dooks2bc75092008-07-15 17:17:48 +0100595static struct clk *bast_clocks[] __initdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 &s3c24xx_dclk0,
597 &s3c24xx_dclk1,
598 &s3c24xx_clkout0,
599 &s3c24xx_clkout1,
600 &s3c24xx_uclk,
601};
602
Ben Dooksca0b4902009-07-30 23:23:39 +0100603static struct s3c_cpufreq_board __initdata bast_cpufreq = {
604 .refresh = 7800, /* 7.8usec */
605 .auto_io = 1,
606 .need_io = 1,
607};
608
Ben Dooks4d3a3462009-11-13 22:34:20 +0000609static struct s3c24xx_audio_simtec_pdata __initdata bast_audio = {
610 .have_mic = 1,
611 .have_lout = 1,
612};
613
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100614static void __init bast_map_io(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
616 /* initialise the clocks */
617
Ben Dooksd96a9802008-04-16 00:12:39 +0100618 s3c24xx_dclk0.parent = &clk_upll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 s3c24xx_dclk0.rate = 12*1000*1000;
620
Ben Dooksd96a9802008-04-16 00:12:39 +0100621 s3c24xx_dclk1.parent = &clk_upll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 s3c24xx_dclk1.rate = 24*1000*1000;
623
624 s3c24xx_clkout0.parent = &s3c24xx_dclk0;
625 s3c24xx_clkout1.parent = &s3c24xx_dclk1;
626
627 s3c24xx_uclk.parent = &s3c24xx_clkout1;
628
Ben Dooksce89c202007-04-20 11:15:27 +0100629 s3c24xx_register_clocks(bast_clocks, ARRAY_SIZE(bast_clocks));
630
Maurus Cuelenaere6cd82ff2010-05-04 13:12:32 +0200631 s3c_hwmon_set_platdata(&bast_hwmon_info);
Ben Dooks3e1b7762008-10-31 16:14:40 +0000632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 s3c24xx_init_io(bast_iodesc, ARRAY_SIZE(bast_iodesc));
634 s3c24xx_init_clocks(0);
635 s3c24xx_init_uarts(bast_uartcfgs, ARRAY_SIZE(bast_uartcfgs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
637
Ben Dooks58c8d572005-10-28 15:31:46 +0100638static void __init bast_init(void)
639{
Rafael J. Wysockibb072c32011-04-22 22:03:21 +0200640 register_syscore_ops(&bast_pm_syscore_ops);
Ben Dooks6ddc4b02008-04-16 00:06:14 +0100641
Ben Dooksa8af6de2009-05-15 14:57:09 +0100642 s3c_i2c0_set_platdata(&bast_i2c_info);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300643 s3c_nand_set_platdata(&bast_nand_info);
Krzysztof Helt09fe75f2007-10-16 01:28:56 -0700644 s3c24xx_fb_set_platdata(&bast_fb_info);
Ben Dooks57e51712007-04-20 11:19:16 +0100645 platform_add_devices(bast_devices, ARRAY_SIZE(bast_devices));
Ben Dooks9d529c62008-07-03 11:24:39 +0100646
Ben Dooks042cf0f2008-07-03 11:24:41 +0100647 i2c_register_board_info(0, bast_i2c_devs,
648 ARRAY_SIZE(bast_i2c_devs));
649
Ben Dooks7a05a2c2009-05-18 20:15:01 +0100650 usb_simtec_init();
Ben Dooks9d529c62008-07-03 11:24:39 +0100651 nor_simtec_init();
Ben Dooks4d3a3462009-11-13 22:34:20 +0000652 simtec_audio_add(NULL, true, &bast_audio);
Ben Dooksca0b4902009-07-30 23:23:39 +0100653
Ben Dooks408c8b82010-05-04 12:49:04 +0900654 WARN_ON(gpio_request(S3C2410_GPA(21), "bast nreset"));
655
Ben Dooksca0b4902009-07-30 23:23:39 +0100656 s3c_cpufreq_setboard(&bast_cpufreq);
Ben Dooks58c8d572005-10-28 15:31:46 +0100657}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659MACHINE_START(BAST, "Simtec-BAST")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100660 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
Nicolas Pitre69d50712011-07-05 22:38:17 -0400661 .atag_offset = 0x100,
Ben Dooksf705b1a2005-06-29 11:09:15 +0100662 .map_io = bast_map_io,
663 .init_irq = s3c24xx_init_irq,
Ben Dooks58c8d572005-10-28 15:31:46 +0100664 .init_machine = bast_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 .timer = &s3c24xx_timer,
Kukjin Kimb27b0722012-01-03 14:02:03 +0100666 .restart = s3c2410_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667MACHINE_END