soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/3] memory: drivers for v5.16
@ 2021-10-10 17:58 Krzysztof Kozlowski
  2021-10-10 17:58 ` [GIT PULL 2/3] memory: mediatek " Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-10-10 17:58 UTC (permalink / raw)
  To: Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Krzysztof Kozlowski, linux-kernel, Krzysztof Kozlowski

The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git tags/memory-controller-drv-5.16

for you to fetch changes up to d611d7ea120bbef45e836565dfa2ddc85a168c16:

  Merge branch 'for-v5.16/renesas-rpc' into mem-ctrl-next (2021-10-10 19:45:00 +0200)

----------------------------------------------------------------
Memory controller drivers for v5.16

1. Renesas RPC: fix unaligned bus access and QSPI data transfers in
   manual modes.
2. Renesas RPC: select RESET_CONTROLLER as it is necessary for
   operation.
3. FSL IFC: fix error paths.
4. Broadcom: allow building as module.

----------------------------------------------------------------
Andrew Gabbasov (1):
      memory: renesas-rpc-if: Avoid unaligned bus access for HyperFlash

Dongliang Mu (1):
      memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe

Florian Fainelli (1):
      memory: brcmstb_dpfe: Allow building Broadcom STB DPFE as module

Geert Uytterhoeven (1):
      memory: renesas-rpc-if: RENESAS_RPCIF should select RESET_CONTROLLER

Krzysztof Kozlowski (2):
      memory: samsung: describe drivers in KConfig
      Merge branch 'for-v5.16/renesas-rpc' into mem-ctrl-next

Wolfram Sang (2):
      dt-bindings: rpc: renesas-rpc-if: Add support for the R8A779A0 RPC-IF
      memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode

 .../memory-controllers/renesas,rpc-if.yaml         |   1 +
 drivers/memory/Kconfig                             |   5 +-
 drivers/memory/fsl_ifc.c                           |  13 +-
 drivers/memory/renesas-rpc-if.c                    | 159 ++++++++++++++++-----
 drivers/memory/samsung/Kconfig                     |  13 +-
 include/memory/renesas-rpc-if.h                    |   1 +
 6 files changed, 141 insertions(+), 51 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL 2/3] memory: mediatek for v5.16
  2021-10-10 17:58 [GIT PULL 1/3] memory: drivers for v5.16 Krzysztof Kozlowski
@ 2021-10-10 17:58 ` Krzysztof Kozlowski
  2021-10-11 14:54   ` Arnd Bergmann
  2021-10-10 17:58 ` [GIT PULL 3/3] memory: tegra " Krzysztof Kozlowski
  2021-10-11 14:54 ` [GIT PULL 1/3] memory: drivers " Arnd Bergmann
  2 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-10-10 17:58 UTC (permalink / raw)
  To: Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Krzysztof Kozlowski, linux-kernel, Krzysztof Kozlowski

Hi,

A topic branch specific to Mediatek.

Best regards,
Krzysztof


The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git tags/memory-controller-drv-mtk-5.16

for you to fetch changes up to 93403ede5aa4edeec2c63541b185d9c4fc9ae1e4:

  MAINTAINERS: Add entry for MediaTek SMI (2021-09-22 08:43:09 +0200)

----------------------------------------------------------------
Memory controller drivers for v5.14 - Mediatek

Add MT8195 support to the Mediatek SMI memory controller driver.  This
brings also several cleanups and minor enhancements before adding actual
new device support.

----------------------------------------------------------------
Yong Wu (13):
      dt-bindings: memory: mediatek: Add mt8195 smi binding
      dt-bindings: memory: mediatek: Add mt8195 smi sub common
      memory: mtk-smi: Use clk_bulk clock ops
      memory: mtk-smi: Rename smi_gen to smi_type
      memory: mtk-smi: Adjust some code position
      memory: mtk-smi: Add error handle for smi_probe
      memory: mtk-smi: Add device link for smi-sub-common
      memory: mtk-smi: Add clocks for smi-sub-common
      memory: mtk-smi: Use devm_platform_ioremap_resource
      memory: mtk-smi: mt8195: Add smi support
      memory: mtk-smi: mt8195: Add initial setting for smi-common
      memory: mtk-smi: mt8195: Add initial setting for smi-larb
      MAINTAINERS: Add entry for MediaTek SMI

 .../memory-controllers/mediatek,smi-common.yaml    |  34 +-
 .../memory-controllers/mediatek,smi-larb.yaml      |   3 +
 MAINTAINERS                                        |   8 +
 drivers/memory/mtk-smi.c                           | 596 ++++++++++++---------
 4 files changed, 393 insertions(+), 248 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [GIT PULL 3/3] memory: tegra for v5.16
  2021-10-10 17:58 [GIT PULL 1/3] memory: drivers for v5.16 Krzysztof Kozlowski
  2021-10-10 17:58 ` [GIT PULL 2/3] memory: mediatek " Krzysztof Kozlowski
