blob: 39d3afd1c8ee69ef01d614c248f52b02d8d409fc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marek Vasutf91c09a2014-10-24 23:39:07 +02002/*
Bin Menga1875592016-02-05 19:30:11 -08003 * Configuration settings for the Novena U-Boot.
Marek Vasutf91c09a2014-10-24 23:39:07 +02004 *
5 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
Marek Vasutf91c09a2014-10-24 23:39:07 +02006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/* System configurations */
Marek Vasutf91c09a2014-10-24 23:39:07 +020012
Peter Robinson60667a52015-05-22 17:30:44 +010013#include "mx6_common.h"
Marek Vasutf91c09a2014-10-24 23:39:07 +020014
15/* U-Boot Commands */
Marek Vasutf91c09a2014-10-24 23:39:07 +020016
17/* U-Boot general configurations */
Marek Vasutf91c09a2014-10-24 23:39:07 +020018
19/* U-Boot environment */
Marek Vasutf91c09a2014-10-24 23:39:07 +020020/*
21 * Environment is on MMC, starting at offset 512KiB from start of the card.
22 * Please place first partition at offset 1MiB from the start of the card
23 * as recommended by GNU/fdisk. See below for details:
24 * http://homepage.ntlworld.com./jonathan.deboynepollard/FGA/disc-partition-alignment.html
25 */
Marek Vasutf91c09a2014-10-24 23:39:07 +020026
27/* Booting Linux */
Marek Vasutf91c09a2014-10-24 23:39:07 +020028
29/* Physical Memory Map */
Marek Vasutf91c09a2014-10-24 23:39:07 +020030#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
Marek Vasutf91c09a2014-10-24 23:39:07 +020031
Tom Riniaa6e94d2022-11-16 13:10:37 -050032#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Tom Rini65cc0e22022-11-16 13:10:41 -050033#define CFG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
34#define CFG_SYS_INIT_RAM_SIZE IRAM_SIZE
Marek Vasutf91c09a2014-10-24 23:39:07 +020035
Marek Vasutf91c09a2014-10-24 23:39:07 +020036/* I2C EEPROM */
Marek Vasutf91c09a2014-10-24 23:39:07 +020037
38/* MMC Configs */
Tom Rini6cc04542022-10-28 20:27:13 -040039#define CFG_SYS_FSL_ESDHC_ADDR 0
40#define CFG_SYS_FSL_USDHC_NUM 2
Marek Vasutf91c09a2014-10-24 23:39:07 +020041
Marek Vasutf91c09a2014-10-24 23:39:07 +020042/* PCI express */
43#ifdef CONFIG_CMD_PCI
Tom Rini7906f912022-12-04 10:13:25 -050044#define CFG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(3, 29)
Tom Rini52139622022-12-04 10:13:26 -050045#define CFG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(7, 12)
Marek Vasutf91c09a2014-10-24 23:39:07 +020046#endif
47
48/* PMIC */
Tom Riniaa3efb62022-12-04 10:13:35 -050049#define CFG_POWER_PFUZE100_I2C_ADDR 0x08
Marek Vasutf91c09a2014-10-24 23:39:07 +020050
Marek Vasutf91c09a2014-10-24 23:39:07 +020051/* UART */
Tom Rini4db38662022-12-04 10:04:55 -050052#define CFG_MXC_UART_BASE UART2_BASE
Marek Vasutf91c09a2014-10-24 23:39:07 +020053
54/* USB Configs */
55#ifdef CONFIG_CMD_USB
Tom Rinidd11fdc2022-12-04 10:04:56 -050056#define CFG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
57#define CFG_MXC_USB_FLAGS 0
Marek Vasutf91c09a2014-10-24 23:39:07 +020058#endif
59
Marek Vasutf91c09a2014-10-24 23:39:07 +020060/* Extra U-Boot environment. */
Tom Rini0613c362022-12-04 10:03:50 -050061#define CFG_EXTRA_ENV_SETTINGS \
Marek Vasutf91c09a2014-10-24 23:39:07 +020062 "fdt_high=0xffffffff\0" \
63 "initrd_high=0xffffffff\0" \
64 "consdev=ttymxc1\0" \
65 "baudrate=115200\0" \
66 "bootdev=/dev/mmcblk0p1\0" \
67 "rootdev=/dev/mmcblk0p2\0" \
68 "netdev=eth0\0" \
Tom Rini72d81362021-08-23 10:25:30 -040069 "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
70 "pxefile_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
71 "scriptaddr="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020072 "ramdisk_addr_r=0x28000000\0" \
Vagrant Cascadian1c2d4a52015-11-25 00:37:10 +010073 "fdt_addr_r=0x18000000\0" \
74 "fdtfile=imx6q-novena.dtb\0" \
Marek Vasut2f1c06c2019-05-17 20:32:20 +020075 "stdout=serial,vidconsole\0" \
76 "stderr=serial,vidconsole\0" \
Marek Vasutf91c09a2014-10-24 23:39:07 +020077 "addcons=" \
78 "setenv bootargs ${bootargs} " \
79 "console=${consdev},${baudrate}\0" \
80 "addip=" \
81 "setenv bootargs ${bootargs} " \
82 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
83 "${netmask}:${hostname}:${netdev}:off\0" \
84 "addmisc=" \
85 "setenv bootargs ${bootargs} ${miscargs}\0" \
86 "addargs=run addcons addmisc\0" \
87 "mmcload=" \
88 "mmc rescan ; " \
89 "ext4load mmc 0:1 ${kernel_addr_r} ${bootfile}\0" \
90 "netload=" \
91 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
92 "miscargs=nohlt panic=1\0" \
93 "mmcargs=setenv bootargs root=${rootdev} rw rootwait\0" \
94 "nfsargs=" \
95 "setenv bootargs root=/dev/nfs rw " \
96 "nfsroot=${serverip}:${rootpath},v3,tcp\0" \
97 "mmc_mmc=" \
98 "run mmcload mmcargs addargs ; " \
99 "bootm ${kernel_addr_r}\0" \
100 "mmc_nfs=" \
101 "run mmcload nfsargs addip addargs ; " \
102 "bootm ${kernel_addr_r}\0" \
103 "net_mmc=" \
104 "run netload mmcargs addargs ; " \
105 "bootm ${kernel_addr_r}\0" \
106 "net_nfs=" \
107 "run netload nfsargs addip addargs ; " \
108 "bootm ${kernel_addr_r}\0" \
109 "update_sd_spl_filename=SPL\0" \
110 "update_sd_uboot_filename=u-boot.img\0" \
111 "update_sd_firmware=" /* Update the SD firmware partition */ \
112 "if mmc rescan ; then " \
113 "if dhcp ${update_sd_spl_filename} ; then " \
114 "mmc write ${loadaddr} 2 0x200 ; " \
115 "fi ; " \
116 "if dhcp ${update_sd_uboot_filename} ; then " \
117 "fatwrite mmc 0:1 ${loadaddr} u-boot.img ${filesize} ; "\
118 "fi ; " \
119 "fi\0" \
Vagrant Cascadian1c2d4a52015-11-25 00:37:10 +0100120 BOOTENV
121
122#define BOOT_TARGET_DEVICES(func) \
123 func(MMC, mmc, 0) \
124 func(USB, usb, 0) \
125 func(SATA, sata, 0) \
126 func(PXE, pxe, na) \
127 func(DHCP, dhcp, na)
128
129#include <config_distro_bootcmd.h>
130
Marek Vasutf91c09a2014-10-24 23:39:07 +0200131#endif /* __CONFIG_H */