blob: 121ff8d2c887a056e94dab086b1958a18583f67f [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001/* linux/arch/arm/mach-s3c2440/mach-anubis.c
Ben Dooks7efb8332005-09-07 11:49:23 +01002 *
Ben Dooks50f430e2009-11-13 22:54:12 +00003 * Copyright 2003-2009 Simtec Electronics
Ben Dooks7efb8332005-09-07 11:49:23 +01004 * http://armlinux.simtec.co.uk/
5 * Ben Dooks <ben@simtec.co.uk>
6 *
Ben Dooks7efb8332005-09-07 11:49:23 +01007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
Ben Dooks7efb8332005-09-07 11:49:23 +010010*/
11
12#include <linux/kernel.h>
13#include <linux/types.h>
14#include <linux/interrupt.h>
15#include <linux/list.h>
16#include <linux/timer.h>
17#include <linux/init.h>
Ben Dooksec976d62009-05-13 22:52:24 +010018#include <linux/gpio.h>
Ben Dooksb6d1f542006-12-17 23:22:26 +010019#include <linux/serial_core.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010020#include <linux/platform_device.h>
Ben Dooksb9db83a2008-07-03 11:24:38 +010021#include <linux/ata_platform.h>
Ben Dooks7a28db62008-07-03 11:24:43 +010022#include <linux/i2c.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Ben Dooks8a9ccb72007-07-12 10:47:35 +010024#include <linux/sm501.h>
25#include <linux/sm501-regs.h>
26
Ben Dooks7efb8332005-09-07 11:49:23 +010027#include <asm/mach/arch.h>
28#include <asm/mach/map.h>
29#include <asm/mach/irq.h>
30
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/anubis-map.h>
32#include <mach/anubis-irq.h>
33#include <mach/anubis-cpld.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010034
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/hardware.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010036#include <asm/irq.h>
37#include <asm/mach-types.h>
38
Ben Dooksa2b7ba92008-10-07 22:26:09 +010039#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/regs-gpio.h>
41#include <mach/regs-mem.h>
42#include <mach/regs-lcd.h>
Ben Dooks7926b5a2008-10-30 10:14:35 +000043#include <plat/nand.h>
Ben Dooks3e1b7762008-10-31 16:14:40 +000044#include <plat/iic.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010045
46#include <linux/mtd/mtd.h>
47#include <linux/mtd/nand.h>
48#include <linux/mtd/nand_ecc.h>
49#include <linux/mtd/partitions.h>
50
Ben Dookseac1d8d2007-07-11 10:14:53 +010051#include <net/ax88796.h>
52
Ben Dooksd5120ae2008-10-07 23:09:51 +010053#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010054#include <plat/devs.h>
55#include <plat/cpu.h>
Ben Dooks4d3a3462009-11-13 22:34:20 +000056#include <plat/audio-simtec.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010057
Kukjin Kimb27b0722012-01-03 14:02:03 +010058#include "common.h"
59
Ben Dooks50f430e2009-11-13 22:54:12 +000060#define COPYRIGHT ", Copyright 2005-2009 Simtec Electronics"
Ben Dooks7efb8332005-09-07 11:49:23 +010061
62static struct map_desc anubis_iodesc[] __initdata = {
63 /* ISA IO areas */
64
Ben Dooks8dd52312005-11-09 14:05:30 +000065 {
66 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
67 .pfn = __phys_to_pfn(0x0),
68 .length = SZ_4M,
Ben Dooks705630d2006-07-26 20:16:39 +010069 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000070 }, {
71 .virtual = (u32)S3C24XX_VA_ISA_WORD,
72 .pfn = __phys_to_pfn(0x0),
Ben Dooks705630d2006-07-26 20:16:39 +010073 .length = SZ_4M,
74 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000075 },
Ben Dooks7efb8332005-09-07 11:49:23 +010076
77 /* we could possibly compress the next set down into a set of smaller tables
78 * pagetables, but that would mean using an L2 section, and it still means
79 * we cannot actually feed the same register to an LDR due to 16K spacing
80 */
81
82 /* CPLD control registers */
83
Ben Dooks8dd52312005-11-09 14:05:30 +000084 {
85 .virtual = (u32)ANUBIS_VA_CTRL1,
86 .pfn = __phys_to_pfn(ANUBIS_PA_CTRL1),
87 .length = SZ_4K,
Ben Dooks705630d2006-07-26 20:16:39 +010088 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000089 }, {
Ben Dooks6c1640d2007-06-06 10:01:04 +010090 .virtual = (u32)ANUBIS_VA_IDREG,
91 .pfn = __phys_to_pfn(ANUBIS_PA_IDREG),
Ben Dooks8dd52312005-11-09 14:05:30 +000092 .length = SZ_4K,
Ben Dooks705630d2006-07-26 20:16:39 +010093 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000094 },
Ben Dooks7efb8332005-09-07 11:49:23 +010095};
96
97#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
98#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
99#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
100
101static struct s3c24xx_uart_clksrc anubis_serial_clocks[] = {
102 [0] = {
103 .name = "uclk",
104 .divisor = 1,
105 .min_baud = 0,
106 .max_baud = 0,
107 },
108 [1] = {
109 .name = "pclk",
110 .divisor = 1,
111 .min_baud = 0,
Ben Dooks705630d2006-07-26 20:16:39 +0100112 .max_baud = 0,
Ben Dooks7efb8332005-09-07 11:49:23 +0100113 }
114};
115
116
Ben Dooks66a9b492006-06-18 23:04:05 +0100117static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100118 [0] = {
119 .hwport = 0,
120 .flags = 0,
121 .ucon = UCON,
122 .ulcon = ULCON,
123 .ufcon = UFCON,
124 .clocks = anubis_serial_clocks,
Ben Dooks705630d2006-07-26 20:16:39 +0100125 .clocks_size = ARRAY_SIZE(anubis_serial_clocks),
Ben Dooks7efb8332005-09-07 11:49:23 +0100126 },
127 [1] = {
128 .hwport = 2,
129 .flags = 0,
130 .ucon = UCON,
131 .ulcon = ULCON,
132 .ufcon = UFCON,
133 .clocks = anubis_serial_clocks,
Ben Dooks705630d2006-07-26 20:16:39 +0100134 .clocks_size = ARRAY_SIZE(anubis_serial_clocks),
Ben Dooks7efb8332005-09-07 11:49:23 +0100135 },
136};
137
138/* NAND Flash on Anubis board */
139
140static int external_map[] = { 2 };
141static int chip0_map[] = { 0 };
142static int chip1_map[] = { 1 };
143
Ben Dooks2a3a1802009-09-28 13:59:49 +0300144static struct mtd_partition __initdata anubis_default_nand_part[] = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100145 [0] = {
146 .name = "Boot Agent",
147 .size = SZ_16K,
Ben Dooks705630d2006-07-26 20:16:39 +0100148 .offset = 0,
Ben Dooks7efb8332005-09-07 11:49:23 +0100149 },
150 [1] = {
151 .name = "/boot",
152 .size = SZ_4M - SZ_16K,
153 .offset = SZ_16K,
154 },
155 [2] = {
156 .name = "user1",
157 .offset = SZ_4M,
158 .size = SZ_32M - SZ_4M,
159 },
160 [3] = {
161 .name = "user2",
162 .offset = SZ_32M,
163 .size = MTDPART_SIZ_FULL,
164 }
165};
166
Ben Dooks2a3a1802009-09-28 13:59:49 +0300167static struct mtd_partition __initdata anubis_default_nand_part_large[] = {
Ben Dooksad3613f2007-07-11 11:10:42 +0100168 [0] = {
169 .name = "Boot Agent",
170 .size = SZ_128K,
171 .offset = 0,
172 },
173 [1] = {
174 .name = "/boot",
175 .size = SZ_4M - SZ_128K,
176 .offset = SZ_128K,
177 },
178 [2] = {
179 .name = "user1",
180 .offset = SZ_4M,
181 .size = SZ_32M - SZ_4M,
182 },
183 [3] = {
184 .name = "user2",
185 .offset = SZ_32M,
186 .size = MTDPART_SIZ_FULL,
187 }
188};
189
Ben Dooks7efb8332005-09-07 11:49:23 +0100190/* the Anubis has 3 selectable slots for nand-flash, the two
191 * on-board chip areas, as well as the external slot.
192 *
193 * Note, there is no current hot-plug support for the External
194 * socket.
195*/
196
Ben Dooks2a3a1802009-09-28 13:59:49 +0300197static struct s3c2410_nand_set __initdata anubis_nand_sets[] = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100198 [1] = {
199 .name = "External",
200 .nr_chips = 1,
201 .nr_map = external_map,
202 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100203 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100204 },
205 [0] = {
206 .name = "chip0",
207 .nr_chips = 1,
208 .nr_map = chip0_map,
209 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100210 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100211 },
212 [2] = {
213 .name = "chip1",
214 .nr_chips = 1,
215 .nr_map = chip1_map,
216 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100217 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100218 },
219};
220
221static void anubis_nand_select(struct s3c2410_nand_set *set, int slot)
222{
223 unsigned int tmp;
224
225 slot = set->nr_map[slot] & 3;
226
227 pr_debug("anubis_nand: selecting slot %d (set %p,%p)\n",
228 slot, set, set->nr_map);
229
230 tmp = __raw_readb(ANUBIS_VA_CTRL1);
231 tmp &= ~ANUBIS_CTRL1_NANDSEL;
232 tmp |= slot;
233
234 pr_debug("anubis_nand: ctrl1 now %02x\n", tmp);
235
236 __raw_writeb(tmp, ANUBIS_VA_CTRL1);
237}
238
Ben Dooks2a3a1802009-09-28 13:59:49 +0300239static struct s3c2410_platform_nand __initdata anubis_nand_info = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100240 .tacls = 25,
Ben Dooks661e6ac2006-04-02 10:32:46 +0100241 .twrph0 = 55,
242 .twrph1 = 40,
Ben Dooks7efb8332005-09-07 11:49:23 +0100243 .nr_sets = ARRAY_SIZE(anubis_nand_sets),
244 .sets = anubis_nand_sets,
245 .select_chip = anubis_nand_select,
246};
247
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100248/* IDE channels */
249
Ben Dooks019dbaa2009-04-17 12:36:46 +0100250static struct pata_platform_info anubis_ide_platdata = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100251 .ioport_shift = 5,
252};
253
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100254static struct resource anubis_ide0_resource[] = {
255 {
256 .start = S3C2410_CS3,
257 .end = S3C2410_CS3 + (8*32) - 1,
258 .flags = IORESOURCE_MEM,
259 }, {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100260 .start = S3C2410_CS3 + (1<<26) + (6*32),
261 .end = S3C2410_CS3 + (1<<26) + (7*32) - 1,
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100262 .flags = IORESOURCE_MEM,
263 }, {
264 .start = IRQ_IDE0,
265 .end = IRQ_IDE0,
266 .flags = IORESOURCE_IRQ,
267 },
268};
269
270static struct platform_device anubis_device_ide0 = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100271 .name = "pata_platform",
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100272 .id = 0,
273 .num_resources = ARRAY_SIZE(anubis_ide0_resource),
274 .resource = anubis_ide0_resource,
Ben Dooksb9db83a2008-07-03 11:24:38 +0100275 .dev = {
276 .platform_data = &anubis_ide_platdata,
277 .coherent_dma_mask = ~0,
278 },
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100279};
280
281static struct resource anubis_ide1_resource[] = {
282 {
283 .start = S3C2410_CS4,
284 .end = S3C2410_CS4 + (8*32) - 1,
285 .flags = IORESOURCE_MEM,
286 }, {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100287 .start = S3C2410_CS4 + (1<<26) + (6*32),
288 .end = S3C2410_CS4 + (1<<26) + (7*32) - 1,
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100289 .flags = IORESOURCE_MEM,
290 }, {
291 .start = IRQ_IDE0,
292 .end = IRQ_IDE0,
293 .flags = IORESOURCE_IRQ,
294 },
295};
296
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100297static struct platform_device anubis_device_ide1 = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100298 .name = "pata_platform",
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100299 .id = 1,
300 .num_resources = ARRAY_SIZE(anubis_ide1_resource),
301 .resource = anubis_ide1_resource,
Ben Dooksb9db83a2008-07-03 11:24:38 +0100302 .dev = {
303 .platform_data = &anubis_ide_platdata,
304 .coherent_dma_mask = ~0,
305 },
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100306};
Ben Dooks7efb8332005-09-07 11:49:23 +0100307
Ben Dookseac1d8d2007-07-11 10:14:53 +0100308/* Asix AX88796 10/100 ethernet controller */
309
310static struct ax_plat_data anubis_asix_platdata = {
311 .flags = AXFLG_MAC_FROMDEV,
312 .wordlength = 2,
313 .dcr_val = 0x48,
314 .rcr_val = 0x40,
315};
316
317static struct resource anubis_asix_resource[] = {
318 [0] = {
319 .start = S3C2410_CS5,
320 .end = S3C2410_CS5 + (0x20 * 0x20) -1,
321 .flags = IORESOURCE_MEM
322 },
323 [1] = {
324 .start = IRQ_ASIX,
325 .end = IRQ_ASIX,
326 .flags = IORESOURCE_IRQ
327 }
328};
329
330static struct platform_device anubis_device_asix = {
331 .name = "ax88796",
332 .id = 0,
333 .num_resources = ARRAY_SIZE(anubis_asix_resource),
334 .resource = anubis_asix_resource,
335 .dev = {
336 .platform_data = &anubis_asix_platdata,
337 }
338};
339
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100340/* SM501 */
341
342static struct resource anubis_sm501_resource[] = {
343 [0] = {
344 .start = S3C2410_CS2,
345 .end = S3C2410_CS2 + SZ_8M,
346 .flags = IORESOURCE_MEM,
347 },
348 [1] = {
349 .start = S3C2410_CS2 + SZ_64M - SZ_2M,
350 .end = S3C2410_CS2 + SZ_64M - 1,
351 .flags = IORESOURCE_MEM,
352 },
353 [2] = {
354 .start = IRQ_EINT0,
355 .end = IRQ_EINT0,
356 .flags = IORESOURCE_IRQ,
357 },
358};
359
360static struct sm501_initdata anubis_sm501_initdata = {
361 .gpio_high = {
362 .set = 0x3F000000, /* 24bit panel */
363 .mask = 0x0,
364 },
365 .misc_timing = {
366 .set = 0x010100, /* SDRAM timing */
367 .mask = 0x1F1F00,
368 },
369 .misc_control = {
370 .set = SM501_MISC_PNL_24BIT,
371 .mask = 0,
372 },
373
Ben Dooks6290ce32008-11-10 10:59:31 +0000374 .devices = SM501_USE_GPIO,
375
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100376 /* set the SDRAM and bus clocks */
377 .mclk = 72 * MHZ,
378 .m1xclk = 144 * MHZ,
379};
380
381static struct sm501_platdata_gpio_i2c anubis_sm501_gpio_i2c[] = {
382 [0] = {
Ben Dooks6290ce32008-11-10 10:59:31 +0000383 .bus_num = 1,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100384 .pin_scl = 44,
385 .pin_sda = 45,
386 },
387 [1] = {
Ben Dooks6290ce32008-11-10 10:59:31 +0000388 .bus_num = 2,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100389 .pin_scl = 40,
390 .pin_sda = 41,
391 },
392};
393
394static struct sm501_platdata anubis_sm501_platdata = {
395 .init = &anubis_sm501_initdata,
Ben Dooks6290ce32008-11-10 10:59:31 +0000396 .gpio_base = -1,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100397 .gpio_i2c = anubis_sm501_gpio_i2c,
398 .gpio_i2c_nr = ARRAY_SIZE(anubis_sm501_gpio_i2c),
399};
400
401static struct platform_device anubis_device_sm501 = {
402 .name = "sm501",
403 .id = 0,
404 .num_resources = ARRAY_SIZE(anubis_sm501_resource),
405 .resource = anubis_sm501_resource,
406 .dev = {
407 .platform_data = &anubis_sm501_platdata,
408 },
409};
410
Ben Dooks7efb8332005-09-07 11:49:23 +0100411/* Standard Anubis devices */
412
413static struct platform_device *anubis_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +0000414 &s3c_device_ohci,
Ben Dooks7efb8332005-09-07 11:49:23 +0100415 &s3c_device_wdt,
416 &s3c_device_adc,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000417 &s3c_device_i2c0,
Ben Dooks7efb8332005-09-07 11:49:23 +0100418 &s3c_device_rtc,
419 &s3c_device_nand,
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100420 &anubis_device_ide0,
421 &anubis_device_ide1,
Ben Dookseac1d8d2007-07-11 10:14:53 +0100422 &anubis_device_asix,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100423 &anubis_device_sm501,
Ben Dooks7efb8332005-09-07 11:49:23 +0100424};
425
Ben Dooks2bc75092008-07-15 17:17:48 +0100426static struct clk *anubis_clocks[] __initdata = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100427 &s3c24xx_dclk0,
428 &s3c24xx_dclk1,
429 &s3c24xx_clkout0,
430 &s3c24xx_clkout1,
431 &s3c24xx_uclk,
432};
433
Ben Dooks7a28db62008-07-03 11:24:43 +0100434/* I2C devices. */
435
436static struct i2c_board_info anubis_i2c_devs[] __initdata = {
437 {
438 I2C_BOARD_INFO("tps65011", 0x48),
439 .irq = IRQ_EINT20,
440 }
441};
442
Ben Dooks4d3a3462009-11-13 22:34:20 +0000443/* Audio setup */
444static struct s3c24xx_audio_simtec_pdata __initdata anubis_audio = {
445 .have_mic = 1,
446 .have_lout = 1,
447 .output_cdclk = 1,
448 .use_mpllin = 1,
449 .amp_gpio = S3C2410_GPB(2),
450 .amp_gain[0] = S3C2410_GPD(10),
451 .amp_gain[1] = S3C2410_GPD(11),
452};
453
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100454static void __init anubis_map_io(void)
Ben Dooks7efb8332005-09-07 11:49:23 +0100455{
456 /* initialise the clocks */
457
Ben Dooksd96a9802008-04-16 00:12:39 +0100458 s3c24xx_dclk0.parent = &clk_upll;
Ben Dooks7efb8332005-09-07 11:49:23 +0100459 s3c24xx_dclk0.rate = 12*1000*1000;
460
Ben Dooksd96a9802008-04-16 00:12:39 +0100461 s3c24xx_dclk1.parent = &clk_upll;
Ben Dooks7efb8332005-09-07 11:49:23 +0100462 s3c24xx_dclk1.rate = 24*1000*1000;
463
464 s3c24xx_clkout0.parent = &s3c24xx_dclk0;
465 s3c24xx_clkout1.parent = &s3c24xx_dclk1;
466
467 s3c24xx_uclk.parent = &s3c24xx_clkout1;
468
Ben Dooksce89c202007-04-20 11:15:27 +0100469 s3c24xx_register_clocks(anubis_clocks, ARRAY_SIZE(anubis_clocks));
470
Ben Dooks7efb8332005-09-07 11:49:23 +0100471 s3c24xx_init_io(anubis_iodesc, ARRAY_SIZE(anubis_iodesc));
472 s3c24xx_init_clocks(0);
473 s3c24xx_init_uarts(anubis_uartcfgs, ARRAY_SIZE(anubis_uartcfgs));
Ben Dooks7efb8332005-09-07 11:49:23 +0100474
Ben Dooksad3613f2007-07-11 11:10:42 +0100475 /* check for the newer revision boards with large page nand */
476
477 if ((__raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK) >= 4) {
478 printk(KERN_INFO "ANUBIS-B detected (revision %d)\n",
479 __raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK);
480 anubis_nand_sets[0].partitions = anubis_default_nand_part_large;
481 anubis_nand_sets[0].nr_partitions = ARRAY_SIZE(anubis_default_nand_part_large);
482 } else {
483 /* ensure that the GPIO is setup */
Ben Dooks070276d2009-05-17 22:32:23 +0100484 s3c2410_gpio_setpin(S3C2410_GPA(0), 1);
Ben Dooksad3613f2007-07-11 11:10:42 +0100485 }
Ben Dooks7efb8332005-09-07 11:49:23 +0100486}
487
Ben Dooks57e51712007-04-20 11:19:16 +0100488static void __init anubis_init(void)
489{
Ben Dooks3e1b7762008-10-31 16:14:40 +0000490 s3c_i2c0_set_platdata(NULL);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300491 s3c_nand_set_platdata(&anubis_nand_info);
Ben Dooks4d3a3462009-11-13 22:34:20 +0000492 simtec_audio_add(NULL, false, &anubis_audio);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300493
Ben Dooks57e51712007-04-20 11:19:16 +0100494 platform_add_devices(anubis_devices, ARRAY_SIZE(anubis_devices));
Ben Dooks7a28db62008-07-03 11:24:43 +0100495
496 i2c_register_board_info(0, anubis_i2c_devs,
497 ARRAY_SIZE(anubis_i2c_devs));
Ben Dooks57e51712007-04-20 11:19:16 +0100498}
499
500
Ben Dooks7efb8332005-09-07 11:49:23 +0100501MACHINE_START(ANUBIS, "Simtec-Anubis")
502 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
Nicolas Pitre69d50712011-07-05 22:38:17 -0400503 .atag_offset = 0x100,
Ben Dooks7efb8332005-09-07 11:49:23 +0100504 .map_io = anubis_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100505 .init_machine = anubis_init,
Ben Dooks7efb8332005-09-07 11:49:23 +0100506 .init_irq = s3c24xx_init_irq,
507 .timer = &s3c24xx_timer,
Kukjin Kimb27b0722012-01-03 14:02:03 +0100508 .restart = s3c2440_restart,
Ben Dooks7efb8332005-09-07 11:49:23 +0100509MACHINE_END