@ 2021-10-10 17:58 ` Krzysztof Kozlowski
  2021-10-11 14:54   ` Arnd Bergmann
  2021-10-11 14:54 ` [GIT PULL 1/3] memory: drivers " Arnd Bergmann
  2 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Kozlowski @ 2021-10-10 17:58 UTC (permalink / raw)
  To: Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Krzysztof Kozlowski, linux-kernel, Krzysztof Kozlowski

Hi,

A topic branch specific to Tegra.

Best regards,
Krzysztof


The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:

  Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git tags/memory-controller-drv-tegra-5.16

for you to fetch changes up to 31b88d85f0432e1c0738fe0714191e8504f505c3:

  memory: tegra210-emc: replace DEFINE_SIMPLE_ATTRIBUTE with (2021-10-07 20:37:33 +0200)

----------------------------------------------------------------
Memory controller drivers for v5.16 - Tegra SoC

1. Several minor improvements.
2. Handle errors in BPMP response of Tegra186 EMC.

----------------------------------------------------------------
Cai Huoqing (1):
      memory: tegra: Make use of the helper function devm_add_action_or_reset()

Colin Ian King (1):
      memory: tegra: make the array list static const, makes object smaller

Dmitry Osipenko (1):
      memory: tegra: Remove interconnect state syncing hack

Jing Yangyang (1):
      memory: tegra210-emc: replace DEFINE_SIMPLE_ATTRIBUTE with DEFINE_DEBUGFS_ATTRIBUTE

Kai Song (1):
      memory: tegra210-emc: replace DEFINE_SIMPLE_ATTRIBUTE with

Mikko Perttunen (1):
      memory: tegra186-emc: Handle errors in BPMP response

Yang Yingliang (1):
      memory: tegra186-emc: Fix error return code in tegra186_emc_probe()

jing yangyang (1):
      memory: tegra30-emc: replace DEFINE_SIMPLE_ATTRIBUTE with DEFINE_DEBUGFS_ATTRIBUTE

 drivers/memory/tegra/mc.c                     | 25 ++++++++++++-------------
 drivers/memory/tegra/tegra186-emc.c           |  5 +++++
 drivers/memory/tegra/tegra210-emc-cc-r21021.c |  2 +-
 drivers/memory/tegra/tegra210-emc-core.c      |  6 +++---
 drivers/memory/tegra/tegra30-emc.c            |  4 ++--
 5 files changed, 23 insertions(+), 19 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL 1/3] memory: drivers for v5.16
  2021-10-10 17:58 [GIT PULL 1/3] memory: drivers for v5.16 Krzysztof Kozlowski
  2021-10-10 17:58 ` [GIT PULL 2/3] memory: mediatek " Krzysztof Kozlowski
  2021-10-10 17:58 ` [GIT PULL 3/3] memory: tegra " Krzysztof Kozlowski
@ 2021-10-11 14:54 ` Arnd Bergmann
  2 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-10-11 14:54 UTC (permalink / raw)
  To: arm, soc, Olof Johansson, Krzysztof Kozlowski
  Cc: Arnd Bergmann, linux-kernel, Krzysztof Kozlowski

From: Arnd Bergmann <arnd@arndb.de>

On Sun, 10 Oct 2021 19:58:34 +0200, Krzysztof Kozlowski wrote:
> The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:
> 
>   Linux 5.15-rc1 (2021-09-12 16:28:37 -0700)
> 
> are available in the Git repository at:
> 
>   https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git tags/memory-controller-drv-5.16
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 16667625dae695631d98d848769e481b08de7185

       Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL 2/3] memory: mediatek for v5.16
  2021-10-10 17:58 ` [GIT PULL 2/3] memory: mediatek " Krzysztof Kozlowski
@ 2021-10-11 14:54   ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-10-11 14:54 UTC (permalink / raw)
  To: arm, soc, Olof Johansson, Krzysztof Kozlowski
  Cc: Arnd Bergmann, linux-kernel, Krzysztof Kozlowski

From: Arnd Bergmann <arnd@arndb.de>

On Sun, 10 Oct 2021 19:58:35 +0200, Krzysztof Kozlowski wrote:
> A topic branch specific to Mediatek.
> 
> Best regards,
> Krzysztof
> 
> 
> The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: f47794f5fa703ac92464709131b86dd9e7567acd

       Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [GIT PULL 3/3] memory: tegra for v5.16
  2021-10-10 17:58 ` [GIT PULL 3/3] memory: tegra " Krzysztof Kozlowski
@ 2021-10-11 14:54   ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-10-11 14:54 UTC (permalink / raw)
  To: arm, soc, Olof Johansson, Krzysztof Kozlowski
  Cc: Arnd Bergmann, linux-kernel, Krzysztof Kozlowski

From: Arnd Bergmann <arnd@arndb.de>

On Sun, 10 Oct 2021 19:58:36 +0200, Krzysztof Kozlowski wrote:
> A topic branch specific to Tegra.
> 
> Best regards,
> Krzysztof
> 
> 
> The following changes since commit 6880fa6c56601bb8ed59df6c30fd390cc5f6dd8f:
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 14a7b467a65449ebc346e520a5ed59fafa809169

       Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2021-10-11 14:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-10 17:58 [GIT PULL 1/3] memory: drivers for v5.16 Krzysztof Kozlowski
2021-10-10 17:58 ` [GIT PULL 2/3] memory: mediatek " Krzysztof Kozlowski
2021-10-11 14:54   ` Arnd Bergmann
2021-10-10 17:58 ` [GIT PULL 3/3] memory: tegra " Krzysztof Kozlowski
2021-10-11 14:54   ` Arnd Bergmann
2021-10-11 14:54 ` [GIT PULL 1/3] memory: drivers " Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).