blob: 98f65493177ae8c0b883a91d4e3c9a2a8258242a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-versatile/versatile_ab.c
3 *
4 * Copyright (C) 2004 ARM Limited
5 * Copyright (C) 2000 Deep Blue Solutions Ltd
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/device.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000024#include <linux/amba/bus.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/irq.h>
Jamie Ilesc8be7ac2011-09-27 20:46:10 +010029#include <asm/hardware/vic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include <asm/mach/arch.h>
33
34#include "core.h"
35
36MACHINE_START(VERSATILE_AB, "ARM-Versatile AB")
Russell Kinge9dea0c2005-07-03 17:38:58 +010037 /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
Nicolas Pitre171fa8a2011-07-05 22:38:18 -040038 .atag_offset = 0x100,
Russell Kinge9dea0c2005-07-03 17:38:58 +010039 .map_io = versatile_map_io,
Russell Kingad3bb192011-01-11 12:55:38 +000040 .init_early = versatile_init_early,
Russell Kinge9dea0c2005-07-03 17:38:58 +010041 .init_irq = versatile_init_irq,
Jamie Ilesc8be7ac2011-09-27 20:46:10 +010042 .handle_irq = vic_handle_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 .timer = &versatile_timer,
Russell Kinge9dea0c2005-07-03 17:38:58 +010044 .init_machine = versatile_init,
Russell Kingb56a7c62011-11-03 11:43:08 +000045 .restart = versatile_restart,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046MACHINE_END