1 /* 2 * Freescale i.MX23/i.MX28 Registers 3 * 4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> 5 * on behalf of DENX Software Engineering GmbH 6 * 7 * SPDX-License-Identifier: GPL-2.0+ 8 */ 9 10 #ifndef __IMX_REGS_H__ 11 #define __IMX_REGS_H__ 12 13 #include <asm/imx-common/regs-apbh.h> 14 #include <asm/arch/regs-base.h> 15 #include <asm/imx-common/regs-bch.h> 16 #include <asm/arch/regs-digctl.h> 17 #include <asm/imx-common/regs-gpmi.h> 18 #include <asm/imx-common/regs-lcdif.h> 19 #include <asm/arch/regs-i2c.h> 20 #include <asm/arch/regs-lradc.h> 21 #include <asm/arch/regs-ocotp.h> 22 #include <asm/arch/regs-pinctrl.h> 23 #include <asm/arch/regs-rtc.h> 24 #include <asm/arch/regs-ssp.h> 25 #include <asm/arch/regs-timrot.h> 26 #include <asm/arch/regs-usb.h> 27 #include <asm/arch/regs-usbphy.h> 28 29 #ifdef CONFIG_MX23 30 #include <asm/arch/regs-clkctrl-mx23.h> 31 #include <asm/arch/regs-power-mx23.h> 32 #endif 33 34 #ifdef CONFIG_MX28 35 #include <asm/arch/regs-clkctrl-mx28.h> 36 #include <asm/arch/regs-power-mx28.h> 37 #endif 38 39 #endif /* __IMX_REGS_H__ */ 40