 955c9863bb
			
		
	
	
	955c9863bb
	
	
	
		
			
			Convert the processor platform device setup functions from __initcall() and sometimes device_initcall() to arch_initcall(). This makes sure that the platform devices are registered a bit earlier so the devices are available when drivers register using initcall levels earlier than device_initcall(). A good example is platform devices needed by i2c-sh_mobile.c which registers a bit earlier using subsys_initcall(). Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
		
			
				
	
	
		
			472 lines
		
	
	
	
		
			12 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			472 lines
		
	
	
	
		
			12 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * SH7366 Setup
 | |
|  *
 | |
|  *  Copyright (C) 2008 Renesas Solutions
 | |
|  *
 | |
|  * Based on linux/arch/sh/kernel/cpu/sh4a/setup-sh7722.c
 | |
|  *
 | |
|  * 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>
 | |
| #include <linux/serial_sci.h>
 | |
| #include <linux/uio_driver.h>
 | |
| #include <linux/sh_timer.h>
 | |
| #include <linux/usb/r8a66597.h>
 | |
| #include <asm/clock.h>
 | |
| 
 | |
| static struct resource iic_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "IIC",
 | |
| 		.start  = 0x04470000,
 | |
| 		.end    = 0x04470017,
 | |
| 		.flags  = IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start  = 96,
 | |
| 		.end    = 99,
 | |
| 		.flags  = IORESOURCE_IRQ,
 | |
|        },
 | |
| };
 | |
| 
 | |
| static struct platform_device iic_device = {
 | |
| 	.name           = "i2c-sh_mobile",
 | |
| 	.id             = 0, /* "i2c0" clock */
 | |
| 	.num_resources  = ARRAY_SIZE(iic_resources),
 | |
| 	.resource       = iic_resources,
 | |
| };
 | |
| 
 | |
| static struct r8a66597_platdata r8a66597_data = {
 | |
| 	.on_chip = 1,
 | |
| };
 | |
| 
 | |
