Skip to content
Permalink
Benjamin-Gaign…
Switch branches/tags

Commits on Mar 17, 2021

  1. arm64: dts: imx8mq: Add node to G2 hardware

    Split VPU node in two: one for G1 and one for G2 since they are
    different hardware blocks.
    Add syscon for hardware control block.
    Remove reg-names property that is useless.
    Each VPU node only need one interrupt.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  2. media: hantro: IMX8M: add variant for G2/HEVC codec

    Add variant to IMX8M to enable G2/HEVC codec.
    Define the capabilities for the hardware up to 3840x2160.
    G2 doesn't have postprocessor, use the same clocks and got it
    own interruption.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  3. media: hantro: Introduce G2/HEVC decoder

    Implement all the logic to get G2 hardware decoding HEVC frames.
    It support up level 5.1 HEVC stream.
    It doesn't support yet 10 bits formats or scaling feature.
    
    Add HANTRO HEVC dedicated control to skip some bits at the beginning
    of the slice header. That is very specific to this hardware so can't
    go into uapi structures. Compute the needed value is complex and require
    information from the stream that only the userland knows so let it
    provide the correct value to the driver.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Co-developed-by: Adrian Ratiu <adrian.ratiu@collabora.com>
    Signed-off-by: Adrian Ratiu <adrian.ratiu@collabora.com>
    Co-developed-by: Ezequiel Garcia <ezequiel@collabora.com>
    Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  4. media: hantro: handle V4L2_PIX_FMT_HEVC_SLICE control

    Make sure that V4L2_PIX_FMT_HEVC_SLICE is correctly handle by v4l2
    of the driver.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  5. media: uapi: Add a control for HANTRO driver

    The HEVC HANTRO driver needs to know the number of bits to skip at
    the beginning of the slice header.
    That is a hardware specific requirement so create a dedicated control
    that this purpose.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  6. media: hantro: Only use postproc when post processed formats are defined

    If the variant doesn't offert postprocessed formats make sure it will
    be ok.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  7. media: hantro: Define HEVC codec profiles and supported features

    Define which HEVC profiles (up to level 5.1) and features
    (no scaling, no 10 bits) are supported by the driver.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  8. media: hantro: change hantro_codec_ops run prototype to return errors

    Change hantro_codec_ops run prototype from 'void' to 'int'.
    This allow to cancel the job if an error occur while configuring
    the hardware.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  9. media: hevc: Add decode params control

    Add decode params control and it associated structure to regroup
    all the information that are needed to decode a reference frame as
    it is describe in ITU-T Rec. H.265 section "8.3.2 Decoding process
    for reference picture set".
    
    Adapt Cedrus driver to these changes.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  10. media: hevc: Add fields and flags for hevc PPS

    Add fields and flags as they are defined in
    7.4.3.3.1 "General picture parameter set RBSP semantics of the
    H.265 ITU specification.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  11. media: hantro: Use syscon instead of 'ctrl' register

    In order to be able to share the control hardware block between
    VPUs use a syscon instead a ioremap it in the driver.
    To keep the compatibility with older DT if 'nxp,imx8mq-vpu-ctrl'
    phandle is not found look at 'ctrl' reg-name.
    With the method it becomes useless to provide a list of register
    names so remove it.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  12. dt-bindings: media: nxp, imx8mq-vpu: Update the bindings for G2 support

    Introducing G2 hevc video decoder lead to modify the bindings to allow
    to get one node per VPUs.
    VPUs share one hardware control block which is provided as a phandle on
    an syscon.
    Each node got now one reg and one interrupt.
    Add a compatible for G2 hardware block: nxp,imx8mq-vpu-g2.
    
    To be compatible with older DT the driver is still capable to use 'ctrl'
    reg-name even if it is deprecated now.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021
  13. dt-bindings: mfd: Add 'nxp, imx8mq-vpu-ctrl' to syscon list

    Add 'nxp,imx8mq-vpu-ctrl' in the list of possible syscon.
    It will used to access to the VPU control registers.
    
    Signed-off-by: Benjamin Gaignard <benjamin.gaignard@collabora.com>
    Benjamin Gaignard authored and intel-lab-lkp committed Mar 17, 2021

