Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 SDFS_READ_BY_CACHE
  25. bool "sdfs nand or sd read data by cache"
  26. default n
  27. depends on SD_FS_NAND_SD_STORAGE
  28. help
  29. sdfs nand or sd read data by cache.
  30. config SDFS_CACHE_BUF_LEN
  31. hex "nand sdfs cache buf len"
  32. default 0x200
  33. depends on SD_FS_NAND_SD_STORAGE
  34. help
  35. nand sdfs cache buf len.It has to be a multiple of 512
  36. config SDFS_NOR_NOT_XIP
  37. bool "sdfs nor not support XIP"
  38. default n
  39. depends on SD_FS
  40. help
  41. SD File System not support XIP in NOR medium.
  42. config SDFS_NOR_NOT_XIP_MAX_COPY_OFFSET
  43. hex "sdfs nor not XIP max flash offset copied by bootloader"
  44. default 0x200000
  45. depends on SDFS_NOR_NOT_XIP
  46. help
  47. Specify the max flash offset which copied by bootloader.
  48. config SDFS_NOR_DEV_NAME
  49. string "sdfs nor binding device name"
  50. default "spi_flash"
  51. depends on SDFS_NOR_NOT_XIP
  52. help
  53. Specify the nor device name that binding by SDFS