2008-07-05 08:02:57 +00:00
|
|
|
/*
|
|
|
|
* Author: MontaVista Software, Inc.
|
|
|
|
* <source@mvista.com>
|
|
|
|
*
|
|
|
|
* Based on the OMAP devices.c
|
|
|
|
*
|
|
|
|
* 2005 (c) MontaVista Software, Inc. This file is licensed under the
|
|
|
|
* terms of the GNU General Public License version 2. This program is
|
|
|
|
* licensed "as is" without any warranty of any kind, whether express
|
|
|
|
* or implied.
|
|
|
|
*
|
|
|
|
* Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
|
|
* Copyright 2008 Juergen Beisert, kernel@pengutronix.de
|
2010-06-14 13:56:58 +00:00
|
|
|
* Copyright 2008 Sascha Hauer, kernel@pengutronix.de
|
|
|
|
* Copyright (c) 2008 Paulius Zaleckas <paulius.zaleckas@teltonika.lt>
|
|
|
|
* Copyright (c) 2008 Darius Augulis <darius.augulis@teltonika.lt>
|
2008-07-05 08:02:57 +00:00
|
|
|
*
|
|
|
|
* 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/module.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/gpio.h>
|
2009-11-21 11:14:54 +00:00
|
|
|
#include <linux/dma-mapping.h>
|
2010-06-10 15:34:59 +00:00
|
|
|
#include <linux/serial.h>
|
2008-07-05 08:02:57 +00:00
|
|
|
|
[ARM] fix AT91, davinci, h720x, ks8695, msm, mx2, mx3, netx, omap1, omap2, pxa, s3c
arch/arm/mach-at91/at91cap9.c:337: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-at91/at91rm9200.c:301: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9260.c:351: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9261.c:287: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9263.c:312: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-at91/at91sam9rl.c:304: error: 'NR_AIC_IRQS' undeclared here (not in a function)
arch/arm/mach-h720x/h7202-eval.c:38: error: implicit declaration of function 'IRQ_CHAINED_GPIOB'
arch/arm/mach-ks8695/devices.c:46: error: 'KS8695_IRQ_WAN_RX_STATUS' undeclared here (not in a function)
arch/arm/mach-msm/devices.c:28: error: 'INT_UART1' undeclared here (not in a function)
arch/arm/mach-mx2/devices.c:233: error: 'MXC_GPIO_IRQ_START' undeclared here (not in a function)
arch/arm/mach-mx3/devices.c:128: error: 'MXC_GPIO_IRQ_START' undeclared here (not in a function)
arch/arm/mach-omap1/mcbsp.c:140: error: 'INT_730_McBSP1RX' undeclared here (not in a function)
arch/arm/mach-omap1/mcbsp.c:165: error: 'INT_McBSP1RX' undeclared here (not in a function)
arch/arm/mach-omap1/mcbsp.c:200: error: 'INT_McBSP1RX' undeclared here (not in a function)
arch/arm/mach-omap2/board-apollon.c:286: error: implicit declaration of function 'omap_set_gpio_direction'
arch/arm/mach-omap2/mcbsp.c:154: error: 'INT_24XX_MCBSP1_IRQ_RX' undeclared here (not in a function)
arch/arm/mach-omap2/mcbsp.c:181: error: 'INT_24XX_MCBSP1_IRQ_RX' undeclared here (not in a function)
arch/arm/mach-pxa/e350.c:36: error: 'IRQ_BOARD_START' undeclared here (not in a function)
arch/arm/plat-s3c/dev-i2c0.c:32: error: 'IRQ_IIC' undeclared here (not in a function)
...
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-08 10:01:47 +00:00
|
|
|
#include <mach/irqs.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.h>
|
2009-01-26 15:34:51 +00:00
|
|
|
#include <mach/common.h>
|
2008-12-19 13:32:07 +00:00
|
|
|
#include <mach/mmc.h>
|
2009-01-26 15:34:51 +00:00
|
|
|
|
|
|
|
#include "devices.h"
|
2008-07-05 08:02:57 +00:00
|
|
|
|
2010-06-14 13:56:58 +00:00
|
|
|
#if defined(CONFIG_ARCH_MX1)
|
|
|
|
static struct resource imx1_camera_resources[] = {
|
|
|
|
{
|
|
|
|
.start = 0x00224000,
|
|
|
|
.end = 0x00224010,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX1_CSI_INT,
|
|
|
|
.end = MX1_CSI_INT,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static u64 imx1_camera_dmamask = DMA_BIT_MASK(32);
|
|
|
|
|
|
|
|
struct platform_device imx1_camera_device = {
|
|
|
|
.name = "mx1-camera",
|
|
|
|
.id = 0, /* This is used to put cameras on this interface */
|
|
|
|
.dev = {
|
|
|
|
.dma_mask = &imx1_camera_dmamask,
|
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
|
},
|
|
|
|
.resource = imx1_camera_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(imx1_camera_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource imx_rtc_resources[] = {
|
|
|
|
{
|
|
|
|
.start = 0x00204000,
|
|
|
|
.end = 0x00204024,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX1_RTC_INT,
|
|
|
|
.end = MX1_RTC_INT,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_RTC_SAMINT,
|
|
|
|
.end = MX1_RTC_SAMINT,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device imx_rtc_device = {
|
|
|
|
.name = "rtc-imx",
|
|
|
|
.id = 0,
|
|
|
|
.resource = imx_rtc_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(imx_rtc_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource imx_wdt_resources[] = {
|
|
|
|
{
|
|
|
|
.start = 0x00201000,
|
|
|
|
.end = 0x00201008,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX1_WDT_INT,
|
|
|
|
.end = MX1_WDT_INT,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device imx_wdt_device = {
|
|
|
|
.name = "imx-wdt",
|
|
|
|
.id = 0,
|
|
|
|
.resource = imx_wdt_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(imx_wdt_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource imx_usb_resources[] = {
|
|
|
|
{
|
|
|
|
.start = 0x00212000,
|
|
|
|
.end = 0x00212148,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT0,
|
|
|
|
.end = MX1_USBD_INT0,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT1,
|
|
|
|
.end = MX1_USBD_INT1,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT2,
|
|
|
|
.end = MX1_USBD_INT2,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT3,
|
|
|
|
.end = MX1_USBD_INT3,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT4,
|
|
|
|
.end = MX1_USBD_INT4,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT5,
|
|
|
|
.end = MX1_USBD_INT5,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
|
|
|
.start = MX1_USBD_INT6,
|
|
|
|
.end = MX1_USBD_INT6,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device imx_usb_device = {
|
|
|
|
.name = "imx_udc",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(imx_usb_resources),
|
|
|
|
.resource = imx_usb_resources,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* GPIO port description */
|
|
|
|
static struct mxc_gpio_port imx_gpio_ports[] = {
|
|
|
|
{
|
|
|
|
.chip.label = "gpio-0",
|
|
|
|
.base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR),
|
|
|
|
.irq = MX1_GPIO_INT_PORTA,
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START,
|
|
|
|
}, {
|
|
|
|
.chip.label = "gpio-1",
|
|
|
|
.base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x100),
|
|
|
|
.irq = MX1_GPIO_INT_PORTB,
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START + 32,
|
|
|
|
}, {
|
|
|
|
.chip.label = "gpio-2",
|
|
|
|
.base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x200),
|
|
|
|
.irq = MX1_GPIO_INT_PORTC,
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START + 64,
|
|
|
|
}, {
|
|
|
|
.chip.label = "gpio-3",
|
|
|
|
.base = (void __iomem *)MX1_IO_ADDRESS(MX1_GPIO_BASE_ADDR + 0x300),
|
|
|
|
.irq = MX1_GPIO_INT_PORTD,
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START + 96,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int __init imx1_register_gpios(void)
|
|
|
|
{
|
|
|
|
return mxc_gpio_init(imx_gpio_ports, ARRAY_SIZE(imx_gpio_ports));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
|
2010-06-30 10:16:24 +00:00
|
|
|
|
2010-06-21 05:15:59 +00:00
|
|
|
#ifdef CONFIG_MACH_MX27
|
|
|
|
static struct resource mx27_camera_resources[] = {
|
|
|
|
{
|
|
|
|
.start = MX27_CSI_BASE_ADDR,
|
|
|
|
.end = MX27_CSI_BASE_ADDR + 0x1f,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX27_EMMA_PRP_BASE_ADDR,
|
|
|
|
.end = MX27_EMMA_PRP_BASE_ADDR + 0x1f,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
|
|
|
.start = MX27_INT_CSI,
|
|
|
|
.end = MX27_INT_CSI,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},{
|
|
|
|
.start = MX27_INT_EMMAPRP,
|
|
|
|
.end = MX27_INT_EMMAPRP,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
struct platform_device mx27_camera_device = {
|
|
|
|
.name = "mx2-camera",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mx27_camera_resources),
|
|
|
|
.resource = mx27_camera_resources,
|
|
|
|
.dev = {
|
|
|
|
.coherent_dma_mask = 0xffffffff,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2008-07-05 08:02:57 +00:00
|
|
|
/*
|
|
|
|
* General Purpose Timer
|
2009-06-23 10:04:36 +00:00
|
|
|
* - i.MX21: 3 timers
|
|
|
|
* - i.MX27: 6 timers
|
2008-07-05 08:02:57 +00:00
|
|
|
*/
|
2010-02-04 13:11:02 +00:00
|
|
|
#define DEFINE_IMX_GPT_DEVICE(n, baseaddr, irq) \
|
|
|
|
static struct resource timer ## n ##_resources[] = { \
|
|
|
|
{ \
|
|
|
|
.start = baseaddr, \
|
|
|
|
.end = baseaddr + SZ_4K - 1, \
|
|
|
|
.flags = IORESOURCE_MEM, \
|
|
|
|
}, { \
|
|
|
|
.start = irq, \
|
|
|
|
.end = irq, \
|
|
|
|
.flags = IORESOURCE_IRQ, \
|
|
|
|
} \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
struct platform_device mxc_gpt ## n = { \
|
|
|
|
.name = "imx_gpt", \
|
|
|
|
.id = n, \
|
|
|
|
.num_resources = ARRAY_SIZE(timer ## n ## _resources), \
|
|
|
|
.resource = timer ## n ## _resources, \
|
2008-07-05 08:02:57 +00:00
|
|
|
}
|
|
|
|
|
2010-02-04 13:11:02 +00:00
|
|
|
/* We use gpt1 as system timer, so do not add a device for this one */
|
|
|
|
DEFINE_IMX_GPT_DEVICE(1, MX2x_GPT2_BASE_ADDR, MX2x_INT_GPT2);
|
|
|
|
DEFINE_IMX_GPT_DEVICE(2, MX2x_GPT3_BASE_ADDR, MX2x_INT_GPT3);
|
2008-07-05 08:02:57 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_MACH_MX27
|
2010-02-04 13:11:02 +00:00
|
|
|
DEFINE_IMX_GPT_DEVICE(3, MX27_GPT4_BASE_ADDR, MX27_INT_GPT4);
|
|
|
|
DEFINE_IMX_GPT_DEVICE(4, MX27_GPT5_BASE_ADDR, MX27_INT_GPT5);
|
|
|
|
DEFINE_IMX_GPT_DEVICE(5, MX27_GPT6_BASE_ADDR, MX27_INT_GPT6);
|
2008-07-05 08:02:57 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-29 08:03:18 +00:00
|
|
|
/* Watchdog: i.MX1 has seperate driver, i.MX21 and i.MX27 are equal */
|
2008-07-05 08:02:57 +00:00
|
|
|
static struct resource mxc_wdt_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_WDOG_BASE_ADDR,
|
|
|
|
.end = MX2x_WDOG_BASE_ADDR + SZ_4K - 1,
|
|
|
|
.flags = IORESOURCE_MEM,
|
2008-07-05 08:02:57 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_wdt = {
|
2010-04-29 08:03:18 +00:00
|
|
|
.name = "imx2-wdt",
|
2008-07-05 08:02:57 +00:00
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_wdt_resources),
|
|
|
|
.resource = mxc_wdt_resources,
|
|
|
|
};
|
|
|
|
|
2008-12-01 22:15:38 +00:00
|
|
|
static struct resource mxc_w1_master_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_OWIRE_BASE_ADDR,
|
|
|
|
.end = MX2x_OWIRE_BASE_ADDR + SZ_4K - 1,
|
2008-12-01 22:15:38 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_w1_master_device = {
|
|
|
|
.name = "mxc_w1",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_w1_master_resources),
|
|
|
|
.resource = mxc_w1_master_resources,
|
|
|
|
};
|
|
|
|
|
2009-01-26 15:34:56 +00:00
|
|
|
/*
|
|
|
|
* lcdc:
|
|
|
|
* - i.MX1: the basic controller
|
|
|
|
* - i.MX21: to be checked
|
|
|
|
* - i.MX27: like i.MX1, with slightly variations
|
|
|
|
*/
|
|
|
|
static struct resource mxc_fb[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_LCDC_BASE_ADDR,
|
|
|
|
.end = MX2x_LCDC_BASE_ADDR + SZ_4K - 1,
|
2009-01-26 15:34:56 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
2009-06-23 10:04:36 +00:00
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_INT_LCDC,
|
|
|
|
.end = MX2x_INT_LCDC,
|
2009-01-26 15:34:56 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* mxc lcd driver */
|
|
|
|
struct platform_device mxc_fb_device = {
|
|
|
|
.name = "imx-fb",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_fb),
|
|
|
|
.resource = mxc_fb,
|
|
|
|
.dev = {
|
2009-11-21 11:14:54 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-01-26 15:34:56 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2009-01-26 16:26:02 +00:00
|
|
|
#ifdef CONFIG_MACH_MX27
|
|
|
|
static struct resource mxc_fec_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_FEC_BASE_ADDR,
|
|
|
|
.end = MX27_FEC_BASE_ADDR + SZ_4K - 1,
|
|
|
|
.flags = IORESOURCE_MEM,
|
2009-01-26 16:26:02 +00:00
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_INT_FEC,
|
|
|
|
.end = MX27_INT_FEC,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
2009-01-26 16:26:02 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_fec_device = {
|
|
|
|
.name = "fec",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_fec_resources),
|
|
|
|
.resource = mxc_fec_resources,
|
|
|
|
};
|
2009-01-26 15:34:56 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-16 14:17:46 +00:00
|
|
|
static struct resource mxc_pwm_resources[] = {
|
2009-06-23 10:04:36 +00:00
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_PWM_BASE_ADDR,
|
|
|
|
.end = MX2x_PWM_BASE_ADDR + SZ_4K - 1,
|
|
|
|
.flags = IORESOURCE_MEM,
|
2009-06-23 10:04:36 +00:00
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX2x_INT_PWM,
|
|
|
|
.end = MX2x_INT_PWM,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
2009-01-16 14:17:46 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_pwm_device = {
|
|
|
|
.name = "mxc_pwm",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_pwm_resources),
|
2009-06-23 10:04:36 +00:00
|
|
|
.resource = mxc_pwm_resources,
|
2009-01-16 14:17:46 +00:00
|
|
|
};
|
|
|
|
|
2010-02-05 09:46:56 +00:00
|
|
|
#define DEFINE_MXC_MMC_DEVICE(n, baseaddr, irq, dmareq) \
|
|
|
|
static struct resource mxc_sdhc_resources ## n[] = { \
|
|
|
|
{ \
|
|
|
|
.start = baseaddr, \
|
|
|
|
.end = baseaddr + SZ_4K - 1, \
|
|
|
|
.flags = IORESOURCE_MEM, \
|
|
|
|
}, { \
|
|
|
|
.start = irq, \
|
|
|
|
.end = irq, \
|
|
|
|
.flags = IORESOURCE_IRQ, \
|
|
|
|
}, { \
|
|
|
|
.start = dmareq, \
|
|
|
|
.end = dmareq, \
|
|
|
|
.flags = IORESOURCE_DMA, \
|
|
|
|
}, \
|
|
|
|
}; \
|
|
|
|
\
|
2010-03-08 20:21:04 +00:00
|
|
|
static u64 mxc_sdhc ## n ## _dmamask = DMA_BIT_MASK(32); \
|
2010-02-05 09:46:56 +00:00
|
|
|
\
|
|
|
|
struct platform_device mxc_sdhc_device ## n = { \
|
|
|
|
.name = "mxc-mmc", \
|
|
|
|
.id = n, \
|
|
|
|
.dev = { \
|
|
|
|
.dma_mask = &mxc_sdhc ## n ## _dmamask, \
|
2010-03-08 20:21:04 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32), \
|
2010-02-05 09:46:56 +00:00
|
|
|
}, \
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_sdhc_resources ## n), \
|
|
|
|
.resource = mxc_sdhc_resources ## n, \
|
|
|
|
}
|
2008-12-19 13:32:07 +00:00
|
|
|
|
2010-02-05 09:46:56 +00:00
|
|
|
DEFINE_MXC_MMC_DEVICE(0, MX2x_SDHC1_BASE_ADDR, MX2x_INT_SDHC1, MX2x_DMA_REQ_SDHC1);
|
|
|
|
DEFINE_MXC_MMC_DEVICE(1, MX2x_SDHC2_BASE_ADDR, MX2x_INT_SDHC2, MX2x_DMA_REQ_SDHC2);
|
2008-12-19 13:32:07 +00:00
|
|
|
|
2009-08-13 08:02:30 +00:00
|
|
|
#ifdef CONFIG_MACH_MX27
|
2009-07-15 13:26:21 +00:00
|
|
|
static struct resource otg_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_USBOTG_BASE_ADDR,
|
|
|
|
.end = MX27_USBOTG_BASE_ADDR + 0x1ff,
|
|
|
|
.flags = IORESOURCE_MEM,
|
2009-07-15 13:26:21 +00:00
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_INT_USB3,
|
|
|
|
.end = MX27_INT_USB3,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
2009-07-15 13:26:21 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2009-11-21 11:14:54 +00:00
|
|
|
static u64 otg_dmamask = DMA_BIT_MASK(32);
|
2009-07-15 13:26:21 +00:00
|
|
|
|
|
|
|
/* OTG gadget device */
|
|
|
|
struct platform_device mxc_otg_udc_device = {
|
|
|
|
.name = "fsl-usb2-udc",
|
|
|
|
.id = -1,
|
|
|
|
.dev = {
|
|
|
|
.dma_mask = &otg_dmamask,
|
2009-11-21 11:14:54 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-07-15 13:26:21 +00:00
|
|
|
},
|
|
|
|
.resource = otg_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(otg_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
/* OTG host */
|
|
|
|
struct platform_device mxc_otg_host = {
|
|
|
|
.name = "mxc-ehci",
|
|
|
|
.id = 0,
|
|
|
|
.dev = {
|
2009-11-21 11:14:54 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-07-15 13:26:21 +00:00
|
|
|
.dma_mask = &otg_dmamask,
|
|
|
|
},
|
|
|
|
.resource = otg_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(otg_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
/* USB host 1 */
|
|
|
|
|
2009-11-21 11:14:54 +00:00
|
|
|
static u64 usbh1_dmamask = DMA_BIT_MASK(32);
|
2009-07-15 13:26:21 +00:00
|
|
|
|
|
|
|
static struct resource mxc_usbh1_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_USBOTG_BASE_ADDR + 0x200,
|
|
|
|
.end = MX27_USBOTG_BASE_ADDR + 0x3ff,
|
2009-07-15 13:26:21 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_INT_USB1,
|
|
|
|
.end = MX27_INT_USB1,
|
2009-07-15 13:26:21 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_usbh1 = {
|
|
|
|
.name = "mxc-ehci",
|
|
|
|
.id = 1,
|
|
|
|
.dev = {
|
2009-11-21 11:14:54 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-07-15 13:26:21 +00:00
|
|
|
.dma_mask = &usbh1_dmamask,
|
|
|
|
},
|
|
|
|
.resource = mxc_usbh1_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_usbh1_resources),
|
|
|
|
};
|
|
|
|
|
|
|
|
/* USB host 2 */
|
2009-11-21 11:14:54 +00:00
|
|
|
static u64 usbh2_dmamask = DMA_BIT_MASK(32);
|
2009-07-15 13:26:21 +00:00
|
|
|
|
|
|
|
static struct resource mxc_usbh2_resources[] = {
|
|
|
|
{
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_USBOTG_BASE_ADDR + 0x400,
|
|
|
|
.end = MX27_USBOTG_BASE_ADDR + 0x5ff,
|
2009-07-15 13:26:21 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
2010-02-05 10:42:54 +00:00
|
|
|
.start = MX27_INT_USB2,
|
|
|
|
.end = MX27_INT_USB2,
|
2009-07-15 13:26:21 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mxc_usbh2 = {
|
|
|
|
.name = "mxc-ehci",
|
|
|
|
.id = 2,
|
|
|
|
.dev = {
|
2009-11-21 11:14:54 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-07-15 13:26:21 +00:00
|
|
|
.dma_mask = &usbh2_dmamask,
|
|
|
|
},
|
|
|
|
.resource = mxc_usbh2_resources,
|
|
|
|
.num_resources = ARRAY_SIZE(mxc_usbh2_resources),
|
|
|
|
};
|
2009-08-13 08:02:30 +00:00
|
|
|
#endif
|
2009-07-15 13:26:21 +00:00
|
|
|
|
2010-02-05 11:03:37 +00:00
|
|
|
#define DEFINE_IMX_SSI_DMARES(_name, ssin, suffix) \
|
|
|
|
{ \
|
|
|
|
.name = _name, \
|
|
|
|
.start = MX2x_DMA_REQ_SSI ## ssin ## _ ## suffix, \
|
|
|
|
.end = MX2x_DMA_REQ_SSI ## ssin ## _ ## suffix, \
|
|
|
|
.flags = IORESOURCE_DMA, \
|
|
|
|
}
|
2009-10-22 12:50:33 +00:00
|
|
|
|
2010-02-05 11:03:37 +00:00
|
|
|
#define DEFINE_IMX_SSI_DEVICE(n, ssin, baseaddr, irq) \
|
|
|
|
static struct resource imx_ssi_resources ## n[] = { \
|
|
|
|
{ \
|
|
|
|
.start = MX2x_SSI ## ssin ## _BASE_ADDR, \
|
|
|
|
.end = MX2x_SSI ## ssin ## _BASE_ADDR + 0x6f, \
|
|
|
|
.flags = IORESOURCE_MEM, \
|
|
|
|
}, { \
|
|
|
|
.start = MX2x_INT_SSI1, \
|
|
|
|
.end = MX2x_INT_SSI1, \
|
|
|
|
.flags = IORESOURCE_IRQ, \
|
|
|
|
}, \
|
|
|
|
DEFINE_IMX_SSI_DMARES("tx0", ssin, TX0), \
|
|
|
|
DEFINE_IMX_SSI_DMARES("rx0", ssin, RX0), \
|
|
|
|
DEFINE_IMX_SSI_DMARES("tx1", ssin, TX1), \
|
|
|
|
DEFINE_IMX_SSI_DMARES("rx1", ssin, RX1), \
|
|
|
|
}; \
|
|
|
|
\
|
|
|
|
struct platform_device imx_ssi_device ## n = { \
|
|
|
|
.name = "imx-ssi", \
|
|
|
|
.id = n, \
|
|
|
|
.num_resources = ARRAY_SIZE(imx_ssi_resources ## n), \
|
|
|
|
.resource = imx_ssi_resources ## n, \
|
|
|
|
}
|
2009-10-22 12:50:33 +00:00
|
|
|
|
2010-02-05 11:03:37 +00:00
|
|
|
DEFINE_IMX_SSI_DEVICE(0, 1, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1);
|
|
|
|
DEFINE_IMX_SSI_DEVICE(1, 2, MX2x_SSI1_BASE_ADDR, MX2x_INT_SSI1);
|
2009-10-22 12:50:33 +00:00
|
|
|
|
2008-07-05 08:02:57 +00:00
|
|
|
/* GPIO port description */
|
2010-02-05 16:40:28 +00:00
|
|
|
#define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \
|
|
|
|
{ \
|
|
|
|
.chip.label = "gpio-" #n, \
|
|
|
|
.irq = _irq, \
|
|
|
|
.base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \
|
|
|
|
n * 0x100), \
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DEFINE_MXC_GPIO_PORT(SOC, n) \
|
|
|
|
{ \
|
|
|
|
.chip.label = "gpio-" #n, \
|
|
|
|
.base = SOC ## _IO_ADDRESS(MX2x_GPIO_BASE_ADDR + \
|
|
|
|
n * 0x100), \
|
|
|
|
.virtual_irq_start = MXC_GPIO_IRQ_START + n * 32, \
|
2008-07-05 08:02:57 +00:00
|
|
|
}
|
2010-02-05 16:40:28 +00:00
|
|
|
|
|
|
|
#define DEFINE_MXC_GPIO_PORTS(SOC, pfx) \
|
|
|
|
static struct mxc_gpio_port pfx ## _gpio_ports[] = { \
|
|
|
|
DEFINE_MXC_GPIO_PORT_IRQ(SOC, 0, SOC ## _INT_GPIO), \
|
|
|
|
DEFINE_MXC_GPIO_PORT(SOC, 1), \
|
|
|
|
DEFINE_MXC_GPIO_PORT(SOC, 2), \
|
|
|
|
DEFINE_MXC_GPIO_PORT(SOC, 3), \
|
|
|
|
DEFINE_MXC_GPIO_PORT(SOC, 4), \
|
|
|
|
DEFINE_MXC_GPIO_PORT(SOC, 5), \
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_MACH_MX21
|
|
|
|
DEFINE_MXC_GPIO_PORTS(MX21, imx21);
|
2010-06-10 15:11:06 +00:00
|
|
|
|
|
|
|
int __init imx21_register_gpios(void)
|
|
|
|
{
|
|
|
|
return mxc_gpio_init(imx21_gpio_ports, ARRAY_SIZE(imx21_gpio_ports));
|
|
|
|
}
|
2010-02-05 16:40:28 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_MACH_MX27
|
|
|
|
DEFINE_MXC_GPIO_PORTS(MX27, imx27);
|
2008-07-05 08:02:57 +00:00
|
|
|
|
2010-06-10 15:11:06 +00:00
|
|
|
int __init imx27_register_gpios(void)
|
2008-07-05 08:02:57 +00:00
|
|
|
{
|
2010-06-10 15:11:06 +00:00
|
|
|
return mxc_gpio_init(imx27_gpio_ports, ARRAY_SIZE(imx27_gpio_ports));
|
2008-07-05 08:02:57 +00:00
|
|
|
}
|
2010-06-10 15:11:06 +00:00
|
|
|
#endif
|
2009-11-21 11:14:58 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_MACH_MX21
|
|
|
|
static struct resource mx21_usbhc_resources[] = {
|
|
|
|
{
|
2010-05-15 10:25:35 +00:00
|
|
|
.start = MX21_USBOTG_BASE_ADDR,
|
|
|
|
.end = MX21_USBOTG_BASE_ADDR + SZ_8K - 1,
|
2009-11-21 11:14:58 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
2010-03-08 20:21:04 +00:00
|
|
|
.start = MX21_INT_USBHOST,
|
|
|
|
.end = MX21_INT_USBHOST,
|
2009-11-21 11:14:58 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mx21_usbhc_device = {
|
|
|
|
.name = "imx21-hcd",
|
|
|
|
.id = 0,
|
|
|
|
.dev = {
|
|
|
|
.dma_mask = &mx21_usbhc_device.dev.coherent_dma_mask,
|
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
|
},
|
|
|
|
.num_resources = ARRAY_SIZE(mx21_usbhc_resources),
|
|
|
|
.resource = mx21_usbhc_resources,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2010-05-19 16:46:06 +00:00
|
|
|
static struct resource imx_kpp_resources[] = {
|
|
|
|
{
|
|
|
|
.start = MX2x_KPP_BASE_ADDR,
|
|
|
|
.end = MX2x_KPP_BASE_ADDR + 0xf,
|
|
|
|
.flags = IORESOURCE_MEM
|
|
|
|
}, {
|
|
|
|
.start = MX2x_INT_KPP,
|
|
|
|
.end = MX2x_INT_KPP,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device imx_kpp_device = {
|
|
|
|
.name = "imx-keypad",
|
|
|
|
.id = -1,
|
|
|
|
.num_resources = ARRAY_SIZE(imx_kpp_resources),
|
|
|
|
.resource = imx_kpp_resources,
|
|
|
|
};
|
2010-06-30 10:16:24 +00:00
|
|
|
|
2010-06-14 13:56:58 +00:00
|
|
|
#endif
|