sandbox.h 3.7 KB

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