17 May, 2019

1 commit

  • Pull ARM SoC-related driver updates from Olof Johansson:
    "Various driver updates for platforms and a couple of the small driver
    subsystems we merge through our tree:

    Among the larger pieces:

    - Power management improvements for TI am335x and am437x (RTC
    suspend/wake)

    - Misc new additions for Amlogic (socinfo updates)

    - ZynqMP FPGA manager

    - Nvidia improvements for reset/powergate handling

    - PMIC wrapper for Mediatek MT8516

    - Misc fixes/improvements for ARM SCMI, TEE, NXP i.MX SCU drivers"

    * tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (57 commits)
    soc: aspeed: fix Kconfig
    soc: add aspeed folder and misc drivers
    spi: zynqmp: Fix build break
    soc: imx: Add generic i.MX8 SoC driver
    MAINTAINERS: Update email for Qualcomm SoC maintainer
    memory: tegra: Fix a typos for "fdcdwr2" mc client
    Revert "ARM: tegra: Restore memory arbitration on resume from LP1 on Tegra30+"
    memory: tegra: Replace readl-writel with mc_readl-mc_writel
    memory: tegra: Fix integer overflow on tick value calculation
    memory: tegra: Fix missed registers values latching
    ARM: tegra: cpuidle: Handle tick broadcasting within cpuidle core on Tegra20/30
    optee: allow to work without static shared memory
    soc/tegra: pmc: Move powergate initialisation to probe
    soc/tegra: pmc: Remove reset sysfs entries on error
    soc/tegra: pmc: Fix reset sources and levels
    soc: amlogic: meson-gx-pwrc-vpu: Add support for G12A
    soc: amlogic: meson-gx-pwrc-vpu: Fix power on/off register bitmask
    fpga manager: Adding FPGA Manager support for Xilinx zynqmp
    dt-bindings: fpga: Add bindings for ZynqMP fpga driver
    firmware: xilinx: Add fpga API's
    ...

    Linus Torvalds
     

09 Apr, 2019

1 commit


06 Apr, 2019

2 commits


04 Apr, 2019

6 commits

  • We cannot access mcpdm registers at all unless there is an optional pdmclk
    configured. As this is currently only needed for mcpdm, let's check for
    mcpdm in sysc_get_clocks(). If it turns out to be needed for other modules
    too, we can add more flags to the quirks table for this.

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     
  • At least mcpdm needs an optional external clock enabled to function and
    this clock typically comes from the PMIC. We can detect mcpdm based on
    the interconnect target module address and set a quirk flag early.

    To do this, let's initialize the clocks a bit later and add a new
    function for sysc_init_early_quirks(). Note that we cannot yet enable
    the early quirks for mcpdm until the optional external clocks are
    handled in the in the following patch.

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     
  • We can do the rsstctrl a bit later, but need to deassert rstctrl reset
    before the clocks are enabled if asserted. Let's only init restctrl
    in sysc_init_resets() and do the reset later on just before we enable
    the device clocks.

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     
  • We are currently not managing interconnect target module clocks in the
    for legacy platform data based case. This causes a problem for using the
    platform data based functions when dropping the platform data for the
    interconnect target module configuration.

    To avoid a situation where we need to populate the main and optional
    clocks also for the platform data based functions, let's just manage the
    clocks directly in ti-sysc driver. This means that until the interconnect
    target module confugration platform data is dropped our use count for
    clk_enable() will be 2 instead of 1.

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     
  • The platform data based init functions typically reset the interconnect
    target module configure the registers. As we may need the interconnect
    target module specific quirks configured based on the revision register,
    we want to move the platform data based init to happen later.

    Let's allocate mdata as needed so it's available for sysc_legacy_init()
    that we call with module clocks enabled from sysc_init_module().

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     
  • The first thing we want to do is just read the module revision register to
    be able to configure the module specific quirks and configure the module
    registers.

    As the interconnect target module may not yet be properly configured and
    may need a reset first, we don't want to use pm_runtime_get() at this
    point.

    To read the revision register, let's just enable the all the clocks for
    the interconnect target module during init even if the optional clocks
    are not needed. That way we can read the revision register to configure
    the quirks needed for PM runtime.

    Signed-off-by: Tony Lindgren

    Tony Lindgren
     

01 Apr, 2019

5 commits


