blob: 89422ee7f3a8719d7edc0df21ccdbbd2710ea387 [file] [log] [blame]
Linus Walleijbb3cee22009-04-23 10:22:13 +01001/*
2 *
3 * arch/arm/mach-u300/u300.c
4 *
5 *
6 * Copyright (C) 2006-2009 ST-Ericsson AB
7 * License terms: GNU General Public License (GPL) version 2
8 * Platform machine definition.
9 * Author: Linus Walleij <linus.walleij@stericsson.com>
10 */
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/mm.h>
14#include <linux/sched.h>
15#include <linux/interrupt.h>
16#include <linux/ioport.h>
Russell King8d717a52010-05-22 19:47:18 +010017#include <linux/memblock.h>
Linus Walleijbb3cee22009-04-23 10:22:13 +010018#include <linux/platform_device.h>
19#include <linux/io.h>
20#include <mach/hardware.h>
21#include <mach/platform.h>
Linus Walleijbb3cee22009-04-23 10:22:13 +010022#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
Russell Kingf4117ac2011-01-04 18:07:14 +000024#include <asm/memory.h>
Linus Walleijbb3cee22009-04-23 10:22:13 +010025
26static void __init u300_init_machine(void)
27{
28 u300_init_devices();
29}
30
31#ifdef CONFIG_MACH_U300_BS2X
32#define MACH_U300_STRING "Ericsson AB U300 S25/S26/B25/B26 Prototype Board"
33#endif
34
35#ifdef CONFIG_MACH_U300_BS330
36#define MACH_U300_STRING "Ericsson AB U330 S330/B330 Prototype Board"
37#endif
38
39#ifdef CONFIG_MACH_U300_BS335
40#define MACH_U300_STRING "Ericsson AB U335 S335/B335 Prototype Board"
41#endif
42
43#ifdef CONFIG_MACH_U300_BS365
44#define MACH_U300_STRING "Ericsson AB U365 S365/B365 Prototype Board"
45#endif
46
47MACHINE_START(U300, MACH_U300_STRING)
48 /* Maintainer: Linus Walleij <linus.walleij@stericsson.com> */
Nicolas Pitre4611b682011-07-05 22:38:18 -040049 .atag_offset = BOOT_PARAMS_OFFSET,
Linus Walleijbb3cee22009-04-23 10:22:13 +010050 .map_io = u300_map_io,
Linus Walleijbb3cee22009-04-23 10:22:13 +010051 .init_irq = u300_init_irq,
52 .timer = &u300_timer,
53 .init_machine = u300_init_machine,
54MACHINE_END