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