Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 1 | /* |
| 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 King | 8d717a5 | 2010-05-22 19:47:18 +0100 | [diff] [blame] | 17 | #include <linux/memblock.h> |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <mach/hardware.h> |
| 21 | #include <mach/platform.h> |
Jamie Iles | b7378ea | 2011-09-27 20:41:01 +0100 | [diff] [blame] | 22 | #include <asm/hardware/vic.h> |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 23 | #include <asm/mach-types.h> |
| 24 | #include <asm/mach/arch.h> |
Russell King | f4117ac | 2011-01-04 18:07:14 +0000 | [diff] [blame] | 25 | #include <asm/memory.h> |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 26 | |
| 27 | static void __init u300_init_machine(void) |
| 28 | { |
| 29 | u300_init_devices(); |
| 30 | } |
| 31 | |
| 32 | #ifdef CONFIG_MACH_U300_BS2X |
| 33 | #define MACH_U300_STRING "Ericsson AB U300 S25/S26/B25/B26 Prototype Board" |
| 34 | #endif |
| 35 | |
| 36 | #ifdef CONFIG_MACH_U300_BS330 |
| 37 | #define MACH_U300_STRING "Ericsson AB U330 S330/B330 Prototype Board" |
| 38 | #endif |
| 39 | |
| 40 | #ifdef CONFIG_MACH_U300_BS335 |
| 41 | #define MACH_U300_STRING "Ericsson AB U335 S335/B335 Prototype Board" |
| 42 | #endif |
| 43 | |
| 44 | #ifdef CONFIG_MACH_U300_BS365 |
| 45 | #define MACH_U300_STRING "Ericsson AB U365 S365/B365 Prototype Board" |
| 46 | #endif |
| 47 | |
| 48 | MACHINE_START(U300, MACH_U300_STRING) |
| 49 | /* Maintainer: Linus Walleij <linus.walleij@stericsson.com> */ |
Linus Walleij | bfd912c | 2011-11-29 14:51:15 +0100 | [diff] [blame] | 50 | .atag_offset = 0x100, |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 51 | .map_io = u300_map_io, |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 52 | .init_irq = u300_init_irq, |
Jamie Iles | b7378ea | 2011-09-27 20:41:01 +0100 | [diff] [blame] | 53 | .handle_irq = vic_handle_irq, |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 54 | .timer = &u300_timer, |
| 55 | .init_machine = u300_init_machine, |
Russell King | 7e3974b | 2011-11-05 15:51:25 +0000 | [diff] [blame] | 56 | .restart = u300_restart, |
Linus Walleij | bb3cee2 | 2009-04-23 10:22:13 +0100 | [diff] [blame] | 57 | MACHINE_END |