29 Mar, 2019

2 commits

  • pm_runtime_force_suspend() and pm_runtime_force_resume() are used as system
    sleep noirq suspend and resume callbacks. If the driver is active till late
    suspend, where runtime PM cannot run, force suspend is essential for the
    device. This makes sure that the device is put into low power state during
    system wide PM transitions to sleep states.

    Signed-off-by: Sameer Pujar
    Acked-by: Jon Hunter
    Signed-off-by: Thierry Reding

    Sameer Pujar
     
  • aconnect bus driver is using pm_clk_*() interface for managing clocks.
    With this, clocks seem to be always ON. This happens on Tegra devices
    which use BPMP co-processor to manage clock resources, where clocks
    are enabled during prepare phase. This is necessary because calls to
    BPMP are always blocking. When pm_clk_*() interface is used on such
    Tegra devices, clock prepare count is not balanced till driver remove()
    gets executed and hence clocks are seen ON always. Thus this patch
    replaces pm_clk_*() with devm_clk_*() framework.

    Suggested-by: Mohan Kumar D
    Reviewed-by: Jonathan Hunter
    Signed-off-by: Sameer Pujar
    Signed-off-by: Thierry Reding

    Sameer Pujar
     

07 Mar, 2019

1 commit

  • Pull ARM SoC driver updates from Arnd Bergmann:
    "As usual, the drivers/tee and drivers/reset subsystems get merged
    here, with the expected set of smaller updates and some new hardware
    support. The tee subsystem now supports device drivers to be attached
    to a tee, the first example here is a random number driver with its
    implementation in the secure world.

    Three new power domain drivers get added for specific chip families:
    - Broadcom BCM283x chips (used in Raspberry Pi)
    - Qualcomm Snapdragon phone chips
    - Xilinx ZynqMP FPGA SoCs

    One new driver is added to talk to the BPMP firmware on NVIDIA
    Tegra210

    Existing drivers are extended for new SoC variants from NXP, NVIDIA,
    Amlogic and Qualcomm"

    * tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (113 commits)
    tee: optee: update optee_msg.h and optee_smc.h to dual license
    tee: add cancellation support to client interface
    dpaa2-eth: configure the cache stashing amount on a queue
    soc: fsl: dpio: configure cache stashing destination
    soc: fsl: dpio: enable frame data cache stashing per software portal
    soc: fsl: guts: make fsl_guts_get_svr() static
    hwrng: make symbol 'optee_rng_id_table' static
    tee: optee: Fix unsigned comparison with less than zero
    hwrng: Fix unsigned comparison with less than zero
    tee: fix possible error pointer ctx dereferencing
    hwrng: optee: Initialize some structs using memset instead of braces
    tee: optee: Initialize some structs using memset instead of braces
    soc: fsl: dpio: fix memory leak of a struct qbman on error exit path
    clk: tegra: dfll: Make symbol 'tegra210_cpu_cvb_tables' static
    soc: qcom: llcc-slice: Fix typos
    qcom: soc: llcc-slice: Consolidate some code
    qcom: soc: llcc-slice: Clear the global drv_data pointer on error
    drivers: soc: xilinx: Add ZynqMP power domain driver
    firmware: xilinx: Add APIs to control node status/power
    dt-bindings: power: Add ZynqMP power domain bindings
    ...

    Linus Torvalds
     

06 Mar, 2019

