mx53cx9020.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. /*
  2. * Copyright (C) 2015 Beckhoff Automation GmbH & Co. KG
  3. * Patrick Bruenn <p.bruenn@beckhoff.com>
  4. *
  5. * Configuration settings for Beckhoff CX9020.
  6. *
  7. * Based on Freescale's Linux i.MX mx53loco.h file:
  8. * Copyright (C) 2010-2011 Freescale Semiconductor.
  9. *
  10. * SPDX-License-Identifier: GPL-2.0+
  11. */
  12. #ifndef __CONFIG_H
  13. #define __CONFIG_H
  14. #include <asm/arch/imx-regs.h>
  15. #define CONFIG_CMDLINE_TAG
  16. #define CONFIG_SETUP_MEMORY_TAGS
  17. #define CONFIG_INITRD_TAG
  18. #define CONFIG_SYS_FSL_CLK
  19. /* Size of malloc() pool */
  20. #define CONFIG_SYS_MALLOC_LEN (10 * 1024 * 1024)
  21. #define CONFIG_BOARD_EARLY_INIT_F
  22. #define CONFIG_BOARD_LATE_INIT
  23. #define CONFIG_MXC_GPIO
  24. #define CONFIG_REVISION_TAG
  25. #define CONFIG_MXC_UART_BASE UART2_BASE
  26. #define CONFIG_FPGA_COUNT 1
  27. /* MMC Configs */
  28. #define CONFIG_FSL_ESDHC
  29. #define CONFIG_SYS_FSL_ESDHC_ADDR 0
  30. #define CONFIG_SYS_FSL_ESDHC_NUM 2
  31. #define CONFIG_GENERIC_MMC
  32. /* bootz: zImage/initrd.img support */
  33. #define CONFIG_DOS_PARTITION
  34. /* Eth Configs */
  35. #define CONFIG_MII
  36. #define IMX_FEC_BASE FEC_BASE_ADDR
  37. #define CONFIG_ETHPRIME "FEC0"
  38. #define CONFIG_FEC_MXC_PHYADDR 0x1F
  39. /* USB Configs */
  40. #define CONFIG_USB_EHCI
  41. #define CONFIG_USB_EHCI_MX5
  42. #define CONFIG_USB_STORAGE
  43. #define CONFIG_USB_HOST_ETHER
  44. #define CONFIG_USB_ETHER_ASIX
  45. #define CONFIG_USB_ETHER_MCS7830
  46. #define CONFIG_USB_ETHER_SMSC95XX
  47. #define CONFIG_MXC_USB_PORT 1
  48. #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
  49. #define CONFIG_MXC_USB_FLAGS 0
  50. /* allow to overwrite serial and ethaddr */
  51. #define CONFIG_ENV_OVERWRITE
  52. #define CONFIG_CONS_INDEX 1
  53. #define CONFIG_BAUDRATE 115200
  54. /* Command definition */
  55. #define CONFIG_SUPPORT_RAW_INITRD
  56. #define CONFIG_LOADADDR 0x70010000 /* loadaddr env var */
  57. #define CONFIG_SYS_TEXT_BASE 0x77800000
  58. #define CONFIG_EXTRA_ENV_SETTINGS \
  59. "fdt_addr=0x71ff0000\0" \
  60. "rdaddr=0x72000000\0" \
  61. "console=ttymxc1,115200\0" \
  62. "uenv=/boot/uEnv.txt\0" \
  63. "optargs=\0" \
  64. "cmdline=\0" \
  65. "mmcdev=0\0" \
  66. "mmcpart=1\0" \
  67. "mmcrootfstype=ext4 rootwait fixrtc\0" \
  68. "mmcargs=setenv bootargs console=${console} " \
  69. "${optargs} " \
  70. "root=/dev/mmcblk${mmcdev}p${mmcpart} ro " \
  71. "rootfstype=${mmcrootfstype} " \
  72. "${cmdline}\0" \
  73. "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \
  74. "loadrd=load mmc ${bootpart} ${rdaddr} ${bootdir}/${rdfile};" \
  75. "setenv rdsize ${filesize}\0" \
  76. "loadfdt=echo loading ${fdt_path} ...;" \
  77. "load mmc ${bootpart} ${fdt_addr} ${fdt_path}\0" \
  78. "mmcboot=mmc dev ${mmcdev}; " \
  79. "if mmc rescan; then " \
  80. "echo SD/MMC found on device ${mmcdev};" \
  81. "echo Checking for: ${uenv} ...;" \
  82. "setenv bootpart ${mmcdev}:${mmcpart};" \
  83. "if test -e mmc ${bootpart} ${uenv}; then " \
  84. "load mmc ${bootpart} ${loadaddr} ${uenv};" \
  85. "env import -t ${loadaddr} ${filesize};" \
  86. "echo Loaded environment from ${uenv};" \
  87. "if test -n ${dtb}; then " \
  88. "setenv fdt_file ${dtb};" \
  89. "echo Using: dtb=${fdt_file} ...;" \
  90. "fi;" \
  91. "echo Checking for uname_r in ${uenv}...;" \
  92. "if test -n ${uname_r}; then " \
  93. "echo Running uname_boot ...;" \
  94. "run uname_boot;" \
  95. "fi;" \
  96. "fi;" \
  97. "fi;\0" \
  98. "uname_boot="\
  99. "setenv bootdir /boot; " \
  100. "setenv bootfile vmlinuz-${uname_r}; " \
  101. "setenv ccatfile /boot/ccat.rbf; " \
  102. "echo loading CCAT firmware from ${ccatfile}; " \
  103. "load mmc ${bootpart} ${loadaddr} ${ccatfile}; " \
  104. "fpga load 0 ${loadaddr} ${filesize}; " \
  105. "if test -e mmc ${bootpart} ${bootdir}/${bootfile}; then " \
  106. "echo loading ${bootdir}/${bootfile} ...; " \
  107. "run loadimage;" \
  108. "setenv fdt_path /boot/dtbs/${uname_r}/${fdt_file}; " \
  109. "if test -e mmc ${bootpart} ${fdt_path}; then " \
  110. "run loadfdt;" \
  111. "else " \
  112. "echo; echo unable to find ${fdt_file} ...;" \
  113. "echo booting legacy ...;"\
  114. "run mmcargs;" \
  115. "echo debug: [${bootargs}] ... ;" \
  116. "echo debug: [bootz ${loadaddr}] ... ;" \
  117. "bootz ${loadaddr}; " \
  118. "fi;" \
  119. "run mmcargs;" \
  120. "echo debug: [${bootargs}] ... ;" \
  121. "echo debug: [bootz ${loadaddr} - ${fdt_addr}] ... ;" \
  122. "bootz ${loadaddr} - ${fdt_addr}; " \
  123. "fi;\0"
  124. #define CONFIG_BOOTCOMMAND \
  125. "run mmcboot;"
  126. #define CONFIG_ARP_TIMEOUT 200UL
  127. /* Miscellaneous configurable options */
  128. #define CONFIG_SYS_LONGHELP /* undef to save memory */
  129. #define CONFIG_AUTO_COMPLETE
  130. #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
  131. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  132. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
  133. #define CONFIG_SYS_MEMTEST_START 0x70000000
  134. #define CONFIG_SYS_MEMTEST_END 0x70010000
  135. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  136. #define CONFIG_CMDLINE_EDITING
  137. /* Physical Memory Map */
  138. #define CONFIG_NR_DRAM_BANKS 2
  139. #define PHYS_SDRAM_1 CSD0_BASE_ADDR
  140. #define PHYS_SDRAM_1_SIZE (gd->bd->bi_dram[0].size)
  141. #define PHYS_SDRAM_2 CSD1_BASE_ADDR
  142. #define PHYS_SDRAM_2_SIZE (gd->bd->bi_dram[1].size)
  143. #define PHYS_SDRAM_SIZE (gd->ram_size)
  144. #define CONFIG_SYS_SDRAM_BASE (PHYS_SDRAM_1)
  145. #define CONFIG_SYS_INIT_RAM_ADDR (IRAM_BASE_ADDR)
  146. #define CONFIG_SYS_INIT_RAM_SIZE (IRAM_SIZE)
  147. #define CONFIG_SYS_INIT_SP_OFFSET \
  148. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  149. #define CONFIG_SYS_INIT_SP_ADDR \
  150. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  151. /* FLASH and environment organization */
  152. #define CONFIG_SYS_NO_FLASH
  153. #define CONFIG_ENV_OFFSET (6 * 64 * 1024)
  154. #define CONFIG_ENV_SIZE (8 * 1024)
  155. #define CONFIG_ENV_IS_IN_MMC
  156. #define CONFIG_SYS_MMC_ENV_DEV 0
  157. /* Framebuffer and LCD */
  158. #define CONFIG_PREBOOT
  159. #define CONFIG_VIDEO_IPUV3
  160. #define CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
  161. #define CONFIG_VIDEO_BMP_RLE8
  162. #define CONFIG_SPLASH_SCREEN
  163. #define CONFIG_BMP_16BPP
  164. #define CONFIG_VIDEO_LOGO
  165. #define CONFIG_IPUV3_CLK 200000000
  166. #endif /* __CONFIG_H */