mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
aa045701c2
Add support for i.MXRT by adding CONFIG_IMXRT in register structure and adding .compatible = "fsl,imxrt-lcdif". Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Reviewed-by: Anatolij Gustschin <agust@denx.de>
26 lines
620 B
C
26 lines
620 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright(C) 2019
|
|
* Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com>
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_IMX_REGS_H__
|
|
#define __ASM_ARCH_IMX_REGS_H__
|
|
|
|
#define ARCH_MXC
|
|
|
|
#define GPIO1_BASE_ADDR 0x401B8000
|
|
#define GPIO2_BASE_ADDR 0x401BC000
|
|
#define GPIO3_BASE_ADDR 0x401C0000
|
|
#define GPIO4_BASE_ADDR 0x401C4000
|
|
#define GPIO5_BASE_ADDR 0x400C0000
|
|
|
|
#define ANATOP_BASE_ADDR 0x400d8000
|
|
|
|
#define MXS_LCDIF_BASE 0x402b8000
|
|
|
|
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
|
#include <asm/mach-imx/regs-lcdif.h>
|
|
#endif
|
|
|
|
#endif /* __ASM_ARCH_IMX_REGS_H__ */
|