2011-11-08 23:18:08 +00:00
|
|
|
/*
|
2013-01-11 03:19:06 +00:00
|
|
|
* Freescale i.MX23/i.MX28 Registers
|
2011-11-08 23:18:08 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
|
|
* on behalf of DENX Software Engineering GmbH
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IMX_REGS_H__
|
|
|
|
#define __IMX_REGS_H__
|
|
|
|
|
2013-04-09 21:06:07 +00:00
|
|
|
#include <asm/imx-common/regs-apbh.h>
|
2011-11-08 23:18:08 +00:00
|
|
|
#include <asm/arch/regs-base.h>
|
2013-04-09 21:06:07 +00:00
|
|
|
#include <asm/imx-common/regs-bch.h>
|
2012-02-07 04:08:55 +00:00
|
|
|
#include <asm/arch/regs-digctl.h>
|
2013-04-09 21:06:07 +00:00
|
|
|
#include <asm/imx-common/regs-gpmi.h>
|
2011-11-08 23:18:08 +00:00
|
|
|
#include <asm/arch/regs-i2c.h>
|
2012-05-01 11:09:46 +00:00
|
|
|
#include <asm/arch/regs-lcdif.h>
|
2012-05-01 11:09:48 +00:00
|
|
|
#include <asm/arch/regs-lradc.h>
|
2011-11-08 23:18:08 +00:00
|
|
|
#include <asm/arch/regs-ocotp.h>
|
|
|
|
#include <asm/arch/regs-pinctrl.h>
|
|
|
|
#include <asm/arch/regs-rtc.h>
|
|
|
|
#include <asm/arch/regs-ssp.h>
|
|
|
|
#include <asm/arch/regs-timrot.h>
|
2013-02-23 02:43:01 +00:00
|
|
|
#include <asm/arch/regs-usb.h>
|
|
|
|
#include <asm/arch/regs-usbphy.h>
|
2011-11-08 23:18:08 +00:00
|
|
|
|
2013-01-11 03:19:06 +00:00
|
|
|
#ifdef CONFIG_MX23
|
|
|
|
#include <asm/arch/regs-clkctrl-mx23.h>
|
|
|
|
#include <asm/arch/regs-power-mx23.h>
|
|
|
|
#endif
|
|
|
|
|
2012-11-24 14:15:51 +00:00
|
|
|
#ifdef CONFIG_MX28
|
|
|
|
#include <asm/arch/regs-clkctrl-mx28.h>
|
|
|
|
#include <asm/arch/regs-power-mx28.h>
|
|
|
|
#endif
|
|
|
|
|
2011-11-08 23:18:08 +00:00
|
|
|
#endif /* __IMX_REGS_H__ */
|