blob: 8fa3eb5533d8b773f45255af2c07bd6b3d7604d3 [file] [log] [blame]
Heiko Schocher7254d922015-05-18 13:32:31 +02001/*
2 * (C) Copyright 2015
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * Based on:
6 * Copyright (C) 2012 Freescale Semiconductor, Inc.
7 *
8 * Configuration settings for the Freescale i.MX6DL aristainetos2 board.
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12#ifndef __ARISTAINETOS2_CONFIG_H
13#define __ARISTAINETOS2_CONFIG_H
14
15#define CONFIG_SYS_BOARD_VERSION 2
16#define CONFIG_HOSTNAME aristainetos2
17#define CONFIG_BOARDNAME "aristainetos2"
18
19#define CONFIG_BOARD_LATE_INIT
20
21#define CONFIG_MXC_UART_BASE UART2_BASE
Simon Glass12ca05a2016-10-17 20:12:39 -060022#define CONSOLE_DEV "ttymxc1"
Heiko Schocher7254d922015-05-18 13:32:31 +020023
24#define CONFIG_FEC_XCV_TYPE RGMII
25#define CONFIG_PHY_MICREL_KSZ9031
26
Heiko Schocher96270842015-08-24 11:36:40 +020027#define CONFIG_SF_DEFAULT_BUS 3
Heiko Schocher7254d922015-05-18 13:32:31 +020028#define CONFIG_SF_DEFAULT_CS 1
29
30#define CONFIG_EXTRA_ENV_BOARD_SETTINGS \
31 "board_type=aristainetos2_7@1\0" \
32 "nor_bootdelay=-2\0" \
33 "mtdids=nand0=gpmi-nand,nor0=spi3.1\0" \
34 "mtdparts=mtdparts=spi3.1:832k(u-boot),64k(env),64k(env-red)," \
35 "-(rescue-system);gpmi-nand:-(ubi)\0" \
36 "addmisc=setenv bootargs ${bootargs} net.ifnames=0 consoleblank=0\0" \
37 "ubiargs=setenv bootargs console=${console},${baudrate} " \
Heiko Schocher96270842015-08-24 11:36:40 +020038 "ubi.mtd=0,4096 root=ubi0:rootfs rootfstype=ubifs\0 " \
39 "ubifs_load_fit=sf probe;ubi part ubi 4096;ubifsmount ubi:rootfs;" \
40 "ubifsload ${fit_addr_r} /boot/system.itb; " \
41 "imi ${fit_addr_r}\0 "
Heiko Schocher7254d922015-05-18 13:32:31 +020042
43#define CONFIG_SYS_I2C_MXC_I2C4 /* enable I2C bus 4 */
44
45#define ARISTAINETOS_USB_OTG_PWR IMX_GPIO_NR(4, 15)
46#define ARISTAINETOS_USB_H1_PWR IMX_GPIO_NR(1, 0)
47#define CONFIG_GPIO_ENABLE_SPI_FLASH IMX_GPIO_NR(2, 15)
48
49/* Framebuffer */
50#define CONFIG_SYS_LDB_CLOCK 33246000
51#define CONFIG_LG4573
Heiko Schocherc4e498d2015-08-24 11:36:39 +020052#define CONFIG_LG4573_BUS 0
53#define CONFIG_LG4573_CS 0
Heiko Schocher7254d922015-05-18 13:32:31 +020054
55#define CONFIG_CMD_BMP
56
57#define CONFIG_PWM_IMX
58#define CONFIG_IMX6_PWM_PER_CLK 66000000
59
60#include "aristainetos-common.h"
61
62#endif /* __ARISTAINETOS2_CONFIG_H */