forked from Minki/linux
6acc81c394
Add support for CMOS Sensor Interface on i.MX1 and i.MXL SoCs. create mode 100644 arch/arm/mach-mx1/ksym_mx1.c create mode 100644 arch/arm/mach-mx1/mx1_camera_fiq.S create mode 100644 arch/arm/plat-mxc/include/mach/mx1_camera.h create mode 100644 drivers/media/video/mx1_camera.c Signed-off-by: Paulius Zaleckas <paulius.zaleckas@teltonika.lt> Signed-off-by: Darius Augulis <augulis.darius@gmail.com> Acked-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
36 lines
919 B
C
36 lines
919 B
C
/*
|
|
* Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
*/
|
|
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_MXC_MEMORY_H__
|
|
#define __ASM_ARCH_MXC_MEMORY_H__
|
|
|
|
#if defined CONFIG_ARCH_MX1
|
|
#define PHYS_OFFSET UL(0x08000000)
|
|
#elif defined CONFIG_ARCH_MX2
|
|
#ifdef CONFIG_MACH_MX21
|
|
#define PHYS_OFFSET UL(0xC0000000)
|
|
#endif
|
|
#ifdef CONFIG_MACH_MX27
|
|
#define PHYS_OFFSET UL(0xA0000000)
|
|
#endif
|
|
#elif defined CONFIG_ARCH_MX3
|
|
#define PHYS_OFFSET UL(0x80000000)
|
|
#endif
|
|
|
|
#if defined(CONFIG_MX1_VIDEO)
|
|
/*
|
|
* Increase size of DMA-consistent memory region.
|
|
* This is required for i.MX camera driver to capture at least four VGA frames.
|
|
*/
|
|
#define CONSISTENT_DMA_SIZE SZ_4M
|
|
#endif /* CONFIG_MX1_VIDEO */
|
|
|
|
#endif /* __ASM_ARCH_MXC_MEMORY_H__ */
|