exynos-common.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (C) 2013 Samsung Electronics
  3. *
  4. * Common configuration settings for the SAMSUNG EXYNOS boards.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __EXYNOS_COMMON_H
  9. #define __EXYNOS_COMMON_H
  10. /* High Level Configuration Options */
  11. #define CONFIG_SAMSUNG /* in a SAMSUNG core */
  12. #define CONFIG_S5P /* S5P Family */
  13. #include <asm/arch/cpu.h> /* get chip and board defs */
  14. #include <linux/sizes.h>
  15. #define CONFIG_ARCH_CPU_INIT
  16. #define CONFIG_SKIP_LOWLEVEL_INIT
  17. #define CONFIG_BOARD_EARLY_INIT_F
  18. /* Keep L2 Cache Disabled */
  19. /* input clock of PLL: 24MHz input clock */
  20. #define CONFIG_SYS_CLK_FREQ 24000000
  21. #define CONFIG_TIMER_CLK_FREQ CONFIG_SYS_CLK_FREQ
  22. #define CONFIG_SETUP_MEMORY_TAGS
  23. #define CONFIG_CMDLINE_TAG
  24. #define CONFIG_INITRD_TAG
  25. #define CONFIG_ENV_OVERWRITE
  26. /* Size of malloc() pool before and after relocation */
  27. #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 << 20))
  28. /* select serial console configuration */
  29. #define CONFIG_BAUDRATE 115200
  30. /* SD/MMC configuration */
  31. #define CONFIG_GENERIC_MMC
  32. #define CONFIG_DWMMC
  33. #define CONFIG_EXYNOS_DWMMC
  34. #define CONFIG_BOUNCE_BUFFER
  35. /* PWM */
  36. #define CONFIG_PWM
  37. /* Command definition*/
  38. #define CONFIG_FAT_WRITE
  39. #define CONFIG_CMD_PART
  40. #define CONFIG_PARTITION_UUIDS
  41. /* Miscellaneous configurable options */
  42. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  43. #define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */
  44. #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
  45. /* Boot Argument Buffer Size */
  46. #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
  47. /* FLASH and environment organization */
  48. #define CONFIG_SYS_NO_FLASH
  49. #include <config_distro_defaults.h>
  50. #endif /* __CONFIG_H */