Skip to content

Commit

Permalink
MEDIA: TLG2300 has been removed from kernel 4.0 by developers. I read…
Browse files Browse the repository at this point in the history
…ded the driver because I still use hardware with tlg chip. This driver is stable from kernel 3.19.8.
  • Loading branch information
patrykk committed May 22, 2015
1 parent 3e4a583 commit 18453af
Show file tree
Hide file tree
Showing 12 changed files with 3,955 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/arm/boot/dts/imx6qdl-udoo.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,11 @@
lanes = <1>;
};

&snvs_poweroff {
status = "okay";
};


&ssi1 {
pinctrl-names = "default", "ac97-running", "ac97-reset", "ac97-warm-reset";
pinctrl-0 = <&pinctrl_audmux>;
Expand Down
6 changes: 6 additions & 0 deletions drivers/staging/media/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ source "drivers/staging/media/davinci_vpfe/Kconfig"

source "drivers/staging/media/dt3155v4l/Kconfig"

source "drivers/staging/media/tlg2300/Kconfig"

source "drivers/staging/media/mn88472/Kconfig"

source "drivers/staging/media/mn88473/Kconfig"

source "drivers/staging/media/omap4iss/Kconfig"

source "drivers/staging/media/parport/Kconfig"

source "drivers/staging/media/vino/Kconfig"

# Keep LIRC at the end, as it has sub-menus
source "drivers/staging/media/lirc/Kconfig"

Expand Down
4 changes: 4 additions & 0 deletions drivers/staging/media/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ obj-$(CONFIG_VIDEO_DM365_VPFE) += davinci_vpfe/
obj-$(CONFIG_VIDEO_OMAP4) += omap4iss/
obj-$(CONFIG_DVB_MN88472) += mn88472/
obj-$(CONFIG_DVB_MN88473) += mn88473/
obj-y += parport/
obj-$(CONFIG_VIDEO_TLG2300) += tlg2300/
obj-y += vino/

21 changes: 21 additions & 0 deletions drivers/staging/media/tlg2300/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
config VIDEO_TLG2300
tristate "Telegent TLG2300 USB video capture support (Deprecated)"
depends on VIDEO_DEV && I2C && SND && DVB_CORE
depends on MEDIA_USB_SUPPORT
select VIDEO_TUNER
select VIDEO_TVEEPROM
depends on RC_CORE
select VIDEOBUF_VMALLOC
select SND_PCM
select VIDEOBUF_DVB

---help---
This is a video4linux driver for Telegent tlg2300 based TV cards.
The driver supports V4L2, DVB-T and radio.

This driver is deprecated and will be removed soon. If you have
hardware for this and you want to work on this driver, then contact
the linux-media mailinglist.

To compile this driver as a module, choose M here: the
module will be called poseidon
9 changes: 9 additions & 0 deletions drivers/staging/media/tlg2300/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
poseidon-objs := pd-video.o pd-alsa.o pd-dvb.o pd-radio.o pd-main.o

obj-$(CONFIG_VIDEO_TLG2300) += poseidon.o

ccflags-y += -Idrivers/media/i2c
ccflags-y += -Idrivers/media/tuners
ccflags-y += -Idrivers/media/dvb-core
ccflags-y += -Idrivers/media/dvb-frontends

Loading

0 comments on commit 18453af

Please sign in to comment.