sunxi-common.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /*
  2. * (C) Copyright 2012-2012 Henrik Nordstrom <henrik@henriknordstrom.net>
  3. *
  4. * (C) Copyright 2007-2011
  5. * Allwinner Technology Co., Ltd. <www.allwinnertech.com>
  6. * Tom Cubie <tangliang@allwinnertech.com>
  7. *
  8. * Configuration settings for the Allwinner sunxi series of boards.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef _SUNXI_COMMON_CONFIG_H
  13. #define _SUNXI_COMMON_CONFIG_H
  14. #include <asm/arch/cpu.h>
  15. #include <linux/stringify.h>
  16. #ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
  17. /*
  18. * The U-Boot workarounds bugs in the outdated buggy sunxi-3.4 kernels at the
  19. * expense of restricting some features, so the regular machine id values can
  20. * be used.
  21. */
  22. # define CONFIG_MACH_TYPE_COMPAT_REV 0
  23. #else
  24. /*
  25. * A compatibility guard to prevent loading outdated buggy sunxi-3.4 kernels.
  26. * Only sunxi-3.4 kernels with appropriate fixes applied are able to pass
  27. * beyond the machine id check.
  28. */
  29. # define CONFIG_MACH_TYPE_COMPAT_REV 1
  30. #endif
  31. /*
  32. * High Level Configuration Options
  33. */
  34. #ifdef CONFIG_SPL_BUILD
  35. #define CONFIG_SYS_THUMB_BUILD /* Thumbs mode to save space in SPL */
  36. #endif
  37. /* Serial & console */
  38. #define CONFIG_SYS_NS16550_SERIAL
  39. /* ns16550 reg in the low bits of cpu reg */
  40. #define CONFIG_SYS_NS16550_CLK 24000000
  41. #ifndef CONFIG_DM_SERIAL
  42. # define CONFIG_SYS_NS16550_REG_SIZE -4
  43. # define CONFIG_SYS_NS16550_COM1 SUNXI_UART0_BASE
  44. # define CONFIG_SYS_NS16550_COM2 SUNXI_UART1_BASE
  45. # define CONFIG_SYS_NS16550_COM3 SUNXI_UART2_BASE
  46. # define CONFIG_SYS_NS16550_COM4 SUNXI_UART3_BASE
  47. # define CONFIG_SYS_NS16550_COM5 SUNXI_R_UART_BASE
  48. #endif
  49. /* CPU */
  50. #define CONFIG_TIMER_CLK_FREQ 24000000
  51. /*
  52. * The DRAM Base differs between some models. We cannot use macros for the
  53. * CONFIG_FOO defines which contain the DRAM base address since they end
  54. * up unexpanded in include/autoconf.mk .
  55. *
  56. * So we have to have this #ifdef #else #endif block for these.
  57. */
  58. #ifdef CONFIG_MACH_SUN9I
  59. #define SDRAM_OFFSET(x) 0x2##x
  60. #define CONFIG_SYS_SDRAM_BASE 0x20000000
  61. #define CONFIG_SYS_LOAD_ADDR 0x22000000 /* default load address */
  62. #define CONFIG_SYS_TEXT_BASE 0x2a000000
  63. /* Note SPL_STACK_R_ADDR is set through Kconfig, we include it here
  64. * since it needs to fit in with the other values. By also #defining it
  65. * we get warnings if the Kconfig value mismatches. */
  66. #define CONFIG_SPL_STACK_R_ADDR 0x2fe00000
  67. #define CONFIG_SPL_BSS_START_ADDR 0x2ff80000
  68. #else
  69. #define SDRAM_OFFSET(x) 0x4##x
  70. #define CONFIG_SYS_SDRAM_BASE 0x40000000
  71. #define CONFIG_SYS_LOAD_ADDR 0x42000000 /* default load address */
  72. #define CONFIG_SYS_TEXT_BASE 0x4a000000
  73. /* Note SPL_STACK_R_ADDR is set through Kconfig, we include it here
  74. * since it needs to fit in with the other values. By also #defining it
  75. * we get warnings if the Kconfig value mismatches. */
  76. #define CONFIG_SPL_STACK_R_ADDR 0x4fe00000
  77. #define CONFIG_SPL_BSS_START_ADDR 0x4ff80000
  78. #endif
  79. #define CONFIG_SPL_BSS_MAX_SIZE 0x00080000 /* 512 KiB */
  80. #if defined(CONFIG_MACH_SUN9I) || defined(CONFIG_MACH_SUN50I)
  81. /*
  82. * The A80's A1 sram starts at 0x00010000 rather then at 0x00000000 and is
  83. * slightly bigger. Note that it is possible to map the first 32 KiB of the
  84. * A1 at 0x00000000 like with older SoCs by writing 0x16aa0001 to the
  85. * undocumented 0x008000e0 SYS_CTRL register. Where the 16aa is a key and
  86. * the 1 actually activates the mapping of the first 32 KiB to 0x00000000.
  87. */
  88. #define CONFIG_SYS_INIT_RAM_ADDR 0x10000
  89. #define CONFIG_SYS_INIT_RAM_SIZE 0x08000 /* FIXME: 40 KiB ? */
  90. #else
  91. #define CONFIG_SYS_INIT_RAM_ADDR 0x0
  92. #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 /* 32 KiB */
  93. #endif
  94. #define CONFIG_SYS_INIT_SP_OFFSET \
  95. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  96. #define CONFIG_SYS_INIT_SP_ADDR \
  97. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  98. #define CONFIG_NR_DRAM_BANKS 1
  99. #define PHYS_SDRAM_0 CONFIG_SYS_SDRAM_BASE
  100. #define PHYS_SDRAM_0_SIZE 0x80000000 /* 2 GiB */
  101. #ifdef CONFIG_AHCI
  102. #define CONFIG_LIBATA
  103. #define CONFIG_SCSI_AHCI
  104. #define CONFIG_SCSI_AHCI_PLAT
  105. #define CONFIG_SUNXI_AHCI
  106. #define CONFIG_SYS_64BIT_LBA
  107. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1
  108. #define CONFIG_SYS_SCSI_MAX_LUN 1
  109. #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
  110. CONFIG_SYS_SCSI_MAX_LUN)
  111. #define CONFIG_SCSI
  112. #endif
  113. #define CONFIG_SETUP_MEMORY_TAGS
  114. #define CONFIG_CMDLINE_TAG
  115. #define CONFIG_INITRD_TAG
  116. #define CONFIG_SERIAL_TAG
  117. #ifdef CONFIG_NAND_SUNXI
  118. #define CONFIG_SYS_NAND_MAX_ECCPOS 1664
  119. #define CONFIG_SYS_NAND_ONFI_DETECTION
  120. #define CONFIG_SYS_MAX_NAND_DEVICE 8
  121. #endif
  122. #ifdef CONFIG_SPL_SPI_SUNXI
  123. #define CONFIG_SYS_SPI_U_BOOT_OFFS 0x8000
  124. #endif
  125. /* mmc config */
  126. #ifdef CONFIG_MMC
  127. #define CONFIG_GENERIC_MMC
  128. #define CONFIG_MMC_SUNXI
  129. #define CONFIG_MMC_SUNXI_SLOT 0
  130. #define CONFIG_ENV_IS_IN_MMC
  131. #define CONFIG_SYS_MMC_ENV_DEV 0 /* first detected MMC controller */
  132. #define CONFIG_SYS_MMC_MAX_DEVICE 4
  133. #endif
  134. /* 64MB of malloc() pool */
  135. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (64 << 20))
  136. /*
  137. * Miscellaneous configurable options
  138. */
  139. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  140. #define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
  141. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  142. /* Boot Argument Buffer Size */
  143. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  144. /* standalone support */
  145. #define CONFIG_STANDALONE_LOAD_ADDR CONFIG_SYS_LOAD_ADDR
  146. /* baudrate */
  147. #define CONFIG_BAUDRATE 115200
  148. /* The stack sizes are set up in start.S using the settings below */
  149. #define CONFIG_STACKSIZE (256 << 10) /* 256 KiB */
  150. /* FLASH and environment organization */
  151. #define CONFIG_SYS_NO_FLASH
  152. #define CONFIG_SYS_MONITOR_LEN (768 << 10) /* 768 KiB */
  153. #define CONFIG_ENV_OFFSET (544 << 10) /* (8 + 24 + 512) KiB */
  154. #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */
  155. #define CONFIG_FAT_WRITE /* enable write access */
  156. #define CONFIG_SPL_FRAMEWORK
  157. #define CONFIG_SPL_BOARD_LOAD_IMAGE
  158. #if defined(CONFIG_MACH_SUN9I)
  159. #define CONFIG_SPL_TEXT_BASE 0x10040 /* sram start+header */
  160. #define CONFIG_SPL_MAX_SIZE 0x5fc0 /* ? KiB on sun9i */
  161. #elif defined(CONFIG_MACH_SUN50I)
  162. #define CONFIG_SPL_TEXT_BASE 0x10040 /* sram start+header */
  163. #define CONFIG_SPL_MAX_SIZE 0x7fc0 /* 32 KiB on sun50i */
  164. #else
  165. #define CONFIG_SPL_TEXT_BASE 0x40 /* sram start+header */
  166. #define CONFIG_SPL_MAX_SIZE 0x5fc0 /* 24KB on sun4i/sun7i */
  167. #endif
  168. #ifndef CONFIG_ARM64
  169. #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/armv7/sunxi/u-boot-spl.lds"
  170. #endif
  171. #define CONFIG_SPL_PAD_TO 32768 /* decimal for 'dd' */
  172. #if defined(CONFIG_MACH_SUN9I) || defined(CONFIG_MACH_SUN50I)
  173. /* FIXME: 40 KiB instead of 32 KiB ? */
  174. #define LOW_LEVEL_SRAM_STACK 0x00018000
  175. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  176. #else
  177. /* end of 32 KiB in sram */
  178. #define LOW_LEVEL_SRAM_STACK 0x00008000 /* End of sram */
  179. #define CONFIG_SPL_STACK LOW_LEVEL_SRAM_STACK
  180. #endif
  181. /* I2C */
  182. #if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
  183. defined CONFIG_SY8106A_POWER
  184. #endif
  185. #if defined CONFIG_I2C0_ENABLE || defined CONFIG_I2C1_ENABLE || \
  186. defined CONFIG_I2C2_ENABLE || defined CONFIG_I2C3_ENABLE || \
  187. defined CONFIG_I2C4_ENABLE || defined CONFIG_R_I2C_ENABLE
  188. #define CONFIG_SYS_I2C
  189. #define CONFIG_SYS_I2C_MVTWSI
  190. #define CONFIG_SYS_I2C_SPEED 400000
  191. #define CONFIG_SYS_I2C_SLAVE 0x7f
  192. #endif
  193. #if defined CONFIG_VIDEO_LCD_PANEL_I2C && !(defined CONFIG_SPL_BUILD)
  194. #define CONFIG_SYS_I2C_SOFT
  195. #define CONFIG_SYS_I2C_SOFT_SPEED 50000
  196. #define CONFIG_SYS_I2C_SOFT_SLAVE 0x00
  197. /* We use pin names in Kconfig and sunxi_name_to_gpio() */
  198. #define CONFIG_SOFT_I2C_GPIO_SDA soft_i2c_gpio_sda
  199. #define CONFIG_SOFT_I2C_GPIO_SCL soft_i2c_gpio_scl
  200. #ifndef __ASSEMBLY__
  201. extern int soft_i2c_gpio_sda;
  202. extern int soft_i2c_gpio_scl;
  203. #endif
  204. #define CONFIG_VIDEO_LCD_I2C_BUS 0 /* The lcd panel soft i2c is bus 0 */
  205. #define CONFIG_SYS_SPD_BUS_NUM 1 /* And the axp209 i2c bus is bus 1 */
  206. #else
  207. #define CONFIG_SYS_SPD_BUS_NUM 0 /* The axp209 i2c bus is bus 0 */
  208. #define CONFIG_VIDEO_LCD_I2C_BUS -1 /* NA, but necessary to compile */
  209. #endif
  210. /* PMU */
  211. #if defined CONFIG_AXP152_POWER || defined CONFIG_AXP209_POWER || \
  212. defined CONFIG_AXP221_POWER || defined CONFIG_AXP818_POWER || \
  213. defined CONFIG_SY8106A_POWER
  214. #endif
  215. #ifndef CONFIG_CONS_INDEX
  216. #define CONFIG_CONS_INDEX 1 /* UART0 */
  217. #endif
  218. #ifdef CONFIG_REQUIRE_SERIAL_CONSOLE
  219. #if CONFIG_CONS_INDEX == 1
  220. #ifdef CONFIG_MACH_SUN9I
  221. #define OF_STDOUT_PATH "/soc/serial@07000000:115200"
  222. #else
  223. #define OF_STDOUT_PATH "/soc@01c00000/serial@01c28000:115200"
  224. #endif
  225. #elif CONFIG_CONS_INDEX == 2 && defined(CONFIG_MACH_SUN5I)
  226. #define OF_STDOUT_PATH "/soc@01c00000/serial@01c28400:115200"
  227. #elif CONFIG_CONS_INDEX == 3 && defined(CONFIG_MACH_SUN8I)
  228. #define OF_STDOUT_PATH "/soc@01c00000/serial@01c28800:115200"
  229. #elif CONFIG_CONS_INDEX == 5 && defined(CONFIG_MACH_SUN8I)
  230. #define OF_STDOUT_PATH "/soc@01c00000/serial@01f02800:115200"
  231. #else
  232. #error Unsupported console port nr. Please fix stdout-path in sunxi-common.h.
  233. #endif
  234. #endif /* ifdef CONFIG_REQUIRE_SERIAL_CONSOLE */
  235. /* GPIO */
  236. #define CONFIG_SUNXI_GPIO
  237. #ifdef CONFIG_VIDEO
  238. /*
  239. * The amount of RAM to keep free at the top of RAM when relocating u-boot,
  240. * to use as framebuffer. This must be a multiple of 4096.
  241. */
  242. #define CONFIG_SUNXI_MAX_FB_SIZE (16 << 20)
  243. /* Do we want to initialize a simple FB? */
  244. #define CONFIG_VIDEO_DT_SIMPLEFB
  245. #define CONFIG_VIDEO_SUNXI
  246. #define CONFIG_VIDEO_LOGO
  247. #define CONFIG_VIDEO_STD_TIMINGS
  248. #define CONFIG_I2C_EDID
  249. #define VIDEO_LINE_LEN (pGD->plnSizeX)
  250. /* allow both serial and cfb console. */
  251. /* stop x86 thinking in cfbconsole from trying to init a pc keyboard */
  252. #endif /* CONFIG_VIDEO */
  253. /* Ethernet support */
  254. #ifdef CONFIG_SUNXI_EMAC
  255. #define CONFIG_PHY_ADDR 1
  256. #define CONFIG_MII /* MII PHY management */
  257. #define CONFIG_PHYLIB
  258. #endif
  259. #ifdef CONFIG_SUNXI_GMAC
  260. #define CONFIG_PHY_GIGE /* GMAC can use gigabit PHY */
  261. #define CONFIG_PHY_ADDR 1
  262. #define CONFIG_MII /* MII PHY management */
  263. #define CONFIG_PHY_REALTEK
  264. #endif
  265. #ifdef CONFIG_USB_EHCI_HCD
  266. #define CONFIG_USB_OHCI_NEW
  267. #define CONFIG_USB_OHCI_SUNXI
  268. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
  269. #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 1
  270. #endif
  271. #ifdef CONFIG_USB_MUSB_SUNXI
  272. #define CONFIG_USB_MUSB_PIO_ONLY
  273. #endif
  274. #ifdef CONFIG_USB_MUSB_GADGET
  275. #define CONFIG_USB_FUNCTION_FASTBOOT
  276. #define CONFIG_USB_FUNCTION_MASS_STORAGE
  277. #endif
  278. #ifdef CONFIG_USB_FUNCTION_FASTBOOT
  279. #define CONFIG_CMD_FASTBOOT
  280. #define CONFIG_FASTBOOT_BUF_ADDR CONFIG_SYS_LOAD_ADDR
  281. #define CONFIG_FASTBOOT_BUF_SIZE 0x2000000
  282. #define CONFIG_ANDROID_BOOT_IMAGE
  283. #define CONFIG_FASTBOOT_FLASH
  284. #ifdef CONFIG_MMC
  285. #define CONFIG_FASTBOOT_FLASH_MMC_DEV 0
  286. #define CONFIG_EFI_PARTITION
  287. #endif
  288. #endif
  289. #ifdef CONFIG_USB_FUNCTION_MASS_STORAGE
  290. #endif
  291. #ifdef CONFIG_USB_KEYBOARD
  292. #define CONFIG_PREBOOT
  293. #define CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE
  294. #endif
  295. #if !defined CONFIG_ENV_IS_IN_MMC && \
  296. !defined CONFIG_ENV_IS_IN_NAND && \
  297. !defined CONFIG_ENV_IS_IN_FAT && \
  298. !defined CONFIG_ENV_IS_IN_SPI_FLASH
  299. #define CONFIG_ENV_IS_NOWHERE
  300. #endif
  301. #define CONFIG_MISC_INIT_R
  302. #ifndef CONFIG_SPL_BUILD
  303. #include <config_distro_defaults.h>
  304. #ifdef CONFIG_ARM64
  305. /*
  306. * Boards seem to come with at least 512MB of DRAM.
  307. * The kernel should go at 512K, which is the default text offset (that will
  308. * be adjusted at runtime if needed).
  309. * There is no compression for arm64 kernels (yet), so leave some space
  310. * for really big kernels, say 256MB for now.
  311. * Scripts, PXE and DTBs should go afterwards, leaving the rest for the initrd.
  312. * Align the initrd to a 2MB page.
  313. */
  314. #define KERNEL_ADDR_R __stringify(SDRAM_OFFSET(0080000))
  315. #define FDT_ADDR_R __stringify(SDRAM_OFFSET(FA00000))
  316. #define SCRIPT_ADDR_R __stringify(SDRAM_OFFSET(FC00000))
  317. #define PXEFILE_ADDR_R __stringify(SDRAM_OFFSET(FD00000))
  318. #define RAMDISK_ADDR_R __stringify(SDRAM_OFFSET(FE00000))
  319. #else
  320. /*
  321. * 160M RAM (256M minimum minus 64MB heap + 32MB for u-boot, stack, fb, etc.
  322. * 32M uncompressed kernel, 16M compressed kernel, 1M fdt,
  323. * 1M script, 1M pxe and the ramdisk at the end.
  324. */
  325. #define KERNEL_ADDR_R __stringify(SDRAM_OFFSET(2000000))
  326. #define FDT_ADDR_R __stringify(SDRAM_OFFSET(3000000))
  327. #define SCRIPT_ADDR_R __stringify(SDRAM_OFFSET(3100000))
  328. #define PXEFILE_ADDR_R __stringify(SDRAM_OFFSET(3200000))
  329. #define RAMDISK_ADDR_R __stringify(SDRAM_OFFSET(3300000))
  330. #endif
  331. #define MEM_LAYOUT_ENV_SETTINGS \
  332. "bootm_size=0xa000000\0" \
  333. "kernel_addr_r=" KERNEL_ADDR_R "\0" \
  334. "fdt_addr_r=" FDT_ADDR_R "\0" \
  335. "scriptaddr=" SCRIPT_ADDR_R "\0" \
  336. "pxefile_addr_r=" PXEFILE_ADDR_R "\0" \
  337. "ramdisk_addr_r=" RAMDISK_ADDR_R "\0"
  338. #define DFU_ALT_INFO_RAM \
  339. "dfu_alt_info_ram=" \
  340. "kernel ram " KERNEL_ADDR_R " 0x1000000;" \
  341. "fdt ram " FDT_ADDR_R " 0x100000;" \
  342. "ramdisk ram " RAMDISK_ADDR_R " 0x4000000\0"
  343. #ifdef CONFIG_MMC
  344. #define BOOT_TARGET_DEVICES_MMC(func) func(MMC, mmc, 0)
  345. #if CONFIG_MMC_SUNXI_SLOT_EXTRA != -1
  346. #define BOOT_TARGET_DEVICES_MMC_EXTRA(func) func(MMC, mmc, 1)
  347. #else
  348. #define BOOT_TARGET_DEVICES_MMC_EXTRA(func)
  349. #endif
  350. #else
  351. #define BOOT_TARGET_DEVICES_MMC(func)
  352. #define BOOT_TARGET_DEVICES_MMC_EXTRA(func)
  353. #endif
  354. #ifdef CONFIG_AHCI
  355. #define BOOT_TARGET_DEVICES_SCSI(func) func(SCSI, scsi, 0)
  356. #else
  357. #define BOOT_TARGET_DEVICES_SCSI(func)
  358. #endif
  359. #ifdef CONFIG_USB_STORAGE
  360. #define BOOT_TARGET_DEVICES_USB(func) func(USB, usb, 0)
  361. #else
  362. #define BOOT_TARGET_DEVICES_USB(func)
  363. #endif
  364. /* FEL boot support, auto-execute boot.scr if a script address was provided */
  365. #define BOOTENV_DEV_FEL(devtypeu, devtypel, instance) \
  366. "bootcmd_fel=" \
  367. "if test -n ${fel_booted} && test -n ${fel_scriptaddr}; then " \
  368. "echo '(FEL boot)'; " \
  369. "source ${fel_scriptaddr}; " \
  370. "fi\0"
  371. #define BOOTENV_DEV_NAME_FEL(devtypeu, devtypel, instance) \
  372. "fel "
  373. #define BOOT_TARGET_DEVICES(func) \
  374. func(FEL, fel, na) \
  375. BOOT_TARGET_DEVICES_MMC(func) \
  376. BOOT_TARGET_DEVICES_MMC_EXTRA(func) \
  377. BOOT_TARGET_DEVICES_SCSI(func) \
  378. BOOT_TARGET_DEVICES_USB(func) \
  379. func(PXE, pxe, na) \
  380. func(DHCP, dhcp, na)
  381. #ifdef CONFIG_OLD_SUNXI_KERNEL_COMPAT
  382. #define BOOTCMD_SUNXI_COMPAT \
  383. "bootcmd_sunxi_compat=" \
  384. "setenv root /dev/mmcblk0p3 rootwait; " \
  385. "if ext2load mmc 0 0x44000000 uEnv.txt; then " \
  386. "echo Loaded environment from uEnv.txt; " \
  387. "env import -t 0x44000000 ${filesize}; " \
  388. "fi; " \
  389. "setenv bootargs console=${console} root=${root} ${extraargs}; " \
  390. "ext2load mmc 0 0x43000000 script.bin && " \
  391. "ext2load mmc 0 0x48000000 uImage && " \
  392. "bootm 0x48000000\0"
  393. #else
  394. #define BOOTCMD_SUNXI_COMPAT
  395. #endif
  396. #include <config_distro_bootcmd.h>
  397. #ifdef CONFIG_USB_KEYBOARD
  398. #define CONSOLE_STDIN_SETTINGS \
  399. "preboot=usb start\0" \
  400. "stdin=serial,usbkbd\0"
  401. #else
  402. #define CONSOLE_STDIN_SETTINGS \
  403. "stdin=serial\0"
  404. #endif
  405. #ifdef CONFIG_VIDEO
  406. #define CONSOLE_STDOUT_SETTINGS \
  407. "stdout=serial,vga\0" \
  408. "stderr=serial,vga\0"
  409. #else
  410. #define CONSOLE_STDOUT_SETTINGS \
  411. "stdout=serial\0" \
  412. "stderr=serial\0"
  413. #endif
  414. #define CONSOLE_ENV_SETTINGS \
  415. CONSOLE_STDIN_SETTINGS \
  416. CONSOLE_STDOUT_SETTINGS
  417. #define CONFIG_EXTRA_ENV_SETTINGS \
  418. CONSOLE_ENV_SETTINGS \
  419. MEM_LAYOUT_ENV_SETTINGS \
  420. DFU_ALT_INFO_RAM \
  421. "fdtfile=" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \
  422. "console=ttyS0,115200\0" \
  423. BOOTCMD_SUNXI_COMPAT \
  424. BOOTENV
  425. #else /* ifndef CONFIG_SPL_BUILD */
  426. #define CONFIG_EXTRA_ENV_SETTINGS
  427. #endif
  428. #endif /* _SUNXI_COMMON_CONFIG_H */