Kconfig 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # DVB device configuration
  4. #
  5. config DVB_MMAP
  6. bool "Enable DVB memory-mapped API (EXPERIMENTAL)"
  7. depends on DVB_CORE
  8. depends on VIDEO_DEV=y || VIDEO_DEV=DVB_CORE
  9. select VIDEOBUF2_VMALLOC
  10. help
  11. This option enables DVB experimental memory-mapped API, which
  12. reduces the number of context switches to read DVB buffers, as
  13. the buffers can use mmap() syscalls.
  14. Support for it is experimental. Use with care. If unsure,
  15. say N.
  16. config DVB_NET
  17. bool "DVB Network Support"
  18. default (NET && INET)
  19. depends on NET && INET && DVB_CORE
  20. help
  21. This option enables DVB Network Support which is a part of the DVB
  22. standard. It is used, for example, by automatic firmware updates used
  23. on Set-Top-Boxes. It can also be used to access the Internet via the
  24. DVB card, if the network provider supports it.
  25. You may want to disable the network support on embedded devices. If
  26. unsure say Y.
  27. config DVB_MAX_ADAPTERS
  28. int "maximum number of DVB/ATSC adapters"
  29. depends on DVB_CORE
  30. default 16
  31. range 1 255
  32. help
  33. Maximum number of DVB/ATSC adapters. Increasing this number
  34. increases the memory consumption of the DVB subsystem even
  35. if a much lower number of DVB/ATSC adapters is present.
  36. Only values in the range 4-32 are tested.
  37. If you are unsure about this, use the default value 16
  38. config DVB_DYNAMIC_MINORS
  39. bool "Dynamic DVB minor allocation"
  40. depends on DVB_CORE
  41. default y
  42. help
  43. If you say Y here, the DVB subsystem will use dynamic minor
  44. allocation for any device that uses the DVB major number.
  45. This means that you can have more than 4 of a single type
  46. of device (like demuxes and frontends) per adapter, but udev
  47. will be required to manage the device nodes.
  48. If you are unsure about this, say N here.
  49. config DVB_DEMUX_SECTION_LOSS_LOG
  50. bool "Enable DVB demux section packet loss log"
  51. depends on DVB_CORE
  52. help
  53. Enable extra log messages meant to detect packet loss
  54. inside the Kernel.
  55. Should not be enabled on normal cases, as logs can
  56. be very verbose.
  57. If you are unsure about this, say N here.
  58. config DVB_ULE_DEBUG
  59. bool "Enable DVB net ULE packet debug messages"
  60. depends on DVB_CORE
  61. help
  62. Enable extra log messages meant to detect problems while
  63. handling DVB network ULE packet loss inside the Kernel.
  64. Should not be enabled on normal cases, as logs can
  65. be very verbose.
  66. If you are unsure about this, say N here.