lkml.org 
[lkml]   [2020]   [Jul]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v3 6/8] dt-bindings: microchip,sparx5-spi-mux: Add Sparx5 SPI mux driver bindings
Date
The Microchip Sparx5 SPI controller has two bus segments, and use this
mux to control the bus interface mapping for any chip selects. This
decribes the bindings used to configure the mux driver.

Signed-off-by: Lars Povlsen <lars.povlsen@microchip.com>
---
.../mux/microchip,sparx5-spi-mux.yaml | 71 +++++++++++++++++++
1 file changed, 71 insertions(+)
create mode 100644 Documentation/devicetree/bindings/mux/microchip,sparx5-spi-mux.yaml

diff --git a/Documentation/devicetree/bindings/mux/microchip,sparx5-spi-mux.yaml b/Documentation/devicetree/bindings/mux/microchip,sparx5-spi-mux.yaml
new file mode 100644
index 0000000000000..b0ce3b15a69e5
--- /dev/null
+++ b/Documentation/devicetree/bindings/mux/microchip,sparx5-spi-mux.yaml
@@ -0,0 +1,71 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/mux/microchip,sparx5-spi-mux.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Microchip Sparx5 SPI mux
+
+maintainers:
+ - Lars Povlsen <lars.povlsen@microchip.com>
+
+description: |
+ The Microchip Sparx5 SPI controller has two bus segments. In order
+ to switch between the appropriate bus for any given SPI slave
+ (defined by a chip select), this mux driver is used. The device tree
+ node for the mux will define the bus mapping for any chip
+ selects. The default bus mapping for any chip select is "0", such
+ that only non-default mappings need to be explicitly defined.
+
+properties:
+ compatible:
+ enum:
+ - microchip,sparx5-spi-mux
+
+ '#address-cells':
+ const: 1
+
+ '#size-cells':
+ const: 0
+
+ '#mux-control-cells':
+ const: 0
+
+required:
+ - compatible
+
+additionalProperties: false
+
+patternProperties:
+ "^mux@[0-9a-f]$":
+ type: object
+
+ properties:
+ reg:
+ description:
+ Chip select to define bus mapping for.
+ minimum: 0
+ maximum: 15
+
+ microchip,bus-interface:
+ description:
+ The bus interface to use for this chip select.
+ $ref: /schemas/types.yaml#/definitions/uint32
+ enum: [0, 1]
+
+ required:
+ - reg
+ - microchip,bus-interface
+
+examples:
+ - |
+ mux: mux-controller {
+ compatible = "microchip,sparx5-spi-mux";
+ #address-cells = <1>;
+ #size-cells = <0>;
+ #mux-control-cells = <0>;
+ mux@e {
+ reg = <14>;
+ microchip,bus-interface = <1>;
+ };
+ };
--
2.27.0
\
 
 \ /
  Last update: 2020-07-02 12:16    [W:0.126 / U:0.832 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site