2 * linux/arch/m32r/platforms/opsput/setup.c
4 * Setup routines for Renesas OPSPUT Board
6 * Copyright (c) 2002-2005
7 * Hiroyuki Kondo, Hirokazu Takata,
8 * Hitoshi Yamamoto, Takeo Takahashi, Mamoru Sakugawa
10 * This file is subject to the terms and conditions of the GNU General
11 * Public License. See the file "COPYING" in the main directory of this
12 * archive for more details.
15 #include <linux/irq.h>
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/platform_device.h>
20 #include <asm/system.h>
25 * OPSP Interrupt Control Unit (Level 1)
27 #define irq2port(x) (M32R_ICU_CR1_PORTL + ((x - 1) * sizeof(unsigned long)))
29 icu_data_t icu_data
[OPSPUT_NUM_CPU_IRQ
];
31 static void disable_opsput_irq(unsigned int irq
)
33 unsigned long port
, data
;
36 data
= icu_data
[irq
].icucr
|M32R_ICUCR_ILEVEL7
;
40 static void enable_opsput_irq(unsigned int irq
)
42 unsigned long port
, data
;
45 data
= icu_data
[irq
].icucr
|M32R_ICUCR_IEN
|M32R_ICUCR_ILEVEL6
;
49 static void mask_opsput(struct irq_data
*data
)
51 disable_opsput_irq(data
->irq
);
54 static void unmask_opsput(struct irq_data
*data
)
56 enable_opsput_irq(data
->irq
);
59 static void shutdown_opsput(struct irq_data
*data
)
63 port
= irq2port(data
->irq
);
64 outl(M32R_ICUCR_ILEVEL7
, port
);
67 static struct irq_chip opsput_irq_type
=
70 .irq_shutdown
= shutdown_opsput
,
71 .irq_mask
= mask_opsput
,
72 .irq_unmask
= unmask_opsput
,
76 * Interrupt Control Unit of PLD on OPSPUT (Level 2)
78 #define irq2pldirq(x) ((x) - OPSPUT_PLD_IRQ_BASE)
79 #define pldirq2port(x) (unsigned long)((int)PLD_ICUCR1 + \
80 (((x) - 1) * sizeof(unsigned short)))
83 unsigned short icucr
; /* ICU Control Register */
86 static pld_icu_data_t pld_icu_data
[OPSPUT_NUM_PLD_IRQ
];
88 static void disable_opsput_pld_irq(unsigned int irq
)
90 unsigned long port
, data
;
93 pldirq
= irq2pldirq(irq
);
94 port
= pldirq2port(pldirq
);
95 data
= pld_icu_data
[pldirq
].icucr
|PLD_ICUCR_ILEVEL7
;
99 static void enable_opsput_pld_irq(unsigned int irq
)
101 unsigned long port
, data
;
104 pldirq
= irq2pldirq(irq
);
105 port
= pldirq2port(pldirq
);
106 data
= pld_icu_data
[pldirq
].icucr
|PLD_ICUCR_IEN
|PLD_ICUCR_ILEVEL6
;
110 static void mask_opsput_pld(struct irq_data
*data
)
112 disable_opsput_pld_irq(data
->irq
);
115 static void unmask_opsput_pld(struct irq_data
*data
)
117 enable_opsput_pld_irq(data
->irq
);
118 enable_opsput_irq(M32R_IRQ_INT1
);
121 static void shutdown_opsput_pld(struct irq_data
*data
)
126 pldirq
= irq2pldirq(data
->irq
);
127 port
= pldirq2port(pldirq
);
128 outw(PLD_ICUCR_ILEVEL7
, port
);
131 static struct irq_chip opsput_pld_irq_type
=
133 .name
= "OPSPUT-PLD-IRQ",
134 .irq_shutdown
= shutdown_opsput_pld
,
135 .irq_mask
= mask_opsput_pld
,
136 .irq_unmask
= unmask_opsput_pld
,
140 * Interrupt Control Unit of PLD on OPSPUT-LAN (Level 2)
142 #define irq2lanpldirq(x) ((x) - OPSPUT_LAN_PLD_IRQ_BASE)
143 #define lanpldirq2port(x) (unsigned long)((int)OPSPUT_LAN_ICUCR1 + \
144 (((x) - 1) * sizeof(unsigned short)))
146 static pld_icu_data_t lanpld_icu_data
[OPSPUT_NUM_LAN_PLD_IRQ
];
148 static void disable_opsput_lanpld_irq(unsigned int irq
)
150 unsigned long port
, data
;
153 pldirq
= irq2lanpldirq(irq
);
154 port
= lanpldirq2port(pldirq
);
155 data
= lanpld_icu_data
[pldirq
].icucr
|PLD_ICUCR_ILEVEL7
;
159 static void enable_opsput_lanpld_irq(unsigned int irq
)
161 unsigned long port
, data
;
164 pldirq
= irq2lanpldirq(irq
);
165 port
= lanpldirq2port(pldirq
);
166 data
= lanpld_icu_data
[pldirq
].icucr
|PLD_ICUCR_IEN
|PLD_ICUCR_ILEVEL6
;
170 static void mask_opsput_lanpld(struct irq_data
*data
)
172 disable_opsput_lanpld_irq(data
->irq
);
175 static void unmask_opsput_lanpld(struct irq_data
*data
)
177 enable_opsput_lanpld_irq(data
->irq
);
178 enable_opsput_irq(M32R_IRQ_INT0
);
181 static void shutdown_opsput_lanpld(struct irq_data
*data
)
186 pldirq
= irq2lanpldirq(data
->irq
);
187 port
= lanpldirq2port(pldirq
);
188 outw(PLD_ICUCR_ILEVEL7
, port
);
191 static struct irq_chip opsput_lanpld_irq_type
=
193 .name
= "OPSPUT-PLD-LAN-IRQ",
194 .irq_shutdown
= shutdown_opsput_lanpld
,
195 .irq_mask
= mask_opsput_lanpld
,
196 .irq_unmask
= unmask_opsput_lanpld
,
200 * Interrupt Control Unit of PLD on OPSPUT-LCD (Level 2)
202 #define irq2lcdpldirq(x) ((x) - OPSPUT_LCD_PLD_IRQ_BASE)
203 #define lcdpldirq2port(x) (unsigned long)((int)OPSPUT_LCD_ICUCR1 + \
204 (((x) - 1) * sizeof(unsigned short)))
206 static pld_icu_data_t lcdpld_icu_data
[OPSPUT_NUM_LCD_PLD_IRQ
];
208 static void disable_opsput_lcdpld_irq(unsigned int irq
)
210 unsigned long port
, data
;
213 pldirq
= irq2lcdpldirq(irq
);
214 port
= lcdpldirq2port(pldirq
);
215 data
= lcdpld_icu_data
[pldirq
].icucr
|PLD_ICUCR_ILEVEL7
;
219 static void enable_opsput_lcdpld_irq(unsigned int irq
)
221 unsigned long port
, data
;
224 pldirq
= irq2lcdpldirq(irq
);
225 port
= lcdpldirq2port(pldirq
);
226 data
= lcdpld_icu_data
[pldirq
].icucr
|PLD_ICUCR_IEN
|PLD_ICUCR_ILEVEL6
;
230 static void mask_opsput_lcdpld(struct irq_data
*data
)
232 disable_opsput_lcdpld_irq(data
->irq
);
235 static void unmask_opsput_lcdpld(struct irq_data
*data
)
237 enable_opsput_lcdpld_irq(data
->irq
);
238 enable_opsput_irq(M32R_IRQ_INT2
);
241 static void shutdown_opsput_lcdpld(struct irq_data
*data
)
246 pldirq
= irq2lcdpldirq(data
->irq
);
247 port
= lcdpldirq2port(pldirq
);
248 outw(PLD_ICUCR_ILEVEL7
, port
);
251 static struct irq_chip opsput_lcdpld_irq_type
= {
252 .name
= "OPSPUT-PLD-LCD-IRQ",
253 .irq_shutdown
= shutdown_opsput_lcdpld
,
254 .irq_mask
= mask_opsput_lcdpld
,
255 .irq_unmask
= unmask_opsput_lcdpld
,
258 void __init
init_IRQ(void)
260 #if defined(CONFIG_SMC91X)
261 /* INT#0: LAN controller on OPSPUT-LAN (SMC91C111)*/
262 irq_set_chip_and_handler(OPSPUT_LAN_IRQ_LAN
, &opsput_lanpld_irq_type
,
264 lanpld_icu_data
[irq2lanpldirq(OPSPUT_LAN_IRQ_LAN
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD02
; /* "H" edge sense */
265 disable_opsput_lanpld_irq(OPSPUT_LAN_IRQ_LAN
);
266 #endif /* CONFIG_SMC91X */
268 /* MFT2 : system timer */
269 irq_set_chip_and_handler(M32R_IRQ_MFT2
, &opsput_irq_type
,
271 icu_data
[M32R_IRQ_MFT2
].icucr
= M32R_ICUCR_IEN
;
272 disable_opsput_irq(M32R_IRQ_MFT2
);
275 irq_set_chip_and_handler(M32R_IRQ_SIO0_R
, &opsput_irq_type
,
277 icu_data
[M32R_IRQ_SIO0_R
].icucr
= 0;
278 disable_opsput_irq(M32R_IRQ_SIO0_R
);
281 irq_set_chip_and_handler(M32R_IRQ_SIO0_S
, &opsput_irq_type
,
283 icu_data
[M32R_IRQ_SIO0_S
].icucr
= 0;
284 disable_opsput_irq(M32R_IRQ_SIO0_S
);
287 irq_set_chip_and_handler(M32R_IRQ_SIO1_R
, &opsput_irq_type
,
289 icu_data
[M32R_IRQ_SIO1_R
].icucr
= 0;
290 disable_opsput_irq(M32R_IRQ_SIO1_R
);
293 irq_set_chip_and_handler(M32R_IRQ_SIO1_S
, &opsput_irq_type
,
295 icu_data
[M32R_IRQ_SIO1_S
].icucr
= 0;
296 disable_opsput_irq(M32R_IRQ_SIO1_S
);
299 irq_set_chip_and_handler(M32R_IRQ_DMA1
, &opsput_irq_type
,
301 icu_data
[M32R_IRQ_DMA1
].icucr
= 0;
302 disable_opsput_irq(M32R_IRQ_DMA1
);
304 #ifdef CONFIG_SERIAL_M32R_PLDSIO
305 /* INT#1: SIO0 Receive on PLD */
306 irq_set_chip_and_handler(PLD_IRQ_SIO0_RCV
, &opsput_pld_irq_type
,
308 pld_icu_data
[irq2pldirq(PLD_IRQ_SIO0_RCV
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD03
;
309 disable_opsput_pld_irq(PLD_IRQ_SIO0_RCV
);
311 /* INT#1: SIO0 Send on PLD */
312 irq_set_chip_and_handler(PLD_IRQ_SIO0_SND
, &opsput_pld_irq_type
,
314 pld_icu_data
[irq2pldirq(PLD_IRQ_SIO0_SND
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD03
;
315 disable_opsput_pld_irq(PLD_IRQ_SIO0_SND
);
316 #endif /* CONFIG_SERIAL_M32R_PLDSIO */
318 /* INT#1: CFC IREQ on PLD */
319 irq_set_chip_and_handler(PLD_IRQ_CFIREQ
, &opsput_pld_irq_type
,
321 pld_icu_data
[irq2pldirq(PLD_IRQ_CFIREQ
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD01
; /* 'L' level sense */
322 disable_opsput_pld_irq(PLD_IRQ_CFIREQ
);
324 /* INT#1: CFC Insert on PLD */
325 irq_set_chip_and_handler(PLD_IRQ_CFC_INSERT
, &opsput_pld_irq_type
,
327 pld_icu_data
[irq2pldirq(PLD_IRQ_CFC_INSERT
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD00
; /* 'L' edge sense */
328 disable_opsput_pld_irq(PLD_IRQ_CFC_INSERT
);
330 /* INT#1: CFC Eject on PLD */
331 irq_set_chip_and_handler(PLD_IRQ_CFC_EJECT
, &opsput_pld_irq_type
,
333 pld_icu_data
[irq2pldirq(PLD_IRQ_CFC_EJECT
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD02
; /* 'H' edge sense */
334 disable_opsput_pld_irq(PLD_IRQ_CFC_EJECT
);
337 * INT0# is used for LAN, DIO
340 icu_data
[M32R_IRQ_INT0
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD11
;
341 enable_opsput_irq(M32R_IRQ_INT0
);
344 * INT1# is used for UART, MMC, CF Controller in FPGA.
347 icu_data
[M32R_IRQ_INT1
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD11
;
348 enable_opsput_irq(M32R_IRQ_INT1
);
350 #if defined(CONFIG_USB)
351 outw(USBCR_OTGS
, USBCR
); /* USBCR: non-OTG */
352 irq_set_chip_and_handler(OPSPUT_LCD_IRQ_USB_INT1
,
353 &opsput_lcdpld_irq_type
, handle_level_irq
);
354 lcdpld_icu_data
[irq2lcdpldirq(OPSPUT_LCD_IRQ_USB_INT1
)].icucr
= PLD_ICUCR_IEN
|PLD_ICUCR_ISMOD01
; /* "L" level sense */
355 disable_opsput_lcdpld_irq(OPSPUT_LCD_IRQ_USB_INT1
);
358 * INT2# is used for BAT, USB, AUDIO
361 icu_data
[M32R_IRQ_INT2
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD01
;
362 enable_opsput_irq(M32R_IRQ_INT2
);
364 #if defined(CONFIG_VIDEO_M32R_AR)
366 * INT3# is used for AR
368 irq_set_chip_and_handler(M32R_IRQ_INT3
, &opsput_irq_type
,
370 icu_data
[M32R_IRQ_INT3
].icucr
= M32R_ICUCR_IEN
|M32R_ICUCR_ISMOD10
;
371 disable_opsput_irq(M32R_IRQ_INT3
);
372 #endif /* CONFIG_VIDEO_M32R_AR */
375 #if defined(CONFIG_SMC91X)
377 #define LAN_IOSTART 0x300
378 #define LAN_IOEND 0x320
379 static struct resource smc91x_resources
[] = {
381 .start
= (LAN_IOSTART
),
383 .flags
= IORESOURCE_MEM
,
386 .start
= OPSPUT_LAN_IRQ_LAN
,
387 .end
= OPSPUT_LAN_IRQ_LAN
,
388 .flags
= IORESOURCE_IRQ
,
392 static struct platform_device smc91x_device
= {
395 .num_resources
= ARRAY_SIZE(smc91x_resources
),
396 .resource
= smc91x_resources
,
400 #if defined(CONFIG_FB_S1D13XXX)
402 #include <video/s1d13xxxfb.h>
403 #include <asm/s1d13806.h>
405 static struct s1d13xxxfb_pdata s1d13xxxfb_data
= {
406 .initregs
= s1d13xxxfb_initregs
,
407 .initregssize
= ARRAY_SIZE(s1d13xxxfb_initregs
),
408 .platform_init_video
= NULL
,
410 .platform_suspend_video
= NULL
,
411 .platform_resume_video
= NULL
,
415 static struct resource s1d13xxxfb_resources
[] = {
417 .start
= 0x10600000UL
,
419 .flags
= IORESOURCE_MEM
,
422 .start
= 0x10400000UL
,
424 .flags
= IORESOURCE_MEM
,
428 static struct platform_device s1d13xxxfb_device
= {
429 .name
= S1D_DEVICENAME
,
432 .platform_data
= &s1d13xxxfb_data
,
434 .num_resources
= ARRAY_SIZE(s1d13xxxfb_resources
),
435 .resource
= s1d13xxxfb_resources
,
439 static int __init
platform_init(void)
441 #if defined(CONFIG_SMC91X)
442 platform_device_register(&smc91x_device
);
444 #if defined(CONFIG_FB_S1D13XXX)
445 platform_device_register(&s1d13xxxfb_device
);
449 arch_initcall(platform_init
);