1 commit

  • Pull crypto update from Herbert Xu:
    "API:
    - Add helper for simple skcipher modes.
    - Add helper to register multiple templates.
    - Set CRYPTO_TFM_NEED_KEY when setkey fails.
    - Require neither or both of export/import in shash.
    - AEAD decryption test vectors are now generated from encryption
    ones.
    - New option CONFIG_CRYPTO_MANAGER_EXTRA_TESTS that includes random
    fuzzing.

    Algorithms:
    - Conversions to skcipher and helper for many templates.
    - Add more test vectors for nhpoly1305 and adiantum.

    Drivers:
    - Add crypto4xx prng support.
    - Add xcbc/cmac/ecb support in caam.
    - Add AES support for Exynos5433 in s5p.
    - Remove sha384/sha512 from artpec7 as hardware cannot do partial
    hash"

    [ There is a merge of the Freescale SoC tree in order to pull in changes
    required by patches to the caam/qi2 driver. ]

    * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: (174 commits)
    crypto: s5p - add AES support for Exynos5433
    dt-bindings: crypto: document Exynos5433 SlimSSS
    crypto: crypto4xx - add missing of_node_put after of_device_is_available
    crypto: cavium/zip - fix collision with generic cra_driver_name
    crypto: af_alg - use struct_size() in sock_kfree_s()
    crypto: caam - remove redundant likely/unlikely annotation
    crypto: s5p - update iv after AES-CBC op end
    crypto: x86/poly1305 - Clear key material from stack in SSE2 variant
    crypto: caam - generate hash keys in-place
    crypto: caam - fix DMA mapping xcbc key twice
    crypto: caam - fix hash context DMA unmap size
    hwrng: bcm2835 - fix probe as platform device
    crypto: s5p-sss - Use AES_BLOCK_SIZE define instead of number
    crypto: stm32 - drop pointless static qualifier in stm32_hash_remove()
    crypto: chelsio - Fixed Traffic Stall
    crypto: marvell - Remove set but not used variable 'ivsize'
    crypto: ccp - Update driver messages to remove some confusion
    crypto: adiantum - add 1536 and 4096-byte test vectors
    crypto: nhpoly1305 - add a test vector with len % 16 != 0
    crypto: arm/aes-ce - update IV after partial final CTR block
    ...

    Linus Torvalds
     

16 Feb, 2019

2 commits

  • ARM64: hisi: SoC driver updates for 5.1

    - Add compatibility support for different FWs in the hisi LPC bus driver

    * tag 'hisi-drivers-for-5.1' of git://github.com/hisilicon/linux-hisi:
    bus: hisi_lpc: Don't fail probe for unrecognised child devices

    Signed-off-by: Arnd Bergmann

    Arnd Bergmann
     
  • …wnguo/linux into arm/drivers

    i.MX drivers update for 5.1:
    - Do not get GPCv2 driver depend on SOC_IMX8MQ since the driver is
    going to be used on more SoCs than just i.MX8MQ.
    - Add power domain information into SCU bindings document.
    - Add support of start/stop a CPU into imx firmware driver.
    - Support multiple address ranges per child node for imx-weim bus
    driver.

    * tag 'imx-drivers-5.1' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
    firmware: imx: Add support to start/stop a CPU
    soc: imx: Break dependency on SOC_IMX8MQ for GPCv2
    firmware: imx: scu-pd: add fallback compatible string support
    dt-bindings: fsl: scu: add imx8qm scu power domain support
    dt-bindings: fsl: scu: add fallback compatible string for power domain
    bus: imx-weim: guard against timing configuration conflicts
    bus: imx-weim: support multiple address ranges per child node
    dt-bindings: bus: imx-weim: document multiple address ranges per child node
    soc: imx: gpcv2: handle reset clocks
    soc: imx: gpcv2: handle additional power-down bits in handshake register

    Signed-off-by: Arnd Bergmann <arnd@arndb.de>

    Arnd Bergmann
     

08 Feb, 2019

1 commit

  • Currently for ACPI-based FW we fail the probe for an unrecognised child
    HID.

    However, there is FW in the field with LPC child devices having fake HIDs,
    namely "IPI0002", which was an IPMI device invented to support the
    initial out-of-tree LPC host driver, different from the final mainline
    version.

    To provide compatibility support for these dodgy FWs, just discard the
    unrecognised HIDs instead of failing the probe altogether.

    Tested-by: Zengruan Ye
    Signed-off-by: John Garry
    Signed-off-by: Wei Xu

    John Garry
     

29 Jan, 2019

