blob: c069c444b4eca13663f4f645a592e555720ac7f2 [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>
Paul Mundt3b4d9532007-02-13 15:42:28 +090011#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <asm/io.h>
Paul Mundt373e68b2006-09-27 15:41:24 +090013#include <asm/rtc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/sh03/io.h>
15#include <asm/sh03/sh03.h>
16#include <asm/addrspace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Jamie Lenehanbd71ab82006-10-31 12:35:02 +090018static struct ipr_data sh03_ipr_map[] = {
19 { IRL0_IRQ, IRL0_IPR_ADDR, IRL0_IPR_POS, IRL0_PRIORITY },
20 { IRL1_IRQ, IRL1_IPR_ADDR, IRL1_IPR_POS, IRL1_PRIORITY },
21 { IRL2_IRQ, IRL2_IPR_ADDR, IRL2_IPR_POS, IRL2_PRIORITY },
22 { IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY },
23};
24
Paul Mundt2c7834a2006-09-27 18:17:31 +090025static void __init init_sh03_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
27 ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
Jamie Lenehanbd71ab82006-10-31 12:35:02 +090028 make_ipr_irq(sh03_ipr_map, ARRAY_SIZE(sh03_ipr_map));
Linus Torvalds1da177e2005-04-16 15:20:36 -070029}
30
31extern void *cf_io_base;
32
Paul Mundt373e68b2006-09-27 15:41:24 +090033static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 if (PXSEG(port))
Paul Mundt373e68b2006-09-27 15:41:24 +090036 return (void __iomem *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 /* CompactFlash (IDE) */
Paul Mundt373e68b2006-09-27 15:41:24 +090038 if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6))
39 return (void __iomem *)((unsigned long)cf_io_base + port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Paul Mundt959f85f2006-09-27 16:43:28 +090041 return (void __iomem *)(port + PCI_IO_BASE);
Paul Mundt373e68b2006-09-27 15:41:24 +090042}
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Paul Mundt2c7834a2006-09-27 18:17:31 +090044/* arch/sh/boards/sh03/rtc.c */
45void sh03_time_init(void);
46
47static void __init sh03_setup(char **cmdline_p)
48{
49 board_time_init = sh03_time_init;
50}
51
Paul Mundt3b4d9532007-02-13 15:42:28 +090052static struct resource heartbeat_resources[] = {
53 [0] = {
54 .start = 0xa0800000,
55 .end = 0xa0800000 + 8 - 1,
56 .flags = IORESOURCE_MEM,
57 },
58};
59
60static struct platform_device heartbeat_device = {
61 .name = "heartbeat",
62 .id = -1,
63 .num_resources = ARRAY_SIZE(heartbeat_resources),
64 .resource = heartbeat_resources,
65};
66
67static struct platform_device *sh03_devices[] __initdata = {
68 &heartbeat_device,
69};
70
71static int __init sh03_devices_setup(void)
72{
73 return platform_add_devices(sh03_devices, ARRAY_SIZE(sh03_devices));
74}
75__initcall(sh03_devices_setup);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077struct sh_machine_vector mv_sh03 __initmv = {
Paul Mundt2c7834a2006-09-27 18:17:31 +090078 .mv_name = "Interface (CTP/PCI-SH03)",
79 .mv_setup = sh03_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 .mv_nr_irqs = 48,
Paul Mundt373e68b2006-09-27 15:41:24 +090081 .mv_ioport_map = sh03_ioport_map,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .mv_init_irq = init_sh03_IRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
Linus Torvalds1da177e2005-04-16 15:20:36 -070084ALIAS_MV(sh03)