2008-07-05 10:02:57 +02: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
*
* 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>
[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 16:14:15 +01:00
# include <mach/hardware.h>
2009-01-26 16:34:51 +01:00
# include <mach/common.h>
2008-12-19 14:32:07 +01:00
# include <mach/mmc.h>
2009-01-26 16:34:51 +01:00
# include "devices.h"
2008-07-05 10:02:57 +02:00
2008-12-19 14:32:14 +01:00
/*
* SPI master controller
*
* - i . MX1 : 2 channel ( slighly different register setting )
* - i . MX21 : 2 channel
* - i . MX27 : 3 channel
*/
2010-02-04 22:04:32 +01:00
# define DEFINE_IMX_SPI_DEVICE(n, baseaddr, irq) \
static struct resource mxc_spi_resources # # n [ ] = { \
{ \
. start = baseaddr , \
. end = baseaddr + SZ_4K - 1 , \
. flags = IORESOURCE_MEM , \
} , { \
. start = irq , \
. end = irq , \
. flags = IORESOURCE_IRQ , \
} , \
} ; \
\
struct platform_device mxc_spi_device # # n = { \
. name = " spi_imx " , \
. id = n , \
. num_resources = ARRAY_SIZE ( mxc_spi_resources # # n ) , \
. resource = mxc_spi_resources # # n , \
}
2008-12-19 14:32:14 +01:00
2010-02-04 22:04:32 +01:00
DEFINE_IMX_SPI_DEVICE ( 0 , MX2x_CSPI1_BASE_ADDR , MX2x_INT_CSPI1 ) ;
DEFINE_IMX_SPI_DEVICE ( 1 , MX2x_CSPI2_BASE_ADDR , MX2x_INT_CSPI2 ) ;
2008-12-19 14:32:14 +01:00
# ifdef CONFIG_MACH_MX27
2010-02-04 22:04:32 +01:00
DEFINE_IMX_SPI_DEVICE ( 2 , MX27_CSPI3_BASE_ADDR , MX27_INT_CSPI3 ) ;
2008-12-19 14:32:14 +01:00
# endif
2008-07-05 10:02:57 +02:00
/*
* General Purpose Timer
2009-06-23 12:04:36 +02:00
* - i . MX21 : 3 timers
* - i . MX27 : 6 timers
2008-07-05 10:02:57 +02:00
*/
2010-02-04 14:11:02 +01: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 10:02:57 +02:00
}
2010-02-04 14:11:02 +01: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 10:02:57 +02:00
# ifdef CONFIG_MACH_MX27
2010-02-04 14:11:02 +01: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 10:02:57 +02:00
# endif
/*
* Watchdog :
* - i . MX1
* - i . MX21
* - i . MX27
*/
static struct resource mxc_wdt_resources [ ] = {
{
. start = WDOG_BASE_ADDR ,
. end = WDOG_BASE_ADDR + 0x30 ,
. flags = IORESOURCE_MEM ,
} ,
} ;
struct platform_device mxc_wdt = {
. name = " mxc_wdt " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( mxc_wdt_resources ) ,
. resource = mxc_wdt_resources ,
} ;
2008-12-01 14:15:38 -08:00
static struct resource mxc_w1_master_resources [ ] = {
{
. start = OWIRE_BASE_ADDR ,
. end = OWIRE_BASE_ADDR + SZ_4K - 1 ,
. 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 ,
} ;
2008-09-09 11:30:58 +02:00
static struct resource mxc_nand_resources [ ] = {
{
. start = NFC_BASE_ADDR ,
. end = NFC_BASE_ADDR + 0xfff ,
2009-06-23 12:04:36 +02:00
. flags = IORESOURCE_MEM ,
2008-09-09 11:30:58 +02:00
} , {
. start = MXC_INT_NANDFC ,
. end = MXC_INT_NANDFC ,
2009-06-23 12:04:36 +02:00
. flags = IORESOURCE_IRQ ,
2008-09-09 11:30:58 +02:00
} ,
} ;
struct platform_device mxc_nand_device = {
. name = " mxc_nand " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( mxc_nand_resources ) ,
. resource = mxc_nand_resources ,
} ;
2009-01-26 16:34:56 +01: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 [ ] = {
{
. start = LCDC_BASE_ADDR ,
. end = LCDC_BASE_ADDR + 0xFFF ,
. flags = IORESOURCE_MEM ,
2009-06-23 12:04:36 +02:00
} , {
2009-01-26 16:34:56 +01:00
. start = MXC_INT_LCDC ,
. end = MXC_INT_LCDC ,
. 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 = {
. coherent_dma_mask = 0xFFFFFFFF ,
} ,
} ;
2009-01-26 17:26:02 +01:00
# ifdef CONFIG_MACH_MX27
static struct resource mxc_fec_resources [ ] = {
{
. start = FEC_BASE_ADDR ,
. end = FEC_BASE_ADDR + 0xfff ,
2009-06-23 12:04:36 +02:00
. flags = IORESOURCE_MEM ,
2009-01-26 17:26:02 +01:00
} , {
. start = MXC_INT_FEC ,
. end = MXC_INT_FEC ,
2009-06-23 12:04:36 +02:00
. flags = IORESOURCE_IRQ ,
2009-01-26 17:26:02 +01: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 16:34:56 +01:00
# endif
2010-02-04 22:13:52 +01:00
# define DEFINE_IMX_I2C_DEVICE(n, baseaddr, irq) \
static struct resource mxc_i2c_resources # # n [ ] = { \
{ \
. start = baseaddr , \
. end = baseaddr + SZ_4K - 1 , \
. flags = IORESOURCE_MEM , \
} , { \
. start = irq , \
. end = irq , \
. flags = IORESOURCE_IRQ , \
} \
} ; \
\
struct platform_device mxc_i2c_device # # n = { \
. name = " imx-i2c " , \
. id = n , \
. num_resources = ARRAY_SIZE ( mxc_i2c_resources # # n ) , \
. resource = mxc_i2c_resources # # n , \
2009-01-28 13:26:56 +01:00
}
2010-02-04 22:13:52 +01:00
DEFINE_IMX_I2C_DEVICE ( 0 , MX2x_I2C_BASE_ADDR , MX2x_INT_I2C ) ;
2009-01-28 13:26:56 +01:00
# ifdef CONFIG_MACH_MX27
2010-02-04 22:13:52 +01:00
DEFINE_IMX_I2C_DEVICE ( 1 , MX27_I2C2_BASE_ADDR , MX27_INT_I2C2 ) ;
2009-01-28 13:26:56 +01:00
# endif
2009-01-16 15:17:46 +01:00
static struct resource mxc_pwm_resources [ ] = {
2009-06-23 12:04:36 +02:00
{
2009-01-16 15:17:46 +01:00
. start = PWM_BASE_ADDR ,
. end = PWM_BASE_ADDR + 0x0fff ,
2009-06-23 12:04:36 +02:00
. flags = IORESOURCE_MEM ,
} , {
2009-01-16 15:17:46 +01:00
. start = MXC_INT_PWM ,
. end = MXC_INT_PWM ,
. flags = IORESOURCE_IRQ ,
}
} ;
struct platform_device mxc_pwm_device = {
. name = " mxc_pwm " ,
. id = 0 ,
. num_resources = ARRAY_SIZE ( mxc_pwm_resources ) ,
2009-06-23 12:04:36 +02:00
. resource = mxc_pwm_resources ,
2009-01-16 15:17:46 +01:00
} ;
2008-12-19 14:32:07 +01:00
/*
* Resource definition for the MXC SDHC
*/
2010-02-05 10:46:56 +01: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 , \
} , \
} ; \
\
static u64 mxc_sdhc # # n # # _dmamask = 0xffffffffUL ; \
\
struct platform_device mxc_sdhc_device # # n = { \
. name = " mxc-mmc " , \
. id = n , \
. dev = { \
. dma_mask = & mxc_sdhc # # n # # _dmamask , \
. coherent_dma_mask = 0xffffffff , \
} , \
. num_resources = ARRAY_SIZE ( mxc_sdhc_resources # # n ) , \
. resource = mxc_sdhc_resources # # n , \
}
2008-12-19 14:32:07 +01:00
2010-02-05 10:46:56 +01: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 14:32:07 +01:00
2009-08-13 10:02:30 +02:00
# ifdef CONFIG_MACH_MX27
2009-07-15 15:26:21 +02:00
static struct resource otg_resources [ ] = {
{
. start = OTG_BASE_ADDR ,
. end = OTG_BASE_ADDR + 0x1ff ,
. flags = IORESOURCE_MEM ,
} , {
. start = MXC_INT_USB3 ,
. end = MXC_INT_USB3 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
static u64 otg_dmamask = 0xffffffffUL ;
/* OTG gadget device */
struct platform_device mxc_otg_udc_device = {
. name = " fsl-usb2-udc " ,
. id = - 1 ,
. dev = {
. dma_mask = & otg_dmamask ,
. coherent_dma_mask = 0xffffffffUL ,
} ,
. resource = otg_resources ,
. num_resources = ARRAY_SIZE ( otg_resources ) ,
} ;
/* OTG host */
struct platform_device mxc_otg_host = {
. name = " mxc-ehci " ,
. id = 0 ,
. dev = {
. coherent_dma_mask = 0xffffffff ,
. dma_mask = & otg_dmamask ,
} ,
. resource = otg_resources ,
. num_resources = ARRAY_SIZE ( otg_resources ) ,
} ;
/* USB host 1 */
static u64 usbh1_dmamask = 0xffffffffUL ;
static struct resource mxc_usbh1_resources [ ] = {
{
. start = OTG_BASE_ADDR + 0x200 ,
. end = OTG_BASE_ADDR + 0x3ff ,
. flags = IORESOURCE_MEM ,
} , {
. start = MXC_INT_USB1 ,
. end = MXC_INT_USB1 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
struct platform_device mxc_usbh1 = {
. name = " mxc-ehci " ,
. id = 1 ,
. dev = {
. coherent_dma_mask = 0xffffffff ,
. dma_mask = & usbh1_dmamask ,
} ,
. resource = mxc_usbh1_resources ,
. num_resources = ARRAY_SIZE ( mxc_usbh1_resources ) ,
} ;
/* USB host 2 */
static u64 usbh2_dmamask = 0xffffffffUL ;
static struct resource mxc_usbh2_resources [ ] = {
{
. start = OTG_BASE_ADDR + 0x400 ,
. end = OTG_BASE_ADDR + 0x5ff ,
. flags = IORESOURCE_MEM ,
} , {
. start = MXC_INT_USB2 ,
. end = MXC_INT_USB2 ,
. flags = IORESOURCE_IRQ ,
} ,
} ;
struct platform_device mxc_usbh2 = {
. name = " mxc-ehci " ,
. id = 2 ,
. dev = {
. coherent_dma_mask = 0xffffffff ,
. dma_mask = & usbh2_dmamask ,
} ,
. resource = mxc_usbh2_resources ,
. num_resources = ARRAY_SIZE ( mxc_usbh2_resources ) ,
} ;
2009-08-13 10:02:30 +02:00
# endif
2009-07-15 15:26:21 +02:00
2009-10-22 14:50:33 +02:00
static struct resource imx_ssi_resources0 [ ] = {
{
. start = SSI1_BASE_ADDR ,
. end = SSI1_BASE_ADDR + 0x6F ,
. flags = IORESOURCE_MEM ,
} , {
. start = MXC_INT_SSI1 ,
. end = MXC_INT_SSI1 ,
. flags = IORESOURCE_IRQ ,
} , {
. name = " tx0 " ,
. start = DMA_REQ_SSI1_TX0 ,
. end = DMA_REQ_SSI1_TX0 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " rx0 " ,
. start = DMA_REQ_SSI1_RX0 ,
. end = DMA_REQ_SSI1_RX0 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " tx1 " ,
. start = DMA_REQ_SSI1_TX1 ,
. end = DMA_REQ_SSI1_TX1 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " rx1 " ,
. start = DMA_REQ_SSI1_RX1 ,
. end = DMA_REQ_SSI1_RX1 ,
. flags = IORESOURCE_DMA ,
} ,
} ;
static struct resource imx_ssi_resources1 [ ] = {
{
. start = SSI2_BASE_ADDR ,
. end = SSI2_BASE_ADDR + 0x6F ,
. flags = IORESOURCE_MEM ,
} , {
. start = MXC_INT_SSI2 ,
. end = MXC_INT_SSI2 ,
. flags = IORESOURCE_IRQ ,
} , {
. name = " tx0 " ,
. start = DMA_REQ_SSI2_TX0 ,
. end = DMA_REQ_SSI2_TX0 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " rx0 " ,
. start = DMA_REQ_SSI2_RX0 ,
. end = DMA_REQ_SSI2_RX0 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " tx1 " ,
. start = DMA_REQ_SSI2_TX1 ,
. end = DMA_REQ_SSI2_TX1 ,
. flags = IORESOURCE_DMA ,
} , {
. name = " rx1 " ,
. start = DMA_REQ_SSI2_RX1 ,
. end = DMA_REQ_SSI2_RX1 ,
. flags = IORESOURCE_DMA ,
} ,
} ;
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 ,
} ;
2008-07-05 10:02:57 +02:00
/* GPIO port description */
static struct mxc_gpio_port imx_gpio_ports [ ] = {
2009-06-23 12:04:36 +02:00
{
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-0 " ,
. irq = MXC_INT_GPIO ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START ,
2009-06-23 12:04:36 +02:00
} , {
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-1 " ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR + 0x100 ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START + 32 ,
2009-06-23 12:04:36 +02:00
} , {
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-2 " ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR + 0x200 ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START + 64 ,
2009-06-23 12:04:36 +02:00
} , {
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-3 " ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR + 0x300 ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START + 96 ,
2009-06-23 12:04:36 +02:00
} , {
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-4 " ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR + 0x400 ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START + 128 ,
2009-06-23 12:04:36 +02:00
} , {
2008-07-05 10:02:57 +02:00
. chip . label = " gpio-5 " ,
2009-01-26 16:34:51 +01:00
. base = IO_ADDRESS ( GPIO_BASE_ADDR + 0x500 ) ,
2008-12-18 11:08:55 +01:00
. virtual_irq_start = MXC_GPIO_IRQ_START + 160 ,
2008-07-05 10:02:57 +02:00
}
} ;
int __init mxc_register_gpios ( void )
{
return mxc_gpio_init ( imx_gpio_ports , ARRAY_SIZE ( imx_gpio_ports ) ) ;
}