mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 03:13:59 +00:00 
			
		
		
		
	 2dcf78c0ee
			
		
	
	
		2dcf78c0ee
		
	
	
	
	
		
			
			There are some more conflicts than detected by git, namely support for the newly added cpuimx machines needed to be converted to dynamic device registration. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Conflicts: arch/arm/mach-imx/Makefile arch/arm/mach-imx/devices.c arch/arm/mach-imx/devices.h arch/arm/mach-imx/eukrea_mbimx27-baseboard.c arch/arm/mach-mx2/Kconfig arch/arm/mach-mx25/Makefile arch/arm/mach-mx25/devices.c arch/arm/plat-mxc/include/mach/mx25.h arch/arm/plat-mxc/include/mach/mxc_nand.h
		
			
				
	
	
		
			367 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			367 lines
		
	
	
		
			7.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright 2009 Sascha Hauer, <kernel@pengutronix.de>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU General Public License
 | |
|  * as published by the Free Software Foundation; either version 2
 | |
|  * of the License, or (at your option) any later version.
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU General Public License
 | |
|  * along with this program; if not, write to the Free Software
 | |
|  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
 | |
|  * Boston, MA  02110-1301, USA.
 | |
|  */
 | |
| 
 | |
| #include <linux/platform_device.h>
 | |
| #include <linux/dma-mapping.h>
 | |
| #include <linux/gpio.h>
 | |
| #include <mach/mx25.h>
 | |
| #include <mach/irqs.h>
 | |
| 
 | |
| static u64 otg_dmamask = DMA_BIT_MASK(32);
 | |
| 
 | |
| static struct resource mxc_otg_resources[] = {
 | |
| 	{
 | |
| 		.start = MX25_OTG_BASE_ADDR,
 | |
| 		.end = MX25_OTG_BASE_ADDR + 0x1ff,
 | |
| 		.flags = IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start = 37,
 | |
| 		.end = 37,
 | |
| 		.flags = IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_otg = {
 | |
| 	.name = "mxc-ehci",
 | |
| 	.id = 0,
 | |
| 	.dev = {
 | |
| 		.coherent_dma_mask = 0xffffffff,
 | |
| 		.dma_mask = &otg_dmamask,
 | |
| 	},
 | |
| 	.resource = mxc_otg_resources,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_otg_resources),
 | |
| };
 | |
| 
 | |
| /* OTG gadget device */
 | |
| struct platform_device otg_udc_device = {
 | |
| 	.name = "fsl-usb2-udc",
 | |
| 	.id   = -1,
 | |
| 	.dev  = {
 | |
| 		.dma_mask          = &otg_dmamask,
 | |
| 		.coherent_dma_mask = 0xffffffff,
 | |
| 	},
 | |
| 	.resource = mxc_otg_resources,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_otg_resources),
 | |
| };
 | |
| 
 | |
| static u64 usbh2_dmamask = DMA_BIT_MASK(32);
 | |
| 
 | |
