satip-axe/kernel/arch/sh/boards/mach-hms1/mach.c

59 lines
1.7 KiB
C

/*
* arch/sh/boards/st/hms1/mach.c
*
* Copyright (C) 2006 STMicroelectronics Limited
* Author: Stuart Menefy (stuart.menefy@st.com)
*
* May be copied or modified under the terms of the GNU General Public
* License. See linux/COPYING for more information.
*
* Machine vector for the HMS1 board.
*/
#include <linux/init.h>
#include <linux/irq.h>
#include <asm/system.h>
#include <asm/io.h>
#include <asm/machvec.h>
#include <asm/irq-stx7100.h>
static void __iomem *hms1_ioport_map(unsigned long port, unsigned int size)
{
#ifdef CONFIG_BLK_DEV_ST40IDE
/*
* The IDE driver appears to use memory addresses with IO port
* calls. This needs fixing.
*/
return (void __iomem *)port;
#endif
/* However picking somewhere safe isn't as easy as you might think.
* I used to use external ROM, but that can cause problems if you are
* in the middle of updating Flash. So I'm now using the processor core
* version register, which is guaranted to be available, and non-writable.
*/
return (void __iomem *)CCN_PVR;
}
static void __init hms1_init_irq(void)
{
/* enable individual interrupt mode for externals */
plat_irq_setup_pins(IRQ_MODE_IRQ);
/* Set the ILC to route external interrupts to the the INTC */
/* Outputs 0-3 are the interrupt pins, 4-7 are routed to the INTC */
ilc_route_external(ILC_EXT_IRQ0, 4, 0);
ilc_route_external(ILC_EXT_IRQ1, 5, 0);
ilc_route_external(ILC_EXT_IRQ2, 6, 0);
ilc_route_external(ILC_EXT_IRQ3, 7, 0);
}
void __init hms1_setup(char**);
static struct sh_machine_vector mv_hms1 __initmv = {
.mv_name = "HMS1 board",
.mv_setup = hms1_setup,
.mv_nr_irqs = NR_IRQS,
.mv_init_irq = hms1_init_irq,
.mv_ioport_map = hms1_ioport_map,
};