uboot/include/configs/aristainetos2b.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * (C) Copyright 2015
   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.MX6DL aristainetos2 board.
  10 */
  11#ifndef __ARISTAINETOS2B_CONFIG_H
  12#define __ARISTAINETOS2B_CONFIG_H
  13
  14#define CONFIG_SYS_BOARD_VERSION        3
  15#define CONFIG_HOSTNAME         "aristainetos2"
  16#define CONFIG_BOARDNAME        "aristainetos2-revB"
  17
  18#define CONFIG_MXC_UART_BASE    UART2_BASE
  19#define CONSOLE_DEV     "ttymxc1"
  20
  21#define CONFIG_FEC_XCV_TYPE             RGMII
  22
  23#define CONFIG_SF_DEFAULT_BUS           0
  24#define CONFIG_SF_DEFAULT_CS            0
  25
  26#define CONFIG_EXTRA_ENV_BOARD_SETTINGS \
  27        "board_type=aristainetos2_7@1\0" \
  28        "nor_bootdelay=-2\0" \
  29        "mtdids=nand0=gpmi-nand,nor0=spi0.0\0" \
  30        "mtdparts=mtdparts=spi0.0:832k(u-boot),64k(env),64k(env-red)," \
  31                "-(rescue-system);gpmi-nand:-(ubi)\0" \
  32        "addmisc=setenv bootargs ${bootargs} net.ifnames=0 consoleblank=0\0" \
  33        "ubiargs=setenv bootargs console=${console},${baudrate} " \
  34                "ubi.mtd=0,4096 root=ubi0:rootfs rootfstype=ubifs\0 " \
  35        "ubifs_load_fit=sf probe;ubi part ubi 4096;ubifsmount ubi:rootfs;" \
  36                "ubifsload ${fit_addr_r} /boot/system.itb; " \
  37                "imi ${fit_addr_r}\0 " \
  38
  39#define CONFIG_SYS_I2C_MXC_I2C4         /* enable I2C bus 4 */
  40
  41#define ARISTAINETOS_USB_OTG_PWR        IMX_GPIO_NR(4, 15)
  42#define ARISTAINETOS_USB_H1_PWR IMX_GPIO_NR(1, 0)
  43#define CONFIG_GPIO_ENABLE_SPI_FLASH    IMX_GPIO_NR(2, 15)
  44
  45/* Framebuffer */
  46#define CONFIG_SYS_LDB_CLOCK 33246000
  47#define CONFIG_LG4573
  48#define CONFIG_LG4573_BUS 0
  49#define CONFIG_LG4573_CS 1
  50
  51#define CONFIG_PWM_IMX
  52#define CONFIG_IMX6_PWM_PER_CLK 66000000
  53
  54#include "aristainetos-common.h"
  55
  56#endif                         /* __ARISTAINETOS2B_CONFIG_H */
  57