forked from Minki/linux
704a84ccdb
This commit introduces the support for the Techwell TW686x video capture IC. This hardware supports a few DMA modes, including scatter-gather and frame (contiguous). This commit makes little use of the DMA engine and instead has a memcpy based implementation. DMA frame and scatter-gather modes support may be added in the future. Currently supported chips: - TW6864 (4 video channels), - TW6865 (4 video channels, not tested, second generation chip), - TW6868 (8 video channels but only 4 first channels using built-in video decoder are supported, not tested), - TW6869 (8 video channels, second generation chip). [mchehab@osg.samsung.com: make checkpatch happy by using "unsigned int" instead of just "unsigned"] Cc: Krzysztof Halasa <khalasa@piap.pl> Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Tested-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
19 lines
658 B
Plaintext
19 lines
658 B
Plaintext
config VIDEO_TW686X
|
|
tristate "Intersil/Techwell TW686x video capture cards"
|
|
depends on PCI && VIDEO_DEV && VIDEO_V4L2 && SND
|
|
depends on HAS_DMA
|
|
select VIDEOBUF2_VMALLOC
|
|
select SND_PCM
|
|
help
|
|
Support for Intersil/Techwell TW686x-based frame grabber cards.
|
|
|
|
Currently supported chips:
|
|
- TW6864 (4 video channels),
|
|
- TW6865 (4 video channels, not tested, second generation chip),
|
|
- TW6868 (8 video channels but only 4 first channels using
|
|
built-in video decoder are supported, not tested),
|
|
- TW6869 (8 video channels, second generation chip).
|
|
|
|
To compile this driver as a module, choose M here: the module
|
|
will be named tw686x.
|