Commits on Mar 8, 2021

  1. clk: sunxi: Demote non-conformant kernel-doc headers

    Headers must describe their parameters.
    
    Fixes the following W=1 kernel build warning(s):
    
     drivers/clk/sunxi/clk-sun9i-core.c:27: warning: Function parameter or member 'req' not described in 'sun9i_a80_get_pll4_factors'
     drivers/clk/sunxi/clk-sun9i-core.c💯 warning: Function parameter or member 'req' not described in 'sun9i_a80_get_gt_factors'
     drivers/clk/sunxi/clk-sun9i-core.c:155: warning: Function parameter or member 'req' not described in 'sun9i_a80_get_ahb_factors'
     drivers/clk/sunxi/clk-sun9i-core.c:235: warning: Function parameter or member 'req' not described in 'sun9i_a80_get_apb1_factors'
     drivers/clk/sunxi/clk-usb.c:22: warning: cannot understand function prototype: 'struct usb_reset_data '
     drivers/clk/sunxi/clk-sun6i-ar100.c:26: warning: Function parameter or member 'req' not described in 'sun6i_get_ar100_factors'
    
    Cc: "Emilio López" <emilio@elopez.com.ar>
    Cc: Michael Turquette <mturquette@baylibre.com>
    Cc: Stephen Boyd <sboyd@kernel.org>
    Cc: Maxime Ripard <mripard@kernel.org>
    Cc: Chen-Yu Tsai <wens@csie.org>
    Cc: Jernej Skrabec <jernej.skrabec@siol.net>
    Cc: Boris BREZILLON <boris.brezillon@free-electrons.com>
    Cc: linux-clk@vger.kernel.org
    Cc: linux-arm-kernel@lists.infradead.org
    Signed-off-by: Lee Jones <lee.jones@linaro.org>
    Acked-by: Stephen Boyd <sboyd@kernel.org>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210303142430.3168703-1-lee.jones@linaro.org
    lag-linaro authored and mripard committed Mar 8, 2021
  2. arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection

    On boards where the only peripheral connected to PL0/PL1 is an X-Powers
    PMIC, configure the connection to use the RSB bus rather than the I2C
    bus. Compared to the I2C controller that shares the pins, the RSB
    controller allows a higher bus frequency, and it is more CPU-efficient.
    
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210103100007.32867-5-samuel@sholland.org
    smaeul authored and mripard committed Mar 8, 2021
  3. ARM: dts: sunxi: h2-plus-bananapi-m2-zero: Add HDMI out

    Add HDMI out, including the display engine, to the BananaPi
    M2 Zero.
    
    Signed-off-by: Pieter Beers <pjbrs@floorenpj.xs4all.nl>
    Reviewed-by: Jernej Skrabec <jernej.skrabec@siol.net>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210304191456.2895-2-pjbrs@floorenpj.xs4all.nl
    Pieter Beers authored and mripard committed Mar 8, 2021

