From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751559AbdB0VSR (ORCPT ); Mon, 27 Feb 2017 16:18:17 -0500 Received: from plaes.org ([188.166.43.21]:36776 "EHLO plaes.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751341AbdB0VSN (ORCPT ); Mon, 27 Feb 2017 16:18:13 -0500 From: Priit Laes To: Michael Turquette , Stephen Boyd , Rob Herring , Mark Rutland , Maxime Ripard , Chen-Yu Tsai , Russell King , Icenowy Zheng , linux-clk@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-sunxi@googlegroups.com Cc: Priit Laes Subject: [PATCH 0/4] ARM: sun7i: Convert sun7i SoC to sunxi-ng Date: Mon, 27 Feb 2017 23:09:10 +0200 Message-Id: <20170227210914.18954-1-plaes@plaes.org> X-Mailer: git-send-email 2.9.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This is serie brings another SoC into the sunxi-ng world. As mentioned in sun5i conversion, this is pretty much standard stuff as all the required clocks were already implemented in the sunxi-ng framework. Priit Laes (4): clk: sunxi-ng: Add clocks and reset indices for sun7i-a20 SoC clk: sunxi-ng: Add sun7i-a20 CCU driver ARM: sun7i: Convert to CCU dt-bindings: List devicetree binding for the CCU of Allwinner A20 .../devicetree/bindings/clock/sunxi-ccu.txt | 1 + arch/arm/boot/dts/sun7i-a20.dtsi | 719 ++----------- drivers/clk/sunxi-ng/Kconfig | 11 + drivers/clk/sunxi-ng/Makefile | 1 + drivers/clk/sunxi-ng/ccu-sun7i-a20.c | 1068 ++++++++++++++++++++ drivers/clk/sunxi-ng/ccu-sun7i-a20.h | 121 +++ include/dt-bindings/clock/sun7i-ccu.h | 127 +++ include/dt-bindings/reset/sun7i-ccu.h | 40 + 8 files changed, 1455 insertions(+), 633 deletions(-) create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.c create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.h create mode 100644 include/dt-bindings/clock/sun7i-ccu.h create mode 100644 include/dt-bindings/reset/sun7i-ccu.h -- 2.9.3 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Priit Laes Subject: [PATCH 0/4] ARM: sun7i: Convert sun7i SoC to sunxi-ng Date: Mon, 27 Feb 2017 23:09:10 +0200 Message-ID: <20170227210914.18954-1-plaes@plaes.org> Reply-To: plaes-q/aMd4JkU83YtjvyW6yDsg@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Sender: linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: Michael Turquette , Stephen Boyd , Rob Herring , Mark Rutland , Maxime Ripard , Chen-Yu Tsai , Russell King , Icenowy Zheng , linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org Cc: Priit Laes List-Id: devicetree@vger.kernel.org Hi, This is serie brings another SoC into the sunxi-ng world. As mentioned in sun5i conversion, this is pretty much standard stuff as all the required clocks were already implemented in the sunxi-ng framework. Priit Laes (4): clk: sunxi-ng: Add clocks and reset indices for sun7i-a20 SoC clk: sunxi-ng: Add sun7i-a20 CCU driver ARM: sun7i: Convert to CCU dt-bindings: List devicetree binding for the CCU of Allwinner A20 .../devicetree/bindings/clock/sunxi-ccu.txt | 1 + arch/arm/boot/dts/sun7i-a20.dtsi | 719 ++----------- drivers/clk/sunxi-ng/Kconfig | 11 + drivers/clk/sunxi-ng/Makefile | 1 + drivers/clk/sunxi-ng/ccu-sun7i-a20.c | 1068 ++++++++++++++++++++ drivers/clk/sunxi-ng/ccu-sun7i-a20.h | 121 +++ include/dt-bindings/clock/sun7i-ccu.h | 127 +++ include/dt-bindings/reset/sun7i-ccu.h | 40 + 8 files changed, 1455 insertions(+), 633 deletions(-) create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.c create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.h create mode 100644 include/dt-bindings/clock/sun7i-ccu.h create mode 100644 include/dt-bindings/reset/sun7i-ccu.h -- 2.9.3 From mboxrd@z Thu Jan 1 00:00:00 1970 From: plaes@plaes.org (Priit Laes) Date: Mon, 27 Feb 2017 23:09:10 +0200 Subject: [PATCH 0/4] ARM: sun7i: Convert sun7i SoC to sunxi-ng Message-ID: <20170227210914.18954-1-plaes@plaes.org> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hi, This is serie brings another SoC into the sunxi-ng world. As mentioned in sun5i conversion, this is pretty much standard stuff as all the required clocks were already implemented in the sunxi-ng framework. Priit Laes (4): clk: sunxi-ng: Add clocks and reset indices for sun7i-a20 SoC clk: sunxi-ng: Add sun7i-a20 CCU driver ARM: sun7i: Convert to CCU dt-bindings: List devicetree binding for the CCU of Allwinner A20 .../devicetree/bindings/clock/sunxi-ccu.txt | 1 + arch/arm/boot/dts/sun7i-a20.dtsi | 719 ++----------- drivers/clk/sunxi-ng/Kconfig | 11 + drivers/clk/sunxi-ng/Makefile | 1 + drivers/clk/sunxi-ng/ccu-sun7i-a20.c | 1068 ++++++++++++++++++++ drivers/clk/sunxi-ng/ccu-sun7i-a20.h | 121 +++ include/dt-bindings/clock/sun7i-ccu.h | 127 +++ include/dt-bindings/reset/sun7i-ccu.h | 40 + 8 files changed, 1455 insertions(+), 633 deletions(-) create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.c create mode 100644 drivers/clk/sunxi-ng/ccu-sun7i-a20.h create mode 100644 include/dt-bindings/clock/sun7i-ccu.h create mode 100644 include/dt-bindings/reset/sun7i-ccu.h -- 2.9.3