blob: 9c031a8c0a1cafb54e55baef8456fe8c60ee4a74 [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
Magnus Damm68abdbb2007-06-15 18:56:19 +090018static struct ipr_data ipr_irq_table[] = {
19 { IRL0_IRQ, 0, IRL0_IPR_POS, IRL0_PRIORITY },
20 { IRL1_IRQ, 0, IRL1_IPR_POS, IRL1_PRIORITY },
21 { IRL2_IRQ, 0, IRL2_IPR_POS, IRL2_PRIORITY },
22 { IRL3_IRQ, 0, IRL3_IPR_POS, IRL3_PRIORITY },
23};
24
25static unsigned long ipr_offsets[] = {
26 INTC_IPRD,
27};
28
29static struct ipr_desc ipr_irq_desc = {
30 .ipr_offsets = ipr_offsets,
31 .nr_offsets = ARRAY_SIZE(ipr_offsets),
32
33 .ipr_data = ipr_irq_table,
34 .nr_irqs = ARRAY_SIZE(ipr_irq_table),
35
36 .chip = {
37 .name = "IPR-sh03",
38 },
Jamie Lenehanbd71ab82006-10-31 12:35:02 +090039};
40
Paul Mundt2c7834a2006-09-27 18:17:31 +090041static void __init init_sh03_IRQ(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR);
Magnus Damm68abdbb2007-06-15 18:56:19 +090044 register_ipr_controller(&ipr_irq_desc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}
46
47extern void *cf_io_base;
48
Paul Mundt373e68b2006-09-27 15:41:24 +090049static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 if (PXSEG(port))
Paul Mundt373e68b2006-09-27 15:41:24 +090052 return (void __iomem *)port;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 /* CompactFlash (IDE) */
Paul Mundt373e68b2006-09-27 15:41:24 +090054 if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6))
55 return (void __iomem *)((unsigned long)cf_io_base + port);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Paul Mundt959f85f2006-09-27 16:43:28 +090057 return (void __iomem *)(port + PCI_IO_BASE);
Paul Mundt373e68b2006-09-27 15:41:24 +090058}
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Paul Mundt2c7834a2006-09-27 18:17:31 +090060/* arch/sh/boards/sh03/rtc.c */
61void sh03_time_init(void);
62
63static void __init sh03_setup(char **cmdline_p)
64{
65 board_time_init = sh03_time_init;
66}
67
Paul Mundt3b4d9532007-02-13 15:42:28 +090068static struct resource heartbeat_resources[] = {
69 [0] = {
70 .start = 0xa0800000,
71 .end = 0xa0800000 + 8 - 1,
72 .flags = IORESOURCE_MEM,
73 },
74};
75
76static struct platform_device heartbeat_device = {
77 .name = "heartbeat",
78 .id = -1,
79 .num_resources = ARRAY_SIZE(heartbeat_resources),
80 .resource = heartbeat_resources,
81};
82
83static struct platform_device *sh03_devices[] __initdata = {
84 &heartbeat_device,
85};
86
87static int __init sh03_devices_setup(void)
88{
89 return platform_add_devices(sh03_devices, ARRAY_SIZE(sh03_devices));
90}
91__initcall(sh03_devices_setup);
92
Paul Mundt82f81f42007-05-15 15:19:34 +090093static struct sh_machine_vector mv_sh03 __initmv = {
Paul Mundt2c7834a2006-09-27 18:17:31 +090094 .mv_name = "Interface (CTP/PCI-SH03)",
95 .mv_setup = sh03_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 .mv_nr_irqs = 48,
Paul Mundt373e68b2006-09-27 15:41:24 +090097 .mv_ioport_map = sh03_ioport_map,
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .mv_init_irq = init_sh03_IRQ,
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};