From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753287AbdC1OqP (ORCPT ); Tue, 28 Mar 2017 10:46:15 -0400 Received: from mail-wr0-f172.google.com ([209.85.128.172]:35143 "EHLO mail-wr0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752695AbdC1OqM (ORCPT ); Tue, 28 Mar 2017 10:46:12 -0400 From: Jerome Brunet To: Michael Turquette , Stephen Boyd , Kevin Hilman , Carlo Caione Cc: Jerome Brunet , linux-clk@vger.kernel.org, linux-amlogic@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Subject: [PATCH v1 0/8] clk: meson: gxbb: more clock controller update for audio support Date: Tue, 28 Mar 2017 16:45:57 +0200 Message-Id: <20170328144605.25278-1-jbrunet@baylibre.com> 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 The patchset is the 2nd round of update to the meson gxbb clock controller to add initial audio support. The patchset is based on clk-next. There is not much out of the ordinary here (adding new clocks and exposing them) except maybe for 2 patches: Patch #2: Adds a safety check while registering clocks to protect against holes in clk_hw_onecell_data, if it ever happens. Same thing is done for the meson8b clock controller. Patch #3: Adds a new clock divider driver to implement the necessary policy for the i2s master clock (see patch changelog) This patchset has been test on the gxbb p200 and gxl p230. Jerome Brunet (8): dt-bindings: clock: gxbb: expose spdif clock gates clk: meson: gxbb: protect against holes in the onecell_data array clk: meson: add audio clock divider support clk: meson: gxbb: add cts_amclk clk: meson: gxbb: add cts_mclk_i958 clk: meson: gxbb: add cts_i958 clock dt-bindings: clock: gxbb: expose i2s master clock dt-bindings: clock: gxbb: expose spdif master clock drivers/clk/meson/Makefile | 2 +- drivers/clk/meson/clk-audio-divider.c | 149 ++++++++++++++++++++++++++++++++++ drivers/clk/meson/clkc.h | 10 +++ drivers/clk/meson/gxbb.c | 144 ++++++++++++++++++++++++++++++++ drivers/clk/meson/gxbb.h | 13 ++- include/dt-bindings/clock/gxbb-clkc.h | 5 ++ 6 files changed, 319 insertions(+), 4 deletions(-) create mode 100644 drivers/clk/meson/clk-audio-divider.c -- 2.9.3 From mboxrd@z Thu Jan 1 00:00:00 1970 From: jbrunet@baylibre.com (Jerome Brunet) Date: Tue, 28 Mar 2017 16:45:57 +0200 Subject: [PATCH v1 0/8] clk: meson: gxbb: more clock controller update for audio support Message-ID: <20170328144605.25278-1-jbrunet@baylibre.com> To: linus-amlogic@lists.infradead.org List-Id: linus-amlogic.lists.infradead.org The patchset is the 2nd round of update to the meson gxbb clock controller to add initial audio support. The patchset is based on clk-next. There is not much out of the ordinary here (adding new clocks and exposing them) except maybe for 2 patches: Patch #2: Adds a safety check while registering clocks to protect against holes in clk_hw_onecell_data, if it ever happens. Same thing is done for the meson8b clock controller. Patch #3: Adds a new clock divider driver to implement the necessary policy for the i2s master clock (see patch changelog) This patchset has been test on the gxbb p200 and gxl p230. Jerome Brunet (8): dt-bindings: clock: gxbb: expose spdif clock gates clk: meson: gxbb: protect against holes in the onecell_data array clk: meson: add audio clock divider support clk: meson: gxbb: add cts_amclk clk: meson: gxbb: add cts_mclk_i958 clk: meson: gxbb: add cts_i958 clock dt-bindings: clock: gxbb: expose i2s master clock dt-bindings: clock: gxbb: expose spdif master clock drivers/clk/meson/Makefile | 2 +- drivers/clk/meson/clk-audio-divider.c | 149 ++++++++++++++++++++++++++++++++++ drivers/clk/meson/clkc.h | 10 +++ drivers/clk/meson/gxbb.c | 144 ++++++++++++++++++++++++++++++++ drivers/clk/meson/gxbb.h | 13 ++- include/dt-bindings/clock/gxbb-clkc.h | 5 ++ 6 files changed, 319 insertions(+), 4 deletions(-) create mode 100644 drivers/clk/meson/clk-audio-divider.c -- 2.9.3