devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Rob Herring <robh@kernel.org>
To: Vinod Koul <vkoul@kernel.org>
Cc: Wolfram Sang <wsa+renesas@sang-engineering.com>,
	linux-i2c@vger.kernel.org,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	Todor Tomov <todor.tomov@linaro.org>
Subject: Re: [PATCH v4 1/2] dt-bindings: i2c: Add binding for Qualcomm CCI I2C controller
Date: Mon, 20 Aug 2018 13:18:59 -0500	[thread overview]
Message-ID: <20180820181859.GA3439@bogus> (raw)
In-Reply-To: <20180820063953.6866-2-vkoul@kernel.org>

On Mon, Aug 20, 2018 at 12:09:52PM +0530, Vinod Koul wrote:
> From: Todor Tomov <todor.tomov@linaro.org>
> 
> Add DT binding document for Qualcomm Camera Control Interface (CCI)
> I2C controller.
> 
> Signed-off-by: Todor Tomov <todor.tomov@linaro.org>
> Signed-off-by: Vinod Koul <vkoul@kernel.org>
> ---
>  .../devicetree/bindings/i2c/i2c-qcom-cci.txt       | 83 ++++++++++++++++++++++
>  1 file changed, 83 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
> 
> diff --git a/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt b/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
> new file mode 100644
> index 000000000000..b7f4240ce5c8
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
> @@ -0,0 +1,83 @@
> +Qualcomm Camera Control Interface (CCI) I2C controller
> +
> +PROPERTIES:
> +
> +- compatible:
> +	Usage: required
> +	Value type: <string>
> +	Definition: must be one of:
> +		"qcom,msm-8916-cci"
> +		"qcom,msm-8996-cci"

I think everywhere else is 'msm8916' and 'msm8996'.

> +
> +- reg
> +	Usage: required
> +	Value type: <prop-encoded-array>
> +	Definition: base address CCI I2C controller and length of memory
> +		    mapped region.
> +
> +- interrupts:
> +	Usage: required
> +	Value type: <prop-encoded-array>
> +	Definition: specifies the CCI I2C interrupt. The format of the
> +		    specifier is defined by the binding document describing
> +		    the node's interrupt parent.
> +
> +- clocks:
> +	Usage: required
> +	Value type: <prop-encoded-array>
> +	Definition: a list of phandle, should contain an entry for each
> +		    entries in clock-names.
> +
> +- clock-names
> +	Usage: required
> +	Value type: <string>
> +	Definition: a list of clock names, must include these entries:
> +		"mmss_mmagic_ahb" - on "qcom,msm-8996-cci" only;
> +		"camss_top_ahb";
> +		"cci_ahb";
> +		"cci";
> +		"camss_ahb";
> +
> +- power-domains
> +	Usage: required for "qcom,msm-8996-cci"
> +	Value type: <prop-encoded-array>
> +	Definition:
> +
> +SUBNODES:
> +
> +The CCI provides I2C masters for one or two i2c busses, described as
> +subdevices named "i2c-bus0" and "i2c-bus1".

Use a unit-address and reg property with 0 and 1 here.

With those fixed,

Reviewed-by: Rob Herring <robh@kernel.org>

> +
> +PROPERTIES:
> +
> +- clock-frequency:
> +	Usage: optional
> +	Value type: <u32>
> +	Definition: Desired I2C bus clock frequency in Hz, defaults to 100
> +		    kHz if omitted.
> +
> +Example:
> +
> +	cci@a0c000 {
> +		compatible = "qcom,msm-8996-cci";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +		reg = <0xa0c000 0x1000>;
> +		interrupts = <GIC_SPI 295 IRQ_TYPE_EDGE_RISING>;
> +		clocks = <&mmcc MMSS_MMAGIC_AHB_CLK>,
> +                <&mmcc CAMSS_TOP_AHB_CLK>,
> +                <&mmcc CAMSS_CCI_AHB_CLK>,
> +                <&mmcc CAMSS_CCI_CLK>,
> +                <&mmcc CAMSS_AHB_CLK>;
> +		clock-names = "mmss_mmagic_ahb",
> +			"camss_top_ahb",
> +			"cci_ahb",
> +			"cci",
> +			"camss_ahb";
> +		i2c-bus0 {
> +			clock-frequency = <400000>;
> +		};
> +		i2c-bus1 {
> +			clock-frequency = <400000>;
> +		};
> +	};
> -- 
> 2.14.4
> 

  reply	other threads:[~2018-08-20 18:18 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-20  6:39 [PATCH v4 0/2] i2c: Add support for Qcom CCI I2C controller Vinod Koul
2018-08-20  6:39 ` [PATCH v4 1/2] dt-bindings: i2c: Add binding for Qualcomm " Vinod Koul
2018-08-20 18:18   ` Rob Herring [this message]
2018-08-21  9:28     ` Vinod
2018-08-21 13:11       ` Rob Herring
2018-08-21 13:12         ` Rob Herring
2018-08-21 16:00           ` Vinod
2018-08-20  6:39 ` [PATCH v4 2/2] i2c: Add Qualcomm CCI I2C driver Vinod Koul
2018-08-24  7:30   ` Stephen Boyd
2018-08-24 10:16     ` Vinod
2018-08-27 19:19       ` Stephen Boyd
2018-08-28  3:38         ` Vinod
2018-09-20 19:39           ` Ricardo Ribalda Delgado
2018-09-21 15:36             ` Vinod
2018-09-21 15:43               ` Todor Tomov
2018-09-22 22:02                 ` Ricardo Ribalda Delgado

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=20180820181859.GA3439@bogus \
    --to=robh@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=todor.tomov@linaro.org \
    --cc=vkoul@kernel.org \
    --cc=wsa+renesas@sang-engineering.com \
    /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;
as well as URLs for NNTP newsgroup(s).