Convert CONFIG_SYS_SPD_BUS_NUM to Kconfig
[platform/kernel/u-boot.git] / include / configs / novena.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration settings for the Novena U-Boot.
4  *
5  * Copyright (C) 2014 Marek Vasut <marex@denx.de>
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 /* System configurations */
12
13 #include "mx6_common.h"
14
15 /* U-Boot Commands */
16
17 /* U-Boot general configurations */
18
19 /* U-Boot environment */
20 /*
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  */
26
27 /* Booting Linux */
28 #define CONFIG_HOSTNAME                 "novena"
29
30 /* Physical Memory Map */
31 #define PHYS_SDRAM                      MMDC0_ARB_BASE_ADDR
32
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
36
37 /* SPL */
38 #include "imx6_spl.h"                   /* common IMX6 SPL configuration */
39
40 /* I2C */
41 #define CONFIG_I2C_MULTI_BUS
42
43 /* I2C EEPROM */
44
45 /* MMC Configs */
46 #define CONFIG_SYS_FSL_ESDHC_ADDR       0
47 #define CONFIG_SYS_FSL_USDHC_NUM        2
48
49 /* PCI express */
50 #ifdef CONFIG_CMD_PCI
51 #define CONFIG_PCI_SCAN_SHOW
52 #define CONFIG_PCIE_IMX
53 #define CONFIG_PCIE_IMX_PERST_GPIO      IMX_GPIO_NR(3, 29)
54 #define CONFIG_PCIE_IMX_POWER_GPIO      IMX_GPIO_NR(7, 12)
55 #endif
56
57 /* PMIC */
58 #define CONFIG_POWER_PFUZE100
59 #define CONFIG_POWER_PFUZE100_I2C_ADDR  0x08
60
61 /* UART */
62 #define CONFIG_MXC_UART_BASE            UART2_BASE
63
64 /* USB Configs */
65 #ifdef CONFIG_CMD_USB
66 #define CONFIG_MXC_USB_PORTSC           (PORT_PTS_UTMI | PORT_PTS_PTW)
67 #define CONFIG_MXC_USB_FLAGS            0
68 /* Gadget part */
69 #define CONFIG_USBD_HS
70 #endif
71
72 /* Video output */
73 #define CONFIG_IMX_HDMI
74 #define CONFIG_IMX_VIDEO_SKIP
75
76 /* Extra U-Boot environment. */
77 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
78         "fdt_high=0xffffffff\0"                                         \
79         "initrd_high=0xffffffff\0"                                      \
80         "consdev=ttymxc1\0"                                             \
81         "baudrate=115200\0"                                             \
82         "bootdev=/dev/mmcblk0p1\0"                                      \
83         "rootdev=/dev/mmcblk0p2\0"                                      \
84         "netdev=eth0\0"                                                 \
85         "kernel_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0"           \
86         "pxefile_addr_r="__stringify(CONFIG_SYS_LOAD_ADDR)"\0"          \
87         "scriptaddr="__stringify(CONFIG_SYS_LOAD_ADDR)"\0"                      \
88         "ramdisk_addr_r=0x28000000\0"                                   \
89         "fdt_addr_r=0x18000000\0"                                       \
90         "fdtfile=imx6q-novena.dtb\0"                                    \
91         "stdout=serial,vidconsole\0"                                    \
92         "stderr=serial,vidconsole\0"                                    \
93         "addcons="                                                      \
94                 "setenv bootargs ${bootargs} "                          \
95                 "console=${consdev},${baudrate}\0"                      \
96         "addip="                                                        \
97                 "setenv bootargs ${bootargs} "                          \
98                 "ip=${ipaddr}:${serverip}:${gatewayip}:"                \
99                         "${netmask}:${hostname}:${netdev}:off\0"        \
100         "addmisc="                                                      \
101                 "setenv bootargs ${bootargs} ${miscargs}\0"             \
102         "addargs=run addcons addmisc\0"                                 \
103         "mmcload="                                                      \
104                 "mmc rescan ; "                                         \
105                 "ext4load mmc 0:1 ${kernel_addr_r} ${bootfile}\0"       \
106         "netload="                                                      \
107                 "tftp ${kernel_addr_r} ${hostname}/${bootfile}\0"       \
108         "miscargs=nohlt panic=1\0"                                      \
109         "mmcargs=setenv bootargs root=${rootdev} rw rootwait\0"         \
110         "nfsargs="                                                      \
111                 "setenv bootargs root=/dev/nfs rw "                     \
112                         "nfsroot=${serverip}:${rootpath},v3,tcp\0"      \
113         "mmc_mmc="                                                      \
114                 "run mmcload mmcargs addargs ; "                        \
115                 "bootm ${kernel_addr_r}\0"                              \
116         "mmc_nfs="                                                      \
117                 "run mmcload nfsargs addip addargs ; "                  \
118                 "bootm ${kernel_addr_r}\0"                              \
119         "net_mmc="                                                      \
120                 "run netload mmcargs addargs ; "                        \
121                 "bootm ${kernel_addr_r}\0"                              \
122         "net_nfs="                                                      \
123                 "run netload nfsargs addip addargs ; "                  \
124                 "bootm ${kernel_addr_r}\0"                              \
125         "update_sd_spl_filename=SPL\0"                                  \
126         "update_sd_uboot_filename=u-boot.img\0"                         \
127         "update_sd_firmware="   /* Update the SD firmware partition */  \
128                 "if mmc rescan ; then "                                 \
129                 "if dhcp ${update_sd_spl_filename} ; then "             \
130                 "mmc write ${loadaddr} 2 0x200 ; "                      \
131                 "fi ; "                                                 \
132                 "if dhcp ${update_sd_uboot_filename} ; then "           \
133                 "fatwrite mmc 0:1 ${loadaddr} u-boot.img ${filesize} ; "\
134                 "fi ; "                                                 \
135                 "fi\0"                                                  \
136         BOOTENV
137
138 #define BOOT_TARGET_DEVICES(func) \
139         func(MMC, mmc, 0) \
140         func(USB, usb, 0) \
141         func(SATA, sata, 0) \
142         func(PXE, pxe, na) \
143         func(DHCP, dhcp, na)
144
145 #include <config_distro_bootcmd.h>
146
147 #endif                          /* __CONFIG_H */