Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1249395 > unrolled thread
| Started by | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| First post | 2015-10-17 19:30 +0200 |
| Last post | 2015-10-17 19:30 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH v6 0/2] ARM: sunxi: Add Reduced Serial Bus (RSB) controller support Chen-Yu Tsai <wens@csie.org> - 2015-10-17 19:30 +0200
[PATCH v6 1/2] bus: sunxi-rsb: Add Allwinner Reduced Serial Bus (RSB) controller bindings Chen-Yu Tsai <wens@csie.org> - 2015-10-17 19:30 +0200
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2015-10-17 19:30 +0200 |
| Subject | [PATCH v6 0/2] ARM: sunxi: Add Reduced Serial Bus (RSB) controller support |
| Message-ID | <qkDsT-4cT-47@gated-at.bofh.it> |
Hi everyone,
This is v6 of the Allwinner Reduced Serial Bus driver. This version puts
the driver under drivers/bus instead of drivers/soc/sunxi. There are no
changes to the binding or the driver itself.
The series is based on v4.3-rc1.
Changes since v5:
.../bindings/{soc/sunxi/rsb.txt => bus/sunxi-rsb.txt} | 0
drivers/bus/Kconfig | 11 +++++++++++
drivers/bus/Makefile | 1 +
drivers/{soc/sunxi/sunxi_rsb.c => bus/sunxi-rsb.c} | 2 +-
drivers/soc/sunxi/Kconfig | 10 ----------
drivers/soc/sunxi/Makefile | 1 -
include/linux/{soc/sunxi/sunxi_rsb.h => sunxi-rsb.h} | 0
7 files changed, 13 insertions(+), 12 deletions(-)
The Kconfig entry has been updated with a proper entry description, making
it selectable. Both the entry and help text have been edited to make it
clear this is an Allwinner specific driver. A dependency on ARCH_SUNXI is
also added.
Regards
ChenYu
Chen-Yu Tsai (2):
bus: sunxi-rsb: Add Allwinner Reduced Serial Bus (RSB) controller
bindings
bus: sunxi-rsb: Add driver for Allwinner Reduced Serial Bus
.../devicetree/bindings/bus/sunxi-rsb.txt | 47 ++
drivers/bus/Kconfig | 11 +
drivers/bus/Makefile | 1 +
drivers/bus/sunxi-rsb.c | 783 +++++++++++++++++++++
include/linux/sunxi-rsb.h | 105 +++
5 files changed, 947 insertions(+)
create mode 100644 Documentation/devicetree/bindings/bus/sunxi-rsb.txt
create mode 100644 drivers/bus/sunxi-rsb.c
create mode 100644 include/linux/sunxi-rsb.h
--
2.6.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Chen-Yu Tsai <wens@csie.org> |
|---|---|
| Date | 2015-10-17 19:30 +0200 |
| Subject | [PATCH v6 1/2] bus: sunxi-rsb: Add Allwinner Reduced Serial Bus (RSB) controller bindings |
| Message-ID | <qkDsT-4cT-65@gated-at.bofh.it> |
| In reply to | #1249395 |
Reduced Serial Bus is a proprietary 2-line push-pull serial bus supporting
multiple slave devices. It was developed by Allwinner, Inc. and used by
Allwinner and X-Powers, Inc. for their line of PMICs and other peripheral
ICs.
Recent Allwinner SoCs, starting with the A23, have an RSB controller. This
is used to talk to the PMIC, and later with the A80 and A83 platform, the
audio codec IC.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
---
.../devicetree/bindings/bus/sunxi-rsb.txt | 47 ++++++++++++++++++++++
1 file changed, 47 insertions(+)
create mode 100644 Documentation/devicetree/bindings/bus/sunxi-rsb.txt
diff --git a/Documentation/devicetree/bindings/bus/sunxi-rsb.txt b/Documentation/devicetree/bindings/bus/sunxi-rsb.txt
new file mode 100644
index 000000000000..3dd28343b6ce
--- /dev/null
+++ b/Documentation/devicetree/bindings/bus/sunxi-rsb.txt
@@ -0,0 +1,47 @@
+Allwinner Reduced Serial Bus (RSB) controller
+
+The RSB controller found on later Allwinner SoCs is an SMBus like 2 wire
+serial bus with 1 master and up to 15 slaves. It is represented by a node
+for the controller itself, and child nodes representing the slave devices.
+
+Required properties :
+
+ - reg : Offset and length of the register set for the controller.
+ - compatible : Shall be "allwinner,sun8i-a23-rsb".
+ - interrupts : The interrupt line associated to the RSB controller.
+ - clocks : The gate clk associated to the RSB controller.
+ - resets : The reset line associated to the RSB controller.
+ - #address-cells : shall be 1
+ - #size-cells : shall be 0
+
+Optional properties :
+
+ - clock-frequency : Desired RSB bus clock frequency in Hz. Maximum is 20MHz.
+ If not set this defaults to 3MHz.
+
+Child nodes:
+
+An RSB controller node can contain zero or more child nodes representing
+slave devices on the bus. Child 'reg' properties should contain the slave
+device's hardware address. The hardware address is hardwired in the device,
+which can normally be found in the datasheet.
+
+Example:
+
+ rsb@01f03400 {
+ compatible = "allwinner,sun8i-a23-rsb";
+ reg = <0x01f03400 0x400>;
+ interrupts = <0 39 4>;
+ clocks = <&apb0_gates 3>;
+ clock-frequency = <3000000>;
+ resets = <&apb0_rst 3>;
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ pmic@3e3 {
+ compatible = "...";
+ reg = <0x3e3>;
+
+ /* ... */
+ };
+ };
--
2.6.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web