| Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 1 | /* | 
|  | 2 | * arch/sh/boards/shmin/setup.c | 
|  | 3 | * | 
|  | 4 | * Copyright (C) 2006 Takashi YOSHII | 
|  | 5 | * | 
|  | 6 | * SHMIN Support. | 
|  | 7 | */ | 
|  | 8 | #include <linux/init.h> | 
|  | 9 | #include <asm/machvec.h> | 
| Paul Mundt | 082c44d | 2006-10-19 16:16:18 +0900 | [diff] [blame] | 10 | #include <asm/shmin.h> | 
| Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 11 | #include <asm/clock.h> | 
|  | 12 | #include <asm/irq.h> | 
|  | 13 | #include <asm/io.h> | 
|  | 14 |  | 
|  | 15 | #define PFC_PHCR	0xa400010e | 
|  | 16 |  | 
| Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 17 | static void __init init_shmin_irq(void) | 
|  | 18 | { | 
|  | 19 | ctrl_outw(0x2a00, PFC_PHCR);	// IRQ0-3=IRQ | 
|  | 20 | ctrl_outw(0x0aaa, INTC_ICR1);	// IRQ0-3=IRQ-mode,Low-active. | 
|  | 21 | } | 
|  | 22 |  | 
| Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 23 | static void __iomem *shmin_ioport_map(unsigned long port, unsigned int size) | 
|  | 24 | { | 
|  | 25 | static int dummy; | 
|  | 26 |  | 
|  | 27 | if ((port & ~0x1f) == SHMIN_NE_BASE) | 
|  | 28 | return (void __iomem *)(SHMIN_IO_BASE + port); | 
|  | 29 |  | 
|  | 30 | dummy = 0; | 
|  | 31 |  | 
|  | 32 | return &dummy; | 
|  | 33 |  | 
|  | 34 | } | 
|  | 35 |  | 
|  | 36 | struct sh_machine_vector mv_shmin __initmv = { | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 37 | .mv_name	= "SHMIN", | 
| Takashi YOSHII | 51e22e7 | 2006-09-27 17:41:31 +0900 | [diff] [blame] | 38 | .mv_init_irq	= init_shmin_irq, | 
|  | 39 | .mv_ioport_map	= shmin_ioport_map, | 
|  | 40 | }; | 
|  | 41 | ALIAS_MV(shmin) |