All of lore.kernel.org
 help / color / mirror / Atom feed
From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: arm-soc <arm@kernel.org>, soc <soc@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org
Subject: [GIT,PULL,2/3] MediaTek soc driver updates for v6.8
Date: Tue, 12 Dec 2023 12:44:28 +0100	[thread overview]
Message-ID: <20231212114515.121695-2-angelogioacchino.delregno@collabora.com> (raw)
In-Reply-To: <20231212114515.121695-1-angelogioacchino.delregno@collabora.com>

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

  Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mediatek/linux.git tags/mtk-soc-for-v6.8

for you to fetch changes up to 2bfbf82956e2de75249ce83901800c68d17d9e62:

  soc: mediatek: mtk-svs: Constify runtime-immutable members of svs_bank (2023-12-11 11:36:15 +0100)

----------------------------------------------------------------
MediaTek soc driver updates for v6.8

This adds a refactoring of the MediaTek Smart Voltage Scaling (SVS)
driver and the addition of support for MT8186 and MT8195 in it, and
adds support for the MT8188 VDOSYS and resets in the MMSYS driver.

----------------------------------------------------------------
AngeloGioacchino Del Regno (17):
      soc: mediatek: mtk-svs: Subtract offset from regs_v2 to avoid conflict
      soc: mediatek: mtk-svs: Convert sw_id and type to enumerations
      soc: mediatek: mtk-svs: Build bank name string dynamically
      soc: mediatek: mtk-svs: Reduce memory footprint of struct svs_bank
      soc: mediatek: mtk-svs: Change the thermal sensor device name
      soc: mediatek: mtk-svs: Add a map to retrieve fused values
      soc: mediatek: mtk-svs: Add SVS-Thermal coefficient to SoC platform data
      soc: mediatek: mtk-svs: Move t-calibration-data retrieval to svs_probe()
      soc: mediatek: mtk-svs: Commonize efuse parse function for most SoCs
      soc: mediatek: mtk-svs: Drop supplementary svs per-bank pointer
      soc: mediatek: mtk-svs: Commonize MT8192 probe function for MT8186
      soc: mediatek: mtk-svs: Remove redundant print in svs_get_efuse_data
      soc: mediatek: mtk-svs: Compress of_device_id entries
      soc: mediatek: mtk-svs: Cleanup of svs_probe() function
      soc: mediatek: mtk-svs: Check if SVS mode is available in the beginning
      soc: mediatek: mtk-svs: Use ULONG_MAX to compare floor frequency
      soc: mediatek: mtk-svs: Constify runtime-immutable members of svs_bank

Hsiao Chien Sung (4):
      soc: mediatek: Support MT8188 VDOSYS1 in mtk-mmsys
      soc: mediatek: Support MT8188 VDOSYS1 Padding in mtk-mmsys
      soc: mediatek: Support reset bit mapping in mmsys driver
      soc: mediatek: Add MT8188 VDOSYS reset bit map

Mark Tseng (2):
      soc: mediatek: svs: Add support for MT8195 SoC
      soc: mediatek: svs: Add support for MT8186 SoC

yu-chang.lee (1):
      soc: mediatek: mmsys: Add support for MT8188 VPPSYS

 drivers/soc/mediatek/mt8188-mmsys.h    |  210 ++++++++++++
 drivers/soc/mediatek/mtk-mmsys.c       |   39 +++
 drivers/soc/mediatek/mtk-mmsys.h       |   32 ++
 drivers/soc/mediatek/mtk-mutex.c       |   51 +++
 drivers/soc/mediatek/mtk-svs.c         | 1678 +++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------
 include/linux/soc/mediatek/mtk-mmsys.h |    8 +
 6 files changed, 1342 insertions(+), 676 deletions(-)


WARNING: multiple messages have this Message-ID (diff)
From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: arm-soc <arm@kernel.org>, soc <soc@kernel.org>
Cc: linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org
Subject: [GIT,PULL,2/3] MediaTek soc driver updates for v6.8
Date: Tue, 12 Dec 2023 12:44:28 +0100	[thread overview]
Message-ID: <20231212114515.121695-2-angelogioacchino.delregno@collabora.com> (raw)
In-Reply-To: <20231212114515.121695-1-angelogioacchino.delregno@collabora.com>

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

  Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/mediatek/linux.git tags/mtk-soc-for-v6.8

