| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * linux/arch/sh/boards/sh03/setup.c | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 2004  Interface Co.,Ltd. Saito.K | 
 | 5 |  * | 
 | 6 |  */ | 
 | 7 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | #include <linux/init.h> | 
 | 9 | #include <linux/irq.h> | 
| Paul Mundt | 711fa80 | 2006-10-03 13:14:04 +0900 | [diff] [blame] | 10 | #include <linux/pci.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <asm/io.h> | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 12 | #include <asm/rtc.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <asm/sh03/io.h> | 
 | 14 | #include <asm/sh03/sh03.h> | 
 | 15 | #include <asm/addrspace.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
| Jamie Lenehan | bd71ab8 | 2006-10-31 12:35:02 +0900 | [diff] [blame] | 17 | static struct ipr_data sh03_ipr_map[] = { | 
 | 18 | 	{ IRL0_IRQ, IRL0_IPR_ADDR, IRL0_IPR_POS, IRL0_PRIORITY }, | 
 | 19 | 	{ IRL1_IRQ, IRL1_IPR_ADDR, IRL1_IPR_POS, IRL1_PRIORITY }, | 
 | 20 | 	{ IRL2_IRQ, IRL2_IPR_ADDR, IRL2_IPR_POS, IRL2_PRIORITY }, | 
 | 21 | 	{ IRL3_IRQ, IRL3_IPR_ADDR, IRL3_IPR_POS, IRL3_PRIORITY }, | 
 | 22 | }; | 
 | 23 |  | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 24 | static void __init init_sh03_IRQ(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | { | 
 | 26 | 	ctrl_outw(ctrl_inw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR); | 
| Jamie Lenehan | bd71ab8 | 2006-10-31 12:35:02 +0900 | [diff] [blame] | 27 | 	make_ipr_irq(sh03_ipr_map, ARRAY_SIZE(sh03_ipr_map)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | } | 
 | 29 |  | 
 | 30 | extern void *cf_io_base; | 
 | 31 |  | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 32 | static void __iomem *sh03_ioport_map(unsigned long port, unsigned int size) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { | 
 | 34 | 	if (PXSEG(port)) | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 35 | 		return (void __iomem *)port; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | 	/* CompactFlash (IDE) */ | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 37 | 	if (((port >= 0x1f0) && (port <= 0x1f7)) || (port == 0x3f6)) | 
 | 38 | 		return (void __iomem *)((unsigned long)cf_io_base + port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 |  | 
| Paul Mundt | 959f85f | 2006-09-27 16:43:28 +0900 | [diff] [blame] | 40 |         return (void __iomem *)(port + PCI_IO_BASE); | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 41 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 |  | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 43 | /* arch/sh/boards/sh03/rtc.c */ | 
 | 44 | void sh03_time_init(void); | 
 | 45 |  | 
 | 46 | static void __init sh03_setup(char **cmdline_p) | 
 | 47 | { | 
 | 48 | 	board_time_init = sh03_time_init; | 
 | 49 | } | 
 | 50 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | struct sh_machine_vector mv_sh03 __initmv = { | 
| Paul Mundt | 2c7834a | 2006-09-27 18:17:31 +0900 | [diff] [blame] | 52 | 	.mv_name		= "Interface (CTP/PCI-SH03)", | 
 | 53 | 	.mv_setup		= sh03_setup, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | 	.mv_nr_irqs		= 48, | 
| Paul Mundt | 373e68b | 2006-09-27 15:41:24 +0900 | [diff] [blame] | 55 | 	.mv_ioport_map		= sh03_ioport_map, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | 	.mv_init_irq		= init_sh03_IRQ, | 
 | 57 |  | 
 | 58 | #ifdef CONFIG_HEARTBEAT | 
 | 59 | 	.mv_heartbeat		= heartbeat_sh03, | 
 | 60 | #endif | 
 | 61 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | ALIAS_MV(sh03) |