1 /*
2  * (C) Copyright 2015
3  * (C) Copyright 2014
4  * Heiko Schocher, DENX Software Engineering, hs@denx.de.
5  *
6  * Based on:
7  * Copyright (C) 2012 Freescale Semiconductor, Inc.
8  *
9  * Configuration settings for the Freescale i.MX6Q SabreSD board.
10  *
11  * SPDX-License-Identifier:	GPL-2.0+
12  */
13 #ifndef __ARISTAINETOS_CONFIG_H
14 #define __ARISTAINETOS_CONFIG_H
15 
16 #define CONFIG_SYS_BOARD_VERSION	1
17 #define CONFIG_HOSTNAME		aristainetos
18 #define CONFIG_BOARDNAME	"aristainetos"
19 
20 #define CONFIG_MXC_UART_BASE	UART5_BASE
21 #define CONFIG_CONSOLE_DEV	"ttymxc4"
22 
23 #define CONFIG_FEC_XCV_TYPE		RMII
24 
25 #define CONFIG_SF_DEFAULT_CS		0
26 
27 #define CONFIG_EXTRA_ENV_BOARD_SETTINGS \
28 	"board_type=aristainetos7@1\0" \
29 	"mtdids=nand0=gpmi-nand,nor0=spi3.0\0" \
30 	"mtdparts=mtdparts=spi3.0:832k(u-boot),64k(env),64k(env-red)," \
31 		"-(rescue-system);gpmi-nand:-(ubi)\0" \
32 	"addmisc=setenv bootargs ${bootargs} consoleblank=0\0" \
33 	"addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
34 	"ubiargs=setenv bootargs console=${console},${baudrate} " \
35 		"ubi.mtd=0,2048 root=ubi0:rootfs rootfstype=ubifs\0 "
36 
37 #define ARISTAINETOS_USB_OTG_PWR	IMX_GPIO_NR(4, 15)
38 #define ARISTAINETOS_USB_H1_PWR		IMX_GPIO_NR(3, 31)
39 #define CONFIG_GPIO_ENABLE_SPI_FLASH	IMX_GPIO_NR(2, 15)
40 
41 #include "aristainetos-common.h"
42 
43 #endif                         /* __ARISTAINETOS_CONFIG_H */
44