Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID
@ 2026-08-18 15:05 Aiden Isik via B4 Relay
  2026-08-18 15:05 ` [PATCH v2 1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible Aiden Isik via B4 Relay
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Aiden Isik via B4 Relay @ 2026-08-18 15:05 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Peter Griffin,
	Alim Akhtar
  Cc: Krzysztof Kozlowski, devicetree, linux-arm-kernel,
	linux-samsung-soc, linux-kernel, Aiden Isik

Hi there,

This patchset adds support for the Exynos5515 SoC's ChipID to the
ChipID driver, and documents the samsung,exynos5515-chipid compatible.

Signed-off-by: Aiden Isik <aidenisik@member.fsf.org>
---
Changes in v2:
- Correct capitalisation of "Exynos5515" in commit messages
- Reword documentation commit message
- Link to v1: https://patch.msgid.link/20260817-for-next-lucky7-chipid-v1-0-eb2908705c0d@member.fsf.org

---
Aiden Isik (2):
      dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible
      soc: samsung: exynos-chipid: Add Exynos5515 SoC support

 Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml | 1 +
 drivers/soc/samsung/exynos-chipid.c                                 | 1 +
 2 files changed, 2 insertions(+)
---
base-commit: acde40ba506aae78633e080b5704d33cf4bc13c6
change-id: 20260815-for-next-lucky7-chipid-ecce496c86b9

Best regards,
--  
Aiden Isik <aidenisik@member.fsf.org>




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

* [PATCH v2 1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible
  2026-08-18 15:05 [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Aiden Isik via B4 Relay
@ 2026-08-18 15:05 ` Aiden Isik via B4 Relay
  2026-08-18 15:05 ` [PATCH v2 2/2] soc: samsung: exynos-chipid: Add Exynos5515 SoC support Aiden Isik via B4 Relay
  2026-09-04 15:29 ` [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Krzysztof Kozlowski
  2 siblings, 0 replies; 4+ messages in thread
From: Aiden Isik via B4 Relay @ 2026-08-18 15:05 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Peter Griffin,
	Alim Akhtar
  Cc: Krzysztof Kozlowski, devicetree, linux-arm-kernel,
	linux-samsung-soc, linux-kernel, Aiden Isik

From: Aiden Isik <aidenisik@member.fsf.org>

Add "samsung,exynos5515-chipid" compatible string to binding document,
which is fully compatible with "samsung,exynos850-chipid".

Signed-off-by: Aiden Isik <aidenisik@member.fsf.org>
---
 Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml b/Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml
index b9cdfe52b62f..619faf33214b 100644
--- a/Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml
+++ b/Documentation/devicetree/bindings/hwinfo/samsung,exynos-chipid.yaml
@@ -25,6 +25,7 @@ properties:
       - items:
           - enum:
               - samsung,exynos2200-chipid
+              - samsung,exynos5515-chipid
               - samsung,exynos7885-chipid
               - samsung,exynos8895-chipid
               - samsung,exynos9610-chipid

-- 
2.54.0




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

* [PATCH v2 2/2] soc: samsung: exynos-chipid: Add Exynos5515 SoC support
  2026-08-18 15:05 [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Aiden Isik via B4 Relay
  2026-08-18 15:05 ` [PATCH v2 1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible Aiden Isik via B4 Relay
@ 2026-08-18 15:05 ` Aiden Isik via B4 Relay
  2026-09-04 15:29 ` [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Krzysztof Kozlowski
  2 siblings, 0 replies; 4+ messages in thread
From: Aiden Isik via B4 Relay @ 2026-08-18 15:05 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Peter Griffin,
	Alim Akhtar
  Cc: Krzysztof Kozlowski, devicetree, linux-arm-kernel,
	linux-samsung-soc, linux-kernel, Aiden Isik

From: Aiden Isik <aidenisik@member.fsf.org>

Add Exynos5515 information to the soc_ids table.
The ChipID for Exynos5515 is "0xE5515000".

Signed-off-by: Aiden Isik <aidenisik@member.fsf.org>
---
 drivers/soc/samsung/exynos-chipid.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/samsung/exynos-chipid.c b/drivers/soc/samsung/exynos-chipid.c
index 6ef9751e2509..506a0bcdfe30 100644
--- a/drivers/soc/samsung/exynos-chipid.c
+++ b/drivers/soc/samsung/exynos-chipid.c
@@ -64,6 +64,7 @@ static const struct exynos_soc_id {
 	{ "EXYNOS8890", 0xE8890000 },
 	/* Compatible with: samsung,exynos850-chipid */
 	{ "EXYNOS2200", 0xE9925000 },
+	{ "EXYNOS5515", 0xE5515000 },
 	{ "EXYNOS7885", 0xE7885000 },
 	{ "EXYNOS850", 0xE3830000 },
 	{ "EXYNOS8895", 0xE8895000 },

-- 
2.54.0




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

* Re: [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID
  2026-08-18 15:05 [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Aiden Isik via B4 Relay
  2026-08-18 15:05 ` [PATCH v2 1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible Aiden Isik via B4 Relay
  2026-08-18 15:05 ` [PATCH v2 2/2] soc: samsung: exynos-chipid: Add Exynos5515 SoC support Aiden Isik via B4 Relay
@ 2026-09-04 15:29 ` Krzysztof Kozlowski
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-09-04 15:29 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Peter Griffin,
	Alim Akhtar, Aiden Isik
  Cc: devicetree, linux-arm-kernel, linux-samsung-soc, linux-kernel


On Tue, 18 Aug 2026 16:05:41 +0100, Aiden Isik wrote:
> This patchset adds support for the Exynos5515 SoC's ChipID to the
> ChipID driver, and documents the samsung,exynos5515-chipid compatible.

Applied, thanks!

[1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible
      https://git.kernel.org/krzk/linux/c/3de7d6f8dd121d5d4b74182765be5ee8f3954d29
[2/2] soc: samsung: exynos-chipid: Add Exynos5515 SoC support
      https://git.kernel.org/krzk/linux/c/2f04ec82e51da9d5af5cb48c9f24c0318655b0f7

Best regards,
-- 
Krzysztof Kozlowski <krzk@kernel.org>



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

end of thread, other threads:[~2026-09-04 15:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-18 15:05 [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Aiden Isik via B4 Relay
2026-08-18 15:05 ` [PATCH v2 1/2] dt-bindings: hwinfo: samsung,exynos-chipid: Add Exynos5515 compatible Aiden Isik via B4 Relay
2026-08-18 15:05 ` [PATCH v2 2/2] soc: samsung: exynos-chipid: Add Exynos5515 SoC support Aiden Isik via B4 Relay
2026-09-04 15:29 ` [PATCH v2 0/2] chipid: samsung: exynos-chipid: Add Exynos5515 ChipID Krzysztof Kozlowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox