blob: 137e2ba9243e82a85f222e455f852f357df3a5d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/sh/boards/sh03/setup.c
3 *
4 * Copyright (C) 2004 Interface Co.,Ltd. Saito.K
5 *
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/irq.h>
Paul Mundt711fa802006-10-03 13:14:04 +090010#include <linux/pci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <asm/io.h>
Paul Mundt373e68b2006-09-27 15:41:24 +090012#include <asm/rtc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/sh03/io.h>
14#include <asm/sh03/sh03.h>
15#include <asm/addrspace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Paul Mundt2c7834a2006-09-27 18:17:31 +090017static void __init init_sh03_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070018{
19 ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
20
21 make_ipr_irq(IRL0_IRQ, IRL0_IPR_ADDR, IRL0_IPR_POS, IRL0_PRIORITY);
22 make_ipr_irq(IRL1_IRQ, IRL1_IPR_ADDR, IRL1_IPR_POS, IRL1_PRIORITY);
23 make_ipr_irq(IRL2_IRQ, IRL2_IPR_ADDR, IRL2_IPR_POS, IRL2_PRIORITY);
24 make_ipr_irq(IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY);
25}
26
27extern void *cf_io_base;
28
Paul Mundt373e68b2006-09-27 15:41:24 +090029static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
31 if (PXSEG(port))
Paul Mundt373e68b2006-09-27 15:41:24 +090032 return (void __iomem *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 /* CompactFlash (IDE) */
Paul Mundt373e68b2006-09-27 15:41:24 +090034 if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6))
35 return (void __iomem *)((unsigned long)cf_io_base + port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Paul Mundt959f85f2006-09-27 16:43:28 +090037 return (void __iomem *)(port + PCI_IO_BASE);
Paul Mundt373e68b2006-09-27 15:41:24 +090038}
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Paul Mundt2c7834a2006-09-27 18:17:31 +090040/* arch/sh/boards/sh03/rtc.c */
41void sh03_time_init(void);
42
43static void __init sh03_setup(char **cmdline_p)
44{
45 board_time_init = sh03_time_init;
46}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048struct sh_machine_vector mv_sh03 __initmv = {
Paul Mundt2c7834a2006-09-27 18:17:31 +090049 .mv_name = "Interface (CTP/PCI-SH03)",
50 .mv_setup = sh03_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .mv_nr_irqs = 48,
Paul Mundt373e68b2006-09-27 15:41:24 +090052 .mv_ioport_map = sh03_ioport_map,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .mv_init_irq = init_sh03_IRQ,
54
55#ifdef CONFIG_HEARTBEAT
56 .mv_heartbeat = heartbeat_sh03,
57#endif
58};
Linus Torvalds1da177e2005-04-16 15:20:36 -070059ALIAS_MV(sh03)