sandbox.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. * SPDX-License-Identifier: GPL-2.0+
  4. */
  5. #ifndef __CONFIG_H
  6. #define __CONFIG_H
  7. #ifdef FTRACE
  8. #define CONFIG_TRACE
  9. #define CONFIG_CMD_TRACE
  10. #define CONFIG_TRACE_BUFFER_SIZE (16 << 20)
  11. #define CONFIG_TRACE_EARLY_SIZE (8 << 20)
  12. #define CONFIG_TRACE_EARLY
  13. #define CONFIG_TRACE_EARLY_ADDR 0x00100000
  14. #endif
  15. #define CONFIG_SYS_TIMER_RATE 1000000
  16. #define CONFIG_BOOTSTAGE
  17. #define CONFIG_BOOTSTAGE_REPORT
  18. /* Number of bits in a C 'long' on this architecture */
  19. #define CONFIG_SANDBOX_BITS_PER_LONG 64
  20. #define CONFIG_OF_CONTROL
  21. #define CONFIG_OF_HOSTFILE
  22. #define CONFIG_OF_LIBFDT
  23. #define CONFIG_LMB
  24. #define CONFIG_FIT
  25. #define CONFIG_FIT_SIGNATURE
  26. #define CONFIG_RSA
  27. #define CONFIG_CMD_FDT
  28. #define CONFIG_FS_FAT
  29. #define CONFIG_FS_EXT4
  30. #define CONFIG_EXT4_WRITE
  31. #define CONFIG_CMD_FAT
  32. #define CONFIG_CMD_EXT4
  33. #define CONFIG_CMD_EXT4_WRITE
  34. #define CONFIG_CMD_PART
  35. #define CONFIG_DOS_PARTITION
  36. #define CONFIG_HOST_MAX_DEVICES 4
  37. #define CONFIG_SYS_VSNPRINTF
  38. #define CONFIG_CMD_GPIO
  39. #define CONFIG_SANDBOX_GPIO
  40. #define CONFIG_SANDBOX_GPIO_COUNT 20
  41. #define CONFIG_CMD_GPT
  42. #define CONFIG_PARTITION_UUIDS
  43. #define CONFIG_EFI_PARTITION
  44. /*
  45. * Size of malloc() pool, although we don't actually use this yet.
  46. */
  47. #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* 4MB */
  48. #define CONFIG_SYS_HUSH_PARSER
  49. #define CONFIG_SYS_LONGHELP /* #undef to save memory */
  50. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  51. /* Print Buffer Size */
  52. #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16)
  53. #define CONFIG_SYS_MAXARGS 16
  54. /* turn on command-line edit/c/auto */
  55. #define CONFIG_CMDLINE_EDITING
  56. #define CONFIG_COMMAND_HISTORY
  57. #define CONFIG_AUTO_COMPLETE
  58. #define CONFIG_ENV_SIZE 8192
  59. #define CONFIG_ENV_IS_NOWHERE
  60. /* SPI */
  61. #define CONFIG_SANDBOX_SPI
  62. #define CONFIG_CMD_SF
  63. #define CONFIG_CMD_SF_TEST
  64. #define CONFIG_CMD_SPI
  65. #define CONFIG_SPI_FLASH
  66. #define CONFIG_SPI_FLASH_SANDBOX
  67. #define CONFIG_SPI_FLASH_STMICRO
  68. #define CONFIG_SPI_FLASH_WINBOND
  69. /* Memory things - we don't really want a memory test */
  70. #define CONFIG_SYS_LOAD_ADDR 0x00000000
  71. #define CONFIG_SYS_MEMTEST_START 0x00100000
  72. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
  73. #define CONFIG_SYS_FDT_LOAD_ADDR 0x1000000
  74. /* Size of our emulated memory */
  75. #define CONFIG_SYS_SDRAM_BASE 0
  76. #define CONFIG_SYS_SDRAM_SIZE (128 << 20)
  77. #define CONFIG_SYS_TEXT_BASE 0
  78. #define CONFIG_SYS_MONITOR_BASE 0
  79. #define CONFIG_NR_DRAM_BANKS 1
  80. #define CONFIG_BAUDRATE 115200
  81. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  82. 115200}
  83. #define CONFIG_SANDBOX_SERIAL
  84. #define CONFIG_SYS_NO_FLASH
  85. /* include default commands */
  86. #include <config_cmd_default.h>
  87. /* We don't have networking support yet */
  88. #undef CONFIG_CMD_NET
  89. #undef CONFIG_CMD_NFS
  90. #define CONFIG_CMD_HASH
  91. #define CONFIG_HASH_VERIFY
  92. #define CONFIG_SHA1
  93. #define CONFIG_SHA256
  94. #define CONFIG_CMD_SANDBOX
  95. #define CONFIG_BOOTARGS ""
  96. #define CONFIG_EXTRA_ENV_SETTINGS "stdin=serial\0" \
  97. "stdout=serial\0" \
  98. "stderr=serial\0"
  99. #define CONFIG_GZIP_COMPRESSED
  100. #define CONFIG_BZIP2
  101. #define CONFIG_LZO
  102. #define CONFIG_LZMA
  103. #endif