2006-09-27 06:05:39 +00:00
|
|
|
/*
|
2006-12-06 03:05:02 +00:00
|
|
|
* arch/sh/boards/titan/setup.c - Setup for Titan
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Jamie Lenehan
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
2006-09-27 06:05:39 +00:00
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
2006-12-06 03:05:02 +00:00
|
|
|
#include <linux/irq.h>
|
2008-10-20 04:02:48 +00:00
|
|
|
#include <mach/titan.h>
|
2006-09-27 06:05:39 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
static void __init init_titan_irq(void)
|
|
|
|
{
|
|
|
|
/* enable individual interrupt mode for externals */
|
2007-08-03 05:23:35 +00:00
|
|
|
plat_irq_setup_pins(IRQ_MODE_IRQ);
|
2006-09-27 06:05:39 +00:00
|
|
|
}
|
|
|
|
|
2007-05-15 06:19:34 +00:00
|
|
|
static struct sh_machine_vector mv_titan __initmv = {
|
2010-01-28 06:08:21 +00:00
|
|
|
.mv_name = "Titan",
|
|
|
|
.mv_init_irq = init_titan_irq,
|
2006-09-27 06:05:39 +00:00
|
|
|
};
|