Commits on Mar 6, 2021

  1. Merge remote-tracking branches 'sunxi-korg/sunxi/dt-for-5.13' and 'su…

    …nxi-korg/sunxi/clk-for-5.13' into sunxi/for-next
    wens committed Mar 6, 2021
  2. clk: sunxi-ng: v3s: use sigma-delta modulation for audio-pll

    Previously it was not possible to achieve clock rates of 24.576MHz and
    22.5792MHz, which are commonly required core clocks for the i2s
    peripheral of v3s based SoCs.
    
    Add support for those clock rates through the audio pll's sigma-delta
    modulator.
    
    Signed-off-by: Tobias Schramm <t.schramm@manjaro.org>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210218112001.479018-2-t.schramm@manjaro.org
    TobleMiner authored and mripard committed Mar 6, 2021
  3. ARM: dts: sun4i: Add support for Topwise A721 tablet

    The Topwise A721/LY-F1 tablet is a tablet sold around 2012 under
    different brands. The mainboard mentions A721 clearly, so this tablet
    is best known under this name.
    
    Signed-off-by: Pascal Roeleven <dev@pascalroeleven.nl>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210224105240.47754-3-dev@pascalroeleven.nl
    pascallj authored and mripard committed Mar 6, 2021
  4. dt-bindings: arm: Add Topwise A721

    Add the bindings for Topwise A721 tablet
    
    Signed-off-by: Pascal Roeleven <dev@pascalroeleven.nl>
    Acked-by: Rob Herring <robh@kernel.org>
    Signed-off-by: Maxime Ripard <maxime@cerno.tech>
    Link: https://lore.kernel.org/r/20210224105240.47754-2-dev@pascalroeleven.nl
    pascallj authored and mripard committed Mar 6, 2021
  5. arm64: dts: allwinner: Move wakeup-capable IRQs to r_intc

    All IRQs that can be used to wake up the system must be routed through
    r_intc, so they are visible to firmware while the system is suspended.
    
    In addition to the external NMI input, which is already routed through
    r_intc, these include PIO and R_PIO (gpio-keys), the LRADC, and the RTC.
    
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Signed-off-by: Chen-Yu Tsai <wens@csie.org>
    smaeul authored and wens committed Mar 6, 2021
  6. arm64: dts: allwinner: Use the new r_intc binding

    The binding of R_INTC was updated to allow specifying interrupts other
    than the external NMI, since routing those interrupts through the R_INTC
    driver allows using them for wakeup.
    
    Update the device trees to use the new binding.
    
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Signed-off-by: Chen-Yu Tsai <wens@csie.org>
    smaeul authored and wens committed Mar 6, 2021
  7. ARM: dts: sunxi: Move wakeup-capable IRQs to r_intc

    All IRQs that can be used to wake up the system must be routed through
    r_intc, so they are visible to firmware while the system is suspended.
    
    In addition to the external NMI input, which is already routed through
    r_intc, these include PIO and R_PIO (gpio-keys), the LRADC, and the RTC.
    
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Signed-off-by: Chen-Yu Tsai <wens@csie.org>
    smaeul authored and wens committed Mar 6, 2021
  8. ARM: dts: sunxi: h3/h5: Add r_intc node

    The H3 and H5 SoCs have an additional interrupt controller in the RTC
    power domain that can be used to enable wakeup for certain IRQs.
    
    Add a node for it.
    
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Signed-off-by: Chen-Yu Tsai <wens@csie.org>
    smaeul authored and wens committed Mar 6, 2021
  9. ARM: dts: sunxi: Use the new r_intc binding

    The binding of R_INTC was updated to allow specifying interrupts other
    than the external NMI, since routing those interrupts through the R_INTC
    driver allows using them for wakeup.
    
    Update the device trees to use the new binding.
    
    Acked-by: Maxime Ripard <mripard@kernel.org>
    Signed-off-by: Samuel Holland <samuel@sholland.org>
    Signed-off-by: Chen-Yu Tsai <wens@csie.org>
    smaeul authored and wens committed Mar 6, 2021
  10. Linux 5.12-rc2

    torvalds committed Mar 6, 2021
  11. Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi…

    …t/rdma/rdma
    
    Pull rdma fixes from Jason Gunthorpe:
     "Nothing special here, though Bob's regression fixes for rxe would have
      made it before the rc cycle had there not been such strong winter
      weather!
    
       - Fix corner cases in the rxe reference counting cleanup that are
         causing regressions in blktests for SRP
    
       - Two kdoc fixes so W=1 is clean
    
       - Missing error return in error unwind for mlx5
    
       - Wrong lock type nesting in IB CM"
    
    * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma:
      RDMA/rxe: Fix errant WARN_ONCE in rxe_completer()
      RDMA/rxe: Fix extra deref in rxe_rcv_mcast_pkt()
      RDMA/rxe: Fix missed IB reference counting in loopback
      RDMA/uverbs: Fix kernel-doc warning of _uverbs_alloc
      RDMA/mlx5: Set correct kernel-doc identifier
      IB/mlx5: Add missing error code
      RDMA/rxe: Fix missing kconfig dependency on CRYPTO
      RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep
    torvalds committed Mar 6, 2021
  12. Merge tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/kees/linux
    
    Pull gcc-plugins fixes from Kees Cook:
     "Tiny gcc-plugin fixes for v5.12-rc2. These issues are small but have
      been reported a couple times now by static analyzers, so best to get
      them fixed to reduce the noise. :)
    
       - Fix coding style issues (Jason Yan)"
    
    * tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
      gcc-plugins: latent_entropy: remove unneeded semicolon
      gcc-plugins: structleak: remove unneeded variable 'ret'
    torvalds committed Mar 6, 2021
  13. Merge tag 'pstore-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/ke…

    …rnel/git/kees/linux
    
    Pull pstore fixes from Kees Cook:
    
     - Rate-limit ECC warnings (Dmitry Osipenko)
    
     - Fix error path check for NULL (Tetsuo Handa)
    
    * tag 'pstore-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
      pstore/ram: Rate-limit "uncorrectable error in header" message
      pstore: Fix warning in pstore_kill_sb()
    torvalds committed Mar 6, 2021

