From: Maxime Ripard <maxime.ripard@free-electrons.com>
To: Chen-Yu Tsai <wens@csie.org>
Cc: Rob Herring <robh+dt@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@codeaurora.org>,
linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-sunxi@googlegroups.com
Subject: Re: [PATCH 07/11] clk: sunxi-ng: Add A80 Display Engine CCU
Date: Thu, 26 Jan 2017 11:39:28 +0100 [thread overview]
Message-ID: <20170126103928.3kmvymoafsz5jfjm@lukather> (raw)
In-Reply-To: <20170124023230.3990-8-wens@csie.org>
[-- Attachment #1: Type: text/plain, Size: 7556 bytes --]
Hi,
On Tue, Jan 24, 2017 at 10:32:26AM +0800, Chen-Yu Tsai wrote:
> Add support for the display engine clock controls found on the A80.
>
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
> ---
> .../devicetree/bindings/clock/sun9i-de.txt | 28 ++
> drivers/clk/sunxi-ng/Makefile | 1 +
> drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c | 283 +++++++++++++++++++++
> drivers/clk/sunxi-ng/ccu-sun9i-a80-de.h | 33 +++
> include/dt-bindings/clock/sun9i-a80-de.h | 80 ++++++
> include/dt-bindings/reset/sun9i-a80-de.h | 58 +++++
> 6 files changed, 483 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/clock/sun9i-de.txt
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
> create mode 100644 drivers/clk/sunxi-ng/ccu-sun9i-a80-de.h
> create mode 100644 include/dt-bindings/clock/sun9i-a80-de.h
> create mode 100644 include/dt-bindings/reset/sun9i-a80-de.h
>
> diff --git a/Documentation/devicetree/bindings/clock/sun9i-de.txt b/Documentation/devicetree/bindings/clock/sun9i-de.txt
> new file mode 100644
> index 000000000000..3a5e6df70677
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/sun9i-de.txt
> @@ -0,0 +1,28 @@
> +Allwinner A80 Display Engine Clock Control Binding
> +------------------------------------
> +
> +Required properties :
> +- compatible: must contain one of the following compatibles:
> + - "allwinner,sun9i-a80-de-clocks"
> +
> +- reg: Must contain the registers base address and length
> +- clocks: phandle to the clocks feeding the display engine subsystem.
> + Three are needed:
> + - "mod": the display engine module clock
> + - "dram": the DRAM bus clock for the system
> + - "bus": the bus clock for the whole display engine subsystem
> +- clock-names: Must contain the clock names described just above
> +- resets: phandle to the reset control for the display engine subsystem.
> +- #clock-cells : must contain 1
> +- #reset-cells : must contain 1
> +
> +Example:
> +de_clocks: clock@03000000 {
> + compatible = "allwinner,sun9i-a80-de-clks";
> + reg = <0x03000000 0x30>;
> + clocks = <&ccu CLK_DE>, <&ccu CLK_SDRAM>, <&ccu CLK_BUS_DE>;
> + clock-names = "mod", "dram", "bus";
> + resets = <&ccu RST_BUS_DE>;
> + #clock-cells = <1>;
> + #reset-cells = <1>;
> +};
> diff --git a/drivers/clk/sunxi-ng/Makefile b/drivers/clk/sunxi-ng/Makefile
> index 8f37ef7fb67d..6feaac0c5600 100644
> --- a/drivers/clk/sunxi-ng/Makefile
> +++ b/drivers/clk/sunxi-ng/Makefile
> @@ -26,4 +26,5 @@ obj-$(CONFIG_SUN8I_A33_CCU) += ccu-sun8i-a33.o
> obj-$(CONFIG_SUN8I_H3_CCU) += ccu-sun8i-h3.o
> obj-$(CONFIG_SUN8I_V3S_CCU) += ccu-sun8i-v3s.o
> obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80.o
> +obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80-de.o
> obj-$(CONFIG_SUN9I_A80_CCU) += ccu-sun9i-a80-usb.o
> diff --git a/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c b/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
> new file mode 100644
> index 000000000000..3fc27db0a49a
> --- /dev/null
> +++ b/drivers/clk/sunxi-ng/ccu-sun9i-a80-de.c
> @@ -0,0 +1,283 @@
> +/*
> + * Copyright (c) 2016 Chen-Yu Tsai. All rights reserved.
> + *
> + * This software is licensed under the terms of the GNU General Public
> + * License version 2, as published by the Free Software Foundation, and
> + * may be copied, distributed, and modified under those terms.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <linux/clk.h>
> +#include <linux/clk-provider.h>
> +#include <linux/of_address.h>
> +#include <linux/platform_device.h>
> +#include <linux/reset.h>
> +
> +#include "ccu_common.h"
> +#include "ccu_div.h"
> +#include "ccu_gate.h"
> +#include "ccu_reset.h"
> +
> +#include "ccu-sun9i-a80-de.h"
> +
> +static SUNXI_CCU_GATE(fe0_clk, "fe0", "fe0-div",
> + 0x00, BIT(0), 0);
> +static SUNXI_CCU_GATE(fe1_clk, "fe1", "fe1-div",
> + 0x00, BIT(1), 0);
> +static SUNXI_CCU_GATE(fe2_clk, "fe2", "fe2-div",
> + 0x00, BIT(2), 0);
> +static SUNXI_CCU_GATE(iep_deu0_clk, "iep-deu0", "de",
> + 0x00, BIT(4), 0);
> +static SUNXI_CCU_GATE(iep_deu1_clk, "iep-deu1", "de",
> + 0x00, BIT(5), 0);
> +static SUNXI_CCU_GATE(be0_clk, "be0", "be0-div",
> + 0x00, BIT(8), 0);
> +static SUNXI_CCU_GATE(be1_clk, "be1", "be1-div",
> + 0x00, BIT(9), 0);
> +static SUNXI_CCU_GATE(be2_clk, "be2", "be2-div",
> + 0x00, BIT(10), 0);
> +static SUNXI_CCU_GATE(iep_drc0_clk, "iep-drc0", "de",
> + 0x00, BIT(12), 0);
> +static SUNXI_CCU_GATE(iep_drc1_clk, "iep-drc1", "de",
> + 0x00, BIT(13), 0);
> +static SUNXI_CCU_GATE(merge_clk, "merge", "de",
> + 0x00, BIT(20), 0);
> +
> +static SUNXI_CCU_GATE(dram_fe0_clk, "dram-fe0", "sdram",
> + 0x04, BIT(0), 0);
> +static SUNXI_CCU_GATE(dram_fe1_clk, "dram-fe1", "sdram",
> + 0x04, BIT(1), 0);
> +static SUNXI_CCU_GATE(dram_fe2_clk, "dram-fe2", "sdram",
> + 0x04, BIT(2), 0);
> +static SUNXI_CCU_GATE(dram_deu0_clk, "dram-deu0", "sdram",
> + 0x04, BIT(4), 0);
> +static SUNXI_CCU_GATE(dram_deu1_clk, "dram-deu1", "sdram",
> + 0x04, BIT(5), 0);
> +static SUNXI_CCU_GATE(dram_be0_clk, "dram-be0", "sdram",
> + 0x04, BIT(8), 0);
> +static SUNXI_CCU_GATE(dram_be1_clk, "dram-be1", "sdram",
> + 0x04, BIT(9), 0);
> +static SUNXI_CCU_GATE(dram_be2_clk, "dram-be2", "sdram",
> + 0x04, BIT(10), 0);
> +static SUNXI_CCU_GATE(dram_drc0_clk, "dram-drc0", "sdram",
> + 0x04, BIT(12), 0);
> +static SUNXI_CCU_GATE(dram_drc1_clk, "dram-drc1", "sdram",
> + 0x04, BIT(13), 0);
> +
> +static SUNXI_CCU_GATE(bus_fe0_clk, "bus-fe0", "bus-de",
> + 0x08, BIT(0), 0);
> +static SUNXI_CCU_GATE(bus_fe1_clk, "bus-fe1", "bus-de",
> + 0x08, BIT(1), 0);
> +static SUNXI_CCU_GATE(bus_fe2_clk, "bus-fe2", "bus-de",
> + 0x08, BIT(2), 0);
> +static SUNXI_CCU_GATE(bus_deu0_clk, "bus-deu0", "bus-de",
> + 0x08, BIT(4), 0);
> +static SUNXI_CCU_GATE(bus_deu1_clk, "bus-deu1", "bus-de",
> + 0x08, BIT(5), 0);
> +static SUNXI_CCU_GATE(bus_be0_clk, "bus-be0", "bus-de",
> + 0x08, BIT(8), 0);
> +static SUNXI_CCU_GATE(bus_be1_clk, "bus-be1", "bus-de",
> + 0x08, BIT(9), 0);
> +static SUNXI_CCU_GATE(bus_be2_clk, "bus-be2", "bus-de",
> + 0x08, BIT(10), 0);
> +static SUNXI_CCU_GATE(bus_drc0_clk, "bus-drc0", "bus-de",
> + 0x08, BIT(12), 0);
> +static SUNXI_CCU_GATE(bus_drc1_clk, "bus-drc1", "bus-de",
> + 0x08, BIT(13), 0);
> +
> +static SUNXI_CCU_M(fe0_div_clk, "fe0-div", "de", 0x20, 0, 4, 0);
> +static SUNXI_CCU_M(fe1_div_clk, "fe1-div", "de", 0x20, 4, 4, 0);
> +static SUNXI_CCU_M(fe2_div_clk, "fe2-div", "de", 0x20, 8, 4, 0);
> +static SUNXI_CCU_M(be0_div_clk, "be0-div", "de", 0x20, 16, 4, 0);
> +static SUNXI_CCU_M(be1_div_clk, "be1-div", "de", 0x20, 20, 4, 0);
> +static SUNXI_CCU_M(be2_div_clk, "be2-div", "de", 0x20, 24, 4, 0);
I couldn't find any documentation for this CCU.
What are those clocks for, and how the display engine should be using
(ie, which one is it expecting to drive / ungate / etc.)
Thanks!
Maxime
--
Maxime Ripard, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
next prev parent reply other threads:[~2017-01-26 10:39 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-24 2:32 [PATCH 00/11] clk: sunxi-ng: Add support for A80 CCUs Chen-Yu Tsai
2017-01-24 2:32 ` [PATCH 01/11] clk: sunxi-ng: mux: Fix determine_rate for mux clocks with pre-dividers Chen-Yu Tsai
2017-01-26 9:55 ` Maxime Ripard
2017-01-26 11:22 ` Chen-Yu Tsai
2017-01-24 2:32 ` [PATCH 02/11] clk: sunxi-ng: mux: honor CLK_SET_RATE_NO_REPARENT flag Chen-Yu Tsai
2017-01-24 2:32 ` [PATCH 03/11] clk: sunxi-ng: mux: Get closest parent rate possible with CLK_SET_RATE_PARENT Chen-Yu Tsai
2017-01-24 2:32 ` [PATCH 04/11] clk: sunxi-ng: Support separately grouped PLL lock status register Chen-Yu Tsai
2017-01-26 9:57 ` Maxime Ripard
2017-01-24 2:32 ` [PATCH 05/11] clk: sunxi-ng: Add A80 CCU Chen-Yu Tsai
2017-01-27 21:13 ` Rob Herring
2017-01-24 2:32 ` [PATCH 06/11] clk: sunxi-ng: Add A80 USB CCU Chen-Yu Tsai
2017-01-26 10:14 ` Maxime Ripard
2017-01-26 11:12 ` [linux-sunxi] " Chen-Yu Tsai
2017-01-27 8:45 ` Maxime Ripard
2017-01-27 21:15 ` Rob Herring
2017-01-24 2:32 ` [PATCH 07/11] clk: sunxi-ng: Add A80 Display Engine CCU Chen-Yu Tsai
2017-01-26 10:39 ` Maxime Ripard [this message]
2017-01-26 11:20 ` Chen-Yu Tsai
2017-01-27 8:58 ` Maxime Ripard
2017-01-27 9:26 ` Chen-Yu Tsai
2017-01-27 9:42 ` Maxime Ripard
2017-01-24 2:32 ` [PATCH 08/11] ARM: dts: sun8i-a23-q8-tablet: Drop pinmux setting for codec PA gpio Chen-Yu Tsai
2017-01-26 10:38 ` Maxime Ripard
2017-01-26 11:15 ` Chen-Yu Tsai
2017-01-24 2:32 ` [PATCH 09/11] ARM: dts: sunxi: Remove no longer used pinctrl/sun4i-a10.h header Chen-Yu Tsai
2017-01-26 10:21 ` Maxime Ripard
2017-01-24 2:32 ` [PATCH 10/11] arm64: dts: allwinner: " Chen-Yu Tsai
2017-01-26 10:15 ` Maxime Ripard
2017-01-26 11:23 ` Chen-Yu Tsai
2017-01-27 8:46 ` Maxime Ripard
2017-01-24 2:32 ` [PATCH 11/11] ARM: dts: sun9i: Switch to new clock bindings Chen-Yu Tsai
2017-01-24 6:03 ` [linux-sunxi] [PATCH 00/11] clk: sunxi-ng: Add support for A80 CCUs Priit Laes
-- strict thread matches above, loose matches on Subject: below --
2017-01-24 6:50 [PATCH 07/11] clk: sunxi-ng: Add A80 Display Engine CCU Icenowy Zheng
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170126103928.3kmvymoafsz5jfjm@lukather \
--to=maxime.ripard@free-electrons.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@googlegroups.com \
--cc=mark.rutland@arm.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@codeaurora.org \
--cc=wens@csie.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox