All of lore.kernel.org
 help / color / mirror / Atom feed
From: Igor Grinberg <grinberg@compulab.co.il>
To: Kumar Gala <galak@codeaurora.org>
Cc: Mike Rapoport <mike.rapoport@gmail.com>,
	Srinivas Kandagatla <srinivas.kandagatla@linaro.org>,
	Bjorn Andersson <bjorn@kryo.se>,
	linux-arm-msm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	Nicolas Dechesne <nicolas.dechesne@linaro.org>,
	devicetree@vger.kernel.org
Subject: Re: [PATCH v4] ARM: dts: qcom: add CM-QS600 board
Date: Fri, 10 Oct 2014 10:36:09 +0300	[thread overview]
Message-ID: <54378C69.4000400@compulab.co.il> (raw)
In-Reply-To: <1412179751-5859-1-git-send-email-mike.rapoport@gmail.com>

Hi Kumar,

As I've understand from Kevin's letter, we can submit the DT only
platforms addition also for 3.18.

Can we please have this one applied?

Thanks!

On 10/01/14 19:09, Mike Rapoport wrote:
> CM-QS600 is a APQ8064 based computer on module.
> The details are available at
> http://compulab.co.il/products/computer-on-modules/cm-qs600/
> 
> Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
> Acked-by: Igor Grinberg <grinberg@compulab.co.il>
> ---
> v2 changes: duplicate the settings for the cm-qs600 board in its .dts file as Kumar suggested
> v3 changes: add board details and keep dts Makefile sorted alphabetically
> v4 changes: fix eeprom defintion and update subject as per Igor's comments
> 
>  arch/arm/boot/dts/Makefile                  |  1 +
>  arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 59 +++++++++++++++++++++++++++++
>  2 files changed, 60 insertions(+)
>  create mode 100644 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> 
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index aaa1a68..3243722 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -339,6 +339,7 @@ dtb-$(CONFIG_ARCH_ORION5X) += orion5x-lacie-d2-network.dtb \
>  	orion5x-rd88f5182-nas.dtb
>  dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb
>  dtb-$(CONFIG_ARCH_QCOM) += \
> +	qcom-apq8064-cm-qs600.dtb \
>  	qcom-apq8064-ifc6410.dtb \
>  	qcom-apq8074-dragonboard.dtb \
>  	qcom-apq8084-ifc6540.dtb \
> diff --git a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> new file mode 100644
> index 0000000..5d75666
> --- /dev/null
> +++ b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> @@ -0,0 +1,59 @@
> +#include "qcom-apq8064-v2.0.dtsi"
> +
> +/ {
> +	model = "CompuLab CM-QS600";
> +	compatible = "qcom,apq8064-cm-qs600", "qcom,apq8064";
> +
> +	soc {
> +		pinctrl@800000 {
> +			i2c1_pins: i2c1 {
> +				mux {
> +					pins = "gpio20", "gpio21";
> +					function = "gsbi1";
> +				};
> +			};
> +		};
> +
> +		gsbi@12440000 {
> +			status = "okay";
> +			qcom,mode = <GSBI_PROT_I2C>;
> +
> +			i2c@12460000 {
> +				status = "okay";
> +				clock-frequency = <200000>;
> +				pinctrl-0 = <&i2c1_pins>;
> +				pinctrl-names = "default";
> +
> +				eeprom: eeprom@50 {
> +					compatible = "24c02";
> +					reg = <0x50>;
> +					pagesize = <32>;
> +				};
> +			};
> +		};
> +
> +		gsbi@16600000 {
> +			status = "ok";
> +			qcom,mode = <GSBI_PROT_I2C_UART>;
> +			serial@16640000 {
> +				status = "ok";
> +			};
> +		};
> +
> +		amba {
> +			/* eMMC */
> +			sdcc1: sdcc@12400000 {
> +				status = "okay";
> +			};
> +
> +			/* External micro SD card */
> +			sdcc3: sdcc@12180000 {
> +				status = "okay";
> +			};
> +			/* WLAN */
> +			sdcc4: sdcc@121c0000 {
> +				status = "okay";
> +			};
> +		};
> +	};
> +};
> 

-- 
Regards,
Igor.

WARNING: multiple messages have this Message-ID (diff)
From: grinberg@compulab.co.il (Igor Grinberg)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4] ARM: dts: qcom: add CM-QS600 board
Date: Fri, 10 Oct 2014 10:36:09 +0300	[thread overview]
Message-ID: <54378C69.4000400@compulab.co.il> (raw)
In-Reply-To: <1412179751-5859-1-git-send-email-mike.rapoport@gmail.com>

