tbs2910.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2014 Soeren Moch <smoch@web.de>
  4. *
  5. * Configuration settings for the TBS2910 MatrixARM board.
  6. */
  7. #ifndef __TBS2910_CONFIG_H
  8. #define __TBS2910_CONFIG_H
  9. #include "mx6_common.h"
  10. /* General configuration */
  11. #define CONFIG_MACH_TYPE 3980
  12. #define CONFIG_SYS_HZ 1000
  13. #define CONFIG_IMX_THERMAL
  14. /* Physical Memory Map */
  15. #define CONFIG_SYS_SDRAM_BASE MMDC0_ARB_BASE_ADDR
  16. #define CONFIG_SYS_INIT_RAM_ADDR IRAM_BASE_ADDR
  17. #define CONFIG_SYS_INIT_RAM_SIZE IRAM_SIZE
  18. #define CONFIG_SYS_INIT_SP_OFFSET \
  19. (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
  20. #define CONFIG_SYS_INIT_SP_ADDR \
  21. (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_INIT_SP_OFFSET)
  22. #define CONFIG_SYS_MALLOC_LEN (128 * 1024 * 1024)
  23. #define CONFIG_SYS_BOOTMAPSZ 0x10000000
  24. /* Serial console */
  25. #define CONFIG_MXC_UART_BASE UART1_BASE /* select UART1/UART2 */
  26. /* Framebuffer */
  27. #define CONFIG_VIDEO_BMP_RLE8
  28. #define CONFIG_IMX_HDMI
  29. #define CONFIG_IMX_VIDEO_SKIP
  30. /* PCI */
  31. #ifdef CONFIG_CMD_PCI
  32. #define CONFIG_PCI_SCAN_SHOW
  33. #define CONFIG_PCIE_IMX
  34. #define CONFIG_PCIE_IMX_PERST_GPIO IMX_GPIO_NR(7, 12)
  35. #endif
  36. /* SATA */
  37. #ifdef CONFIG_CMD_SATA
  38. #define CONFIG_SYS_SATA_MAX_DEVICE 1
  39. #define CONFIG_DWC_AHSATA_PORT_ID 0
  40. #define CONFIG_DWC_AHSATA_BASE_ADDR SATA_ARB_BASE_ADDR
  41. #define CONFIG_LBA48
  42. #define CONFIG_SYS_64BIT_LBA
  43. #endif
  44. /* USB */
  45. #ifdef CONFIG_CMD_USB
  46. #define CONFIG_EHCI_HCD_INIT_AFTER_RESET
  47. #define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
  48. #ifdef CONFIG_CMD_USB_MASS_STORAGE
  49. #define CONFIG_USBD_HS
  50. #endif /* CONFIG_CMD_USB_MASS_STORAGE */
  51. #endif /* CONFIG_CMD_USB */
  52. #define CONFIG_BOARD_SIZE_LIMIT 392192 /* (CONFIG_ENV_OFFSET - 1024) */
  53. #define CONFIG_EXTRA_ENV_SETTINGS \
  54. BOOTENV \
  55. "bootargs_mmc1=console=ttymxc0,115200 di0_primary console=tty1\0" \
  56. "bootargs_mmc2=video=mxcfb0:dev=hdmi,1920x1080M@60 " \
  57. "video=mxcfb1:off video=mxcfb2:off fbmem=28M\0" \
  58. "bootargs_mmc3=root=/dev/mmcblk0p1 rootwait consoleblank=0 quiet\0" \
  59. "bootargs_mmc=setenv bootargs ${bootargs_mmc1} ${bootargs_mmc2} " \
  60. "${bootargs_mmc3}\0" \
  61. "bootargs_upd=setenv bootargs console=ttymxc0,115200 " \
  62. "rdinit=/sbin/init enable_wait_mode=off\0" \
  63. "bootcmd_mmc=run bootargs_mmc; mmc dev 2; " \
  64. "mmc read 0x10800000 0x800 0x4000; bootm 0x10800000\0" \
  65. "bootcmd_up1=load mmc 1 0x10800000 uImage\0" \
  66. "bootcmd_up2=load mmc 1 0x10d00000 uramdisk.img; " \
  67. "run bootargs_upd; " \
  68. "bootm 0x10800000 0x10d00000\0" \
  69. "console=ttymxc0\0" \
  70. "fan=gpio set 92\0" \
  71. "fdt_addr_r=0x18000000\0" \
  72. "fdtfile=" CONFIG_DEFAULT_FDT_FILE "\0" \
  73. "kernel_addr_r=0x12000000\0" \
  74. "pxefile_addr_r=0x10100000\0" \
  75. "ramdisk_addr_r=0x18080000\0" \
  76. "scriptaddr=0x10000000\0" \
  77. "set_con_serial=setenv stdout serial; " \
  78. "setenv stderr serial\0" \
  79. "set_con_hdmi=setenv stdout serial,vidconsole; " \
  80. "setenv stderr serial,vidconsole\0" \
  81. "stderr=serial,vidconsole\0" \
  82. "stdin=serial,usbkbd\0" \
  83. "stdout=serial,vidconsole\0"
  84. /* Enable distro boot */
  85. #define BOOT_TARGET_DEVICES(func) \
  86. func(MMC, mmc, 0) \
  87. func(MMC, mmc, 1) \
  88. func(MMC, mmc, 2) \
  89. func(SATA, sata, 0) \
  90. func(USB, usb, 0)
  91. #include <config_distro_bootcmd.h>
  92. #endif /* __TBS2910_CONFIG_H * */