aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Documentation/devicetree/bindings/soc/qcom/qcom,gsbi.txt78
-rw-r--r--include/dt-bindings/soc/qcom,gsbi.h26
2 files changed, 104 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,gsbi.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,gsbi.txt
new file mode 100644
index 000000000000..4ce24d425bf1
--- /dev/null
+++ b/Documentation/devicetree/bindings/soc/qcom/qcom,gsbi.txt
@@ -0,0 +1,78 @@
1QCOM GSBI (General Serial Bus Interface) Driver
2
3The GSBI controller is modeled as a node with zero or more child nodes, each
4representing a serial sub-node device that is mux'd as part of the GSBI
5configuration settings. The mode setting will govern the input/output mode of
6the 4 GSBI IOs.
7
8Required properties:
9- compatible: must contain "qcom,gsbi-v1.0.0" for APQ8064/IPQ8064
10- reg: Address range for GSBI registers
11- clocks: required clock
12- clock-names: must contain "iface" entry
13- qcom,mode : indicates MUX value for configuration of the serial interface.
14 Please reference dt-bindings/soc/qcom,gsbi.h for valid mux values.
15
16Optional properties:
17- qcom,crci : indicates CRCI MUX value for QUP CRCI ports. Please reference
18 dt-bindings/soc/qcom,gsbi.h for valid CRCI mux values.
19
20Required properties if child node exists:
21- #address-cells: Must be 1
22- #size-cells: Must be 1
23- ranges: Must be present
24
25Properties for children:
26
27A GSBI controller node can contain 0 or more child nodes representing serial
28devices. These serial devices can be a QCOM UART, I2C controller, spi
29controller, or some combination of aforementioned devices.
30
31See the following for child node definitions:
32Documentation/devicetree/bindings/i2c/qcom,i2c-qup.txt
33Documentation/devicetree/bindings/spi/qcom,spi-qup.txt
34Documentation/devicetree/bindings/serial/qcom,msm-uartdm.txt
35
36Example for APQ8064:
37
38#include <dt-bindings/soc/qcom,gsbi.h>
39
40 gsbi4@16300000 {
41 compatible = "qcom,gsbi-v1.0.0";
42 reg = <0x16300000 0x100>;
43 clocks = <&gcc GSBI4_H_CLK>;
44 clock-names = "iface";
45 #address-cells = <1>;
46 #size-cells = <1>;
47 ranges;
48 qcom,mode = <GSBI_PROT_I2C_UART>;
49 qcom,crci = <GSBI_CRCI_QUP>;
50
51 /* child nodes go under here */
52
53 i2c_qup4: i2c@16380000 {
54 compatible = "qcom,i2c-qup-v1.1.1";
55 reg = <0x16380000 0x1000>;
56 interrupts = <0 153 0>;
57
58 clocks = <&gcc GSBI4_QUP_CLK>, <&gcc GSBI4_H_CLK>;
59 clock-names = "core", "iface";
60
61 clock-frequency = <200000>;
62
63 #address-cells = <1>;
64 #size-cells = <0>;
65
66 };
67
68 uart4: serial@16340000 {
69 compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
70 reg = <0x16340000 0x1000>,
71 <0x16300000 0x1000>;
72 interrupts = <0 152 0x0>;
73 clocks = <&gcc GSBI4_UART_CLK>, <&gcc GSBI4_H_CLK>;
74 clock-names = "core", "iface";
75 status = "ok";
76 };
77 };
78
diff --git a/include/dt-bindings/soc/qcom,gsbi.h b/include/dt-bindings/soc/qcom,gsbi.h
new file mode 100644
index 000000000000..7ac4292333aa
--- /dev/null
+++ b/include/dt-bindings/soc/qcom,gsbi.h
@@ -0,0 +1,26 @@
1/* Copyright (c) 2013, The Linux Foundation. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 */
12#ifndef __DT_BINDINGS_QCOM_GSBI_H
13#define __DT_BINDINGS_QCOM_GSBI_H
14
15#define GSBI_PROT_IDLE 0
16#define GSBI_PROT_I2C_UIM 1
17#define GSBI_PROT_I2C 2
18#define GSBI_PROT_SPI 3
19#define GSBI_PROT_UART_W_FC 4
20#define GSBI_PROT_UIM 5
21#define GSBI_PROT_I2C_UART 6
22
23#define GSBI_CRCI_QUP 0
24#define GSBI_CRCI_UART 1
25
26#endif