14 Dec, 2020

20 commits


26 Mar, 2020

1 commit

  • With upcoming changes in elf loader for elf64 support, section size will
    be a u64. When used with da_to_va, this will potentially lead to
    overflow if using the current "int" type for len argument. Change
    da_to_va prototype to use a size_t for len and fix all users of this
    function.

    Reviewed-by: Bjorn Andersson
    Reviewed-by: Mathieu Poirier
    Signed-off-by: Clement Leger
    Link: https://lore.kernel.org/r/20200302093902.27849-2-cleger@kalray.eu
    Signed-off-by: Bjorn Andersson

    Clement Leger
     

18 Jul, 2019

1 commit

  • Pull remoteproc updates from Bjorn Andersson:
    "This adds support for the STM32 remoteproc, additional i.MX platforms
    with Cortex M4 remoteprocs and Qualcomm's QCS404 Compute DSP.

    Also initial support for vendor specific resource table entries and
    support for unprocessed Qualcomm firmware files"

    * tag 'rproc-v5.3' of git://github.com/andersson/remoteproc:
    remoteproc: stm32: fix building without ARM SMCC
    remoteproc: qcom: q6v5-mss: Fix build error without QCOM_MDT_LOADER
    remoteproc: copy parent dma_pfn_offset for vdev
    remoteproc: qcom: q6v5-mss: Support loading non-split images
    soc: qcom: mdt_loader: Support loading non-split images
    remoteproc: stm32: add an ST stm32_rproc driver
    dt-bindings: remoteproc: add bindings for stm32 remote processor driver
    dt-bindings: stm32: add bindings for ML-AHB interconnect
    remoteproc: Use struct_size() helper
    remoteproc: add vendor resources handling
    remoteproc: imx: Fix typo in "failed"
    remoteproc: imx: Broaden the Kconfig selection logic
    remoteproc,rpmsg: add missing MAINTAINERS file entries
    remoteproc: qcom: qdsp6-adsp: Add support for QCS404 CDSP
    dt-bindings: remoteproc: Rename and amend Hexagon v56 binding

    Linus Torvalds
     

19 Jun, 2019

1 commit

  • Based on 2 normalized pattern(s):

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation

    this program is free software you can redistribute it and or modify
    it under the terms of the gnu general public license version 2 as
    published by the free software foundation #

    extracted by the scancode license scanner the SPDX license identifier

    GPL-2.0-only

    has been chosen to replace the boilerplate/reference in 4122 file(s).

    Signed-off-by: Thomas Gleixner
    Reviewed-by: Enrico Weigelt
    Reviewed-by: Kate Stewart
    Reviewed-by: Allison Randal
    Cc: linux-spdx@vger.kernel.org
    Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de
    Signed-off-by: Greg Kroah-Hartman

    Thomas Gleixner
     

04 Jun, 2019

1 commit


19 Mar, 2018

3 commits


12 Oct, 2017

1 commit


11 Oct, 2017

1 commit


31 Aug, 2017

1 commit

  • Provide a basic driver to control Cortex M4 co-processor found
    on NXP i.MX7D and i.MX6SX.
    Currently it is able to resolve addresses between M4 and main CPU,
    start and stop the co-processor. Other functionality is not provided
    or test.

    This driver was tested on NXP i.MX7D and expected to work on
    i.MX6SX as well.

    Signed-off-by: Oleksij Rempel
    Signed-off-by: Bjorn Andersson

    Oleksij Rempel