2007-07-09 21:06:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
2008-07-05 08:02:50 +00:00
|
|
|
* Copyright (C) 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.
|
2007-07-09 21:06:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_MXC_H__
|
|
|
|
#define __ASM_ARCH_MXC_H__
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_MXC_HARDWARE_H__
|
|
|
|
#error "Do not include directly."
|
|
|
|
#endif
|
|
|
|
|
2008-04-02 09:29:30 +00:00
|
|
|
/* clean up all things that are not used */
|
|
|
|
#ifndef CONFIG_ARCH_MX3
|
|
|
|
# define cpu_is_mx31() (0)
|
|
|
|
#endif
|
|
|
|
|
2009-01-26 15:34:52 +00:00
|
|
|
#ifndef CONFIG_MACH_MX21
|
|
|
|
# define cpu_is_mx21() (0)
|
|
|
|
#endif
|
|
|
|
|
2008-07-05 08:02:59 +00:00
|
|
|
#ifndef CONFIG_MACH_MX27
|
|
|
|
# define cpu_is_mx27() (0)
|
|
|
|
#endif
|
|
|
|
|
2008-09-09 08:19:42 +00:00
|
|
|
#if defined(CONFIG_ARCH_MX3) || defined(CONFIG_ARCH_MX2)
|
|
|
|
#define CSCR_U(n) (IO_ADDRESS(WEIM_BASE_ADDR) + n * 0x10)
|
|
|
|
#define CSCR_L(n) (IO_ADDRESS(WEIM_BASE_ADDR) + n * 0x10 + 0x4)
|
|
|
|
#define CSCR_A(n) (IO_ADDRESS(WEIM_BASE_ADDR) + n * 0x10 + 0x8)
|
|
|
|
#endif
|
|
|
|
|
2008-03-28 09:59:08 +00:00
|
|
|
#endif /* __ASM_ARCH_MXC_H__ */
|