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