| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * SH7760 Setup | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (C) 2006  Paul Mundt | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is subject to the terms and conditions of the GNU General Public | 
					
						
							|  |  |  |  * License.  See the file "COPYING" in the main directory of this archive | 
					
						
							|  |  |  |  * for more details. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/platform_device.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/serial.h>
 | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | #include <linux/sh_timer.h>
 | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | #include <linux/sh_intc.h>
 | 
					
						
							| 
									
										
										
										
											2008-02-26 14:52:45 +09:00
										 |  |  | #include <linux/serial_sci.h>
 | 
					
						
							| 
									
										
										
										
											2008-09-08 11:54:56 +09:00
										 |  |  | #include <linux/io.h>
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | enum { | 
					
						
							|  |  |  | 	UNUSED = 0, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* interrupt sources */ | 
					
						
							|  |  |  | 	IRL0, IRL1, IRL2, IRL3, | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	HUDI, GPIOI, DMAC, | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	IRQ4, IRQ5, IRQ6, IRQ7, | 
					
						
							|  |  |  | 	HCAN20, HCAN21, | 
					
						
							|  |  |  | 	SSI0, SSI1, | 
					
						
							|  |  |  | 	HAC0, HAC1, | 
					
						
							|  |  |  | 	I2C0, I2C1, | 
					
						
							|  |  |  | 	USB, LCDC, | 
					
						
							|  |  |  | 	DMABRG0, DMABRG1, DMABRG2, | 
					
						
							|  |  |  | 	SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI, | 
					
						
							|  |  |  | 	SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI, | 
					
						
							|  |  |  | 	SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI, | 
					
						
							|  |  |  | 	SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI, | 
					
						
							|  |  |  | 	HSPI, | 
					
						
							|  |  |  | 	MMCIF0, MMCIF1, MMCIF2, MMCIF3, | 
					
						
							|  |  |  | 	MFI, ADC, CMT, | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	TMU0, TMU1, TMU2, | 
					
						
							|  |  |  | 	WDT, REF, | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* interrupt groups */ | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	DMABRG, SCIF0, SCIF1, SCIF2, SIM, MMCIF, | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 00:45:35 +09:00
										 |  |  | static struct intc_vect vectors[] __initdata = { | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	INTC_VECT(HUDI, 0x600), INTC_VECT(GPIOI, 0x620), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	INTC_VECT(DMAC, 0x640), INTC_VECT(DMAC, 0x660), | 
					
						
							|  |  |  | 	INTC_VECT(DMAC, 0x680), INTC_VECT(DMAC, 0x6a0), | 
					
						
							|  |  |  | 	INTC_VECT(DMAC, 0x780), INTC_VECT(DMAC, 0x7a0), | 
					
						
							|  |  |  | 	INTC_VECT(DMAC, 0x7c0), INTC_VECT(DMAC, 0x7e0), | 
					
						
							|  |  |  | 	INTC_VECT(DMAC, 0x6c0), | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	INTC_VECT(IRQ4, 0x800), INTC_VECT(IRQ5, 0x820), | 
					
						
							|  |  |  | 	INTC_VECT(IRQ6, 0x840), INTC_VECT(IRQ6, 0x860), | 
					
						
							|  |  |  | 	INTC_VECT(HCAN20, 0x900), INTC_VECT(HCAN21, 0x920), | 
					
						
							|  |  |  | 	INTC_VECT(SSI0, 0x940), INTC_VECT(SSI1, 0x960), | 
					
						
							|  |  |  | 	INTC_VECT(HAC0, 0x980), INTC_VECT(HAC1, 0x9a0), | 
					
						
							|  |  |  | 	INTC_VECT(I2C0, 0x9c0), INTC_VECT(I2C1, 0x9e0), | 
					
						
							|  |  |  | 	INTC_VECT(USB, 0xa00), INTC_VECT(LCDC, 0xa20), | 
					
						
							|  |  |  | 	INTC_VECT(DMABRG0, 0xa80), INTC_VECT(DMABRG1, 0xaa0), | 
					
						
							|  |  |  | 	INTC_VECT(DMABRG2, 0xac0), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF0_ERI, 0x880), INTC_VECT(SCIF0_RXI, 0x8a0), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF0_BRI, 0x8c0), INTC_VECT(SCIF0_TXI, 0x8e0), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF1_ERI, 0xb00), INTC_VECT(SCIF1_RXI, 0xb20), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF1_BRI, 0xb40), INTC_VECT(SCIF1_TXI, 0xb60), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF2_ERI, 0xb80), INTC_VECT(SCIF2_RXI, 0xba0), | 
					
						
							|  |  |  | 	INTC_VECT(SCIF2_BRI, 0xbc0), INTC_VECT(SCIF2_TXI, 0xbe0), | 
					
						
							|  |  |  | 	INTC_VECT(SIM_ERI, 0xc00), INTC_VECT(SIM_RXI, 0xc20), | 
					
						
							|  |  |  | 	INTC_VECT(SIM_TXI, 0xc40), INTC_VECT(SIM_TEI, 0xc60), | 
					
						
							|  |  |  | 	INTC_VECT(HSPI, 0xc80), | 
					
						
							|  |  |  | 	INTC_VECT(MMCIF0, 0xd00), INTC_VECT(MMCIF1, 0xd20), | 
					
						
							|  |  |  | 	INTC_VECT(MMCIF2, 0xd40), INTC_VECT(MMCIF3, 0xd60), | 
					
						
							|  |  |  | 	INTC_VECT(MFI, 0xe80), /* 0xf80 according to data sheet */ | 
					
						
							|  |  |  | 	INTC_VECT(ADC, 0xf80), INTC_VECT(CMT, 0xfa0), | 
					
						
							|  |  |  | 	INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	INTC_VECT(TMU2, 0x440), INTC_VECT(TMU2, 0x460), | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	INTC_VECT(WDT, 0x560), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:01:08 +00:00
										 |  |  | 	INTC_VECT(REF, 0x580), INTC_VECT(REF, 0x5a0), | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 00:45:35 +09:00
										 |  |  | static struct intc_group groups[] __initdata = { | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	INTC_GROUP(DMABRG, DMABRG0, DMABRG1, DMABRG2), | 
					
						
							|  |  |  | 	INTC_GROUP(SCIF0, SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI), | 
					
						
							|  |  |  | 	INTC_GROUP(SCIF1, SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI), | 
					
						
							|  |  |  | 	INTC_GROUP(SCIF2, SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI), | 
					
						
							|  |  |  | 	INTC_GROUP(SIM, SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI), | 
					
						
							|  |  |  | 	INTC_GROUP(MMCIF, MMCIF0, MMCIF1, MMCIF2, MMCIF3), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 00:45:35 +09:00
										 |  |  | static struct intc_mask_reg mask_registers[] __initdata = { | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	{ 0xfe080040, 0xfe080060, 32, /* INTMSK00 / INTMSKCLR00 */ | 
					
						
							|  |  |  | 	  { IRQ4, IRQ5, IRQ6, IRQ7, 0, 0, HCAN20, HCAN21, | 
					
						
							|  |  |  | 	    SSI0, SSI1, HAC0, HAC1, I2C0, I2C1, USB, LCDC, | 
					
						
							|  |  |  | 	    0, DMABRG0, DMABRG1, DMABRG2, | 
					
						
							|  |  |  | 	    SCIF0_ERI, SCIF0_RXI, SCIF0_BRI, SCIF0_TXI, | 
					
						
							|  |  |  | 	    SCIF1_ERI, SCIF1_RXI, SCIF1_BRI, SCIF1_TXI, | 
					
						
							|  |  |  | 	    SCIF2_ERI, SCIF2_RXI, SCIF2_BRI, SCIF2_TXI, } }, | 
					
						
							|  |  |  | 	{ 0xfe080044, 0xfe080064, 32, /* INTMSK04 / INTMSKCLR04 */ | 
					
						
							|  |  |  | 	  { 0, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	    SIM_ERI, SIM_RXI, SIM_TXI, SIM_TEI, | 
					
						
							|  |  |  | 	    HSPI, MMCIF0, MMCIF1, MMCIF2, | 
					
						
							|  |  |  | 	    MMCIF3, 0, 0, 0, 0, 0, 0, 0, | 
					
						
							|  |  |  | 	    0, MFI, 0, 0, 0, 0, ADC, CMT, } }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 00:45:35 +09:00
										 |  |  | static struct intc_prio_reg prio_registers[] __initdata = { | 
					
						
							| 
									
										
										
										
											2007-08-12 15:22:02 +09:00
										 |  |  | 	{ 0xffd00004, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2 } }, | 
					
						
							|  |  |  | 	{ 0xffd00008, 0, 16, 4, /* IPRB */ { WDT, REF, 0, 0 } }, | 
					
						
							|  |  |  | 	{ 0xffd0000c, 0, 16, 4, /* IPRC */ { GPIOI, DMAC, 0, HUDI } }, | 
					
						
							|  |  |  | 	{ 0xffd00010, 0, 16, 4, /* IPRD */ { IRL0, IRL1, IRL2, IRL3 } }, | 
					
						
							|  |  |  | 	{ 0xfe080000, 0, 32, 4, /* INTPRI00 */ { IRQ4, IRQ5, IRQ6, IRQ7 } }, | 
					
						
							|  |  |  | 	{ 0xfe080004, 0, 32, 4, /* INTPRI04 */ { HCAN20, HCAN21, SSI0, SSI1, | 
					
						
							|  |  |  | 						 HAC0, HAC1, I2C0, I2C1 } }, | 
					
						
							|  |  |  | 	{ 0xfe080008, 0, 32, 4, /* INTPRI08 */ { USB, LCDC, DMABRG, SCIF0, | 
					
						
							|  |  |  | 						 SCIF1, SCIF2, SIM, HSPI } }, | 
					
						
							|  |  |  | 	{ 0xfe08000c, 0, 32, 4, /* INTPRI0C */ { 0, 0, MMCIF, 0, | 
					
						
							|  |  |  | 						 MFI, 0, ADC, CMT } }, | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DECLARE_INTC_DESC(intc_desc, "sh7760", vectors, groups, | 
					
						
							| 
									
										
										
										
											2008-01-10 14:08:55 +09:00
										 |  |  | 			 mask_registers, prio_registers, NULL); | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-17 00:45:35 +09:00
										 |  |  | static struct intc_vect vectors_irq[] __initdata = { | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	INTC_VECT(IRL0, 0x240), INTC_VECT(IRL1, 0x2a0), | 
					
						
							|  |  |  | 	INTC_VECT(IRL2, 0x300), INTC_VECT(IRL3, 0x360), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static DECLARE_INTC_DESC(intc_desc_irq, "sh7760-irq", vectors_irq, groups, | 
					
						
							| 
									
										
										
										
											2008-01-10 14:08:55 +09:00
										 |  |  | 			 mask_registers, prio_registers, NULL); | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | static struct plat_sci_port scif0_platform_data = { | 
					
						
							|  |  |  | 	.mapbase	= 0xfe600000, | 
					
						
							|  |  |  | 	.flags		= UPF_BOOT_AUTOCONF, | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 	.scscr		= SCSCR_RE | SCSCR_TE | SCSCR_REIE, | 
					
						
							|  |  |  | 	.scbrr_algo_id	= SCBRR_ALGO_2, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	.type		= PORT_SCIF, | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 	.irqs		= { evt2irq(0x880), | 
					
						
							|  |  |  | 			    evt2irq(0x8a0), | 
					
						
							|  |  |  | 			    evt2irq(0x8e0), | 
					
						
							|  |  |  | 			    evt2irq(0x8c0) }, | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	.regtype	= SCIx_SH4_SCIF_FIFODATA_REGTYPE, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device scif0_device = { | 
					
						
							|  |  |  | 	.name		= "sh-sci", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &scif0_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct plat_sci_port scif1_platform_data = { | 
					
						
							|  |  |  | 	.mapbase	= 0xfe610000, | 
					
						
							|  |  |  | 	.flags		= UPF_BOOT_AUTOCONF, | 
					
						
							|  |  |  | 	.type		= PORT_SCIF, | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 	.scscr		= SCSCR_RE | SCSCR_TE | SCSCR_REIE, | 
					
						
							|  |  |  | 	.scbrr_algo_id	= SCBRR_ALGO_2, | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 	.irqs		= { evt2irq(0xb00), | 
					
						
							|  |  |  | 			    evt2irq(0xb20), | 
					
						
							|  |  |  | 			    evt2irq(0xb60), | 
					
						
							|  |  |  | 			    evt2irq(0xb40) }, | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	.regtype	= SCIx_SH4_SCIF_FIFODATA_REGTYPE, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device scif1_device = { | 
					
						
							|  |  |  | 	.name		= "sh-sci", | 
					
						
							|  |  |  | 	.id		= 1, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &scif1_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct plat_sci_port scif2_platform_data = { | 
					
						
							|  |  |  | 	.mapbase	= 0xfe620000, | 
					
						
							|  |  |  | 	.flags		= UPF_BOOT_AUTOCONF, | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 	.scscr		= SCSCR_RE | SCSCR_TE | SCSCR_REIE, | 
					
						
							|  |  |  | 	.scbrr_algo_id	= SCBRR_ALGO_2, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	.type		= PORT_SCIF, | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 	.irqs		= { evt2irq(0xb80), | 
					
						
							|  |  |  | 			    evt2irq(0xba0), | 
					
						
							|  |  |  | 			    evt2irq(0xbe0), | 
					
						
							|  |  |  | 			    evt2irq(0xbc0) }, | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	.regtype	= SCIx_SH4_SCIF_FIFODATA_REGTYPE, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device scif2_device = { | 
					
						
							|  |  |  | 	.name		= "sh-sci", | 
					
						
							|  |  |  | 	.id		= 2, | 
					
						
							|  |  |  | 	.dev		= { | 
					
						
							|  |  |  | 		.platform_data	= &scif2_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct plat_sci_port scif3_platform_data = { | 
					
						
							|  |  |  | 	.mapbase	= 0xfe480000, | 
					
						
							|  |  |  | 	.flags		= UPF_BOOT_AUTOCONF, | 
					
						
							| 
									
										
										
										
											2011-01-13 15:06:28 +09:00
										 |  |  | 	.scscr		= SCSCR_RE | SCSCR_TE | SCSCR_REIE, | 
					
						
							|  |  |  | 	.scbrr_algo_id	= SCBRR_ALGO_2, | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	.type		= PORT_SCI, | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 	.irqs		= { evt2irq(0xc00), | 
					
						
							|  |  |  | 			    evt2irq(0xc20), | 
					
						
							|  |  |  | 			    evt2irq(0xc40), }, | 
					
						
							| 
									
										
										
										
											2011-06-14 12:40:19 +09:00
										 |  |  | 	.regshift	= 2, | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | static struct platform_device scif3_device = { | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | 	.name		= "sh-sci", | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	.id		= 3, | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | 	.dev		= { | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 		.platform_data	= &scif3_platform_data, | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | static struct sh_timer_config tmu0_platform_data = { | 
					
						
							|  |  |  | 	.channel_offset = 0x04, | 
					
						
							|  |  |  | 	.timer_bit = 0, | 
					
						
							|  |  |  | 	.clockevent_rating = 200, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource tmu0_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= 0xffd80008, | 
					
						
							|  |  |  | 		.end	= 0xffd80013, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 		.start	= evt2irq(0x400), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device tmu0_device = { | 
					
						
							|  |  |  | 	.name		= "sh_tmu", | 
					
						
							|  |  |  | 	.id		= 0, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.platform_data	= &tmu0_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.resource	= tmu0_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(tmu0_resources), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct sh_timer_config tmu1_platform_data = { | 
					
						
							|  |  |  | 	.channel_offset = 0x10, | 
					
						
							|  |  |  | 	.timer_bit = 1, | 
					
						
							|  |  |  | 	.clocksource_rating = 200, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource tmu1_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= 0xffd80014, | 
					
						
							|  |  |  | 		.end	= 0xffd8001f, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 		.start	= evt2irq(0x420), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device tmu1_device = { | 
					
						
							|  |  |  | 	.name		= "sh_tmu", | 
					
						
							|  |  |  | 	.id		= 1, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.platform_data	= &tmu1_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.resource	= tmu1_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(tmu1_resources), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct sh_timer_config tmu2_platform_data = { | 
					
						
							|  |  |  | 	.channel_offset = 0x1c, | 
					
						
							|  |  |  | 	.timer_bit = 2, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct resource tmu2_resources[] = { | 
					
						
							|  |  |  | 	[0] = { | 
					
						
							|  |  |  | 		.start	= 0xffd80020, | 
					
						
							|  |  |  | 		.end	= 0xffd8002f, | 
					
						
							|  |  |  | 		.flags	= IORESOURCE_MEM, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	[1] = { | 
					
						
							| 
									
										
										
										
											2012-05-18 14:28:11 +09:00
										 |  |  | 		.start	= evt2irq(0x440), | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | 		.flags	= IORESOURCE_IRQ, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct platform_device tmu2_device = { | 
					
						
							|  |  |  | 	.name		= "sh_tmu", | 
					
						
							|  |  |  | 	.id		= 2, | 
					
						
							|  |  |  | 	.dev = { | 
					
						
							|  |  |  | 		.platform_data	= &tmu2_platform_data, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	.resource	= tmu2_resources, | 
					
						
							|  |  |  | 	.num_resources	= ARRAY_SIZE(tmu2_resources), | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | static struct platform_device *sh7760_devices[] __initdata = { | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	&scif0_device, | 
					
						
							|  |  |  | 	&scif1_device, | 
					
						
							|  |  |  | 	&scif2_device, | 
					
						
							|  |  |  | 	&scif3_device, | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | 	&tmu0_device, | 
					
						
							|  |  |  | 	&tmu1_device, | 
					
						
							|  |  |  | 	&tmu2_device, | 
					
						
							| 
									
										
										
										
											2006-09-27 17:30:35 +09:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int __init sh7760_devices_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return platform_add_devices(sh7760_devices, | 
					
						
							|  |  |  | 				    ARRAY_SIZE(sh7760_devices)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-07-22 15:14:29 +00:00
										 |  |  | arch_initcall(sh7760_devices_setup); | 
					
						
							| 
									
										
										
										
											2006-10-20 15:30:55 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | static struct platform_device *sh7760_early_devices[] __initdata = { | 
					
						
							| 
									
										
										
										
											2009-12-14 12:30:14 +00:00
										 |  |  | 	&scif0_device, | 
					
						
							|  |  |  | 	&scif1_device, | 
					
						
							|  |  |  | 	&scif2_device, | 
					
						
							|  |  |  | 	&scif3_device, | 
					
						
							| 
									
										
										
										
											2009-05-11 09:06:24 +00:00
										 |  |  | 	&tmu0_device, | 
					
						
							|  |  |  | 	&tmu1_device, | 
					
						
							|  |  |  | 	&tmu2_device, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void __init plat_early_device_setup(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	early_platform_add_devices(sh7760_early_devices, | 
					
						
							|  |  |  | 				   ARRAY_SIZE(sh7760_early_devices)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-08 11:54:56 +09:00
										 |  |  | #define INTC_ICR	0xffd00000UL
 | 
					
						
							|  |  |  | #define INTC_ICR_IRLM	(1 << 7)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | void __init plat_irq_setup_pins(int mode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	switch (mode) { | 
					
						
							|  |  |  | 	case IRQ_MODE_IRQ: | 
					
						
							| 
									
										
										
										
											2010-01-26 12:58:40 +09:00
										 |  |  | 		__raw_writew(__raw_readw(INTC_ICR) | INTC_ICR_IRLM, INTC_ICR); | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 		register_intc_controller(&intc_desc_irq); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		BUG(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2007-01-25 15:21:03 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-18 17:57:34 +09:00
										 |  |  | void __init plat_irq_setup(void) | 
					
						
							| 
									
										
										
										
											2007-01-25 15:21:03 +09:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-07-31 17:12:34 +09:00
										 |  |  | 	register_intc_controller(&intc_desc); | 
					
						
							| 
									
										
										
										
											2007-01-25 15:21:03 +09:00
										 |  |  | } |