sandbox.h 3.3 KB

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