[PATCH v2 1/5] dt-bindings: arm: google: Add dt bindings for frankel/blazer/mustang
From: Peter Griffin
Date: Wed Jul 22 2026 - 06:00:53 EST
Add binding documentation for Tensor G5 SoC (Laguna) which is referred
to in code as "lga" and three of the boards that use the Laguna SoC
Frankel (Pixel 10), Blazer (Pixel 10 Pro) and Mustang (Pixel 10 Pro XL).
Additionally update to use a more efficient and scalable way to express
the various names a SoC is known by.
Co-developed-by: Douglas Anderson <dianders@xxxxxxxxxxxx>
Signed-off-by: Douglas Anderson <dianders@xxxxxxxxxxxx>
Signed-off-by: Peter Griffin <peter.griffin@xxxxxxxxxx>
---
Changes in v2:
* Update ect rule as per Krysztof suggestion
* Remove all the pre-production variants (EVT, DVT etc)
* The equivalent patch in the previous submission is
https://lore.kernel.org/lkml/05c833f0-15bc-4a86-9ac4-daf835fe4393@xxxxxxxxxx/
but this is now almost entirely different diff. I've added the
co-developed-by tag as I've kept the more efficient way to express
the names a SoC is known by.
---
Documentation/devicetree/bindings/arm/google.yaml | 48 ++++++++++++++---------
1 file changed, 29 insertions(+), 19 deletions(-)
diff --git a/Documentation/devicetree/bindings/arm/google.yaml b/Documentation/devicetree/bindings/arm/google.yaml
index 99961e5282e5..b5977e20f393 100644
--- a/Documentation/devicetree/bindings/arm/google.yaml
+++ b/Documentation/devicetree/bindings/arm/google.yaml
@@ -13,27 +13,16 @@ description: |
ARM platforms using SoCs designed by Google branded "Tensor" used in Pixel
devices.
- Currently upstream this is devices using "gs101" SoC which is found in Pixel
- 6, Pixel 6 Pro and Pixel 6a.
-
- Google have a few different names for the SoC:
- - Marketing name ("Tensor")
- - Codename ("Whitechapel")
- - SoC ID ("gs101")
- - Die ID ("S5P9845")
-
- Likewise there are a couple of names for the actual device
- - Marketing name ("Pixel 6")
- - Codename ("Oriole")
-
- Devicetrees should use the lowercased SoC ID and lowercased board codename,
- e.g. gs101 and gs101-oriole.
+ Currently upstream this is devices using gs101 SoC which is found in Pixel
+ 6, Pixel 6 Pro and Pixel 6a and Laguna SoC canonically referred to as lga
+ found in Pixel 10, Pixel 10 Pro and Pixel 10 Pro XL.
properties:
$nodename:
const: '/'
compatible:
oneOf:
+ # Google Tensor G1 AKA gs101 AKA whitechapel AKA Die ID S5P9845 boards
- description: Google Pixel 6 or 6 Pro (Oriole or Raven)
items:
- enum:
@@ -41,14 +30,35 @@ properties:
- google,gs101-raven
- const: google,gs101
- # Bootloader requires empty ect node to be present
+ # Google Tensor G5 AKA lga (laguna) SoC and boards
+ - description:
+ Google Pixel 10, 10 Pro, 10 Pro XL (Frankel, Blazer,
+ Mustang).
+ items:
+ - enum:
+ - google,lga-blazer
+ - google,lga-frankel
+ - google,lga-mustang
+ - const: google,lga
+
ect:
type: object
additionalProperties: false
-required:
- - ect
-
additionalProperties: true
+allOf:
+ # Bootloader requires empty ect node to be present
+ - if:
+ properties:
+ compatible:
+ contains:
+ const: google,gs101
+ then:
+ required:
+ - ect
+ else:
+ properties:
+ ect: false
+
...
--
2.55.0.229.g6434b31f56-goog