mbox series

[GIT,PULL] soc: mediatek: changes for v5.13

Message ID c47d4bdd-9e05-c0de-bacb-3a262fed936d@gmail.com (mailing list archive)
State Mainlined, archived
Commit 60d93f64a851d276b23b7ef68ddc638258485d32
Headers show
Series [GIT,PULL] soc: mediatek: changes for v5.13 | expand

Pull-request

https://git.kernel.org/pub/scm/linux/kernel/git/matthias.bgg/linux.git/ tags/v5.12-next-soc

Message

Matthias Brugger April 1, 2021, 2:19 p.m. UTC
Hi Arnd and Olof,

Below you can find the changes for the SoC drivers. After we fixed in the last
round the power management domain driver. This time it is the MMSYS driver. Up
to now it held one big table with routing information for all SoCs. But that's
not practical over time, so that was splitten up to add only per SoC structures.
That should make it easier in the future to add support for new SoCs. At least
one series didn't hit mainline this time, but should be ready for the next round.

Please take the patches into account for your pull request.

Regards,
Matthias

---

The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15:

  Linux 5.12-rc2 (2021-03-05 17:33:41 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/matthias.bgg/linux.git/
tags/v5.12-next-soc

for you to fetch changes up to 60d93f64a851d276b23b7ef68ddc638258485d32:

  soc: mediatek: pm-domains: Add a power domain names for mt8167 (2021-04-01
11:36:04 +0200)

----------------------------------------------------------------
- add MT8183 support to mutex driver

MMSYS:
- use per SoC array to describe the possible routing
- add support for MT8183

Power management domains:
- fix the case of a domain fails to get added
- add names for each power domain to make debugging easier

PMIC wrapper:
- add support for PMIC wrapper with integrated arbiter
- add support for MT8192/MT6873

----------------------------------------------------------------
CK Hu (2):
      soc: mediatek: mmsys: Create struct mtk_mmsys to store context data
      soc: mediatek: mmsys: Use an array for setting the routing registers

Enric Balletbo i Serra (5):
      soc: mediatek: pm-domains: Fix missing error code in scpsys_add_subdomain()
      soc: mediatek: pm-domains: Add a meaningful power domain name
      soc: mediatek: pm-domains: Add a power domain names for mt8183
      soc: mediatek: pm-domains: Add a power domain names for mt8192
      soc: mediatek: pm-domains: Add a power domain names for mt8167

Hsin-Hsiung Wang (4):
      soc: mediatek: pwrap: use BIT() macro
      soc: mediatek: pwrap: add arbiter capability
      dt-bindings: mediatek: add compatible for MT6873/8192 pwrap
      soc: mediatek: pwrap: add pwrap driver for MT6873/8192 SoCs

Hsin-Yi Wang (1):
      soc: mediatek: mmsys: Add mt8183 mmsys routing table

Wei Yongjun (1):
      soc: mediatek: Make symbol 'mtk_mutex_driver' static

Yongqiang Niu (1):
      soc: mediatek: add mtk mutex support for MT8183

 .../devicetree/bindings/soc/mediatek/pwrap.txt     |   1 +
 drivers/soc/mediatek/mt8167-pm-domains.h           |   7 +
 drivers/soc/mediatek/mt8173-pm-domains.h           |  10 +
 drivers/soc/mediatek/mt8183-mmsys.h                |  54 ++++
 drivers/soc/mediatek/mt8183-pm-domains.h           |  15 +
 drivers/soc/mediatek/mt8192-pm-domains.h           |  21 ++
 drivers/soc/mediatek/mtk-mmsys.c                   | 303 +++------------------
 drivers/soc/mediatek/mtk-mmsys.h                   | 215 +++++++++++++++
 drivers/soc/mediatek/mtk-mutex.c                   |  52 +++-
 drivers/soc/mediatek/mtk-pm-domains.c              |  11 +-
 drivers/soc/mediatek/mtk-pm-domains.h              |   2 +
 drivers/soc/mediatek/mtk-pmic-wrap.c               |  97 ++++++-
 12 files changed, 511 insertions(+), 277 deletions(-)
 create mode 100644 drivers/soc/mediatek/mt8183-mmsys.h
 create mode 100644 drivers/soc/mediatek/mtk-mmsys.h

Comments

Arnd Bergmann April 1, 2021, 9:08 p.m. UTC | #1
From: Arnd Bergmann <arnd@arndb.de>

On Thu, 1 Apr 2021 16:19:45 +0200, Matthias Brugger wrote:
> Below you can find the changes for the SoC drivers. After we fixed in the last
> round the power management domain driver. This time it is the MMSYS driver. Up
> to now it held one big table with routing information for all SoCs. But that's
> not practical over time, so that was splitten up to add only per SoC structures.
> That should make it easier in the future to add support for new SoCs. At least
> one series didn't hit mainline this time, but should be ready for the next round.
> 
> Please take the patches into account for your pull request.
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 3e7f2f2980e82eb20ce73691d65d696c6994ad4c

       Arnd