Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: remoteproc: Add HSM M4F core on TI K3 SoCs

Some of the TI K3 family of SoCs have a HSM (High Security Module) M4F
core in the Wakeup Voltage Domain which could be used to run secure
services like Authentication. Add the device tree bindings document for
this HSM M4F core.

The added example illustrates the DT node for the HSM core present on K3
J722S SoC.

Signed-off-by: Beleswar Padhi <b-padhi@ti.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20260106104755.948086-2-b-padhi@ti.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>

authored by

Beleswar Padhi and committed by
Mathieu Poirier
4df89cb8 88c31f1b

+72
+72
Documentation/devicetree/bindings/remoteproc/ti,hsm-m4fss.yaml
··· 1 + # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/remoteproc/ti,hsm-m4fss.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: TI K3 HSM M4F processor subsystems 8 + 9 + maintainers: 10 + - Beleswar Padhi <b-padhi@ti.com> 11 + 12 + description: | 13 + Some K3 family SoCs have a HSM (High Security Module) M4F core in the 14 + Wakeup Voltage Domain which could be used to run secure services like 15 + Authentication. Some of those are J721S2, J784S4, J722S, AM62X. 16 + 17 + $ref: /schemas/arm/keystone/ti,k3-sci-common.yaml# 18 + 19 + properties: 20 + compatible: 21 + enum: 22 + - ti,hsm-m4fss 23 + 24 + reg: 25 + items: 26 + - description: SRAM0_0 internal memory region 27 + - description: SRAM0_1 internal memory region 28 + - description: SRAM1 internal memory region 29 + 30 + reg-names: 31 + items: 32 + - const: sram0_0 33 + - const: sram0_1 34 + - const: sram1 35 + 36 + resets: 37 + maxItems: 1 38 + 39 + firmware-name: 40 + maxItems: 1 41 + 42 + required: 43 + - compatible 44 + - reg 45 + - reg-names 46 + - resets 47 + - firmware-name 48 + - ti,sci 49 + - ti,sci-dev-id 50 + - ti,sci-proc-ids 51 + 52 + unevaluatedProperties: false 53 + 54 + examples: 55 + - | 56 + soc { 57 + #address-cells = <2>; 58 + #size-cells = <2>; 59 + 60 + remoteproc@43c00000 { 61 + compatible = "ti,hsm-m4fss"; 62 + reg = <0x00 0x43c00000 0x00 0x20000>, 63 + <0x00 0x43c20000 0x00 0x10000>, 64 + <0x00 0x43c30000 0x00 0x10000>; 65 + reg-names = "sram0_0", "sram0_1", "sram1"; 66 + resets = <&k3_reset 225 1>; 67 + firmware-name = "hsm.bin"; 68 + ti,sci = <&sms>; 69 + ti,sci-dev-id = <225>; 70 + ti,sci-proc-ids = <0x80 0xff>; 71 + }; 72 + };