2 commits

  • Tony Lindgren
     
  • Commit 84badc5ec5fc ("ARM: dts: omap4: Move l4 child devices to probe
    them with ti-sysc") started producing a warning for pwm-omap-dmtimer:

    WARNING: CPU: 0 PID: 77 at drivers/bus/omap_l3_noc.c:147
    l3_interrupt_handler+0x2f8/0x388
    44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4PER2 (Idle):
    Data Access in Supervisor mode during Functional access
    ...
    __pm_runtime_idle
    omap_dm_timer_disable
    pwm_omap_dmtimer_start
    pwm_omap_dmtimer_enable
    pwm_apply_state
    pwm_vibrator_start
    pwm_vibrator_play_work

    This is because the timer that pwm-omap-dmtimer is using is now being
    probed with ti-sysc interconnect target module instead of omap_device
    and the ti-sysc quirk for SYSC_QUIRK_LEGACY_IDLE is not fully
    compatible with what omap_device has been doing.

    We could fix this by reverting the timer changes and have the timer
    probe again with omap_device. Or we could add more quirk handling to
    ti-sysc driver. But as these options don't work nicely as longer term
    solutions, let's just make timers probe with ti-sysc without any
    quirks.

    To do this, all we need to do is remove quirks for timers for ti-sysc,
    and drop the bogus pm_runtime_irq_safe() flag for timer-ti-dm.

    We should not use pm_runtime_irq_safe() anyways for drivers as it will
    take a permanent use count on the parent device blocking the parent
    devices from idling and has been forcing ti-sysc driver to use a
    quirk flag.

    Note that we will move the timer data to DEBUG section later on in
    clean-up patches.

    Fixes: 84badc5ec5fc ("ARM: dts: omap4: Move l4 child devices to probe them with ti-sysc")
    Cc: Andy Shevchenko
    Cc: Bartosz Golaszewski
    Cc: Daniel Lezcano
    Cc: H. Nikolaus Schaller
    Cc: Keerthy
    Cc: Ladislav Michl
    Cc: Pavel Machek
    Cc: Sebastian Reichel
    Cc: Tero Kristo
    Cc: Thierry Reding
    Cc: Thomas Gleixner
    Reported-by: H. Nikolaus Schaller
    Tested-By: Andreas Kemnade
    Tested-By: H. Nikolaus Schaller
    Signed-off-by: Tony Lindgren

    Tony Lindgren
     

12 Jan, 2019

1 commit

  • Allocatable devices can be acquired by drivers on the fsl-mc bus using
    the fsl_mc_portal_allocate or fsl_mc_object_allocate functions. Add a
    device link between the consumer device and the supplier device so that
    proper resource management is achieved.
    Also, adding a link between these devices ensures that a proper unbind
    order is respected (ie before the supplier device is unbound from its
    respective driver all consumer devices will be notified and unbound
    first).

    Signed-off-by: Ioana Ciornei
    Reviewed-by: Laurentiu Tudor
    Signed-off-by: Li Yang

    Ioana Ciornei
     

11 Jan, 2019

2 commits

  • When specifying weim child devices, there is a risk that more than
    one timing setting is specified for the same chip select.

    The driver cannot support such a configuration.

    In case of conflict, this patch will print a warning to the log,
    and will ignore the child node in question.

    In this example, node acme@1 will be ignored, as it tries to modify
    timing settings for CS0:

    &weim {
    acme@0 {
    compatible = "acme,whatever";
    reg = ;
    fsl,weim-cs-timing = ;
    };
    acme@1 {
    compatible = "acme,whatnot";
    reg = ;
    fsl,weim-cs-timing = ;
    };
    };

    However in this example, the driver will be happy:

    &weim {
    acme@0 {
    compatible = "acme,whatever";
    reg = ;
    fsl,weim-cs-timing = ;
    };
    acme@1 {
    compatible = "acme,whatnot";
    reg = ;
    fsl,weim-cs-timing = ;
    };
    };

    Signed-off-by: Sven Van Asbroeck
    Signed-off-by: Shawn Guo

    Sven Van Asbroeck
     
  • Ensure that timing values for the child node are applied to
    all chip selects in the child's address ranges.

    Note that this does not support multiple timing settings per
    child; this can be added in the future if required.

    Example:
    &weim {
    acme@0 {
    compatible = "acme,whatever";
    reg = , ,
    ;
    fsl,weim-cs-timing = ;
    };
    };

    Signed-off-by: Sven Van Asbroeck
    Signed-off-by: Shawn Guo

    Sven Van Asbroeck
     

01 Jan, 2019

1 commit

  • Pull ARM SoC driver updates from Olof Johansson:
    "Misc driver updates for platforms, many of them power related.

    - Rockchip adds power domain support for rk3066 and rk3188

    - Amlogic adds a power measurement driver

    - Allwinner adds SRAM support for three platforms (F1C100, H5, A64
    C1)

    - Wakeup and ti-sysc (platform bus) fixes for OMAP/DRA7

    - Broadcom fixes suspend/resume with Thumb2 kernels, and improves
    stability of a handful of firmware/platform interfaces

    - PXA completes their conversion to dmaengine framework

    - Renesas does a bunch of PM cleanups across many platforms

    - Tegra adds support for suspend/resume on T186/T194, which includes
    some driver cleanups and addition of wake events

    - Tegra also adds a driver for memory controller (EMC) on Tegra2

    - i.MX tweaks power domain bindings, and adds support for i.MX8MQ in
    GPC

    - Atmel adds identifiers and LPDDR2 support for a new SoC, SAM9X60

    and misc cleanups across several platforms"

    * tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (73 commits)
    ARM: at91: add support in soc driver for new SAM9X60
    ARM: at91: add support in soc driver for LPDDR2 SiP
    memory: omap-gpmc: Use of_node_name_eq for node name comparisons
    bus: ti-sysc: Check for no-reset and no-idle flags at the child level
    ARM: OMAP2+: Check also the first dts child for hwmod flags
    soc: amlogic: meson-clk-measure: Add missing REGMAP_MMIO dependency
    soc: imx: gpc: Increase GPC_CLK_MAX to 7
    soc: renesas: rcar-sysc: Fix power domain control after system resume
    soc: renesas: rcar-sysc: Merge PM Domain registration and linking
    soc: renesas: rcar-sysc: Remove rcar_sysc_power_{down,up}() helpers
    soc: renesas: r8a77990-sysc: Fix initialization order of 3DG-{A,B}
    dt-bindings: sram: sunxi: Add compatible for the A64 SRAM C1
    dt-bindings: sram: sunxi: Add bindings for the H5 with SRAM C1
    dt-bindings: sram: Add Allwinner suniv F1C100s
    soc: sunxi: sram: Add support for the H5 SoC system control
    soc: sunxi: sram: Enable EMAC clock access for H3 variant
    soc: imx: gpcv2: add support for i.MX8MQ SoC
    soc: imx: gpcv2: move register access table to domain data
    soc: imx: gpcv2: prefix i.MX7 specific defines
    dmaengine: pxa: make the filter function internal
    ...

    Linus Torvalds
     

19 Dec, 2018

1 commit


13 Dec, 2018

1 commit

  • …inux/kernel/git/tmlind/linux-omap into next/drivers

    Few more omap driver fixes and improvments for v4.21 merge window

    This series of changes improves the TI module flag handling to allow
    booting with older dts files until the module flags have been moved
    to the interconnect target module level. And there's a of_node_name_eq()
    clean-up patch from Rob Herring for the GPMC driver.

    * tag 'omap-for-v4.21/driver-part2-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap:
    memory: omap-gpmc: Use of_node_name_eq for node name comparisons
    bus: ti-sysc: Check for no-reset and no-idle flags at the child level
    ARM: OMAP2+: Check also the first dts child for hwmod flags

    Signed-off-by: Olof Johansson <olof@lixom.net>

    Olof Johansson
     

11 Dec, 2018

1 commit

  • With ti-sysc, we need to now have the device tree properties for
    ti,no-reset-on-init and ti,no-idle-on-init at the module level instead
    of the child device level.

    Let's check for these properties at the child device level to enable
    quirks, and warn about moving the properties to the module level.

    Otherwise am335x-evm based boards tagging gpio1 with ti,no-reset-on-init
    will have their DDR power disabled if wired up in such a tricky way.

    Note that this should not be an issue for earlier kernels as we don't
    rely on this until the dts files have been updated to probe with ti-sysc
    interconnect target driver.

    Cc: Peter Ujfalusi
    Reported-by: Peter Ujfalusi
    Signed-off-by: Tony Lindgren

    Tony Lindgren
     

06 Dec, 2018

1 commit


04 Dec, 2018

1 commit

  • This pull request contains Broadcom ARM/ARM64/MIPS SoCs drivers changes
    for 4.21, please pull the following changes:

    - James fixes the firmware interface after a commit changed the use of
    VLA and broke large transfers

    - Stefan adds a timeout check for Raspberry Pi firmware transactions and
    updates a bunch of SoC/firmware files to use SPDX tags

    - Wolfram switches the GISB bus arbiter to use dev_get_drvdata()

    - Yangtao provides a fix for a reference leak due to a call to
    of_find_node_by_path()

    - Florian fixes the CPU re-entry point out of S3 suspend with kernels
    built in Thumb2 mode

    * tag 'arm-soc/for-4.21/drivers' of https://github.com/Broadcom/stblinux:
    soc: bcm: brcmstb: Don't leak device tree node reference
    firmware: raspberrypi: Switch to SPDX identifier
    firmware: raspberrypi: Fix firmware calls with large buffers
    soc: bcm: Switch raspberrypi-power to SPDX identifier
    firmware: raspberrypi: Define timeout for transactions
    bus: brcmstb_gisb: simplify getting .driver_data
    soc: bcm: brcmstb: Fix re-entry point with a THUMB2_KERNEL

    Signed-off-by: Olof Johansson

    Olof Johansson
     

16 Nov, 2018

3 commits


06 Nov, 2018

1 commit


30 Oct, 2018

1 commit

  • Pull ARM SoC driver updates from Arnd Bergmann:
    "The most noteworthy SoC driver changes this time include:

    - The TEE subsystem gains an in-kernel interface to access the TEE
    from device drivers.

    - The reset controller subsystem gains a driver for the Qualcomm
    Snapdragon 845 Power Domain Controller.

    - The Xilinx Zynq platform now has a firmware interface for its
    platform management unit. This contains a firmware "ioctl"
    interface that was a little controversial at first, but the version
    we merged solved that by not exposing arbitrary firmware calls to
    user space.

    - The Amlogic Meson platform gains a "canvas" driver that is used for
    video processing and shared between different high-level drivers.

    The rest is more of the usual, mostly related to SoC specific power
    management support and core drivers in drivers/soc:

    - Several Renesas SoCs (RZ/G1N, RZ/G2M, R-Car V3M, RZ/A2M) gain new
    features related to power and reset control.

    - The Mediatek mt8183 and mt6765 SoC platforms gain support for their
    respective power management chips.

    - A new driver for NXP i.MX8, which need a firmware interface for
    power management.

    - The SCPI firmware interface now contains support estimating power
    usage of performance states

    - The NVIDIA Tegra "pmc" driver gains a few new features, in
    particular a pinctrl interface for configuring the pads.

    - Lots of small changes for Qualcomm, in particular the "smem" device
    driver.

    - Some cleanups for the TI OMAP series related to their sysc
    controller.

    Additional cleanups and bugfixes in SoC specific drivers include the
    Meson, Keystone, NXP, AT91, Sunxi, Actions, and Tegra platforms"

    * tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (129 commits)
    firmware: tegra: bpmp: Implement suspend/resume support
    drivers: clk: Add ZynqMP clock driver
    dt-bindings: clock: Add bindings for ZynqMP clock driver
    firmware: xilinx: Add zynqmp IOCTL API for device control
    Documentation: xilinx: Add documentation for eemi APIs
    MAINTAINERS: imx: include drivers/firmware/imx path
    firmware: imx: add misc svc support
    firmware: imx: add SCU firmware driver support
    reset: Fix potential use-after-free in __of_reset_control_get()
    dt-bindings: arm: fsl: add scu binding doc
    soc: fsl: qbman: add interrupt coalesce changing APIs
    soc: fsl: bman_portals: defer probe after bman's probe
    soc: fsl: qbman: Use last response to determine valid bit
    soc: fsl: qbman: Add 64 bit DMA addressing requirement to QBMan
    soc: fsl: qbman: replace CPU 0 with any online CPU in hotplug handlers
    soc: fsl: qbman: Check if CPU is offline when initializing portals
    reset: qcom: PDC Global (Power Domain Controller) reset controller
    dt-bindings: reset: Add PDC Global binding for SDM845 SoCs
    reset: Grammar s/more then once/more than once/
    bus: ti-sysc: Just use SET_NOIRQ_SYSTEM_SLEEP_PM_OPS
    ...

    Linus Torvalds
     

27 Oct, 2018

2 commits

  • Pull Devicetree updates from Rob Herring:
    "A bit bigger than normal as I've been busy this cycle.

    There's a few things with dependencies and a few things subsystem
    maintainers didn't pick up, so I'm taking them thru my tree.

    The fixes from Johan didn't get into linux-next, but they've been
    waiting for some time now and they are what's left of what subsystem
    maintainers didn't pick up.

    Summary:

    - Sync dtc with upstream version v1.4.7-14-gc86da84d30e4

    - Work to get rid of direct accesses to struct device_node name and
    type pointers in preparation for removing them. New helpers for
    parsing DT cpu nodes and conversions to use the helpers. printk
    conversions to %pOFn for printing DT node names. Most went thru
    subystem trees, so this is the remainder.

    - Fixes to DT child node lookups to actually be restricted to child
    nodes instead of treewide.

    - Refactoring of dtb targets out of arch code. This makes the support
    more uniform and enables building all dtbs on c6x, microblaze, and
    powerpc.

    - Various DT binding updates for Renesas r8a7744 SoC

    - Vendor prefixes for Facebook, OLPC

    - Restructuring of some ARM binding docs moving some peripheral
    bindings out of board/SoC binding files

    - New "secure-chosen" binding for secure world settings on ARM

    - Dual licensing of 2 DT IRQ binding headers"

    * tag 'devicetree-for-4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux: (78 commits)
    ARM: dt: relicense two DT binding IRQ headers
    power: supply: twl4030-charger: fix OF sibling-node lookup
    NFC: nfcmrvl_uart: fix OF child-node lookup
    net: stmmac: dwmac-sun8i: fix OF child-node lookup
    net: bcmgenet: fix OF child-node lookup
    drm/msm: fix OF child-node lookup
    drm/mediatek: fix OF sibling-node lookup
    of: Add missing exports of node name compare functions
    dt-bindings: Add OLPC vendor prefix
    dt-bindings: misc: bk4: Add device tree binding for Liebherr's BK4 SPI bus
    dt-bindings: thermal: samsung: Add SPDX license identifier
    dt-bindings: clock: samsung: Add SPDX license identifiers
    dt-bindings: timer: ostm: Add R7S9210 support
    dt-bindings: phy: rcar-gen2: Add r8a7744 support
    dt-bindings: can: rcar_can: Add r8a7744 support
    dt-bindings: timer: renesas, cmt: Document r8a7744 CMT support
    dt-bindings: watchdog: renesas-wdt: Document r8a7744 support
    dt-bindings: thermal: rcar: Add device tree support for r8a7744
    Documentation: dt: Add binding for /secure-chosen/stdout-path
    dt-bindings: arm: zte: Move sysctrl bindings to their own doc
    ...

    Linus Torvalds
     
  • Pull IOMMU updates from Joerg Roedel:

    - Debugfs support for the Intel VT-d driver.

    When enabled, it now also exposes some of its internal data
    structures to user-space for debugging purposes.

    - ARM-SMMU driver now uses the generic deferred flushing and fast-path
    iova allocation code.

    This is expected to be a major performance improvement, as this
    allocation path scales a lot better.

    - Support for r8a7744 in the Renesas iommu driver

    - Couple of minor fixes and improvements all over the place

    * tag 'iommu-updates-v4.20' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu: (39 commits)
    iommu/arm-smmu-v3: Remove unnecessary wrapper function
    iommu/arm-smmu-v3: Add SPDX header
    iommu/amd: Add default branch in amd_iommu_capable()
    dt-bindings: iommu: ipmmu-vmsa: Add r8a7744 support
    iommu/amd: Move iommu_init_pci() to .init section
    iommu/arm-smmu: Support non-strict mode
    iommu/io-pgtable-arm-v7s: Add support for non-strict mode
    iommu/arm-smmu-v3: Add support for non-strict mode
    iommu/io-pgtable-arm: Add support for non-strict mode
    iommu: Add "iommu.strict" command line option
    iommu/dma: Add support for non-strict mode
    iommu/arm-smmu: Ensure that page-table updates are visible before TLBI
    iommu/arm-smmu-v3: Implement flush_iotlb_all hook
    iommu/arm-smmu-v3: Avoid back-to-back CMD_SYNC operations
    iommu/arm-smmu-v3: Fix unexpected CMD_SYNC timeout
    iommu/io-pgtable-arm: Fix race handling in split_blk_unmap()
    iommu/arm-smmu-v3: Fix a couple of minor comment typos
    iommu: Fix a typo
    iommu: Remove .domain_{get,set}_windows
    iommu: Tidy up window attributes
    ...

    Linus Torvalds