| static struct resource mxc_usbh2_resources[] = {
 | |
| 	{
 | |
| 		.start = MX25_OTG_BASE_ADDR + 0x400,
 | |
| 		.end = MX25_OTG_BASE_ADDR + 0x5ff,
 | |
| 		.flags = IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start = 35,
 | |
| 		.end = 35,
 | |
| 		.flags = IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_usbh2 = {
 | |
| 	.name = "mxc-ehci",
 | |
| 	.id = 1,
 | |
| 	.dev = {
 | |
| 		.coherent_dma_mask = 0xffffffff,
 | |
| 		.dma_mask = &usbh2_dmamask,
 | |
| 	},
 | |
| 	.resource = mxc_usbh2_resources,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_usbh2_resources),
 | |
| };
 | |
| 
 | |
| static struct resource mxc_pwm_resources0[] = {
 | |
| 	{
 | |
| 		.start	= 0x53fe0000,
 | |
| 		.end	= 0x53fe3fff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start   = 26,
 | |
| 		.end     = 26,
 | |
| 		.flags   = IORESOURCE_IRQ,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_pwm_device0 = {
 | |
| 	.name = "mxc_pwm",
 | |
| 	.id = 0,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_pwm_resources0),
 | |
| 	.resource = mxc_pwm_resources0,
 | |
| };
 | |
| 
 | |
| static struct resource mxc_pwm_resources1[] = {
 | |
| 	{
 | |
| 		.start	= 0x53fa0000,
 | |
| 		.end	= 0x53fa3fff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start   = 36,
 | |
| 		.end     = 36,
 | |
| 		.flags   = IORESOURCE_IRQ,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_pwm_device1 = {
 | |
| 	.name = "mxc_pwm",
 | |
| 	.id = 1,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_pwm_resources1),
 | |
| 	.resource = mxc_pwm_resources1,
 | |
| };
 | |
| 
 | |
| static struct resource mxc_pwm_resources2[] = {
 | |
| 	{
 | |
| 		.start	= 0x53fa8000,
 | |
| 		.end	= 0x53fabfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start   = 41,
 | |
| 		.end     = 41,
 | |
| 		.flags   = IORESOURCE_IRQ,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_pwm_device2 = {
 | |
| 	.name = "mxc_pwm",
 | |
| 	.id = 2,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_pwm_resources2),
 | |
| 	.resource = mxc_pwm_resources2,
 | |
| };
 | |
| 
 | |
| static struct resource mxc_keypad_resources[] = {
 | |
| 	{
 | |
| 		.start	= 0x43fa8000,
 | |
| 		.end	= 0x43fabfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start   = 24,
 | |
| 		.end     = 24,
 | |
| 		.flags   = IORESOURCE_IRQ,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_keypad_device = {
 | |
| 	.name = "mxc-keypad",
 | |
| 	.id = -1,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_keypad_resources),
 | |
| 	.resource = mxc_keypad_resources,
 | |
| };
 | |
| 
 | |
| static struct resource mxc_pwm_resources3[] = {
 | |
| 	{
 | |
| 		.start	= 0x53fc8000,
 | |
| 		.end	= 0x53fcbfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start   = 42,
 | |
| 		.end     = 42,
 | |
| 		.flags   = IORESOURCE_IRQ,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_pwm_device3 = {
 | |
| 	.name = "mxc_pwm",
 | |
| 	.id = 3,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_pwm_resources3),
 | |
| 	.resource = mxc_pwm_resources3,
 | |
| };
 | |
| 
 | |
| static struct mxc_gpio_port imx_gpio_ports[] = {
 | |
| 	{
 | |
| 		.chip.label = "gpio-0",
 | |
| 		.base = (void __iomem *)MX25_GPIO1_BASE_ADDR_VIRT,
 | |
| 		.irq = 52,
 | |
| 		.virtual_irq_start = MXC_GPIO_IRQ_START,
 | |
| 	}, {
 | |
| 		.chip.label = "gpio-1",
 | |
| 		.base = (void __iomem *)MX25_GPIO2_BASE_ADDR_VIRT,
 | |
| 		.irq = 51,
 | |
| 		.virtual_irq_start = MXC_GPIO_IRQ_START + 32,
 | |
| 	}, {
 | |
| 		.chip.label = "gpio-2",
 | |
| 		.base = (void __iomem *)MX25_GPIO3_BASE_ADDR_VIRT,
 | |
| 		.irq = 16,
 | |
| 		.virtual_irq_start = MXC_GPIO_IRQ_START + 64,
 | |
| 	}, {
 | |
| 		.chip.label = "gpio-3",
 | |
| 		.base = (void __iomem *)MX25_GPIO4_BASE_ADDR_VIRT,
 | |
| 		.irq = 23,
 | |
| 		.virtual_irq_start = MXC_GPIO_IRQ_START + 96,
 | |
| 	}
 | |
| };
 | |
| 
 | |
| int __init imx25_register_gpios(void)
 | |
| {
 | |
| 	return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports));
 | |
| }
 | |
| 
 | |
| static struct resource mx25_fec_resources[] = {
 | |
| 	{
 | |
| 		.start	= MX25_FEC_BASE_ADDR,
 | |
| 		.end	= MX25_FEC_BASE_ADDR + 0xfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	{
 | |
| 		.start	= MX25_INT_FEC,
 | |
| 		.end	= MX25_INT_FEC,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mx25_fec_device = {
 | |
| 	.name	= "fec",
 | |
| 	.id	= 0,
 | |
| 	.num_resources	= ARRAY_SIZE(mx25_fec_resources),
 | |
| 	.resource	= mx25_fec_resources,
 | |
| };
 | |
| 
 | |
| static struct resource mx25_rtc_resources[] = {
 | |
| 	{
 | |
| 		.start	= MX25_DRYICE_BASE_ADDR,
 | |
| 		.end	= MX25_DRYICE_BASE_ADDR + 0x40,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	{
 | |
| 		.start	= MX25_INT_DRYICE,
 | |
| 		.flags	= IORESOURCE_IRQ
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mx25_rtc_device = {
 | |
| 	.name	= "imxdi_rtc",
 | |
| 	.id	= 0,
 | |
| 	.num_resources	= ARRAY_SIZE(mx25_rtc_resources),
 | |
| 	.resource	= mx25_rtc_resources,
 | |
| };
 | |
| 
 | |
| static struct resource mx25_fb_resources[] = {
 | |
| 	{
 | |
| 		.start	= MX25_LCDC_BASE_ADDR,
 | |
| 		.end	= MX25_LCDC_BASE_ADDR + 0xfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	{
 | |
| 		.start	= MX25_INT_LCDC,
 | |
| 		.end	= MX25_INT_LCDC,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mx25_fb_device = {
 | |
| 	.name		= "imx-fb",
 | |
| 	.id		= 0,
 | |
| 	.resource	= mx25_fb_resources,
 | |
| 	.num_resources	= ARRAY_SIZE(mx25_fb_resources),
 | |
| 	.dev		= {
 | |
| 		.coherent_dma_mask = 0xFFFFFFFF,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct resource mxc_wdt_resources[] = {
 | |
| 	{
 | |
| 		.start = MX25_WDOG_BASE_ADDR,
 | |
| 		.end = MX25_WDOG_BASE_ADDR + SZ_16K - 1,
 | |
| 		.flags = IORESOURCE_MEM,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mxc_wdt = {
 | |
| 	.name = "imx2-wdt",
 | |
| 	.id = 0,
 | |
| 	.num_resources = ARRAY_SIZE(mxc_wdt_resources),
 | |
| 	.resource = mxc_wdt_resources,
 | |
| };
 | |
| 
 | |
| static struct resource mx25_kpp_resources[] = {
 | |
| 	{
 | |
| 		.start	= MX25_KPP_BASE_ADDR,
 | |
| 		.end	= MX25_KPP_BASE_ADDR + 0xf,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	{
 | |
| 		.start	= MX25_INT_KPP,
 | |
| 		.end	= MX25_INT_KPP,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mx25_kpp_device = {
 | |
| 	.name	= "imx-keypad",
 | |
| 	.id	= -1,
 | |
| 	.num_resources	= ARRAY_SIZE(mx25_kpp_resources),
 | |
| 	.resource	= mx25_kpp_resources,
 | |
| };
 | |
| 
 | |
| static struct resource imx_ssi_resources0[] = {
 | |
| 	{
 | |
| 		.start	= MX25_SSI1_BASE_ADDR,
 | |
| 		.end	= MX25_SSI1_BASE_ADDR + 0x3fff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	}, {
 | |
| 		.start	= MX25_INT_SSI1,
 | |
| 		.end	= MX25_INT_SSI1,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| static struct resource imx_ssi_resources1[] = {
 | |
| 	{
 | |
| 		.start	= MX25_SSI2_BASE_ADDR,
 | |
| 		.end	= MX25_SSI2_BASE_ADDR + 0x3fff,
 | |
| 		.flags	= IORESOURCE_MEM
 | |
| 	}, {
 | |
| 		.start	= MX25_INT_SSI2,
 | |
| 		.end	= MX25_INT_SSI2,
 | |
| 		.flags	= IORESOURCE_IRQ,
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device imx_ssi_device0 = {
 | |
| 	.name = "imx-ssi",
 | |
| 	.id = 0,
 | |
| 	.num_resources = ARRAY_SIZE(imx_ssi_resources0),
 | |
| 	.resource = imx_ssi_resources0,
 | |
| };
 | |
| 
 | |
| struct platform_device imx_ssi_device1 = {
 | |
| 	.name = "imx-ssi",
 | |
| 	.id = 1,
 | |
| 	.num_resources = ARRAY_SIZE(imx_ssi_resources1),
 | |
| 	.resource = imx_ssi_resources1,
 | |
| };
 | |
| 
 | |
| static struct resource mx25_csi_resources[] = {
 | |
| 	{
 | |
| 		.start	= MX25_CSI_BASE_ADDR,
 | |
| 		.end	= MX25_CSI_BASE_ADDR + 0xfff,
 | |
| 		.flags	= IORESOURCE_MEM,
 | |
| 	},
 | |
| 	{
 | |
| 		.start	= MX25_INT_CSI,
 | |
| 		.flags	= IORESOURCE_IRQ
 | |
| 	},
 | |
| };
 | |
| 
 | |
| struct platform_device mx25_csi_device = {
 | |
| 	.name	= "mx2-camera",
 | |
| 	.id	= 0,
 | |
| 	.num_resources	= ARRAY_SIZE(mx25_csi_resources),
 | |
| 	.resource	= mx25_csi_resources,
 | |
| 	.dev		= {
 | |
| 		.coherent_dma_mask = 0xffffffff,
 | |
| 	},
 | |
| };
 |