soc.lore.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/2] memory: drivers for v5.12
@ 2021-01-31 18:01 Krzysztof Kozlowski
  2021-01-31 18:01 ` [GIT PULL 2/2] memory: tegra " Krzysztof Kozlowski
  2021-02-02 21:36 ` [GIT PULL 1/2] memory: " Arnd Bergmann
  0 siblings, 2 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-01-31 18:01 UTC (permalink / raw)
  To: Olof Johansson, Arnd Bergmann, arm, soc; +Cc: Krzysztof Kozlowski, linux-kernel

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

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.12

for you to fetch changes up to 50fc8d9232cdc64b9e9d1b9488452f153de52b69:

  memory: mtk-smi: Allow building as module (2021-01-26 20:47:51 +0100)

----------------------------------------------------------------
Memory controller drivers for v5.12

1. Mediatek SMI: fix PM usage counter and make the driver modular.
2. Renesas RPC-IF: add support for RZ/G2 series.
3. Minor fixes.

----------------------------------------------------------------
Adam Ford (2):
      dt-bindings: memory: renesas,rpc-if: Add support for RZ/G2 Series
      memory: renesas-rpc-if: Add RZ/G2 to Kconfig description

Pan Bian (1):
      memory: ti-aemif: Drop child node when jumping out loop

Yong Wu (2):
      memory: mtk-smi: Use platform_register_drivers
      memory: mtk-smi: Allow building as module

Zhang Qilong (1):
      memory: mtk-smi: Fix PM usage counter unbalance in mtk_smi ops

Zheng Yongjun (1):
      memory: emif: Use DEFINE_SPINLOCK() for spinlock

 .../memory-controllers/renesas,rpc-if.yaml         |  6 +++-
 drivers/memory/Kconfig                             |  8 ++---
 drivers/memory/emif.c                              |  3 +-
 drivers/memory/mtk-smi.c                           | 36 ++++++++++------------
 drivers/memory/ti-aemif.c                          |  8 +++--
 include/soc/mediatek/smi.h                         |  2 +-
 6 files changed, 33 insertions(+), 30 deletions(-)

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

* [GIT PULL 2/2] memory: tegra drivers for v5.12
  2021-01-31 18:01 [GIT PULL 1/2] memory: drivers for v5.12 Krzysztof Kozlowski
@ 2021-01-31 18:01 ` Krzysztof Kozlowski
  2021-02-02 21:36   ` Arnd Bergmann
  2021-02-02 21:36 ` [GIT PULL 1/2] memory: " Arnd Bergmann
  1 sibling, 1 reply; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-01-31 18:01 UTC (permalink / raw)
  To: Olof Johansson, Arnd Bergmann, arm, soc
  Cc: Krzysztof Kozlowski, linux-kernel, Thierry Reding

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

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.12

for you to fetch changes up to 25d987706abce0a425332a41ec984390fd03350a:

  memory: tegra: Remove calls to dev_pm_opp_set_clkname() (2021-01-29 07:59:01 +0100)

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

1. Make the tegra124-emc driver modular.
2. Add interconnect support to Tegra124 memory controller drivers.
3. Minor fixes.

----------------------------------------------------------------
Dmitry Osipenko (4):
      memory: tegra124-emc: Make driver modular
      memory: tegra124-emc: Continue probing if timings are missing in device-tree
      memory: tegra124: Support interconnect framework
      memory: tegra: Check whether reset is already asserted

Viresh Kumar (1):
      memory: tegra: Remove calls to dev_pm_opp_set_clkname()

 drivers/clk/tegra/Kconfig            |   3 +
 drivers/clk/tegra/Makefile           |   2 +-
 drivers/clk/tegra/clk-tegra124-emc.c |  41 +++-
 drivers/clk/tegra/clk-tegra124.c     |  26 ++-
 drivers/clk/tegra/clk.h              |  18 +-
 drivers/memory/tegra/Kconfig         |   4 +-
 drivers/memory/tegra/mc.c            |   7 +
 drivers/memory/tegra/tegra124-emc.c  | 368 +++++++++++++++++++++++++++++++----
 drivers/memory/tegra/tegra124.c      |  82 +++++++-
 drivers/memory/tegra/tegra20-emc.c   |  13 +-
 drivers/memory/tegra/tegra30-emc.c   |  13 +-
 include/linux/clk/tegra.h            |   8 +
 include/soc/tegra/emc.h              |  16 --
 13 files changed, 508 insertions(+), 93 deletions(-)
 delete mode 100644 include/soc/tegra/emc.h

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

* Re: [GIT PULL 1/2] memory: drivers for v5.12
  2021-01-31 18:01 [GIT PULL 1/2] memory: drivers for v5.12 Krzysztof Kozlowski
  2021-01-31 18:01 ` [GIT PULL 2/2] memory: tegra " Krzysztof Kozlowski
@ 2021-02-02 21:36 ` Arnd Bergmann
  1 sibling, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2021-02-02 21:36 UTC (permalink / raw)
  To: arm, soc, Krzysztof Kozlowski, Olof Johansson; +Cc: Arnd Bergmann, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

On Sun, 31 Jan 2021 19:01:08 +0100, Krzysztof Kozlowski wrote:
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> 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.12
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 993fd7d6fef65330b1a4abd0005ba09e0d8de3de

       Arnd

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

* Re: [GIT PULL 2/2] memory: tegra drivers for v5.12
  2021-01-31 18:01 ` [GIT PULL 2/2] memory: tegra " Krzysztof Kozlowski
@ 2021-02-02 21:36   ` Arnd Bergmann
  0 siblings, 0 replies; 4+ messages in thread
From: Arnd Bergmann @ 2021-02-02 21:36 UTC (permalink / raw)
  To: arm, soc, Krzysztof Kozlowski, Olof Johansson
  Cc: Arnd Bergmann, Thierry Reding, linux-kernel

From: Arnd Bergmann <arnd@arndb.de>

On Sun, 31 Jan 2021 19:01:09 +0100, Krzysztof Kozlowski wrote:
> The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:
> 
>   Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)
> 
> 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.12
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 4d29b82686589fafd4cbdd2de5ae8b72fd5a3149

       Arnd

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

end of thread, other threads:[~2021-02-02 21:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-31 18:01 [GIT PULL 1/2] memory: drivers for v5.12 Krzysztof Kozlowski
2021-01-31 18:01 ` [GIT PULL 2/2] memory: tegra " Krzysztof Kozlowski
2021-02-02 21:36   ` Arnd Bergmann
2021-02-02 21:36 ` [GIT PULL 1/2] memory: " 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).