ts4600.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * (C) Copyright 2016 Savoir-faire Linux Inc.
  3. *
  4. * Author: Sebastien Bourdelin <sebastien.bourdelin@savoirfairelinux.com>
  5. *
  6. * Derived from MX28EVK code by
  7. * Fabio Estevam <fabio.estevam@freescale.com>
  8. * Freescale Semiconductor, Inc.
  9. *
  10. * Configuration settings for the TS4600 Board
  11. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #ifndef __CONFIGS_TS4600_H__
  15. #define __CONFIGS_TS4600_H__
  16. /* System configurations */
  17. #define CONFIG_MX28 /* i.MX28 SoC */
  18. /* U-Boot Commands */
  19. #define CONFIG_SYS_NO_FLASH /* No NOR Flash */
  20. #define CONFIG_DOS_PARTITION
  21. /* Memory configuration */
  22. #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */
  23. #define PHYS_SDRAM_1 0x40000000 /* Base address */
  24. #define PHYS_SDRAM_1_SIZE 0x40000000 /* Max 1 GB RAM */
  25. #define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
  26. /* Environment */
  27. #define CONFIG_ENV_SIZE (8 * 1024)
  28. /* Environment is in MMC */
  29. #if defined(CONFIG_CMD_MMC) && defined(CONFIG_ENV_IS_IN_MMC)
  30. #define CONFIG_ENV_OFFSET (256 * 1024)
  31. #define CONFIG_SYS_MMC_ENV_DEV 0
  32. #endif
  33. /* Boot Linux */
  34. #define CONFIG_LOADADDR 0x42000000
  35. #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
  36. /* Extra Environment */
  37. #define CONFIG_EXTRA_ENV_SETTINGS \
  38. "fdt_addr=0x41000000\0" \
  39. "loadkernel=load mmc ${mmcdev}:${mmcpart} ${loadaddr} zImage\0" \
  40. "loadfdt=load mmc ${mmcdev}:${mmcpart} ${fdt_addr} imx28-ts4600.dtb\0" \
  41. "loadbootscript=load mmc ${mmcdev}:${mmcpart} ${loadaddr} boot.ub\0" \
  42. "bootscript=echo Running bootscript from mmc...; " \
  43. "setenv mmcdev 0; " \
  44. "setenv mmcpart 2; " \
  45. "run loadbootscript && source ${loadaddr}; \0" \
  46. "sdboot=echo Booting from SD card ...; " \
  47. "setenv mmcdev 0; " \
  48. "setenv mmcpart 2; " \
  49. "setenv root /dev/mmcblk0p3; " \
  50. "run loadkernel && run loadfdt; \0" \
  51. "startbootsequence=run bootscript || run sdboot \0" \
  52. #define CONFIG_BOOTCOMMAND \
  53. "mmc rescan; " \
  54. "run startbootsequence; " \
  55. "setenv cmdline_append console=ttyAMA0,115200; " \
  56. "setenv bootargs root=${root} rootwait rw ${cmdline_append}; " \
  57. "bootz ${loadaddr} - ${fdt_addr}; "
  58. /* The rest of the configuration is shared */
  59. #include <configs/mxs.h>
  60. #endif /* __CONFIGS_TS4600_H__ */