2007-07-10 04:06:53 +07:00
|
|
|
/*
|
|
|
|
* 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__
|
|
|
|
|
2008-12-18 17:51:57 +07:00
|
|
|
#if defined CONFIG_ARCH_MX1
|
|
|
|
#define PHYS_OFFSET UL(0x08000000)
|
|
|
|
#elif defined CONFIG_ARCH_MX2
|
2009-01-26 22:34:52 +07:00
|
|
|
#ifdef CONFIG_MACH_MX21
|
|
|
|
#define PHYS_OFFSET UL(0xC0000000)
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_MACH_MX27
|
2008-12-18 17:51:57 +07:00
|
|
|
#define PHYS_OFFSET UL(0xA0000000)
|
2009-01-26 22:34:52 +07:00
|
|
|
#endif
|
2008-12-18 17:51:57 +07:00
|
|
|
#elif defined CONFIG_ARCH_MX3
|
|
|
|
#define PHYS_OFFSET UL(0x80000000)
|
|
|
|
#endif
|
2007-07-10 04:06:53 +07:00
|
|
|
|
2009-04-03 20:34:05 +07:00
|
|
|
#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 */
|
|
|
|
|
2008-03-28 16:59:08 +07:00
|
|
|
#endif /* __ASM_ARCH_MXC_MEMORY_H__ */
|