2008-07-05 08:02:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2006-2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
|
|
* Copyright 2008 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.
|
|
|
|
*/
|
|
|
|
|
2009-05-04 11:13:52 +00:00
|
|
|
#include <linux/dma-mapping.h>
|
2008-07-05 08:02:48 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/serial.h>
|
2008-07-05 08:02:49 +00:00
|
|
|
#include <linux/gpio.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.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>
|
2009-04-02 15:38:41 +00:00
|
|
|
#include <mach/common.h>
|
2009-05-07 09:51:42 +00:00
|
|
|
#include <mach/mx3_camera.h>
|
2008-07-05 08:02:48 +00:00
|
|
|
|
2009-01-29 15:00:23 +00:00
|
|
|
#include "devices.h"
|
|
|
|
|
2009-02-16 11:47:52 +00:00
|
|
|
/* i.MX31 Image Processing Unit */
|
|
|
|
|
|
|
|
/* The resource order is important! */
|
|
|
|
static struct resource mx3_ipu_rsrc[] = {
|
|
|
|
{
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_IPU_CTRL_BASE_ADDR,
|
|
|
|
.end = MX3x_IPU_CTRL_BASE_ADDR + 0x5F,
|
2009-02-16 11:47:52 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_IPU_CTRL_BASE_ADDR + 0x88,
|
|
|
|
.end = MX3x_IPU_CTRL_BASE_ADDR + 0xB3,
|
2009-02-16 11:47:52 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
}, {
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_INT_IPU_SYN,
|
|
|
|
.end = MX3x_INT_IPU_SYN,
|
2009-02-16 11:47:52 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
}, {
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_INT_IPU_ERR,
|
|
|
|
.end = MX3x_INT_IPU_ERR,
|
2009-02-16 11:47:52 +00:00
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mx3_ipu = {
|
|
|
|
.name = "ipu-core",
|
|
|
|
.id = -1,
|
|
|
|
.num_resources = ARRAY_SIZE(mx3_ipu_rsrc),
|
|
|
|
.resource = mx3_ipu_rsrc,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource fb_resources[] = {
|
|
|
|
{
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_IPU_CTRL_BASE_ADDR + 0xB4,
|
|
|
|
.end = MX3x_IPU_CTRL_BASE_ADDR + 0x1BF,
|
2009-02-16 11:47:52 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mx3_fb = {
|
|
|
|
.name = "mx3_sdc_fb",
|
|
|
|
.id = -1,
|
|
|
|
.num_resources = ARRAY_SIZE(fb_resources),
|
|
|
|
.resource = fb_resources,
|
|
|
|
.dev = {
|
2009-05-07 09:51:42 +00:00
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
2009-02-16 11:47:52 +00:00
|
|
|
},
|
|
|
|
};
|
2009-02-06 14:38:51 +00:00
|
|
|
|
2009-05-07 09:51:42 +00:00
|
|
|
static struct resource camera_resources[] = {
|
|
|
|
{
|
2010-10-22 12:49:45 +00:00
|
|
|
.start = MX3x_IPU_CTRL_BASE_ADDR + 0x60,
|
|
|
|
.end = MX3x_IPU_CTRL_BASE_ADDR + 0x87,
|
2009-05-07 09:51:42 +00:00
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device mx3_camera = {
|
|
|
|
.name = "mx3-camera",
|
|
|
|
.id = 0,
|
|
|
|
.num_resources = ARRAY_SIZE(camera_resources),
|
|
|
|
.resource = camera_resources,
|
|
|
|
.dev = {
|
|
|
|
.coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2010-03-24 11:32:17 +00:00
|
|
|
static struct resource imx_rtc_resources[] = {
|
|
|
|
{
|
|
|
|
.start = MX31_RTC_BASE_ADDR,
|
|
|
|
.end = MX31_RTC_BASE_ADDR + 0x3fff,
|
|
|
|
.flags = IORESOURCE_MEM,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.start = MX31_INT_RTC,
|
|
|
|
.flags = IORESOURCE_IRQ,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
struct platform_device imx_rtc_device0 = {
|
|
|
|
.name = "mxc_rtc",
|
|
|
|
.id = -1,
|
|
|
|
.num_resources = ARRAY_SIZE(imx_rtc_resources),
|
|
|
|
.resource = imx_rtc_resources,
|
|
|
|
};
|