1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Configuration settings for the Novena U-Boot.
11 /* System configurations */
13 #include "mx6_common.h"
17 /* U-Boot general configurations */
19 /* U-Boot environment */
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
28 #define CONFIG_HOSTNAME "novena"
30 /* Physical Memory Map */
31 #define PHYS_SDRAM MMDC0_ARB_BASE_ADDR
33 #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM
34 #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
35 #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
38 #include "imx6_spl.h" /* common IMX6 SPL configuration */
41 #define CONFIG_I2C_MULTI_BUS
46 #define CONFIG_SYS_FSL_ESDHC_ADDR 0
47 #define CONFIG_SYS_FSL_USDHC_NUM 2
51 #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(3, 29)
52 #define CONFIG_PCIE_IMX_POWER_GPIO IMX_GPIO_NR(7, 12)
56 #define CONFIG_POWER_PFUZE100
57 #define CONFIG_POWER_PFUZE100_I2C_ADDR 0x08
60 #define CONFIG_MXC_UART_BASE UART2_BASE
64 #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
65 #define CONFIG_MXC_USB_FLAGS 0
67 #define CONFIG_USBD_HS
71 #define CONFIG_IMX_HDMI
72 #define CONFIG_IMX_VIDEO_SKIP
74 /* Extra U-Boot environment. */
75 #define CONFIG_EXTRA_ENV_SETTINGS \
76 "fdt_high=0xffffffff\0" \
77 "initrd_high=0xffffffff\0" \
80 "bootdev=/dev/mmcblk0p1\0" \
81 "rootdev=/dev/mmcblk0p2\0" \
83 "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
84 "pxefile_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
85 "scriptaddr="__stringify(CONFIG_SYS_LOAD_ADDR)"\0" \
86 "ramdisk_addr_r=0x28000000\0" \
87 "fdt_addr_r=0x18000000\0" \
88 "fdtfile=imx6q-novena.dtb\0" \
89 "stdout=serial,vidconsole\0" \
90 "stderr=serial,vidconsole\0" \
92 "setenv bootargs ${bootargs} " \
93 "console=${consdev},${baudrate}\0" \
95 "setenv bootargs ${bootargs} " \
96 "ip=${ipaddr}:${serverip}:${gatewayip}:" \
97 "${netmask}:${hostname}:${netdev}:off\0" \
99 "setenv bootargs ${bootargs} ${miscargs}\0" \
100 "addargs=run addcons addmisc\0" \
103 "ext4load mmc 0:1 ${kernel_addr_r} ${bootfile}\0" \
105 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0" \
106 "miscargs=nohlt panic=1\0" \
107 "mmcargs=setenv bootargs root=${rootdev} rw rootwait\0" \
109 "setenv bootargs root=/dev/nfs rw " \
110 "nfsroot=${serverip}:${rootpath},v3,tcp\0" \
112 "run mmcload mmcargs addargs ; " \
113 "bootm ${kernel_addr_r}\0" \
115 "run mmcload nfsargs addip addargs ; " \
116 "bootm ${kernel_addr_r}\0" \
118 "run netload mmcargs addargs ; " \
119 "bootm ${kernel_addr_r}\0" \
121 "run netload nfsargs addip addargs ; " \
122 "bootm ${kernel_addr_r}\0" \
123 "update_sd_spl_filename=SPL\0" \
124 "update_sd_uboot_filename=u-boot.img\0" \
125 "update_sd_firmware=" /* Update the SD firmware partition */ \
126 "if mmc rescan ; then " \
127 "if dhcp ${update_sd_spl_filename} ; then " \
128 "mmc write ${loadaddr} 2 0x200 ; " \
130 "if dhcp ${update_sd_uboot_filename} ; then " \
131 "fatwrite mmc 0:1 ${loadaddr} u-boot.img ${filesize} ; "\
136 #define BOOT_TARGET_DEVICES(func) \
139 func(SATA, sata, 0) \
143 #include <config_distro_bootcmd.h>
145 #endif /* __CONFIG_H */