Commits on Mar 5, 2021

  1. Merge tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/k…

    …ernel/git/device-mapper/linux-dm
    
    Pull device mapper fixes from Mike Snitzer:
     "Fix DM verity target's optional Forward Error Correction (FEC) for
      Reed-Solomon roots that are unaligned to block size"
    
    * tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
      dm verity: fix FEC for RS roots unaligned to block size
      dm bufio: subtract the number of initial sectors in dm_bufio_get_device_size
    torvalds committed Mar 5, 2021
  2. Merge tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block

    Pull block fixes from Jens Axboe:
    
     - NVMe fixes:
          - more device quirks (Julian Einwag, Zoltán Böszörményi, Pascal
            Terjan)
          - fix a hwmon error return (Daniel Wagner)
          - fix the keep alive timeout initialization (Martin George)
          - ensure the model_number can't be changed on a used subsystem
            (Max Gurtovoy)
    
     - rsxx missing -EFAULT on copy_to_user() failure (Dan)
    
     - rsxx remove unused linux.h include (Tian)
    
     - kill unused RQF_SORTED (Jean)
    
     - updated outdated BFQ comments (Joseph)
    
     - revert work-around commit for bd_size_lock, since we removed the
       offending user in this merge window (Damien)
    
    * tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block:
      nvmet: model_number must be immutable once set
      nvme-fabrics: fix kato initialization
      nvme-hwmon: Return error code when registration fails
      nvme-pci: add quirks for Lexar 256GB SSD
      nvme-pci: mark Kingston SKC2000 as not supporting the deepest power state
      nvme-pci: mark Seagate Nytro XM1440 as QUIRK_NO_NS_DESC_LIST.
      rsxx: Return -EFAULT if copy_to_user() fails
      block/bfq: update comments and default value in docs for fifo_expire
      rsxx: remove unused including <linux/version.h>
      block: Drop leftover references to RQF_SORTED
      block: revert "block: fix bd_size_lock use"
    torvalds committed Mar 5, 2021
  3. Merge tag 'io_uring-5.12-2021-03-05' of git://git.kernel.dk/linux-block

    Pull io_uring fixes from Jens Axboe:
     "A bit of a mix between fallout from the worker change, cleanups and
      reductions now possible from that change, and fixes in general. In
      detail:
    
       - Fully serialize manager and worker creation, fixing races due to
         that.
    
       - Clean up some naming that had gone stale.
    
       - SQPOLL fixes.
    
       - Fix race condition around task_work rework that went into this
         merge window.
    
       - Implement unshare. Used for when the original task does unshare(2)
         or setuid/seteuid and friends, drops the original workers and forks
         new ones.
    
       - Drop the only remaining piece of state shuffling we had left, which
         was cred. Move it into issue instead, and we can drop all of that
         code too.
    
       - Kill f_op->flush() usage. That was such a nasty hack that we had
         out of necessity, we no longer need it.
    
       - Following from ->flush() removal, we can also drop various bits of
         ctx state related to SQPOLL and cancelations.
    
       - Fix an issue with IOPOLL retry, which originally was fallout from a
         filemap change (removing iov_iter_revert()), but uncovered an issue
         with iovec re-import too late.
    
       - Fix an issue with system suspend.
    
       - Use xchg() for fallback work, instead of cmpxchg().
    
       - Properly destroy io-wq on exec.
    
       - Add create_io_thread() core helper, and use that in io-wq and
         io_uring. This allows us to remove various silly completion events
         related to thread setup.
    
       - A few error handling fixes.
    
      This should be the grunt of fixes necessary for the new workers, next
      week should be quieter. We've got a pending series from Pavel on
      cancelations, and how tasks and rings are indexed. Outside of that,
      should just be minor fixes. Even with these fixes, we're still killing
      a net ~80 lines"
    
    * tag 'io_uring-5.12-2021-03-05' of git://git.kernel.dk/linux-block: (41 commits)
      io_uring: don't restrict issue_flags for io_openat
      io_uring: make SQPOLL thread parking saner
      io-wq: kill hashed waitqueue before manager exits
      io_uring: clear IOCB_WAITQ for non -EIOCBQUEUED return
      io_uring: don't keep looping for more events if we can't flush overflow
      io_uring: move to using create_io_thread()
      kernel: provide create_io_thread() helper
      io_uring: reliably cancel linked timeouts
      io_uring: cancel-match based on flags
      io-wq: ensure all pending work is canceled on exit
      io_uring: ensure that threads freeze on suspend
      io_uring: remove extra in_idle wake up
      io_uring: inline __io_queue_async_work()
      io_uring: inline io_req_clean_work()
      io_uring: choose right tctx->io_wq for try cancel
      io_uring: fix -EAGAIN retry with IOPOLL
      io-wq: fix error path leak of buffered write hash map
      io_uring: remove sqo_task
      io_uring: kill sqo_dead and sqo submission halting
      io_uring: ignore double poll add on the same waitqueue head
      ...
    torvalds committed Mar 5, 2021
  4. Merge tag 'pm-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/…

    …git/rafael/linux-pm
    
    Pull power management fixes from Rafael Wysocki:
     "These fix the usage of device links in the runtime PM core code and
      update the DTPM (Dynamic Thermal Power Management) feature added
      recently.
    
      Specifics:
    
       - Make the runtime PM core code avoid attempting to suspend supplier
         devices before updating the PM-runtime status of a consumer to
         'suspended' (Rafael Wysocki).
    
       - Fix DTPM (Dynamic Thermal Power Management) root node
         initialization and label that feature as EXPERIMENTAL in Kconfig
         (Daniel Lezcano)"
    
    * tag 'pm-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
      powercap/drivers/dtpm: Add the experimental label to the option description
      powercap/drivers/dtpm: Fix root node initialization
      PM: runtime: Update device status before letting suppliers suspend
    torvalds committed Mar 5, 2021
Older