aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/arm/stm32/mlahb.txt
diff options
context:
space:
mode:
authorFabien Dessenne <fabien.dessenne@st.com>2019-05-14 10:26:56 +0200
committerBjorn Andersson <bjorn.andersson@linaro.org>2019-06-29 20:48:33 -0700
commitf83c0510de8eba0bd6f71b0d4897ab3c2e7a24c0 (patch)
tree5ce38b35334e65faf9f7a04a558a1c8cccff44fa /Documentation/devicetree/bindings/arm/stm32/mlahb.txt
parentremoteproc: Use struct_size() helper (diff)
downloadlinux-dev-f83c0510de8eba0bd6f71b0d4897ab3c2e7a24c0.tar.xz
linux-dev-f83c0510de8eba0bd6f71b0d4897ab3c2e7a24c0.zip
dt-bindings: stm32: add bindings for ML-AHB interconnect
Document the ML-AHB interconnect for stm32 SoCs. Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Fabien Dessenne <fabien.dessenne@st.com> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Diffstat (limited to '')
-rw-r--r--Documentation/devicetree/bindings/arm/stm32/mlahb.txt37
1 files changed, 37 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/stm32/mlahb.txt b/Documentation/devicetree/bindings/arm/stm32/mlahb.txt
new file mode 100644
index 000000000000..25307aa1eb9b
--- /dev/null
+++ b/Documentation/devicetree/bindings/arm/stm32/mlahb.txt
@@ -0,0 +1,37 @@
+ML-AHB interconnect bindings
+
+These bindings describe the STM32 SoCs ML-AHB interconnect bus which connects
+a Cortex-M subsystem with dedicated memories.
+The MCU SRAM and RETRAM memory parts can be accessed through different addresses
+(see "RAM aliases" in [1]) using different buses (see [2]) : balancing the
+Cortex-M firmware accesses among those ports allows to tune the system
+performance.
+
+[1]: https://www.st.com/resource/en/reference_manual/dm00327659.pdf
+[2]: https://wiki.st.com/stm32mpu/wiki/STM32MP15_RAM_mapping
+
+Required properties:
+- compatible: should be "simple-bus"
+- dma-ranges: describes memory addresses translation between the local CPU and
+ the remote Cortex-M processor. Each memory region, is declared with
+ 3 parameters:
+ - param 1: device base address (Cortex-M processor address)
+ - param 2: physical base address (local CPU address)
+ - param 3: size of the memory region.
+
+The Cortex-M remote processor accessed via the mlahb interconnect is described
+by a child node.
+
+Example:
+mlahb {
+ compatible = "simple-bus";
+ #address-cells = <1>;
+ #size-cells = <1>;
+ dma-ranges = <0x00000000 0x38000000 0x10000>,
+ <0x10000000 0x10000000 0x60000>,
+ <0x30000000 0x30000000 0x60000>;
+
+ m4_rproc: m4@10000000 {
+ ...
+ };
+};