xref: /openbmc/u-boot/arch/arm/include/asm/arch-mx7/mx7-pins.h (revision b02f76a83541fe9fe3a2918039b26fc133699c17)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2015 Freescale Semiconductor, Inc.
4  */
5 #ifndef __ASM_ARCH_MX7_PINS_H__
6 #define __ASM_ARCH_MX7_PINS_H__
7 
8 #include <asm/mach-imx/iomux-v3.h>
9 
10 #if defined(CONFIG_MX7D)
11 #include "mx7d_pins.h"
12 #elif defined(CONFIG_MX7S)
13 #include "mx7s_pins.h"
14 #else
15 #error "Please select cpu"
16 #endif	/* CONFIG_MX7D */
17 
18 #endif	/*__ASM_ARCH_MX7_PINS_H__ */
19