for you to fetch changes up to 2bfbf82956e2de75249ce83901800c68d17d9e62:

  soc: mediatek: mtk-svs: Constify runtime-immutable members of svs_bank (2023-12-11 11:36:15 +0100)

----------------------------------------------------------------
MediaTek soc driver updates for v6.8

This adds a refactoring of the MediaTek Smart Voltage Scaling (SVS)
driver and the addition of support for MT8186 and MT8195 in it, and
adds support for the MT8188 VDOSYS and resets in the MMSYS driver.

----------------------------------------------------------------
AngeloGioacchino Del Regno (17):
      soc: mediatek: mtk-svs: Subtract offset from regs_v2 to avoid conflict
      soc: mediatek: mtk-svs: Convert sw_id and type to enumerations
      soc: mediatek: mtk-svs: Build bank name string dynamically
      soc: mediatek: mtk-svs: Reduce memory footprint of struct svs_bank
      soc: mediatek: mtk-svs: Change the thermal sensor device name
      soc: mediatek: mtk-svs: Add a map to retrieve fused values
      soc: mediatek: mtk-svs: Add SVS-Thermal coefficient to SoC platform data
      soc: mediatek: mtk-svs: Move t-calibration-data retrieval to svs_probe()
      soc: mediatek: mtk-svs: Commonize efuse parse function for most SoCs
      soc: mediatek: mtk-svs: Drop supplementary svs per-bank pointer
      soc: mediatek: mtk-svs: Commonize MT8192 probe function for MT8186
      soc: mediatek: mtk-svs: Remove redundant print in svs_get_efuse_data
      soc: mediatek: mtk-svs: Compress of_device_id entries
      soc: mediatek: mtk-svs: Cleanup of svs_probe() function
      soc: mediatek: mtk-svs: Check if SVS mode is available in the beginning
      soc: mediatek: mtk-svs: Use ULONG_MAX to compare floor frequency
      soc: mediatek: mtk-svs: Constify runtime-immutable members of svs_bank

Hsiao Chien Sung (4):
      soc: mediatek: Support MT8188 VDOSYS1 in mtk-mmsys
      soc: mediatek: Support MT8188 VDOSYS1 Padding in mtk-mmsys
      soc: mediatek: Support reset bit mapping in mmsys driver
      soc: mediatek: Add MT8188 VDOSYS reset bit map

Mark Tseng (2):
      soc: mediatek: svs: Add support for MT8195 SoC
      soc: mediatek: svs: Add support for MT8186 SoC

yu-chang.lee (1):
      soc: mediatek: mmsys: Add support for MT8188 VPPSYS

 drivers/soc/mediatek/mt8188-mmsys.h    |  210 ++++++++++++
 drivers/soc/mediatek/mtk-mmsys.c       |   39 +++
 drivers/soc/mediatek/mtk-mmsys.h       |   32 ++
 drivers/soc/mediatek/mtk-mutex.c       |   51 +++
 drivers/soc/mediatek/mtk-svs.c         | 1678 +++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------
 include/linux/soc/mediatek/mtk-mmsys.h |    8 +
 6 files changed, 1342 insertions(+), 676 deletions(-)


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2023-12-12 11:46 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-12-12 11:44 [GIT,PULL,1/3] MediaTek ARM64 Device Tree updates for v6.8 AngeloGioacchino Del Regno
2023-12-12 11:44 ` AngeloGioacchino Del Regno
2023-12-12 11:44 ` AngeloGioacchino Del Regno [this message]
2023-12-12 11:44   ` [GIT,PULL,2/3] MediaTek soc driver " AngeloGioacchino Del Regno
2023-12-12 11:44 ` [GIT,PULL,3/3] MediaTek ARM64 defconfig " AngeloGioacchino Del Regno
2023-12-12 11:44   ` AngeloGioacchino Del Regno
2023-12-21 17:41 ` [GIT,PULL,1/3] MediaTek ARM64 Device Tree " patchwork-bot+linux-soc
2023-12-22 12:01 ` patchwork-bot+linux-soc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20231212114515.121695-2-angelogioacchino.delregno@collabora.com \
    --to=angelogioacchino.delregno@collabora.com \
    --cc=arm@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=soc@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.