sandbox.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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_TRACE_BUFFER_SIZE (16 << 20)
  10. #define CONFIG_TRACE_EARLY_SIZE (8 << 20)
  11. #define CONFIG_TRACE_EARLY
  12. #define CONFIG_TRACE_EARLY_ADDR 0x00100000
  13. #endif
  14. #ifndef CONFIG_SPL_BUILD
  15. #define CONFIG_IO_TRACE
  16. #endif
  17. #ifndef CONFIG_TIMER
  18. #define CONFIG_SYS_TIMER_RATE 1000000
  19. #endif
  20. #define CONFIG_LMB
  21. #define CONFIG_FS_EXT4
  22. #define CONFIG_EXT4_WRITE
  23. #define CONFIG_HOST_MAX_DEVICES 4
  24. /*
  25. * Size of malloc() pool, before and after relocation
  26. */
  27. #define CONFIG_MALLOC_F_ADDR 0x0010000
  28. #define CONFIG_SYS_MALLOC_LEN (32 << 20) /* 32MB */
  29. #define CONFIG_SYS_LONGHELP /* #undef to save memory */
  30. #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
  31. #define CONFIG_DISPLAY_BOARDINFO_LATE
  32. /* turn on command-line edit/c/auto */
  33. #define CONFIG_CMDLINE_EDITING
  34. #define CONFIG_AUTO_COMPLETE
  35. #define CONFIG_ENV_SIZE 8192
  36. /* SPI - enable all SPI flash types for testing purposes */
  37. #define CONFIG_I2C_EDID
  38. /* Memory things - we don't really want a memory test */
  39. #define CONFIG_SYS_LOAD_ADDR 0x00000000
  40. #define CONFIG_SYS_MEMTEST_START 0x00100000
  41. #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + 0x1000)
  42. #define CONFIG_SYS_FDT_LOAD_ADDR 0x100
  43. #define CONFIG_PHYSMEM
  44. /* Size of our emulated memory */
  45. #define CONFIG_SYS_SDRAM_BASE 0
  46. #define CONFIG_SYS_SDRAM_SIZE (128 << 20)
  47. #define CONFIG_SYS_TEXT_BASE 0
  48. #define CONFIG_SYS_MONITOR_BASE 0
  49. #define CONFIG_NR_DRAM_BANKS 1
  50. #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600,\
  51. 115200}
  52. /* include default commands */
  53. #include <config_distro_defaults.h>
  54. #define BOOT_TARGET_DEVICES(func) \
  55. func(HOST, host, 1) \
  56. func(HOST, host, 0)
  57. #include <config_distro_bootcmd.h>
  58. #define CONFIG_KEEP_SERVERADDR
  59. #define CONFIG_UDP_CHECKSUM
  60. #define CONFIG_TIMESTAMP
  61. #define CONFIG_BOOTP_DNS
  62. #define CONFIG_BOOTP_DNS2
  63. #define CONFIG_BOOTP_SEND_HOSTNAME
  64. #define CONFIG_BOOTP_SERVERIP
  65. #define CONFIG_IP_DEFRAG
  66. #ifndef SANDBOX_NO_SDL
  67. #define CONFIG_SANDBOX_SDL
  68. #endif
  69. /* LCD and keyboard require SDL support */
  70. #ifdef CONFIG_SANDBOX_SDL
  71. #define LCD_BPP LCD_COLOR16
  72. #define CONFIG_LCD_BMP_RLE8
  73. #define CONFIG_VIDEO_BMP_RLE8
  74. #define CONFIG_SPLASH_SCREEN_ALIGN
  75. #define CONFIG_KEYBOARD
  76. #define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \
  77. "stdout=serial,vidconsole\0" \
  78. "stderr=serial,vidconsole\0"
  79. #else
  80. #define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \
  81. "stdout=serial,vidconsole\0" \
  82. "stderr=serial,vidconsole\0"
  83. #endif
  84. #define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \
  85. "eth1addr=00:00:11:22:33:45\0" \
  86. "eth3addr=00:00:11:22:33:46\0" \
  87. "eth5addr=00:00:11:22:33:47\0" \
  88. "ipaddr=1.2.3.4\0"
  89. #define MEM_LAYOUT_ENV_SETTINGS \
  90. "bootm_size=0x10000000\0" \
  91. "kernel_addr_r=0x1000000\0" \
  92. "fdt_addr_r=0xc00000\0" \
  93. "ramdisk_addr_r=0x2000000\0" \
  94. "scriptaddr=0x1000\0" \
  95. "pxefile_addr_r=0x2000\0"
  96. #define CONFIG_EXTRA_ENV_SETTINGS \
  97. SANDBOX_SERIAL_SETTINGS \
  98. SANDBOX_ETH_SETTINGS \
  99. BOOTENV \
  100. MEM_LAYOUT_ENV_SETTINGS
  101. #define CONFIG_GZIP_COMPRESSED
  102. #define CONFIG_BZIP2
  103. #ifndef CONFIG_SPL_BUILD
  104. #define CONFIG_SYS_IDE_MAXBUS 1
  105. #define CONFIG_SYS_ATA_IDE0_OFFSET 0
  106. #define CONFIG_SYS_IDE_MAXDEVICE 2
  107. #define CONFIG_SYS_ATA_BASE_ADDR 0x100
  108. #define CONFIG_SYS_ATA_DATA_OFFSET 0
  109. #define CONFIG_SYS_ATA_REG_OFFSET 1
  110. #define CONFIG_SYS_ATA_ALT_OFFSET 2
  111. #define CONFIG_SYS_ATA_STRIDE 4
  112. #endif
  113. #define CONFIG_SCSI_AHCI_PLAT
  114. #define CONFIG_SYS_SCSI_MAX_DEVICE 2
  115. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 8
  116. #define CONFIG_SYS_SCSI_MAX_LUN 4
  117. #define CONFIG_SYS_SATA_MAX_DEVICE 2
  118. #define CONFIG_SYSTEMACE
  119. #define CONFIG_SYS_SYSTEMACE_WIDTH 16
  120. #define CONFIG_SYS_SYSTEMACE_BASE 0
  121. #define CONFIG_MISC_INIT_F
  122. #endif