File tree Expand file tree Collapse file tree 16 files changed +43
-40
lines changed Expand file tree Collapse file tree 16 files changed +43
-40
lines changed Original file line number Diff line number Diff line change @@ -713,10 +713,10 @@ CONFIG_VIDEO_ADV7604_CEC=y
713713CONFIG_VIDEO_ML86V7667=m
714714CONFIG_IMX_IPUV3_CORE=m
715715CONFIG_DRM=y
716- # CONFIG_DRM_I2C_CH7006 is not set
717- # CONFIG_DRM_I2C_SIL164 is not set
718716CONFIG_DRM_I2C_NXP_TDA998X=m
719717CONFIG_DRM_NOUVEAU=m
718+ # CONFIG_DRM_NOUVEAU_CH7006 is not set
719+ # CONFIG_DRM_NOUVEAU_SIL164 is not set
720720CONFIG_DRM_EXYNOS=m
721721CONFIG_DRM_EXYNOS_FIMD=y
722722CONFIG_DRM_EXYNOS_MIXER=y
Original file line number Diff line number Diff line change @@ -132,11 +132,11 @@ CONFIG_I2C=y
132132CONFIG_HWMON=m
133133CONFIG_DRM=m
134134CONFIG_DRM_DISPLAY_DP_AUX_CEC=y
135- # CONFIG_DRM_I2C_CH7006 is not set
136- # CONFIG_DRM_I2C_SIL164 is not set
137135CONFIG_DRM_RADEON=m
138136CONFIG_DRM_NOUVEAU=m
139137# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set
138+ # CONFIG_DRM_NOUVEAU_CH7006 is not set
139+ # CONFIG_DRM_NOUVEAU_SIL164 is not set
140140CONFIG_DRM_VGEM=m
141141CONFIG_DRM_UDL=m
142142CONFIG_DRM_MGAG200=m
Original file line number Diff line number Diff line change @@ -193,11 +193,11 @@ CONFIG_MEDIA_SUPPORT=m
193193CONFIG_AGP=y
194194CONFIG_AGP_PARISC=y
195195CONFIG_DRM=y
196- # CONFIG_DRM_I2C_CH7006 is not set
197- # CONFIG_DRM_I2C_SIL164 is not set
198196CONFIG_DRM_RADEON=y
199197CONFIG_DRM_NOUVEAU=m
200198# CONFIG_DRM_NOUVEAU_BACKLIGHT is not set
199+ # CONFIG_DRM_NOUVEAU_CH7006 is not set
200+ # CONFIG_DRM_NOUVEAU_SIL164 is not set
201201CONFIG_DRM_MGAG200=m
202202CONFIG_FB=y
203203CONFIG_FB_PM2=m
Original file line number Diff line number Diff line change 22menu "I2C encoder or helper chips"
33 depends on DRM && DRM_KMS_HELPER && I2C
44
5- config DRM_I2C_CH7006
6- tristate "Chrontel ch7006 TV encoder"
7- default m if DRM_NOUVEAU
8- help
9- Support for Chrontel ch7006 and similar TV encoders, found
10- on some nVidia video cards.
11-
12- This driver is currently only useful if you're also using
13- the nouveau driver.
14-
15- config DRM_I2C_SIL164
16- tristate "Silicon Image sil164 TMDS transmitter"
17- default m if DRM_NOUVEAU
18- help
19- Support for sil164 and similar single-link (or dual-link
20- when used in pairs) TMDS transmitters, used in some nVidia
21- video cards.
22-
235config DRM_I2C_NXP_TDA998X
246 tristate "NXP Semiconductors TDA998X HDMI encoder"
257 default m if DRM_TILCDC
Original file line number Diff line number Diff line change 11# SPDX-License-Identifier: GPL-2.0
2- ch7006-y := ch7006_drv.o ch7006_mode.o
3- obj-$(CONFIG_DRM_I2C_CH7006) += ch7006.o
4-
5- sil164-y := sil164_drv.o
6- obj-$(CONFIG_DRM_I2C_SIL164) += sil164.o
7-
82tda998x-y := tda998x_drv.o
93obj-$(CONFIG_DRM_I2C_NXP_TDA998X) += tda998x.o
104obj-$(CONFIG_DRM_I2C_NXP_TDA9950) += tda9950.o
Original file line number Diff line number Diff line change @@ -109,3 +109,21 @@ config DRM_NOUVEAU_GSP_DEFAULT
109109 help
110110 Say Y here if you want to use the GSP codepaths by default on
111111 Turing and Ampere GPUs.
112+
113+ config DRM_NOUVEAU_CH7006
114+ tristate "Chrontel ch7006 TV encoder"
115+ depends on DRM_NOUVEAU
116+ default m
117+ help
118+ Support for Chrontel ch7006 and similar TV encoders.
119+
120+ This driver is currently only useful if you're also using
121+ the nouveau driver.
122+
123+ config DRM_NOUVEAU_SIL164
124+ tristate "Silicon Image sil164 TMDS transmitter"
125+ depends on DRM_NOUVEAU
126+ default m
127+ help
128+ Support for sil164 and similar single-link (or dual-link
129+ when used in pairs) TMDS transmitters.
Original file line number Diff line number Diff line change @@ -10,3 +10,5 @@ nouveau-y += dispnv04/overlay.o
1010nouveau-y += dispnv04/tvmodesnv17.o
1111nouveau-y += dispnv04/tvnv04.o
1212nouveau-y += dispnv04/tvnv17.o
13+
14+ include $(src ) /dispnv04/i2c/Kbuild
Original file line number Diff line number Diff line change 3535#include "hw.h"
3636#include "nvreg.h"
3737
38- #include <drm /i2c/sil164.h>
38+ #include <dispnv04 /i2c/sil164.h>
3939
4040#include <subdev/i2c.h>
4141
Original file line number Diff line number Diff line change 1+ ch7006-y := dispnv04/i2c/ch7006_drv.o dispnv04/i2c/ch7006_mode.o
2+ obj-$(CONFIG_DRM_NOUVEAU_CH7006) += ch7006.o
3+
4+ sil164-y := dispnv04/i2c/sil164_drv.o
5+ obj-$(CONFIG_DRM_NOUVEAU_SIL164) += sil164.o
File renamed without changes.
You can’t perform that action at this time.
0 commit comments