[PATCH v3 03/24] drm/i2c: tda998x: code cleanup (no replies)
This patch: - replaces ARRAY_SIZE() by sizeof() when a number of bytes is needed, - adds a linefeed in an error message and - removes an useless variable setting. Tested-by: Russell King...
View Article[PATCH v3 04/24] drm/i2c: tda998x: change probe message origin (no replies)
On probe, a message giving the TDA chip version seems to come from the DRM driver: armada-drm armada-510-drm: found TDA19988 This patch changes the originator of the message to the TDA driver: tda998x...
View Article[PATCH v3 05/24] drm/i2c: tda998x: don't freeze the system at audio startup...
This patch prevents the system to be freezed at audio startup time, replacing mdelay by msleep. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Russell King...
View Article[PATCH v3 06/24] drm/i2c: tda998x: force the page register at startup time...
This patch forces the page register to be set on the first I/O operation. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>...
View Article[PATCH v3 07/24] drm/i2c: tda998x: set the video mode from the adjusted value...
This patch uses always the adjusted video mode instead of a mix of original and adjusted mode. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 66...
View Article[PATCH v3 08/24] drm/i2c: tda998x: fix bad value in the AIF (no replies)
The AIF has an uninitialized byte. This patch clears the whole buffer before filling it. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Russell King...
View Article[PATCH v3 11/24] drm/i2c: tda998x: free the CEC device on encoder_destroy (no...
The cec i2c device is created in tda998x_encoder_init() when the DRM driver starts. This patch frees it when the DRM driver is unloaded. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>...
View Article[PATCH v3 12/24] drm/i2c: tda998x: check the CEC device creation (no replies)
This patch checks if the CEC device is well created at intialization time. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Jean-Francois Moine <moinejf@free.fr> ---...
View Article[PATCH v3 09/24] drm/i2c: tda998x: use HDMI constants (no replies)
This patch replaces hard coded values by hdmi constants. Tested-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by:...
View Article[PATCH v3 10/24] drm/i2c: tda998x: don't read write-only registers (no replies)
This patch takes care of the write-only registers of the tda998x. The value 'MAT_CONTRL_MAT_SC(1)' in the register MAT_CONTRL has been set as it is at reset time. Signed-off-by: Jean-Francois Moine...
View Article[PATCH v3 13/24] drm/i2c: tda998x: fix a NULL pointer dereference (no replies)
This patch fixes a NULL pointer dereference when the set_config function has not been called (priv->params == NULL). As a side effect, now, the audio sample rate is always 48kHz and the audio clock...
View Article[PATCH v3 14/24] drm/i2c: tda998x: add DT support (no replies)
This patch adds DT support to the tda998x. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- v3 - remarks from Russell King - change the AUDIO_SAMPLE value to 48000 instead of 48 - don't...
View Article[PATCH v3 15/24] drm/i2c: tda998x: use irq for connection status and EDID...
This patch adds the optional treatment of the tda998x IRQ. The interrupt function is used to know the display connection status without polling and to speedup reading the EDID. The interrupt number...
View Article[PATCH v3 16/24] drm/i2c: tda998x: add DT documentation (no replies)
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- .../devicetree/bindings/drm/i2c/tda998x.txt | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644...
View Article[PATCH v3 17/24] drm/i2c: tda998x: get a better status of the connection (no...
This patch refines the connection status testing both bits RXSENS and HPD of the CEC register giving the connection level. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> ---...
View Article[PATCH v3 18/24] drm/i2c: tda998x: fix the ENABLE_SPACE register (no replies)
This patch fixes the ENABLE_SPACE register, the value of which was inverted. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 9 +++++++-- 1 file...
View Article[PATCH v3 19/24] drm/i2c: tda998x: use global constants (no replies)
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git...
View Article[PATCH v3 20/24] drm/i2c: tda998x: remove the unused variable ca_i2s (no...
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c...
View Article[PATCH v3 21/24] drm/i2c: tda998x: add the active aspect in HDMI AVI frame...
Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c...
View Article[PATCH v3 22/24] drm/i2c: tda998x: change the frequence in the audio channel...
This patch sets the frequence as 'not indicated' instead of '48kHz' and adds some comments. Signed-off-by: Jean-Francois Moine <moinejf@free.fr> --- drivers/gpu/drm/i2c/tda998x_drv.c | 7 ++++---...
View Article