blob: bb595f15ce36c8f2788621462eec2aa010b8f565 [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/hardware.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010032#include <asm/irq.h>
33#include <asm/mach-types.h>
34
Ben Dooksa2b7ba92008-10-07 22:26:09 +010035#include <plat/regs-serial.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/regs-gpio.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/regs-lcd.h>
Arnd Bergmann436d42c2012-08-24 15:22:12 +020038#include <linux/platform_data/mtd-nand-s3c2410.h>
39#include <linux/platform_data/i2c-s3c2410.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010040
41#include <linux/mtd/mtd.h>
42#include <linux/mtd/nand.h>
43#include <linux/mtd/nand_ecc.h>
44#include <linux/mtd/partitions.h>
45
Ben Dookseac1d8d2007-07-11 10:14:53 +010046#include <net/ax88796.h>
47
Ben Dooksd5120ae2008-10-07 23:09:51 +010048#include <plat/clock.h>
Ben Dooksa2b7ba92008-10-07 22:26:09 +010049#include <plat/devs.h>
50#include <plat/cpu.h>
Arnd Bergmann436d42c2012-08-24 15:22:12 +020051#include <linux/platform_data/asoc-s3c24xx_simtec.h>
Ben Dooks7efb8332005-09-07 11:49:23 +010052
Kukjin Kimfc351242013-01-01 19:40:53 -080053#include "anubis.h"
Kukjin Kimb27b0722012-01-03 14:02:03 +010054#include "common.h"
Kukjin Kimfc351242013-01-01 19:40:53 -080055#include "simtec.h"
Kukjin Kimb27b0722012-01-03 14:02:03 +010056
Ben Dooks50f430e2009-11-13 22:54:12 +000057#define COPYRIGHT ", Copyright 2005-2009 Simtec Electronics"
Ben Dooks7efb8332005-09-07 11:49:23 +010058
59static struct map_desc anubis_iodesc[] __initdata = {
60 /* ISA IO areas */
61
Ben Dooks8dd52312005-11-09 14:05:30 +000062 {
63 .virtual = (u32)S3C24XX_VA_ISA_BYTE,
64 .pfn = __phys_to_pfn(0x0),
65 .length = SZ_4M,
Ben Dooks705630d2006-07-26 20:16:39 +010066 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000067 }, {
68 .virtual = (u32)S3C24XX_VA_ISA_WORD,
69 .pfn = __phys_to_pfn(0x0),
Ben Dooks705630d2006-07-26 20:16:39 +010070 .length = SZ_4M,
71 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000072 },
Ben Dooks7efb8332005-09-07 11:49:23 +010073
74 /* we could possibly compress the next set down into a set of smaller tables
75 * pagetables, but that would mean using an L2 section, and it still means
76 * we cannot actually feed the same register to an LDR due to 16K spacing
77 */
78
79 /* CPLD control registers */
80
Ben Dooks8dd52312005-11-09 14:05:30 +000081 {
82 .virtual = (u32)ANUBIS_VA_CTRL1,
83 .pfn = __phys_to_pfn(ANUBIS_PA_CTRL1),
84 .length = SZ_4K,
Ben Dooks705630d2006-07-26 20:16:39 +010085 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000086 }, {
Ben Dooks6c1640d2007-06-06 10:01:04 +010087 .virtual = (u32)ANUBIS_VA_IDREG,
88 .pfn = __phys_to_pfn(ANUBIS_PA_IDREG),
Ben Dooks8dd52312005-11-09 14:05:30 +000089 .length = SZ_4K,
Ben Dooks705630d2006-07-26 20:16:39 +010090 .type = MT_DEVICE,
Ben Dooks8dd52312005-11-09 14:05:30 +000091 },
Ben Dooks7efb8332005-09-07 11:49:23 +010092};
93
94#define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
95#define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
96#define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
97
Ben Dooks66a9b492006-06-18 23:04:05 +010098static struct s3c2410_uartcfg anubis_uartcfgs[] __initdata = {
Ben Dooks7efb8332005-09-07 11:49:23 +010099 [0] = {
100 .hwport = 0,
101 .flags = 0,
102 .ucon = UCON,
103 .ulcon = ULCON,
104 .ufcon = UFCON,
Thomas Abrahamafba7f92011-10-24 11:47:51 +0200105 .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2,
Ben Dooks7efb8332005-09-07 11:49:23 +0100106 },
107 [1] = {
108 .hwport = 2,
109 .flags = 0,
110 .ucon = UCON,
111 .ulcon = ULCON,
112 .ufcon = UFCON,
Thomas Abrahamafba7f92011-10-24 11:47:51 +0200113 .clk_sel = S3C2410_UCON_CLKSEL1 | S3C2410_UCON_CLKSEL2,
Ben Dooks7efb8332005-09-07 11:49:23 +0100114 },
115};
116
117/* NAND Flash on Anubis board */
118
119static int external_map[] = { 2 };
120static int chip0_map[] = { 0 };
121static int chip1_map[] = { 1 };
122
Ben Dooks2a3a1802009-09-28 13:59:49 +0300123static struct mtd_partition __initdata anubis_default_nand_part[] = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100124 [0] = {
125 .name = "Boot Agent",
126 .size = SZ_16K,
Ben Dooks705630d2006-07-26 20:16:39 +0100127 .offset = 0,
Ben Dooks7efb8332005-09-07 11:49:23 +0100128 },
129 [1] = {
130 .name = "/boot",
131 .size = SZ_4M - SZ_16K,
132 .offset = SZ_16K,
133 },
134 [2] = {
135 .name = "user1",
136 .offset = SZ_4M,
137 .size = SZ_32M - SZ_4M,
138 },
139 [3] = {
140 .name = "user2",
141 .offset = SZ_32M,
142 .size = MTDPART_SIZ_FULL,
143 }
144};
145
Ben Dooks2a3a1802009-09-28 13:59:49 +0300146static struct mtd_partition __initdata anubis_default_nand_part_large[] = {
Ben Dooksad3613f2007-07-11 11:10:42 +0100147 [0] = {
148 .name = "Boot Agent",
149 .size = SZ_128K,
150 .offset = 0,
151 },
152 [1] = {
153 .name = "/boot",
154 .size = SZ_4M - SZ_128K,
155 .offset = SZ_128K,
156 },
157 [2] = {
158 .name = "user1",
159 .offset = SZ_4M,
160 .size = SZ_32M - SZ_4M,
161 },
162 [3] = {
163 .name = "user2",
164 .offset = SZ_32M,
165 .size = MTDPART_SIZ_FULL,
166 }
167};
168
Ben Dooks7efb8332005-09-07 11:49:23 +0100169/* the Anubis has 3 selectable slots for nand-flash, the two
170 * on-board chip areas, as well as the external slot.
171 *
172 * Note, there is no current hot-plug support for the External
173 * socket.
174*/
175
Ben Dooks2a3a1802009-09-28 13:59:49 +0300176static struct s3c2410_nand_set __initdata anubis_nand_sets[] = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100177 [1] = {
178 .name = "External",
179 .nr_chips = 1,
180 .nr_map = external_map,
181 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100182 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100183 },
184 [0] = {
185 .name = "chip0",
186 .nr_chips = 1,
187 .nr_map = chip0_map,
188 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100189 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100190 },
191 [2] = {
192 .name = "chip1",
193 .nr_chips = 1,
194 .nr_map = chip1_map,
195 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part),
Ben Dooks705630d2006-07-26 20:16:39 +0100196 .partitions = anubis_default_nand_part,
Ben Dooks7efb8332005-09-07 11:49:23 +0100197 },
198};
199
200static void anubis_nand_select(struct s3c2410_nand_set *set, int slot)
201{
202 unsigned int tmp;
203
204 slot = set->nr_map[slot] & 3;
205
206 pr_debug("anubis_nand: selecting slot %d (set %p,%p)\n",
207 slot, set, set->nr_map);
208
209 tmp = __raw_readb(ANUBIS_VA_CTRL1);
210 tmp &= ~ANUBIS_CTRL1_NANDSEL;
211 tmp |= slot;
212
213 pr_debug("anubis_nand: ctrl1 now %02x\n", tmp);
214
215 __raw_writeb(tmp, ANUBIS_VA_CTRL1);
216}
217
Ben Dooks2a3a1802009-09-28 13:59:49 +0300218static struct s3c2410_platform_nand __initdata anubis_nand_info = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100219 .tacls = 25,
Ben Dooks661e6ac2006-04-02 10:32:46 +0100220 .twrph0 = 55,
221 .twrph1 = 40,
Ben Dooks7efb8332005-09-07 11:49:23 +0100222 .nr_sets = ARRAY_SIZE(anubis_nand_sets),
223 .sets = anubis_nand_sets,
224 .select_chip = anubis_nand_select,
225};
226
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100227/* IDE channels */
228
Ben Dooks019dbaa2009-04-17 12:36:46 +0100229static struct pata_platform_info anubis_ide_platdata = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100230 .ioport_shift = 5,
231};
232
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100233static struct resource anubis_ide0_resource[] = {
Tushar Beherad1c14932012-05-12 16:12:21 +0900234 [0] = DEFINE_RES_MEM(S3C2410_CS3, 8 * 32),
235 [2] = DEFINE_RES_MEM(S3C2410_CS3 + (1 << 26) + (6 * 32), 32),
Kukjin Kimfc351242013-01-01 19:40:53 -0800236 [3] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0),
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100237};
238
239static struct platform_device anubis_device_ide0 = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100240 .name = "pata_platform",
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100241 .id = 0,
242 .num_resources = ARRAY_SIZE(anubis_ide0_resource),
243 .resource = anubis_ide0_resource,
Ben Dooksb9db83a2008-07-03 11:24:38 +0100244 .dev = {
245 .platform_data = &anubis_ide_platdata,
246 .coherent_dma_mask = ~0,
247 },
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100248};
249
250static struct resource anubis_ide1_resource[] = {
Tushar Beherad1c14932012-05-12 16:12:21 +0900251 [0] = DEFINE_RES_MEM(S3C2410_CS4, 8 * 32),
252 [1] = DEFINE_RES_MEM(S3C2410_CS4 + (1 << 26) + (6 * 32), 32),
Kukjin Kimfc351242013-01-01 19:40:53 -0800253 [2] = DEFINE_RES_IRQ(ANUBIS_IRQ_IDE0),
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100254};
255
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100256static struct platform_device anubis_device_ide1 = {
Ben Dooksb9db83a2008-07-03 11:24:38 +0100257 .name = "pata_platform",
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100258 .id = 1,
259 .num_resources = ARRAY_SIZE(anubis_ide1_resource),
260 .resource = anubis_ide1_resource,
Ben Dooksb9db83a2008-07-03 11:24:38 +0100261 .dev = {
262 .platform_data = &anubis_ide_platdata,
263 .coherent_dma_mask = ~0,
264 },
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100265};
Ben Dooks7efb8332005-09-07 11:49:23 +0100266
Ben Dookseac1d8d2007-07-11 10:14:53 +0100267/* Asix AX88796 10/100 ethernet controller */
268
269static struct ax_plat_data anubis_asix_platdata = {
270 .flags = AXFLG_MAC_FROMDEV,
271 .wordlength = 2,
272 .dcr_val = 0x48,
273 .rcr_val = 0x40,
274};
275
276static struct resource anubis_asix_resource[] = {
Tushar Beherad1c14932012-05-12 16:12:21 +0900277 [0] = DEFINE_RES_MEM(S3C2410_CS5, 0x20 * 0x20),
Kukjin Kimfc351242013-01-01 19:40:53 -0800278 [1] = DEFINE_RES_IRQ(ANUBIS_IRQ_ASIX),
Ben Dookseac1d8d2007-07-11 10:14:53 +0100279};
280
281static struct platform_device anubis_device_asix = {
282 .name = "ax88796",
283 .id = 0,
284 .num_resources = ARRAY_SIZE(anubis_asix_resource),
285 .resource = anubis_asix_resource,
286 .dev = {
287 .platform_data = &anubis_asix_platdata,
288 }
289};
290
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100291/* SM501 */
292
293static struct resource anubis_sm501_resource[] = {
Tushar Beherad1c14932012-05-12 16:12:21 +0900294 [0] = DEFINE_RES_MEM(S3C2410_CS2, SZ_8M),
295 [1] = DEFINE_RES_MEM(S3C2410_CS2 + SZ_64M - SZ_2M, SZ_2M),
296 [2] = DEFINE_RES_IRQ(IRQ_EINT0),
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100297};
298
299static struct sm501_initdata anubis_sm501_initdata = {
300 .gpio_high = {
301 .set = 0x3F000000, /* 24bit panel */
302 .mask = 0x0,
303 },
304 .misc_timing = {
305 .set = 0x010100, /* SDRAM timing */
306 .mask = 0x1F1F00,
307 },
308 .misc_control = {
309 .set = SM501_MISC_PNL_24BIT,
310 .mask = 0,
311 },
312
Ben Dooks6290ce32008-11-10 10:59:31 +0000313 .devices = SM501_USE_GPIO,
314
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100315 /* set the SDRAM and bus clocks */
316 .mclk = 72 * MHZ,
317 .m1xclk = 144 * MHZ,
318};
319
320static struct sm501_platdata_gpio_i2c anubis_sm501_gpio_i2c[] = {
321 [0] = {
Ben Dooks6290ce32008-11-10 10:59:31 +0000322 .bus_num = 1,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100323 .pin_scl = 44,
324 .pin_sda = 45,
325 },
326 [1] = {
Ben Dooks6290ce32008-11-10 10:59:31 +0000327 .bus_num = 2,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100328 .pin_scl = 40,
329 .pin_sda = 41,
330 },
331};
332
333static struct sm501_platdata anubis_sm501_platdata = {
334 .init = &anubis_sm501_initdata,
Ben Dooks6290ce32008-11-10 10:59:31 +0000335 .gpio_base = -1,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100336 .gpio_i2c = anubis_sm501_gpio_i2c,
337 .gpio_i2c_nr = ARRAY_SIZE(anubis_sm501_gpio_i2c),
338};
339
340static struct platform_device anubis_device_sm501 = {
341 .name = "sm501",
342 .id = 0,
343 .num_resources = ARRAY_SIZE(anubis_sm501_resource),
344 .resource = anubis_sm501_resource,
345 .dev = {
346 .platform_data = &anubis_sm501_platdata,
347 },
348};
349
Ben Dooks7efb8332005-09-07 11:49:23 +0100350/* Standard Anubis devices */
351
352static struct platform_device *anubis_devices[] __initdata = {
Ben Dooksb8132482009-11-23 00:13:39 +0000353 &s3c_device_ohci,
Ben Dooks7efb8332005-09-07 11:49:23 +0100354 &s3c_device_wdt,
355 &s3c_device_adc,
Ben Dooks3e1b7762008-10-31 16:14:40 +0000356 &s3c_device_i2c0,
Ben Dooks7efb8332005-09-07 11:49:23 +0100357 &s3c_device_rtc,
358 &s3c_device_nand,
Ben Dooksbf1c56a2006-06-19 18:30:04 +0100359 &anubis_device_ide0,
360 &anubis_device_ide1,
Ben Dookseac1d8d2007-07-11 10:14:53 +0100361 &anubis_device_asix,
Ben Dooks8a9ccb72007-07-12 10:47:35 +0100362 &anubis_device_sm501,
Ben Dooks7efb8332005-09-07 11:49:23 +0100363};
364
Ben Dooks2bc75092008-07-15 17:17:48 +0100365static struct clk *anubis_clocks[] __initdata = {
Ben Dooks7efb8332005-09-07 11:49:23 +0100366 &s3c24xx_dclk0,
367 &s3c24xx_dclk1,
368 &s3c24xx_clkout0,
369 &s3c24xx_clkout1,
370 &s3c24xx_uclk,
371};
372
Ben Dooks7a28db62008-07-03 11:24:43 +0100373/* I2C devices. */
374
375static struct i2c_board_info anubis_i2c_devs[] __initdata = {
376 {
377 I2C_BOARD_INFO("tps65011", 0x48),
378 .irq = IRQ_EINT20,
379 }
380};
381
Ben Dooks4d3a3462009-11-13 22:34:20 +0000382/* Audio setup */
383static struct s3c24xx_audio_simtec_pdata __initdata anubis_audio = {
384 .have_mic = 1,
385 .have_lout = 1,
386 .output_cdclk = 1,
387 .use_mpllin = 1,
388 .amp_gpio = S3C2410_GPB(2),
389 .amp_gain[0] = S3C2410_GPD(10),
390 .amp_gain[1] = S3C2410_GPD(11),
391};
392
Ben Dooks5fe10ab2005-09-20 17:24:33 +0100393static void __init anubis_map_io(void)
Ben Dooks7efb8332005-09-07 11:49:23 +0100394{
395 /* initialise the clocks */
396
Ben Dooksd96a9802008-04-16 00:12:39 +0100397 s3c24xx_dclk0.parent = &clk_upll;
Ben Dooks7efb8332005-09-07 11:49:23 +0100398 s3c24xx_dclk0.rate = 12*1000*1000;
399
Ben Dooksd96a9802008-04-16 00:12:39 +0100400 s3c24xx_dclk1.parent = &clk_upll;
Ben Dooks7efb8332005-09-07 11:49:23 +0100401 s3c24xx_dclk1.rate = 24*1000*1000;
402
403 s3c24xx_clkout0.parent = &s3c24xx_dclk0;
404 s3c24xx_clkout1.parent = &s3c24xx_dclk1;
405
406 s3c24xx_uclk.parent = &s3c24xx_clkout1;
407
Ben Dooksce89c202007-04-20 11:15:27 +0100408 s3c24xx_register_clocks(anubis_clocks, ARRAY_SIZE(anubis_clocks));
409
Ben Dooks7efb8332005-09-07 11:49:23 +0100410 s3c24xx_init_io(anubis_iodesc, ARRAY_SIZE(anubis_iodesc));
411 s3c24xx_init_clocks(0);
412 s3c24xx_init_uarts(anubis_uartcfgs, ARRAY_SIZE(anubis_uartcfgs));
Ben Dooks7efb8332005-09-07 11:49:23 +0100413
Ben Dooksad3613f2007-07-11 11:10:42 +0100414 /* check for the newer revision boards with large page nand */
415
416 if ((__raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK) >= 4) {
417 printk(KERN_INFO "ANUBIS-B detected (revision %d)\n",
418 __raw_readb(ANUBIS_VA_IDREG) & ANUBIS_IDREG_REVMASK);
419 anubis_nand_sets[0].partitions = anubis_default_nand_part_large;
420 anubis_nand_sets[0].nr_partitions = ARRAY_SIZE(anubis_default_nand_part_large);
421 } else {
422 /* ensure that the GPIO is setup */
Sylwester Nawrocki42aa3222012-08-28 09:06:49 -0700423 gpio_request_one(S3C2410_GPA(0), GPIOF_OUT_INIT_HIGH, NULL);
424 gpio_free(S3C2410_GPA(0));
Ben Dooksad3613f2007-07-11 11:10:42 +0100425 }
Ben Dooks7efb8332005-09-07 11:49:23 +0100426}
427
Ben Dooks57e51712007-04-20 11:19:16 +0100428static void __init anubis_init(void)
429{
Ben Dooks3e1b7762008-10-31 16:14:40 +0000430 s3c_i2c0_set_platdata(NULL);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300431 s3c_nand_set_platdata(&anubis_nand_info);
Ben Dooks4d3a3462009-11-13 22:34:20 +0000432 simtec_audio_add(NULL, false, &anubis_audio);
Ben Dooks2a3a1802009-09-28 13:59:49 +0300433
Ben Dooks57e51712007-04-20 11:19:16 +0100434 platform_add_devices(anubis_devices, ARRAY_SIZE(anubis_devices));
Ben Dooks7a28db62008-07-03 11:24:43 +0100435
436 i2c_register_board_info(0, anubis_i2c_devs,
437 ARRAY_SIZE(anubis_i2c_devs));
Ben Dooks57e51712007-04-20 11:19:16 +0100438}
439
440
Ben Dooks7efb8332005-09-07 11:49:23 +0100441MACHINE_START(ANUBIS, "Simtec-Anubis")
442 /* Maintainer: Ben Dooks <ben@simtec.co.uk> */
Nicolas Pitre69d50712011-07-05 22:38:17 -0400443 .atag_offset = 0x100,
Ben Dooks7efb8332005-09-07 11:49:23 +0100444 .map_io = anubis_map_io,
Ben Dooks57e51712007-04-20 11:19:16 +0100445 .init_machine = anubis_init,
Ben Dooks7efb8332005-09-07 11:49:23 +0100446 .init_irq = s3c24xx_init_irq,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700447 .init_time = s3c24xx_timer_init,
Heiko Stuebnerc1ba544f82012-03-01 13:23:32 +0900448 .restart = s3c244x_restart,
Ben Dooks7efb8332005-09-07 11:49:23 +0100449MACHINE_END