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