Skip to content
Permalink
Dafna-Hirschfe…
Switch branches/tags

Commits on Nov 11, 2021

  1. media: videobuf2: add WARN_ON if bytesused is bigger than buffer length

    In function vb2_set_plane_payload, report if the
    given bytesused is bigger than the buffer size,
    and clamp it to the buffer size.
    
    Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
    Dafna Hirschfeld authored and intel-lab-lkp committed Nov 11, 2021
  2. media: replace setting of bytesused with vb2_set_plane_payload

    In many places the bytesused field of struct vb2_buffer is set
    directly. Replace that with the function call
    vb2_set_plane_payload
    
    Signed-off-by: Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
    Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
    Dafna Hirschfeld authored and intel-lab-lkp committed Nov 11, 2021

Commits on Oct 21, 2021

  1. media: venus: core: Add sdm660 DT compatible and resource struct

    Add the SDM660 DT compatible and its resource structure in order
    to support the Venus IP in SDM630, SDM636, SDM660 and SDA variants.
    
    This SoC features Venus 4.4 (HFI3XX) with only one subcore, used
    for both encoding and decoding, and switched on with one main and
    one subcore dedicated GDSC.
    
    Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    AngeloGioacchino Del Regno authored and mchehab committed Oct 21, 2021
  2. media: dt-bindings: media: venus: Add sdm660 dt schema

    Add a schema description for the Venus video decoder/encoder IP
    in SDM660.
    
    Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
    Reviewed-by: Rob Herring <robh@kernel.org>
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    AngeloGioacchino Del Regno authored and mchehab committed Oct 21, 2021
  3. media: venus: vdec: decoded picture buffer handling during reconfig s…

    …equence
    
    In existing implementation, driver is freeing and un-mapping all the
    decoded picture buffers(DPB) as part of dynamic resolution change(DRC)
    handling. As a result, when firmware try to access the DPB buffer, from
    previous sequence, SMMU context fault is seen due to the buffer being
    already unmapped.
    
    With this change, driver defines ownership of each DPB buffer. If a buffer
    is owned by firmware, driver would skip from un-mapping the same.
    
    Signed-off-by: Mansur Alisha Shaik <mansur@codeaurora.org>
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Mansur Alisha Shaik authored and mchehab committed Oct 21, 2021
  4. media: venus: Handle fatal errors during encoding and decoding

    According to stateful decoder docs a fatal failure of decoding
    (and encoding) could be recover it by closing the corresponding
    file handle and open new one or reinitialize decoding (and encoding)
    by stop streaming on both queues. In order to satisfy this
    requirement we add a mechanism ins sys_error_handler and
    corresponding decoder and encoder drivers to wait for sys_error_done
    waitqueue in reqbuf.
    
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    svarbanov authored and mchehab committed Oct 21, 2021
  5. media: venus: helpers: Add helper to mark fatal vb2 error

    Add a helper to mark source and destination vb2 queues fatal
    unrecoverable error.
    
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    svarbanov authored and mchehab committed Oct 21, 2021
  6. media: venus: hfi: Check for sys error on session hfi functions

    Check sys error flag for all hfi_session_xxx functions and
    exit with EIO in case of an error.
    
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    svarbanov authored and mchehab committed Oct 21, 2021
  7. media: venus: Make sys_error flag an atomic bitops

    Make the sys_error flag an atomic bitops in order to avoid
    locking in sys_error readers.
    
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    svarbanov authored and mchehab committed Oct 21, 2021
  8. media: venus: venc: Use pmruntime autosuspend

    Migrate encoder to pm-runtime autosuspend.
    
    Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
    Tested-by: Vikash Garodia <vgarodia@codeaurora.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    svarbanov authored and mchehab committed Oct 21, 2021