Hi Kumar,

As I've understand from Kevin's letter, we can submit the DT only
platforms addition also for 3.18.

Can we please have this one applied?

Thanks!

On 10/01/14 19:09, Mike Rapoport wrote:
> CM-QS600 is a APQ8064 based computer on module.
> The details are available at
> http://compulab.co.il/products/computer-on-modules/cm-qs600/
> 
> Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
> Acked-by: Igor Grinberg <grinberg@compulab.co.il>
> ---
> v2 changes: duplicate the settings for the cm-qs600 board in its .dts file as Kumar suggested
> v3 changes: add board details and keep dts Makefile sorted alphabetically
> v4 changes: fix eeprom defintion and update subject as per Igor's comments
> 
>  arch/arm/boot/dts/Makefile                  |  1 +
>  arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts | 59 +++++++++++++++++++++++++++++
>  2 files changed, 60 insertions(+)
>  create mode 100644 arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> 
> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> index aaa1a68..3243722 100644
> --- a/arch/arm/boot/dts/Makefile
> +++ b/arch/arm/boot/dts/Makefile
> @@ -339,6 +339,7 @@ dtb-$(CONFIG_ARCH_ORION5X) += orion5x-lacie-d2-network.dtb \
>  	orion5x-rd88f5182-nas.dtb
>  dtb-$(CONFIG_ARCH_PRIMA2) += prima2-evb.dtb
>  dtb-$(CONFIG_ARCH_QCOM) += \
> +	qcom-apq8064-cm-qs600.dtb \
>  	qcom-apq8064-ifc6410.dtb \
>  	qcom-apq8074-dragonboard.dtb \
>  	qcom-apq8084-ifc6540.dtb \
> diff --git a/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> new file mode 100644
> index 0000000..5d75666
> --- /dev/null
> +++ b/arch/arm/boot/dts/qcom-apq8064-cm-qs600.dts
> @@ -0,0 +1,59 @@
> +#include "qcom-apq8064-v2.0.dtsi"
> +
> +/ {
> +	model = "CompuLab CM-QS600";
> +	compatible = "qcom,apq8064-cm-qs600", "qcom,apq8064";
> +
> +	soc {
> +		pinctrl at 800000 {
> +			i2c1_pins: i2c1 {
> +				mux {
> +					pins = "gpio20", "gpio21";
> +					function = "gsbi1";
> +				};
> +			};
> +		};
> +
> +		gsbi at 12440000 {
> +			status = "okay";
> +			qcom,mode = <GSBI_PROT_I2C>;
> +
> +			i2c at 12460000 {
> +				status = "okay";
> +				clock-frequency = <200000>;
> +				pinctrl-0 = <&i2c1_pins>;
> +				pinctrl-names = "default";
> +
> +				eeprom: eeprom at 50 {
> +					compatible = "24c02";
> +					reg = <0x50>;
> +					pagesize = <32>;
> +				};
> +			};
> +		};
> +
> +		gsbi at 16600000 {
> +			status = "ok";
> +			qcom,mode = <GSBI_PROT_I2C_UART>;
> +			serial at 16640000 {
> +				status = "ok";
> +			};
> +		};
> +
> +		amba {
> +			/* eMMC */
> +			sdcc1: sdcc at 12400000 {
> +				status = "okay";
> +			};
> +
> +			/* External micro SD card */
> +			sdcc3: sdcc at 12180000 {
> +				status = "okay";
> +			};
> +			/* WLAN */
> +			sdcc4: sdcc at 121c0000 {
> +				status = "okay";
> +			};
> +		};
> +	};
> +};
> 

-- 
Regards,
Igor.

  reply	other threads:[~2014-10-10  7:36 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-01 16:09 [PATCH v4] ARM: dts: qcom: add CM-QS600 board Mike Rapoport
2014-10-01 16:09 ` Mike Rapoport
2014-10-10  7:36 ` Igor Grinberg [this message]
2014-10-10  7:36   ` Igor Grinberg

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=54378C69.4000400@compulab.co.il \
    --to=grinberg@compulab.co.il \
    --cc=bjorn@kryo.se \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=mike.rapoport@gmail.com \
    --cc=nicolas.dechesne@linaro.org \
    --cc=srinivas.kandagatla@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.