2 * linux/arch/m32r/platforms/mappi2/setup.c
4 * Setup routines for Renesas MAPPI-II(M3A-ZA36) Board
6 * Copyright (c) 2001-2005 Hiroyuki Kondo, Hirokazu Takata,
7 * Hitoshi Yamamoto, Mamoru Sakugawa
10 #include <linux/irq.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/platform_device.h>
15 #include <asm/system.h>
19 #define irq2port(x) (M32R_ICU_CR1_PORTL + ((x - 1) * sizeof(unsigned long)))
21 icu_data_t icu_data
[NR_IRQS
];
23 static void disable_mappi2_irq(unsigned int irq
)
25 unsigned long port
, data
;
27 if ((irq
== 0) ||(irq
>= NR_IRQS
)) {
28 printk("bad irq 0x%08x\n", irq
);
32 data
= icu_data
[irq
].icucr
|M32R_ICUCR_ILEVEL7
;
36 static void enable_mappi2_irq(unsigned int irq
)
38 unsigned long port
, data
;
40 if ((irq
== 0) ||(irq
>= NR_IRQS
)) {
41 printk("bad irq 0x%08x\n", irq
);
45 data
= icu_data
[irq
].icucr
|M32R_ICUCR_IEN
|M32R_ICUCR_ILEVEL6
;
49 static void mask_and_ack_mappi2(unsigned int irq
)
51 disable_mappi2_irq(irq
);
54 static void end_mappi2_irq(unsigned int irq
)
56 enable_mappi2_irq(irq
);
59 static unsigned int startup_mappi2_irq(unsigned int irq
)
61 enable_mappi2_irq(irq
);
65 static void shutdown_mappi2_irq(unsigned int irq
)
70 outl(M32R_ICUCR_ILEVEL7
, port
);
73 static struct hw_interrupt_type mappi2_irq_type
=
75 .typename
= "MAPPI2-IRQ",
76 .startup
= startup_mappi2_irq
,
77 .shutdown
= shutdown_mappi2_irq
,
78 .enable
= enable_mappi2_irq
,
79 .disable
= disable_mappi2_irq
,
80 .ack
= mask_and_ack_mappi2
,
84 void __init
init_IRQ(void)
86 #if defined(CONFIG_SMC91X)
87 /* INT0 : LAN controller (SMC91111) */
88 irq_desc
[M32R_IRQ_INT0
].status
= IRQ_DISABLED
;
89 irq_desc
[M32R_IRQ_INT0
].chip
= &mappi2_irq_type
;
90 irq_desc
[M32R_IRQ_INT0
].action
= 0;
91 irq_desc
[M32R_IRQ_INT0
].depth
= 1;
92 icu_data
[M32R_IRQ_INT0
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD10
;
93 disable_mappi2_irq(M32R_IRQ_INT0
);
94 #endif /* CONFIG_SMC91X */
96 /* MFT2 : system timer */
97 irq_desc
[M32R_IRQ_MFT2
].status
= IRQ_DISABLED
;
98 irq_desc
[M32R_IRQ_MFT2
].chip
= &mappi2_irq_type
;
99 irq_desc
[M32R_IRQ_MFT2
].action
= 0;
100 irq_desc
[M32R_IRQ_MFT2
].depth
= 1;
101 icu_data
[M32R_IRQ_MFT2
].icucr
= M32R_ICUCR_IEN
;
102 disable_mappi2_irq(M32R_IRQ_MFT2
);
104 #ifdef CONFIG_SERIAL_M32R_SIO
105 /* SIO0_R : uart receive data */
106 irq_desc
[M32R_IRQ_SIO0_R
].status
= IRQ_DISABLED
;
107 irq_desc
[M32R_IRQ_SIO0_R
].chip
= &mappi2_irq_type
;
108 irq_desc
[M32R_IRQ_SIO0_R
].action
= 0;
109 irq_desc
[M32R_IRQ_SIO0_R
].depth
= 1;
110 icu_data
[M32R_IRQ_SIO0_R
].icucr
= 0;
111 disable_mappi2_irq(M32R_IRQ_SIO0_R
);
113 /* SIO0_S : uart send data */
114 irq_desc
[M32R_IRQ_SIO0_S
].status
= IRQ_DISABLED
;
115 irq_desc
[M32R_IRQ_SIO0_S
].chip
= &mappi2_irq_type
;
116 irq_desc
[M32R_IRQ_SIO0_S
].action
= 0;
117 irq_desc
[M32R_IRQ_SIO0_S
].depth
= 1;
118 icu_data
[M32R_IRQ_SIO0_S
].icucr
= 0;
119 disable_mappi2_irq(M32R_IRQ_SIO0_S
);
120 /* SIO1_R : uart receive data */
121 irq_desc
[M32R_IRQ_SIO1_R
].status
= IRQ_DISABLED
;
122 irq_desc
[M32R_IRQ_SIO1_R
].chip
= &mappi2_irq_type
;
123 irq_desc
[M32R_IRQ_SIO1_R
].action
= 0;
124 irq_desc
[M32R_IRQ_SIO1_R
].depth
= 1;
125 icu_data
[M32R_IRQ_SIO1_R
].icucr
= 0;
126 disable_mappi2_irq(M32R_IRQ_SIO1_R
);
128 /* SIO1_S : uart send data */
129 irq_desc
[M32R_IRQ_SIO1_S
].status
= IRQ_DISABLED
;
130 irq_desc
[M32R_IRQ_SIO1_S
].chip
= &mappi2_irq_type
;
131 irq_desc
[M32R_IRQ_SIO1_S
].action
= 0;
132 irq_desc
[M32R_IRQ_SIO1_S
].depth
= 1;
133 icu_data
[M32R_IRQ_SIO1_S
].icucr
= 0;
134 disable_mappi2_irq(M32R_IRQ_SIO1_S
);
135 #endif /* CONFIG_M32R_USE_DBG_CONSOLE */
137 #if defined(CONFIG_USB)
138 /* INT1 : USB Host controller interrupt */
139 irq_desc
[M32R_IRQ_INT1
].status
= IRQ_DISABLED
;
140 irq_desc
[M32R_IRQ_INT1
].chip
= &mappi2_irq_type
;
141 irq_desc
[M32R_IRQ_INT1
].action
= 0;
142 irq_desc
[M32R_IRQ_INT1
].depth
= 1;
143 icu_data
[M32R_IRQ_INT1
].icucr
= M32R_ICUCR_ISMOD01
;
144 disable_mappi2_irq(M32R_IRQ_INT1
);
145 #endif /* CONFIG_USB */
147 /* ICUCR40: CFC IREQ */
148 irq_desc
[PLD_IRQ_CFIREQ
].status
= IRQ_DISABLED
;
149 irq_desc
[PLD_IRQ_CFIREQ
].chip
= &mappi2_irq_type
;
150 irq_desc
[PLD_IRQ_CFIREQ
].action
= 0;
151 irq_desc
[PLD_IRQ_CFIREQ
].depth
= 1; /* disable nested irq */
152 icu_data
[PLD_IRQ_CFIREQ
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD01
;
153 disable_mappi2_irq(PLD_IRQ_CFIREQ
);
155 #if defined(CONFIG_M32R_CFC)
156 /* ICUCR41: CFC Insert */
157 irq_desc
[PLD_IRQ_CFC_INSERT
].status
= IRQ_DISABLED
;
158 irq_desc
[PLD_IRQ_CFC_INSERT
].chip
= &mappi2_irq_type
;
159 irq_desc
[PLD_IRQ_CFC_INSERT
].action
= 0;
160 irq_desc
[PLD_IRQ_CFC_INSERT
].depth
= 1; /* disable nested irq */
161 icu_data
[PLD_IRQ_CFC_INSERT
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD00
;
162 disable_mappi2_irq(PLD_IRQ_CFC_INSERT
);
164 /* ICUCR42: CFC Eject */
165 irq_desc
[PLD_IRQ_CFC_EJECT
].status
= IRQ_DISABLED
;
166 irq_desc
[PLD_IRQ_CFC_EJECT
].chip
= &mappi2_irq_type
;
167 irq_desc
[PLD_IRQ_CFC_EJECT
].action
= 0;
168 irq_desc
[PLD_IRQ_CFC_EJECT
].depth
= 1; /* disable nested irq */
169 icu_data
[PLD_IRQ_CFC_EJECT
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD10
;
170 disable_mappi2_irq(PLD_IRQ_CFC_EJECT
);
171 #endif /* CONFIG_MAPPI2_CFC */
174 #define LAN_IOSTART 0x300
175 #define LAN_IOEND 0x320
176 static struct resource smc91x_resources
[] = {
178 .start
= (LAN_IOSTART
),
180 .flags
= IORESOURCE_MEM
,
183 .start
= M32R_IRQ_INT0
,
184 .end
= M32R_IRQ_INT0
,
185 .flags
= IORESOURCE_IRQ
,
189 static struct platform_device smc91x_device
= {
192 .num_resources
= ARRAY_SIZE(smc91x_resources
),
193 .resource
= smc91x_resources
,
196 static int __init
platform_init(void)
198 platform_device_register(&smc91x_device
);
201 arch_initcall(platform_init
);