Commits on Oct 20, 2021

  1. media: allegro: write vui parameters for HEVC

    The vui parameters are optional. However, the vui data allows to specify
    the color space of the encoded video. Write the vui parameters to make
    sure that decoders are able to pick up the correct color space.
    
    Also implement the necessary lookup functions to convert the values from
    the V4L2 controls to the values specified in the hevc standard.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  2. media: allegro: nal-hevc: implement generator for vui

    The NAL unit generator for HEVC does not support the generation of vui
    parameters. Implement it to allow drivers to set the vui parameters in
    the coded video stream.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  3. media: allegro: write correct colorspace into SPS

    Currently, the driver always writes PAL as video format into the SPS of
    the encoded stream.
    
    Set the video format to the default value 5 (unspecified) and use the
    color description that is already configured on the channel as color
    space. This fixes the color space definition in the coded data to
    reflect the configured color space of the video data that is encoded.
    
    Add lookup functions to convert the color primaries, transfer function
    and matrix coefficients from the V4L2 control values to the values
    specified in the h.264 standard.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  4. media: allegro: extract nal value lookup functions to header

    The lookup of the h.264 or hevc values for the respective V4L2 controls
    is done by the driver that uses the sps/pps generator and not in the
    generator. Therefore, it is more intuitive to define these functions
    directly in the header and not in the module.
    
    Extract the functions to the headers as static inline functions.
    
    Also simplify the function name and add kernel-doc for the hevc
    functions.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  5. media: allegro: correctly scale the bit rate in SPS

    The bit rate in the SPS can be scaled by an exponent, which allows to
    reduce the number of bits in the SPS in case of high bit rates.
    
    The driver did not scale the bitrate, but used a scaling exponent of 0.
    Fix this by properly calculating the scaling factor and writing the bit
    rate as value and scaling factor into the SPS.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  6. media: allegro: remove external QP table

    The VCU allows to specify the QP per frame and coding unit. A buffer
    that specifies the QP is passed via the ep2 field in the ENCODE_FRAME
    message.
    
    The driver currently does not support the external QP table. Simplify
    the driver by not setting the ep2 fields at all.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  7. media: allegro: fix row and column in response message

    The fields for the number of rows and columns in the encode frame
    response message are switched. This causes broken PPS, if the encoder
    uses tiles for encoding and the number of rows and columns differ.
    
    Write the fields of the response message into the correct fields of the
    the internal data structure when parsing the response message.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  8. media: allegro: add control to disable encoder buffer

    The encoder buffer can have a negative impact on the quality of the
    encoded video.
    
    Add a control to allow user space to disable the encoder buffer per
    channel if the VCU supports the encoder buffer but the quality is not
    sufficient.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  9. media: allegro: add encoder buffer support

    The encoder buffer serves as a cache for reference frames during the
    encoding process. The encoder buffer significantly reduces the bandwidth
    requirement for read accesses on the AXI ports of the VCU, but slightly
    reduces the quality of the encoded video.
    
    The encoder buffer must be configured as a whole during the firmware
    initialization and later explicitly enabled for every channel that shall
    use the encoder buffer.
    
    Prior to firmware version 2019.2, it was necessary to explicitly set the
    size of the encoder buffer for every channel. Since 2019.2 it is
    sufficient to enable the encoder buffer and leave the rest to the
    firmware. Therefore, only support the encoder buffer for firmware 2019.2
    and later.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  10. media: allegro: add pm_runtime support

    The allegro driver must ensure that the mcu and core clocks are enabled
    and set to the expected clock rate before trying to load the firmware
    and to reset the MCU.
    
    Up until now, the driver assumed that the clocks are always enabled in
    the PL (programming logic), because the xlnx_vcu driver did not export
    the clocks to other drivers. This has changed and by explicitly enabling
    the clocks in the driver, this assumption can be dropped.
    
    It might even be possible to disable the clocks for the encoder if the
    encoder is not used. However, the behavior is not documented and it
    might be necessary to reinitialize the encoder after deactivating the
    clocks. Play it safe by sticking to the current behavior.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  11. media: allegro: lookup VCU settings

    The VCU provides information about its configuration in a dedicated
    register space. These settings include, for example, the expected clock
    rates and the configuration of the encoder buffer. In the device tree,
    the settings are described by the "xlnx,vcu-settings" compatible.
    
    The settings are needed to correctly configure the clocks and the
    encoder buffer.
    
    Lookup the VCU settings in the device tree and make it accessible to the
    driver via a regmap.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  12. media: allegro: fix module removal if initialization failed

    If the module probe finished, but the firmware initialization failed,
    removing the module must not revert the firmware initialization.
    
    Add a field to track the status of the firmware initialization and only
    roll it back, if the firmware was successfully initialized.
    
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021
  13. media: allegro: ignore interrupt if mailbox is not initialized

    The mailbox is initialized after the interrupt handler is installed. As
    the firmware is loaded and started even later, it should not happen that
    the interrupt occurs without the mailbox being initialized.
    
    As the Linux Driver Verification project (linuxtesting.org) keeps
    reporting this as an error, add a check to ignore interrupts before the
    mailbox is initialized to fix this potential null pointer dereference.
    
    Reported-by: Yuri Savinykh <s02190703@gse.cs.msu.ru>
    Reported-by: Nadezda Lutovinova <lutovinova@ispras.ru>
    Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    tretter authored and mchehab committed Oct 20, 2021