| static struct resource usb_host_resources[] = {
 | |
| 	[0] = {
 | |
| 		.start  = 0xa4d80000,
 | |
| 		.end    = 0xa4d800ff,
 | |
| 		.flags  = IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start  = 65,
 | |
| 		.end    = 65,
 | |
| 		.flags	= IORESOURCE_IRQ | IRQF_TRIGGER_LOW,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device usb_host_device = {
 | |
| 	.name	= "r8a66597_hcd",
 | |
| 	.id	= -1,
 | |
| 	.dev = {
 | |
| 		.dma_mask		= NULL,
 | |
| 		.coherent_dma_mask	= 0xffffffff,
 | |
| 		.platform_data		= &r8a66597_data,
 | |
| 	},
 | |
| 	.num_resources	= ARRAY_SIZE(usb_host_resources),
 | |
| 	.resource	= usb_host_resources,
 | |
| };
 | |
| 
 | |
| static struct uio_info vpu_platform_data = {
 | |
| 	.name = "VPU5",
 | |
| 	.version = "0",
 | |
| 	.irq = 60,
 | |
| };
 | |
| 
 | |
| static struct resource vpu_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "VPU",
 | |
| 		.start	= 0xfe900000,
 | |
| 		.end	= 0xfe902807,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		/* place holder for contiguous memory */
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device vpu_device = {
 | |
| 	.name		= "uio_pdrv_genirq",
 | |
| 	.id		= 0,
 | |
| 	.dev = {
 | |
| 		.platform_data	= &vpu_platform_data,
 | |
| 	},
 | |
| 	.resource	= vpu_resources,
 | |
| 	.num_resources	= ARRAY_SIZE(vpu_resources),
 | |
| };
 | |
| 
 | |
| static struct uio_info veu0_platform_data = {
 | |
| 	.name = "VEU",
 | |
| 	.version = "0",
 | |
| 	.irq = 54,
 | |
| };
 | |
| 
 | |
| static struct resource veu0_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "VEU(1)",
 | |
| 		.start	= 0xfe920000,
 | |
| 		.end	= 0xfe9200b7,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		/* place holder for contiguous memory */
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device veu0_device = {
 | |
| 	.name		= "uio_pdrv_genirq",
 | |
| 	.id		= 1,
 | |
| 	.dev = {
 | |
| 		.platform_data	= &veu0_platform_data,
 | |
| 	},
 | |
| 	.resource	= veu0_resources,
 | |
| 	.num_resources	= ARRAY_SIZE(veu0_resources),
 | |
| };
 | |
| 
 | |
| static struct uio_info veu1_platform_data = {
 | |
| 	.name = "VEU",
 | |
| 	.version = "0",
 | |
| 	.irq = 27,
 | |
| };
 | |
| 
 | |
| static struct resource veu1_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "VEU(2)",
 | |
| 		.start	= 0xfe924000,
 | |
| 		.end	= 0xfe9240b7,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		/* place holder for contiguous memory */
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device veu1_device = {
 | |
| 	.name		= "uio_pdrv_genirq",
 | |
| 	.id		= 2,
 | |
| 	.dev = {
 | |
| 		.platform_data	= &veu1_platform_data,
 | |
| 	},
 | |
| 	.resource	= veu1_resources,
 | |
| 	.num_resources	= ARRAY_SIZE(veu1_resources),
 | |
| };
 | |
| 
 | |
| static struct sh_timer_config cmt_platform_data = {
 | |
| 	.name = "CMT",
 | |
| 	.channel_offset = 0x60,
 | |
| 	.timer_bit = 5,
 | |
| 	.clk = "cmt0",
 | |
| 	.clockevent_rating = 125,
 | |
| 	.clocksource_rating = 200,
 | |
| };
 | |
| 
 | |
| static struct resource cmt_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "CMT",
 | |
| 		.start	= 0x044a0060,
 | |
| 		.end	= 0x044a006b,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start	= 104,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device cmt_device = {
 | |
| 	.name		= "sh_cmt",
 | |
| 	.id		= 0,
 | |
| 	.dev = {
 | |
| 		.platform_data	= &cmt_platform_data,
 | |
| 	},
 | |
| 	.resource	= cmt_resources,
 | |
| 	.num_resources	= ARRAY_SIZE(cmt_resources),
 | |
| };
 | |
| 
 | |
| static struct sh_timer_config tmu0_platform_data = {
 | |
| 	.name = "TMU0",
 | |
| 	.channel_offset = 0x04,
 | |
| 	.timer_bit = 0,
 | |
| 	.clk = "tmu0",
 | |
| 	.clockevent_rating = 200,
 | |
| };
 | |
| 
 | |
| static struct resource tmu0_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "TMU0",
 | |
| 		.start	= 0xffd80008,
 | |
| 		.end	= 0xffd80013,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start	= 16,
 | |
| 		.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 = {
 | |
| 	.name = "TMU1",
 | |
| 	.channel_offset = 0x10,
 | |
| 	.timer_bit = 1,
 | |
| 	.clk = "tmu0",
 | |
| 	.clocksource_rating = 200,
 | |
| };
 | |
| 
 | |
| static struct resource tmu1_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "TMU1",
 | |
| 		.start	= 0xffd80014,
 | |
| 		.end	= 0xffd8001f,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start	= 17,
 | |
| 		.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 = {
 | |
| 	.name = "TMU2",
 | |
| 	.channel_offset = 0x1c,
 | |
| 	.timer_bit = 2,
 | |
| 	.clk = "tmu0",
 | |
| };
 | |
| 
 | |
| static struct resource tmu2_resources[] = {
 | |
| 	[0] = {
 | |
| 		.name	= "TMU2",
 | |
| 		.start	= 0xffd80020,
 | |
| 		.end	= 0xffd8002b,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	[1] = {
 | |
| 		.start	= 18,
 | |
| 		.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),
 | |
| };
 | |
| 
 | |
| static struct plat_sci_port sci_platform_data[] = {
 | |
| 	{
 | |
| 		.mapbase	= 0xffe00000,
 | |
| 		.flags		= UPF_BOOT_AUTOCONF,
 | |
| 		.type		= PORT_SCIF,
 | |
| 		.irqs		= { 80, 80, 80, 80 },
 | |
| 		.clk		= "scif0",
 | |
| 	}, {
 | |
| 		.flags = 0,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| static struct platform_device sci_device = {
 | |
| 	.name		= "sh-sci",
 | |
| 	.id		= -1,
 | |
| 	.dev		= {
 | |
| 		.platform_data	= sci_platform_data,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct platform_device *sh7366_devices[] __initdata = {
 | |
| 	&cmt_device,
 | |
| 	&tmu0_device,
 | |
| 	&tmu1_device,
 | |
| 	&tmu2_device,
 | |
| 	&iic_device,
 | |
| 	&sci_device,
 | |
| 	&usb_host_device,
 | |
| 	&vpu_device,
 | |
| 	&veu0_device,
 | |
| 	&veu1_device,
 | |
| };
 | |
| 
 | |
| static int __init sh7366_devices_setup(void)
 | |
| {
 | |
| 	platform_resource_setup_memory(&vpu_device, "vpu", 2 << 20);
 | |
| 	platform_resource_setup_memory(&veu0_device, "veu0", 2 << 20);
 | |
| 	platform_resource_setup_memory(&veu1_device, "veu1", 2 << 20);
 | |
| 
 | |
| 	return platform_add_devices(sh7366_devices,
 | |
| 				    ARRAY_SIZE(sh7366_devices));
 | |
| }
 | |
| arch_initcall(sh7366_devices_setup);
 | |
| 
 | |
| static struct platform_device *sh7366_early_devices[] __initdata = {
 | |
| 	&cmt_device,
 | |
| 	&tmu0_device,
 | |
| 	&tmu1_device,
 | |
| 	&tmu2_device,
 | |
| };
 | |
| 
 | |
| void __init plat_early_device_setup(void)
 | |
| {
 | |
| 	early_platform_add_devices(sh7366_early_devices,
 | |
| 				   ARRAY_SIZE(sh7366_early_devices));
 | |
| }
 | |
| 
 | |
| enum {
 | |
| 	UNUSED=0,
 | |
| 
 | |
| 	/* interrupt sources */
 | |
| 	IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7,
 | |
| 	ICB,
 | |
| 	DMAC0, DMAC1, DMAC2, DMAC3,
 | |
| 	VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU,
 | |
| 	MFI, VPU, USB,
 | |
| 	MMC_MMC1I, MMC_MMC2I, MMC_MMC3I,
 | |
| 	DMAC4, DMAC5, DMAC_DADERR,
 | |
| 	SCIF, SCIFA1, SCIFA2,
 | |
| 	DENC, MSIOF,
 | |
| 	FLCTL_FLSTEI, FLCTL_FLENDI, FLCTL_FLTREQ0I, FLCTL_FLTREQ1I,
 | |
| 	I2C_ALI, I2C_TACKI, I2C_WAITI, I2C_DTEI,
 | |
| 	SDHI0, SDHI1, SDHI2, SDHI3,
 | |
| 	CMT, TSIF, SIU,
 | |
| 	TMU0, TMU1, TMU2,
 | |
| 	VEU2, LCDC,
 | |
| 
 | |
| 	/* interrupt groups */
 | |
| 
 | |
| 	DMAC0123, VIOVOU, MMC, DMAC45, FLCTL, I2C, SDHI,
 | |
| };
 | |
| 
 | |
| static struct intc_vect vectors[] __initdata = {
 | |
| 	INTC_VECT(IRQ0, 0x600), INTC_VECT(IRQ1, 0x620),
 | |
| 	INTC_VECT(IRQ2, 0x640), INTC_VECT(IRQ3, 0x660),
 | |
| 	INTC_VECT(IRQ4, 0x680), INTC_VECT(IRQ5, 0x6a0),
 | |
| 	INTC_VECT(IRQ6, 0x6c0), INTC_VECT(IRQ7, 0x6e0),
 | |
| 	INTC_VECT(ICB, 0x700),
 | |
| 	INTC_VECT(DMAC0, 0x800), INTC_VECT(DMAC1, 0x820),
 | |
| 	INTC_VECT(DMAC2, 0x840), INTC_VECT(DMAC3, 0x860),
 | |
| 	INTC_VECT(VIO_CEUI, 0x880), INTC_VECT(VIO_BEUI, 0x8a0),
 | |
| 	INTC_VECT(VIO_VEUI, 0x8c0), INTC_VECT(VOU, 0x8e0),
 | |
| 	INTC_VECT(MFI, 0x900), INTC_VECT(VPU, 0x980), INTC_VECT(USB, 0xa20),
 | |
| 	INTC_VECT(MMC_MMC1I, 0xb00), INTC_VECT(MMC_MMC2I, 0xb20),
 | |
| 	INTC_VECT(MMC_MMC3I, 0xb40),
 | |
| 	INTC_VECT(DMAC4, 0xb80), INTC_VECT(DMAC5, 0xba0),
 | |
| 	INTC_VECT(DMAC_DADERR, 0xbc0),
 | |
| 	INTC_VECT(SCIF, 0xc00), INTC_VECT(SCIFA1, 0xc20),
 | |
| 	INTC_VECT(SCIFA2, 0xc40),
 | |
| 	INTC_VECT(DENC, 0xc60), INTC_VECT(MSIOF, 0xc80),
 | |
| 	INTC_VECT(FLCTL_FLSTEI, 0xd80), INTC_VECT(FLCTL_FLENDI, 0xda0),
 | |
| 	INTC_VECT(FLCTL_FLTREQ0I, 0xdc0), INTC_VECT(FLCTL_FLTREQ1I, 0xde0),
 | |
| 	INTC_VECT(I2C_ALI, 0xe00), INTC_VECT(I2C_TACKI, 0xe20),
 | |
| 	INTC_VECT(I2C_WAITI, 0xe40), INTC_VECT(I2C_DTEI, 0xe60),
 | |
| 	INTC_VECT(SDHI0, 0xe80), INTC_VECT(SDHI1, 0xea0),
 | |
| 	INTC_VECT(SDHI2, 0xec0), INTC_VECT(SDHI3, 0xee0),
 | |
| 	INTC_VECT(CMT, 0xf00), INTC_VECT(TSIF, 0xf20),
 | |
| 	INTC_VECT(SIU, 0xf80),
 | |
| 	INTC_VECT(TMU0, 0x400), INTC_VECT(TMU1, 0x420),
 | |
| 	INTC_VECT(TMU2, 0x440),
 | |
| 	INTC_VECT(VEU2, 0x560), INTC_VECT(LCDC, 0x580),
 | |
| };
 | |
| 
 | |
| static struct intc_group groups[] __initdata = {
 | |
| 	INTC_GROUP(DMAC0123, DMAC0, DMAC1, DMAC2, DMAC3),
 | |
| 	INTC_GROUP(VIOVOU, VIO_CEUI, VIO_BEUI, VIO_VEUI, VOU),
 | |
| 	INTC_GROUP(MMC, MMC_MMC1I, MMC_MMC2I, MMC_MMC3I),
 | |
| 	INTC_GROUP(DMAC45, DMAC4, DMAC5, DMAC_DADERR),
 | |
| 	INTC_GROUP(FLCTL, FLCTL_FLSTEI, FLCTL_FLENDI,
 | |
| 		   FLCTL_FLTREQ0I, FLCTL_FLTREQ1I),
 | |
| 	INTC_GROUP(I2C, I2C_ALI, I2C_TACKI, I2C_WAITI, I2C_DTEI),
 | |
| 	INTC_GROUP(SDHI, SDHI0, SDHI1, SDHI2, SDHI3),
 | |
| };
 | |
| 
 | |
| static struct intc_mask_reg mask_registers[] __initdata = {
 | |
| 	{ 0xa4080080, 0xa40800c0, 8, /* IMR0 / IMCR0 */
 | |
| 	  { } },
 | |
| 	{ 0xa4080084, 0xa40800c4, 8, /* IMR1 / IMCR1 */
 | |
| 	  { VOU, VIO_VEUI, VIO_BEUI, VIO_CEUI, DMAC3, DMAC2, DMAC1, DMAC0 } },
 | |
| 	{ 0xa4080088, 0xa40800c8, 8, /* IMR2 / IMCR2 */
 | |
| 	  { 0, 0, 0, VPU, 0, 0, 0, MFI } },
 | |
| 	{ 0xa408008c, 0xa40800cc, 8, /* IMR3 / IMCR3 */
 | |
| 	  { 0, 0, 0, ICB } },
 | |
| 	{ 0xa4080090, 0xa40800d0, 8, /* IMR4 / IMCR4 */
 | |
| 	  { 0, TMU2, TMU1, TMU0, VEU2, 0, 0, LCDC } },
 | |
| 	{ 0xa4080094, 0xa40800d4, 8, /* IMR5 / IMCR5 */
 | |
| 	  { 0, DMAC_DADERR, DMAC5, DMAC4, DENC, SCIFA2, SCIFA1, SCIF } },
 | |
| 	{ 0xa4080098, 0xa40800d8, 8, /* IMR6 / IMCR6 */
 | |
| 	  { 0, 0, 0, 0, 0, 0, 0, MSIOF } },
 | |
| 	{ 0xa408009c, 0xa40800dc, 8, /* IMR7 / IMCR7 */
 | |
| 	  { I2C_DTEI, I2C_WAITI, I2C_TACKI, I2C_ALI,
 | |
| 	    FLCTL_FLTREQ1I, FLCTL_FLTREQ0I, FLCTL_FLENDI, FLCTL_FLSTEI } },
 | |
| 	{ 0xa40800a0, 0xa40800e0, 8, /* IMR8 / IMCR8 */
 | |
| 	  { SDHI3, SDHI2, SDHI1, SDHI0, 0, 0, 0, SIU } },
 | |
| 	{ 0xa40800a4, 0xa40800e4, 8, /* IMR9 / IMCR9 */
 | |
| 	  { 0, 0, 0, CMT, 0, USB, } },
 | |
| 	{ 0xa40800a8, 0xa40800e8, 8, /* IMR10 / IMCR10 */
 | |
| 	  { 0, MMC_MMC3I, MMC_MMC2I, MMC_MMC1I } },
 | |
| 	{ 0xa40800ac, 0xa40800ec, 8, /* IMR11 / IMCR11 */
 | |
| 	  { 0, 0, 0, 0, 0, 0, 0, TSIF } },
 | |
| 	{ 0xa4140044, 0xa4140064, 8, /* INTMSK00 / INTMSKCLR00 */
 | |
| 	  { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
 | |
| };
 | |
| 
 | |
| static struct intc_prio_reg prio_registers[] __initdata = {
 | |
| 	{ 0xa4080000, 0, 16, 4, /* IPRA */ { TMU0, TMU1, TMU2 } },
 | |
| 	{ 0xa4080004, 0, 16, 4, /* IPRB */ { VEU2, LCDC, ICB } },
 | |
| 	{ 0xa4080008, 0, 16, 4, /* IPRC */ { } },
 | |
| 	{ 0xa408000c, 0, 16, 4, /* IPRD */ { } },
 | |
| 	{ 0xa4080010, 0, 16, 4, /* IPRE */ { DMAC0123, VIOVOU, MFI, VPU } },
 | |
| 	{ 0xa4080014, 0, 16, 4, /* IPRF */ { 0, DMAC45, USB, CMT } },
 | |
| 	{ 0xa4080018, 0, 16, 4, /* IPRG */ { SCIF, SCIFA1, SCIFA2, DENC } },
 | |
| 	{ 0xa408001c, 0, 16, 4, /* IPRH */ { MSIOF, 0, FLCTL, I2C } },
 | |
| 	{ 0xa4080020, 0, 16, 4, /* IPRI */ { 0, 0, TSIF, } },
 | |
| 	{ 0xa4080024, 0, 16, 4, /* IPRJ */ { 0, 0, SIU } },
 | |
| 	{ 0xa4080028, 0, 16, 4, /* IPRK */ { 0, MMC, 0, SDHI } },
 | |
| 	{ 0xa408002c, 0, 16, 4, /* IPRL */ { } },
 | |
| 	{ 0xa4140010, 0, 32, 4, /* INTPRI00 */
 | |
| 	  { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
 | |
| };
 | |
| 
 | |
| static struct intc_sense_reg sense_registers[] __initdata = {
 | |
| 	{ 0xa414001c, 16, 2, /* ICR1 */
 | |
| 	  { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
 | |
| };
 | |
| 
 | |
| static struct intc_mask_reg ack_registers[] __initdata = {
 | |
| 	{ 0xa4140024, 0, 8, /* INTREQ00 */
 | |
| 	  { IRQ0, IRQ1, IRQ2, IRQ3, IRQ4, IRQ5, IRQ6, IRQ7 } },
 | |
| };
 | |
| 
 | |
| static DECLARE_INTC_DESC_ACK(intc_desc, "sh7366", vectors, groups,
 | |
| 			     mask_registers, prio_registers, sense_registers,
 | |
| 			     ack_registers);
 | |
| 
 | |
| void __init plat_irq_setup(void)
 | |
| {
 | |
| 	register_intc_controller(&intc_desc);
 | |
| }
 | |
| 
 | |
| void __init plat_mem_setup(void)
 | |
| {
 | |
| 	/* TODO: Register Node 1 */
 | |
| }
 |