sandbox.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_TRACE_BUFFER_SIZE (16 << 20)
  10. #define CONFIG_TRACE_EARLY_SIZE (16 << 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_CBSIZE 1024 /* Console I/O Buffer Size */
  28. /* turn on command-line edit/c/auto */
  29. /* SPI - enable all SPI flash types for testing purposes */
  30. #define CONFIG_I2C_EDID
  31. /* Memory things - we don't really want a memory test */
  32. #define CONFIG_SYS_LOAD_ADDR 0x00000000
  33. #define CONFIG_SYS_FDT_LOAD_ADDR 0x100
  34. #define CONFIG_PHYSMEM
  35. /* Size of our emulated memory */
  36. #define SB_CONCAT(x, y) x ## y
  37. #define SB_TO_UL(s) SB_CONCAT(s, UL)
  38. #define CONFIG_SYS_SDRAM_BASE 0
  39. #define CONFIG_SYS_SDRAM_SIZE \
  40. (SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 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_SERVERIP
  56. #ifndef SANDBOX_NO_SDL
  57. #define CONFIG_SANDBOX_SDL
  58. #endif
  59. /* LCD and keyboard require SDL support */
  60. #ifdef CONFIG_SANDBOX_SDL
  61. #define LCD_BPP LCD_COLOR16
  62. #define CONFIG_LCD_BMP_RLE8
  63. #define CONFIG_VIDEO_BMP_RLE8
  64. #define CONFIG_KEYBOARD
  65. #define SANDBOX_SERIAL_SETTINGS "stdin=serial,cros-ec-keyb,usbkbd\0" \
  66. "stdout=serial,vidconsole\0" \
  67. "stderr=serial,vidconsole\0"
  68. #else
  69. #define SANDBOX_SERIAL_SETTINGS "stdin=serial\0" \
  70. "stdout=serial,vidconsole\0" \
  71. "stderr=serial,vidconsole\0"
  72. #endif
  73. #define SANDBOX_ETH_SETTINGS "ethaddr=00:00:11:22:33:44\0" \
  74. "eth3addr=00:00:11:22:33:45\0" \
  75. "eth5addr=00:00:11:22:33:46\0" \
  76. "eth6addr=00:00:11:22:33:47\0" \
  77. "ipaddr=1.2.3.4\0"
  78. #define MEM_LAYOUT_ENV_SETTINGS \
  79. "bootm_size=0x10000000\0" \
  80. "kernel_addr_r=0x1000000\0" \
  81. "fdt_addr_r=0xc00000\0" \
  82. "ramdisk_addr_r=0x2000000\0" \
  83. "scriptaddr=0x1000\0" \
  84. "pxefile_addr_r=0x2000\0"
  85. #define CONFIG_EXTRA_ENV_SETTINGS \
  86. SANDBOX_SERIAL_SETTINGS \
  87. SANDBOX_ETH_SETTINGS \
  88. BOOTENV \
  89. MEM_LAYOUT_ENV_SETTINGS
  90. #ifndef CONFIG_SPL_BUILD
  91. #define CONFIG_SYS_IDE_MAXBUS 1
  92. #define CONFIG_SYS_ATA_IDE0_OFFSET 0
  93. #define CONFIG_SYS_IDE_MAXDEVICE 2
  94. #define CONFIG_SYS_ATA_BASE_ADDR 0x100
  95. #define CONFIG_SYS_ATA_DATA_OFFSET 0
  96. #define CONFIG_SYS_ATA_REG_OFFSET 1
  97. #define CONFIG_SYS_ATA_ALT_OFFSET 2
  98. #define CONFIG_SYS_ATA_STRIDE 4
  99. #endif
  100. #define CONFIG_SCSI_AHCI_PLAT
  101. #define CONFIG_SYS_SCSI_MAX_DEVICE 2
  102. #define CONFIG_SYS_SCSI_MAX_SCSI_ID 8
  103. #define CONFIG_SYS_SCSI_MAX_LUN 4
  104. #define CONFIG_SYS_SATA_MAX_DEVICE 2
  105. #define CONFIG_MISC_INIT_F
  106. #endif