Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. if TARGET_GAZERBEAM
  2. config GDSYS_LEGACY_OSD_CMDS
  3. bool
  4. help
  5. Use the 'osdw', 'osdp', and 'osdsize' legacy commands required by
  6. gdsys devices.
  7. config GDSYS_LEGACY_DRIVERS
  8. bool
  9. help
  10. Enable the gdsys legacy drivers under board/gdsys/common. If this
  11. option is not set, all relevant DM drivers must be configured for the
  12. device in question.
  13. config SYS_FPGA0_BASE
  14. hex
  15. default E0600000
  16. help
  17. The base address of the first FPGA's register map.
  18. config SYS_FPGA0_SIZE
  19. hex
  20. default 1
  21. help
  22. The base address of the first FPGA's register map.
  23. config SYS_FPGA1_BASE
  24. hex
  25. help
  26. The base address of the second FPGA's register map.
  27. config SYS_FPGA1_SIZE
  28. hex
  29. help
  30. The base address of the second FPGA's register map.
  31. config SYS_BOARD
  32. default "mpc8308"
  33. config SYS_VENDOR
  34. default "gdsys"
  35. config SYS_CONFIG_NAME
  36. default "gazerbeam"
  37. config SYS_FPGA1_BASE
  38. default E0700000
  39. config SYS_FPGA1_SIZE
  40. default 1
  41. config GDSYS_LEGACY_OSD_CMDS
  42. default y
  43. choice
  44. prompt "FPGA flavor selection"
  45. config SYS_FPGA_FLAVOR_LEGACY
  46. bool "Legacy flavor"
  47. help
  48. This enables support for the gdsys pre-Gazerbeam FPGA memory layout.
  49. config SYS_FPGA_FLAVOR_GAZERBEAM
  50. bool "Gazerbeam flavor"
  51. help
  52. This enables support for the gdsys FPGA memory layout of the
  53. Gazerbeam board.
  54. endchoice
  55. config EXTENDED_FEATURES
  56. bool "FPGA extended features"
  57. depends on GDSYS_LEGACY_DRIVERS
  58. help
  59. Enable support for the extended features field of the IHS FPGA.
  60. config CMD_IOLOOP
  61. bool "Enable 'ioloop' and 'ioreflect' commands"
  62. help
  63. These commands provide FPGA tests.
  64. endif