2006-09-27 08:05:39 +02:00
|
|
|
/*
|
2006-12-06 04:05:02 +01: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 08:05:39 +02:00
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
2006-12-06 04:05:02 +01:00
|
|
|
#include <linux/irq.h>
|
2008-10-20 06:02:48 +02:00
|
|
|
#include <mach/titan.h>
|
2006-09-27 08:05:39 +02:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
static void __init init_titan_irq(void)
|
|
|
|
{
|
|
|
|
/* enable individual interrupt mode for externals */
|
2007-08-03 07:23:35 +02:00
|
|
|
plat_irq_setup_pins(IRQ_MODE_IRQ);
|
2006-09-27 08:05:39 +02:00
|
|
|
}
|
|
|
|
|
2007-05-15 08:19:34 +02:00
|
|
|
static struct sh_machine_vector mv_titan __initmv = {
|
2010-01-28 07:08:21 +01:00
|
|
|
.mv_name = "Titan",
|
|
|
|
.mv_init_irq = init_titan_irq,
|
2006-09-27 08:05:39 +02:00
|
|
|
};
|