Commits on Oct 19, 2021

  1. media: ite-cir: IR receiver stop working after receive overflow

    On an Intel NUC6iSYK, no IR is reported after a receive overflow.
    
    When a receiver overflow occurs, this condition is only cleared by
    reading the fifo. Make sure we read anything in the fifo.
    
    Fixes: 28c7afb ("media: ite-cir: check for receive overflow")
    Suggested-by: Bryan Pass <bryan.pass@gmail.com>
    Tested-by: Bryan Pass <bryan.pass@gmail.com>
    Cc: stable@vger.kernel.org>
    Signed-off-by: Sean Young <sean@mess.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    seanyoung authored and mchehab committed Oct 19, 2021
  2. media: sir_ir: remove broken driver

    This driver is a port of the lirc_sir driver to rc-core. However, for
    this driver I could not find any hardware to test, so it was done without
    testing. This is a mistake.
    
    There are clear bugs in the code. For example the two arguments
    to ktime_us_delta() are reversed, which means the result is garbage.
    
    The driver has been in the kernel for four years, and noone has ever
    reported an issue. So, remove this driver.
    
    Signed-off-by: Sean Young <sean@mess.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    seanyoung authored and mchehab committed Oct 19, 2021
  3. media: ir_toy: assignment to be16 should be of correct type

    commit f0c15b3 ("media: ir_toy: prevent device from hanging during
    transmit") removed a cpu_to_be16() cast, which causes a sparse warning.
    
    Fixes: f0c15b3 ("media: ir_toy: prevent device from hanging during transmit")
    Reported-by: Hans Verkuil <hverkuil@xs4all.nl>
    Signed-off-by: Sean Young <sean@mess.org>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    seanyoung authored and mchehab committed Oct 19, 2021
  4. media: ivtv: fix build for UML

    Prevent the use of page table macros and types from 2 conflicting
    places. This fixes multiple build errors and warnings, e.g.:
    
    ../arch/x86/include/asm/pgtable_64_types.h:21:34: error: conflicting types for ‘pte_t’
     typedef struct { pteval_t pte; } pte_t;
                                      ^~~~~
    In file included from ../include/linux/mm_types_task.h:16:0,
                     from ../include/linux/mm_types.h:5,
                     from ../include/linux/buildid.h:5,
                     from ../include/linux/module.h:14,
                     from ../drivers/media/pci/ivtv/ivtv-driver.h:40,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:29:
    ../arch/um/include/asm/page.h:57:39: note: previous declaration of ‘pte_t’ was here
     typedef struct { unsigned long pte; } pte_t;
    
    ../arch/x86/include/asm/pgtable_types.h:284:43: error: expected ‘)’ before ‘prot’
     static inline pgprot_t pgprot_nx(pgprot_t prot)
                                               ^
    ../include/linux/pgtable.h:914:26: note: in definition of macro ‘pgprot_nx’
     #define pgprot_nx(prot) (prot)
                              ^~~~
    In file included from ../arch/x86/include/asm/memtype.h:6:0,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:40:
    ../arch/x86/include/asm/pgtable_types.h:288:0: warning: "pgprot_nx" redefined
     #define pgprot_nx pgprot_nx
    
    ../arch/x86/include/asm/page_types.h:11:0: warning: "PAGE_SIZE" redefined
     #define PAGE_SIZE  (_AC(1,UL) << PAGE_SHIFT)
    
    In file included from ../include/linux/mm_types_task.h:16:0,
                     from ../include/linux/mm_types.h:5,
                     from ../include/linux/buildid.h:5,
                     from ../include/linux/module.h:14,
                     from ../drivers/media/pci/ivtv/ivtv-driver.h:40,
                     from ../drivers/media/pci/ivtv/ivtvfb.c:29:
    ../arch/um/include/asm/page.h:14:0: note: this is the location of the previous definition
     #define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
    
    Fixes: 68f5d3f ("um: add PCI over virtio emulation driver")
    Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
    Cc: Johannes Berg <johannes@sipsolutions.net>
    Cc: Andy Walls <awalls@md.metrocast.net>
    Cc: linux-um@lists.infradead.org
    Cc: Richard Weinberger <richard@nod.at>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    rddunlap authored and mchehab committed Oct 19, 2021
  5. media: cedrus: Don't kernel map most buffers

    Except for VP8 probability coefficients buffer, all other buffers are
    never accessed by CPU. That allows us to mark them with
    DMA_ATTR_NO_KERNEL_MAPPING flag. This helps with decoding big (like 4k)
    videos on 32-bit ARM platforms where default vmalloc size is relatively
    small - 240 MiB. Since auxiliary buffer are not yet efficiently
    allocated, this can be easily exceeded. Even if allocation is optimized,
    4k videos will still often exceed this limit.
    
    Signed-off-by: Jernej Skrabec <jernej.skrabec@gmail.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    jernejsk authored and mchehab committed Oct 19, 2021
  6. media: rkvdec: Support dynamic resolution changes

    The mem-to-mem stateless decoder API specifies support for dynamic
    resolution changes. In particular, the decoder should accept format
    changes on the OUTPUT queue even when buffers have been allocated,
    as long as it is not streaming.
    
    Relax restrictions for S_FMT as described in the previous paragraph,
    and as long as the codec format remains the same. This aligns it with
    the Hantro and Cedrus decoders. This change was mostly based on commit
    ae02d49 ("media: hantro: Fix s_fmt for dynamic resolution changes").
    
    Since rkvdec_s_fmt() is now just a wrapper around the output/capture
    variants without any additional shared functionality, drop the wrapper
    and call the respective functions directly.
    
    Fixes: cd33c83 ("media: rkvdec: Add the rkvdec driver")
    Cc: <stable@vger.kernel.org>
    Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
    Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    wens authored and mchehab committed Oct 19, 2021
  7. media: rkvdec: Do not override sizeimage for output format

    The rkvdec H.264 decoder currently overrides sizeimage for the output
    format. This causes issues when userspace requires and requests a larger
    buffer, but ends up with one of insufficient size.
    
    Instead, only provide a default size if none was requested. This fixes
    the video_decode_accelerator_tests from Chromium failing on the first
    frame due to insufficient buffer space. It also aligns the behavior
    of the rkvdec driver with the Hantro and Cedrus drivers.
    
    Fixes: cd33c83 ("media: rkvdec: Add the rkvdec driver")
    Cc: <stable@vger.kernel.org>
    Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
    Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    wens authored and mchehab committed Oct 19, 2021
  8. media: imx-jpeg: Add pm-runtime support for imx-jpeg

    Save some power by disabling/enabling the jpeg clocks with
    every stream stop/start.
    Do not use DL_FLAG_RPM_ACTIVE in mxc_jpeg_attach_pm_domains,
    to ensure power domains are off after probe.
    
    Signed-off-by: Mirela Rabulea <mirela.rabulea@oss.nxp.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Mirela Rabulea authored and mchehab committed Oct 19, 2021
  9. media: MAINTAINERS: update maintainer for ch7322 driver

    Jeff is leaving Google so Joe will take over.
    
    Signed-off-by: Jeff Chase <jnchase@google.com>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    jeffchase authored and mchehab committed Oct 19, 2021
  10. media: i.MX6: Support 16-bit BT.1120 video input

    Confirmed to work with ADV7610 HDMI receiver.
    
    Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>
    Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Krzysztof Hałasa authored and mchehab committed Oct 19, 2021
  11. media: Add ADV7610 support for adv7604 driver.

    ADV7610 is another HDMI receiver chip, very similar to
    the ADV7611.
    
    Also: print chip names in upper case.
    Fix an error message claiming that no ADV761x has been found,
    while in reality a chip different than requested (though still
    supported) may have been found.
    Tested on TinyRex BaseBoard Lite.
    
    Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Krzysztof Hałasa authored and mchehab committed Oct 19, 2021
  12. media: Add ADV7610 support for adv7604 driver - DT docs.

    ADV7610 is another HDMI receiver chip, very similar to
    the ADV7611. Tested on TinyRex BaseBoard Lite.
    
    Signed-off-by: Krzysztof Hałasa <khalasa@piap.pl>
    Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Krzysztof Hałasa authored and mchehab committed Oct 19, 2021
Older