vyasa-rk3288.h 940 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2017 Amarula Solutions
  4. *
  5. * Configuration settings for Amarula Vyasa RK3288.
  6. */
  7. #ifndef __CONFIG_H
  8. #define __CONFIG_H
  9. #define ROCKCHIP_DEVICE_SETTINGS
  10. #include <configs/rk3288_common.h>
  11. #undef BOOT_TARGET_DEVICES
  12. #define BOOT_TARGET_DEVICES(func) \
  13. func(MMC, mmc, 1) \
  14. #define CONFIG_SYS_MMC_ENV_DEV 1
  15. #ifndef CONFIG_TPL_BUILD
  16. #define CONFIG_SPL_OS_BOOT
  17. /* Falcon Mode */
  18. #define CONFIG_SPL_FS_LOAD_ARGS_NAME "args"
  19. #define CONFIG_SPL_FS_LOAD_KERNEL_NAME "uImage"
  20. #define CONFIG_CMD_SPL
  21. #define CONFIG_SYS_SPL_ARGS_ADDR 0x0ffe5000
  22. #define CONFIG_CMD_SPL_WRITE_SIZE (128 * SZ_1K)
  23. /* Falcon Mode - MMC support: args@16MB kernel@17MB */
  24. #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x8000 /* 16MB */
  25. #define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / 512)
  26. #define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x8800 /* 17MB */
  27. #endif
  28. #endif