blob: 8d39d75a42bc12c8bb0c2a518eb4100ab89a7219 [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 */
Mario Six5bc05432018-03-28 14:38:20 +020028#define CONFIG_HOSTNAME "novena"
Marek Vasutf91c09a2014-10-24 23:39:07 +020029
30/* Physical Memory Map */
Marek Vasutf91c09a2014-10-24 23:39:07 +020031#define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
Marek Vasutf91c09a2014-10-24 23:39:07 +020032
Tom Riniaa6e94d2022-11-16 13:10:37 -050033#define CFG_SYS_SDRAM_BASE PHYS_SDRAM
Marek Vasutf91c09a2014-10-24 23:39:07 +020034#define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
35#define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
36
Marek Vasutf91c09a2014-10-24 23:39:07 +020037/* I2C */
Marek Vasutf91c09a2014-10-24 23:39:07 +020038#define CONFIG_I2C_MULTI_BUS
Marek Vasutf91c09a2014-10-24 23:39:07 +020039
40/* I2C EEPROM */
Marek Vasutf91c09a2014-10-24 23:39:07 +020041
42/* MMC Configs */
Tom Rini6cc04542022-10-28 20:27:13 -040043#define CFG_SYS_FSL_ESDHC_ADDR 0
44#define CFG_SYS_FSL_USDHC_NUM 2
Marek Vasutf91c09a2014-10-24 23:39:07 +020045
Marek Vasutf91c09a2014-10-24 23:39:07 +020046/* PCI express */
47#ifdef CONFIG_CMD_PCI
Marek Vasutf91c09a2014-10-24 23:39:07 +020048#define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(3, 29)
49#define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(7, 12)
50#endif
51
52/* PMIC */
Marek Vasutf91c09a2014-10-24 23:39:07 +020053#define CONFIG_POWER_PFUZE100
54#define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
55
Marek Vasutf91c09a2014-10-24 23:39:07 +020056/* UART */
Marek Vasutf91c09a2014-10-24 23:39:07 +020057#define CONFIG_MXC_UART_BASE UART2_BASE
Marek Vasutf91c09a2014-10-24 23:39:07 +020058
59/* USB Configs */
60#ifdef CONFIG_CMD_USB
Marek Vasutf91c09a2014-10-24 23:39:07 +020061#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
62#define CONFIG_MXC_USB_FLAGS 0
63/* Gadget part */
Marek Vasutf91c09a2014-10-24 23:39:07 +020064#define CONFIG_USBD_HS
Marek Vasutf91c09a2014-10-24 23:39:07 +020065#endif
66
67/* Video output */
Marek Vasutf91c09a2014-10-24 23:39:07 +020068#define CONFIG_IMX_HDMI
69#define CONFIG_IMX_VIDEO_SKIP
Marek Vasutf91c09a2014-10-24 23:39:07 +020070
71/* Extra U-Boot environment. */
72#define CONFIG_EXTRA_ENV_SETTINGS \
73 "fdt_high=0xffffffff\0" \
74 "initrd_high=0xffffffff\0" \
75 "consdev=ttymxc1\0" \
76 "baudrate=115200\0" \
77 "bootdev=/dev/mmcblk0p1\0" \
78 "rootdev=/dev/mmcblk0p2\0" \
79 "netdev=eth0\0" \
Tom Rini72d81362021-08-23 10:25:30 -040080 "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
81 "pxefile_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
82 "scriptaddr="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
Wolfgang Denk0cf207e2021-09-27 17:42:39 +020083 "ramdisk_addr_r=0x28000000\0" \
Vagrant Cascadian1c2d4a52015-11-25 00:37:10 +010084 "fdt_addr_r=0x18000000\0" \
85 "fdtfile=imx6q-novena.dtb\0" \
Marek Vasut2f1c06c2019-05-17 20:32:20 +020086 "stdout=serial,vidconsole\0" \
87 "stderr=serial,vidconsole\0" \
Marek Vasutf91c09a2014-10-24 23:39:07 +020088 "addcons=" \
89 "setenv bootargs ${bootargs} " \
90 "console=${consdev},${baudrate}\0" \
91 "addip=" \
92 "setenv bootargs ${bootargs} " \
93 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
94 "${netmask}:${hostname}:${netdev}:off\0" \
95 "addmisc=" \
96 "setenv bootargs ${bootargs} ${miscargs}\0" \
97 "addargs=run addcons addmisc\0" \
98 "mmcload=" \
99 "mmc rescan ; " \
100 "ext4load mmc 0:1 ${kernel_addr_r} ${bootfile}\0" \
101 "netload=" \
102 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
103 "miscargs=nohlt panic=1\0" \
104 "mmcargs=setenv bootargs root=${rootdev} rw rootwait\0" \
105 "nfsargs=" \
106 "setenv bootargs root=/dev/nfs rw " \
107 "nfsroot=${serverip}:${rootpath},v3,tcp\0" \
108 "mmc_mmc=" \
109 "run mmcload mmcargs addargs ; " \
110 "bootm ${kernel_addr_r}\0" \
111 "mmc_nfs=" \
112 "run mmcload nfsargs addip addargs ; " \
113 "bootm ${kernel_addr_r}\0" \
114 "net_mmc=" \
115 "run netload mmcargs addargs ; " \
116 "bootm ${kernel_addr_r}\0" \
117 "net_nfs=" \
118 "run netload nfsargs addip addargs ; " \
119 "bootm ${kernel_addr_r}\0" \
120 "update_sd_spl_filename=SPL\0" \
121 "update_sd_uboot_filename=u-boot.img\0" \
122 "update_sd_firmware=" /* Update the SD firmware partition */ \
123 "if mmc rescan ; then " \
124 "if dhcp ${update_sd_spl_filename} ; then " \
125 "mmc write ${loadaddr} 2 0x200 ; " \
126 "fi ; " \
127 "if dhcp ${update_sd_uboot_filename} ; then " \
128 "fatwrite mmc 0:1 ${loadaddr} u-boot.img ${filesize} ; "\
129 "fi ; " \
130 "fi\0" \
Vagrant Cascadian1c2d4a52015-11-25 00:37:10 +0100131 BOOTENV
132
133#define BOOT_TARGET_DEVICES(func) \
134 func(MMC, mmc, 0) \
135 func(USB, usb, 0) \
136 func(SATA, sata, 0) \
137 func(PXE, pxe, na) \
138 func(DHCP, dhcp, na)
139
140#include <config_distro_bootcmd.h>
141
Marek Vasutf91c09a2014-10-24 23:39:07 +0200142#endif /* __CONFIG_H */