2006-09-27 08:41:31 +00:00
|
|
|
/*
|
|
|
|
* arch/sh/boards/shmin/setup.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Takashi YOSHII
|
|
|
|
*
|
|
|
|
* SHMIN Support.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
2007-06-15 09:56:19 +00:00
|
|
|
#include <linux/irq.h>
|
2006-09-27 08:41:31 +00:00
|
|
|
#include <asm/machvec.h>
|
2008-10-20 04:02:48 +00:00
|
|
|
#include <mach/shmin.h>
|
2006-09-27 08:41:31 +00:00
|
|
|
#include <asm/clock.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
2006-12-25 09:35:24 +00:00
|
|
|
#define PFC_PHCR 0xa400010eUL
|
2007-02-07 04:54:39 +00:00
|
|
|
#define INTC_ICR1 0xa4000010UL
|
2006-09-27 08:41:31 +00:00
|
|
|
|
|
|
|
static void __init init_shmin_irq(void)
|
|
|
|
{
|
|
|
|
ctrl_outw(0x2a00, PFC_PHCR); // IRQ0-3=IRQ
|
|
|
|
ctrl_outw(0x0aaa, INTC_ICR1); // IRQ0-3=IRQ-mode,Low-active.
|
2007-08-03 05:24:29 +00:00
|
|
|
plat_irq_setup_pins(IRQ_MODE_IRQ);
|
2006-09-27 08:41:31 +00:00
|
|
|
}
|
|
|
|
|
2008-12-17 03:42:20 +00:00
|
|
|
static void __init shmin_setup(char **cmdline_p)
|
2006-09-27 08:41:31 +00:00
|
|
|
{
|
2008-12-17 03:42:20 +00:00
|
|
|
__set_io_port_base(SHMIN_IO_BASE);
|
2006-09-27 08:41:31 +00:00
|
|
|
}
|
|
|
|
|
2007-05-15 06:19:34 +00:00
|
|
|
static struct sh_machine_vector mv_shmin __initmv = {
|
2006-09-27 09:17:31 +00:00
|
|
|
.mv_name = "SHMIN",
|
2008-12-17 03:42:20 +00:00
|
|
|
.mv_setup = shmin_setup,
|
2006-09-27 08:41:31 +00:00
|
|
|
.mv_init_irq = init_shmin_irq,
|
|
|
|
};
|