Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. config SD_FS
  2. bool "SD File System"
  3. default n
  4. help
  5. Use the SD File system implementation.
  6. config SD_FS_VADDR_START
  7. hex "SD File System start mapping addr"
  8. default 0xb000000
  9. depends on SD_FS
  10. help
  11. Use SD File System start mapping addr.
  12. config SD_FILE_MAX
  13. int "SD File can open file max num"
  14. default 6
  15. depends on SD_FS
  16. help
  17. SD File open file allow max num file.
  18. config SD_FS_NAND_SD_STORAGE
  19. bool "SD File System can use nand/sd storage devices"
  20. default n
  21. depends on SD_FS
  22. help
  23. SD File System can use nand/sd storage devices.
  24. config SD_FS_DATA_NOR_STORAGE
  25. bool "SD File System can use data nor storage devices"
  26. default n
  27. depends on SD_FS
  28. help
  29. SD File System can use data nor storage devices.
  30. config SDFS_READ_BY_CACHE
  31. bool "sdfs nand or sd read data by cache"
  32. default n
  33. depends on SD_FS_NAND_SD_STORAGE
  34. help
  35. sdfs nand or sd read data by cache.
  36. config SDFS_CACHE_BUF_LEN
  37. hex "nand sdfs cache buf len"
  38. default 0x200
  39. depends on SD_FS_NAND_SD_STORAGE
  40. help
  41. nand sdfs cache buf len.It has to be a multiple of 512
  42. config SDFS_NOR_NOT_XIP
  43. bool "sdfs nor not support XIP"
  44. default n
  45. depends on SD_FS
  46. help
  47. SD File System not support XIP in NOR medium.
  48. config SDFS_NOR_NOT_XIP_MAX_COPY_OFFSET
  49. hex "sdfs nor not XIP max flash offset copied by bootloader"
  50. default 0x200000
  51. depends on SDFS_NOR_NOT_XIP
  52. help
  53. Specify the max flash offset which copied by bootloader.
  54. config SDFS_NOR_DEV_NAME
  55. string "sdfs nor binding device name"
  56. default "spi_flash"
  57. depends on SDFS_NOR_NOT_XIP
  58. help
  59. Specify the nor device name that binding by SDFS