rk3328_common.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * (C) Copyright 2016 Rockchip Electronics Co., Ltd
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __CONFIG_RK3328_COMMON_H
  7. #define __CONFIG_RK3328_COMMON_H
  8. #include "rockchip-common.h"
  9. #define CONFIG_SYS_MALLOC_LEN (32 << 20)
  10. #define CONFIG_SYS_CBSIZE 1024
  11. #define CONFIG_SKIP_LOWLEVEL_INIT
  12. #define CONFIG_SYS_NS16550_MEM32
  13. #define CONFIG_SYS_TEXT_BASE 0x00200000
  14. #define CONFIG_SYS_INIT_SP_ADDR 0x00300000
  15. #define CONFIG_SYS_LOAD_ADDR 0x00800800
  16. #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* 64M */
  17. /* MMC/SD IP block */
  18. #define CONFIG_BOUNCE_BUFFER
  19. #define CONFIG_SUPPORT_VFAT
  20. /* RAW SD card / eMMC locations. */
  21. #define CONFIG_SYS_SPI_U_BOOT_OFFS (128 << 10)
  22. /* FAT sd card locations. */
  23. #define CONFIG_SYS_MMCSD_FS_BOOT_PARTITION 1
  24. #define CONFIG_SYS_SDRAM_BASE 0
  25. #define CONFIG_NR_DRAM_BANKS 1
  26. #define SDRAM_MAX_SIZE 0xff000000
  27. #define CONFIG_SPI_FLASH
  28. #define CONFIG_SPI
  29. #define CONFIG_SF_DEFAULT_SPEED 20000000
  30. #ifndef CONFIG_SPL_BUILD
  31. #define ENV_MEM_LAYOUT_SETTINGS \
  32. "scriptaddr=0x00500000\0" \
  33. "pxefile_addr_r=0x00600000\0" \
  34. "fdt_addr_r=0x01f00000\0" \
  35. "kernel_addr_r=0x02000000\0" \
  36. "ramdisk_addr_r=0x04000000\0"
  37. #include <config_distro_bootcmd.h>
  38. #define CONFIG_EXTRA_ENV_SETTINGS \
  39. ENV_MEM_LAYOUT_SETTINGS \
  40. "partitions=" PARTS_DEFAULT \
  41. BOOTENV
  42. #endif
  43. /* rockchip ohci host driver */
  44. #define CONFIG_USB_OHCI_NEW
  45. #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1
  46. #endif