Kconfig 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. config TI_SECURE_DEVICE
  2. bool "HS Device Type Support"
  3. depends on OMAP54XX || AM43XX || AM33XX || ARCH_KEYSTONE
  4. help
  5. If a high secure (HS) device type is being used, this config
  6. must be set. This option impacts various aspects of the
  7. build system (to create signed boot images that can be
  8. authenticated) and the code. See the doc/README.ti-secure
  9. file for further details.
  10. config TI_SECURE_EMIF_REGION_START
  11. hex "Reserved EMIF region start address"
  12. depends on TI_SECURE_DEVICE
  13. default 0x0
  14. help
  15. Reserved EMIF region start address. Set to "0" to auto-select
  16. to be at the end of the external memory region.
  17. config TI_SECURE_EMIF_TOTAL_REGION_SIZE
  18. hex "Reserved EMIF region size"
  19. depends on TI_SECURE_DEVICE
  20. default 0x0
  21. help
  22. Total reserved EMIF region size. Default is 0, which means no reserved EMIF
  23. region on secure devices.
  24. config TI_SECURE_EMIF_PROTECTED_REGION_SIZE
  25. hex "Size of protected region within reserved EMIF region"
  26. depends on TI_SECURE_DEVICE
  27. default 0x0
  28. help
  29. This config option is used to specify the size of the portion of the total
  30. reserved EMIF region set aside for secure OS needs that will be protected
  31. using hardware memory firewalls. This value must be smaller than the
  32. TI_SECURE_EMIF_TOTAL_REGION_SIZE value.
  33. source "arch/arm/mach-omap2/omap3/Kconfig"
  34. source "arch/arm/mach-omap2/omap4/Kconfig"
  35. source "arch/arm/mach-omap2/omap5/Kconfig"
  36. source "arch/arm/mach-omap2/am33xx/Kconfig"