xref: /openbmc/u-boot/arch/arm/include/asm/arch-mx6/mx6-pins.h (revision a2ac68fb2b35e57cd483e7d6fb30b9d9331acc01)
1 /*
2  * Copyright (C) 2013 Boundary Devices Inc.
3  *
4  * SPDX-License-Identifier:	GPL-2.0+
5  */
6 #ifndef __ASM_ARCH_MX6_PINS_H__
7 #define __ASM_ARCH_MX6_PINS_H__
8 
9 #ifdef CONFIG_MX6Q
10 #include "mx6q_pins.h"
11 #else
12 #if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S)
13 #include "mx6dl_pins.h"
14 #else
15 #if defined(CONFIG_MX6SL)
16 #include "mx6sl_pins.h"
17 #else
18 #error "Please select cpu"
19 #endif	/* CONFIG_MX6SL */
20 #endif	/* CONFIG_MX6DL or CONFIG_MX6S */
21 #endif	/* CONFIG_MX6Q */
22 
23 #endif	/*__ASM_ARCH_MX6_PINS_H__ */
24