2007-07-09 21:06:53 +00:00
|
|
|
/*
|
2008-07-05 08:02:43 +00:00
|
|
|
* Copyright 2004-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.
|
2007-07-09 21:06:53 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_MXC_HARDWARE_H__
|
|
|
|
#define __ASM_ARCH_MXC_HARDWARE_H__
|
|
|
|
|
|
|
|
#include <asm/sizes.h>
|
|
|
|
|
2008-04-02 09:29:30 +00:00
|
|
|
#ifdef CONFIG_ARCH_MX3
|
2008-08-05 15:14:15 +00:00
|
|
|
# include <mach/mx31.h>
|
2008-04-02 09:29:30 +00:00
|
|
|
#endif
|
2007-07-09 21:06:53 +00:00
|
|
|
|
2008-07-05 08:02:56 +00:00
|
|
|
#ifdef CONFIG_ARCH_MX2
|
2008-07-05 08:02:59 +00:00
|
|
|
# ifdef CONFIG_MACH_MX27
|
2008-08-05 15:14:15 +00:00
|
|
|
# include <mach/mx27.h>
|
2008-07-05 08:02:59 +00:00
|
|
|
# endif
|
2008-07-05 08:02:56 +00:00
|
|
|
#endif
|
|
|
|
|
2008-11-14 10:01:38 +00:00
|
|
|
#ifdef CONFIG_ARCH_MX1
|
|
|
|
# include <mach/mx1.h>
|
|
|
|
#endif
|
|
|
|
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/mxc.h>
|
2007-07-09 21:06:53 +00:00
|
|
|
|
2008-03-28 09:59:08 +00:00
|
|
|
#endif /* __ASM_ARCH_MXC_HARDWARE_H__ */
|