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