mt8512.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Configuration for MediaTek MT8512 SoC
  4. *
  5. * Copyright (C) 2019 MediaTek Inc.
  6. * Author: Mingming Lee <mingming.lee@mediatek.com>
  7. */
  8. #ifndef __MT8512_H
  9. #define __MT8512_H
  10. #include <linux/sizes.h>
  11. #define CONFIG_SYS_NONCACHED_MEMORY SZ_1M
  12. #define CONFIG_CPU_ARMV8
  13. #define COUNTER_FREQUENCY 13000000
  14. #define CONFIG_SYS_LOAD_ADDR 0x41000000
  15. #define CONFIG_LOADADDR CONFIG_SYS_LOAD_ADDR
  16. #define CONFIG_SYS_MALLOC_LEN SZ_32M
  17. #define CONFIG_SYS_BOOTM_LEN SZ_64M
  18. /* Uboot definition */
  19. #define CONFIG_SYS_UBOOT_START CONFIG_SYS_TEXT_BASE
  20. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + \
  21. SZ_2M - \
  22. GENERATED_GBL_DATA_SIZE)
  23. #define ENV_BOOT_READ_IMAGE \
  24. "boot_rd_img=mmc dev 0" \
  25. ";mmc read ${loadaddr} 0x27000 0x8000" \
  26. ";iminfo ${loadaddr}\0"
  27. /* Console configuration */
  28. #define ENV_DEVICE_SETTINGS \
  29. "stdin=serial\0" \
  30. "stdout=serial\0" \
  31. "stderr=serial\0"
  32. #define ENV_BOOT_CMD \
  33. "mtk_boot=run boot_rd_img;bootm;\0"
  34. #define CONFIG_EXTRA_ENV_SETTINGS \
  35. "fdt_high=0x6c000000\0" \
  36. ENV_DEVICE_SETTINGS \
  37. ENV_BOOT_READ_IMAGE \
  38. ENV_BOOT_CMD \
  39. "bootcmd=run mtk_boot;\0" \
  40. #endif