devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: YoungJun Cho <yj44.cho@samsung.com>
To: Vivek Gautam <gautam.vivek@samsung.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-samsung-soc@vger.kernel.org"
	<linux-samsung-soc@vger.kernel.org>,
	Pawel Moll <pawel.moll@arm.com>,
	ijc+devicetree@hellion.org.uk, sw0312.kim@samsung.com,
	dri-devel@lists.freedesktop.org, a.hajda@samsung.com,
	Kyungmin Park <kyungmin.park@samsung.com>,
	robh+dt <robh+dt@kernel.org>, Kumar Gala <galak@codeaurora.org>,
	Kukjin Kim <kgene.kim@samsung.com>
Subject: Re: [PATCH v3 13/15] ARM: dts: exynos5: add system register support
Date: Thu, 05 Jun 2014 11:52:57 +0900	[thread overview]
Message-ID: <538FDB89.70504@samsung.com> (raw)
In-Reply-To: <CAFp+6iFpSHWwH68BSNzetrTdxt2wpZC3y3WfQ+nuRDBeask_MA@mail.gmail.com>

Hi Vivek,

On 06/04/2014 08:50 PM, Vivek Gautam wrote:
> On Mon, Jun 2, 2014 at 10:52 AM, YoungJun Cho <yj44.cho@samsung.com> wrote:
>> This patch adds sysreg device node, and sysreg property
>> to fimd device node which is required to use I80 interface.
>
> Same here. The system register nodes have been added to exynos5250 and
> exynos5420 by the patch:
> dfbbdbf ARM: dts: Add sysreg sytem controller node to exynos5250 and exynos5420
>
> May be, you may want to move those two nodes to this common file (exynos5.dtsi).
>

Thank you for reporting.
I didn't check linux-samsung-soc.

The exynos5410, 5420 and 5422 use system register with base address
0x10050000.
But exynos5260 and 5430 are different.
And I can't check exynos5250.

So with this condition, it is reasonable to remove these sysreg relevant
patches.

Thank you.
Best regards YJ

>>
>> Signed-off-by: YoungJun Cho <yj44.cho@samsung.com>
>> Acked-by: Inki Dae <inki.dae@samsung.com>
>> Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>>   arch/arm/boot/dts/exynos5.dtsi |    6 ++++++
>>   1 file changed, 6 insertions(+)
>>
>> diff --git a/arch/arm/boot/dts/exynos5.dtsi b/arch/arm/boot/dts/exynos5.dtsi
>> index 79d0608..95ee496 100644
>> --- a/arch/arm/boot/dts/exynos5.dtsi
>> +++ b/arch/arm/boot/dts/exynos5.dtsi
>> @@ -81,12 +81,18 @@
>>                  status = "disabled";
>>          };
>>
>> +       sys_reg: syscon@10050000 {
>> +               compatible = "samsung,exynos5-sysreg", "syscon";
>> +               reg = <0x10050000 0x500>;
>> +       };
>> +
>>          fimd@14400000 {
>>                  compatible = "samsung,exynos5250-fimd";
>>                  interrupt-parent = <&combiner>;
>>                  reg = <0x14400000 0x40000>;
>>                  interrupt-names = "fifo", "vsync", "lcd_sys";
>>                  interrupts = <18 4>, <18 5>, <18 6>;
>> +               samsung,sysreg = <&sys_reg>;
>>                  status = "disabled";
>>          };
>>
>> --
>> 1.7.9.5
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
>
>

  reply	other threads:[~2014-06-05  2:52 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-02  5:22 [PATCH v3 00/15] drm/exynos: support LCD I80 interface display YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 01/15] drm/exynos: dsi: move the EoT packets configuration point YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 02/15] drm/exynos: use wait_event_timeout() for safety usage YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 03/15] ARM: dts: sysreg: add exynos5 compatible to DT bindings YoungJun Cho
2014-06-04 11:44   ` Vivek Gautam
2014-06-02  5:22 ` [PATCH v3 04/15] ARM: dts: samsung-fimd: add LCD I80 interface specific properties YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 05/15] drm/exynos: add TE handler to support LCD I80 interface YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 07/15] drm/exynos: fimd: " YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 09/15] drm/exynos: dsi: add driver data to support Exynos5420 YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 10/15] ARM: dts: s6e3fa0: add DT bindings YoungJun Cho
     [not found] ` <1401686571-22148-1-git-send-email-yj44.cho-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2014-06-02  5:22   ` [PATCH v3 06/15] drm/exynos: dsi: add TE handler to support LCD I80 interface YoungJun Cho
2014-06-02  5:22   ` [PATCH v3 08/15] ARM: dts: exynos_dsim: add exynos5420 compatible to DT bindings YoungJun Cho
2014-06-02  5:22   ` [PATCH v3 11/15] drm/panel: add S6E3FA0 driver YoungJun Cho
2014-06-02  5:22   ` [PATCH v3 13/15] ARM: dts: exynos5: add system register support YoungJun Cho
2014-06-04 11:50     ` Vivek Gautam
2014-06-05  2:52       ` YoungJun Cho [this message]
2014-06-05  5:11         ` Vivek Gautam
2014-06-02  5:22   ` [PATCH v3 14/15] ARM: dts: exynos5420: add mipi-phy node YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 12/15] ARM: dts: exynos4: add system register node YoungJun Cho
2014-06-02  5:22 ` [PATCH v3 15/15] ARM: dts: exynos5420: add dsi node YoungJun Cho

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=538FDB89.70504@samsung.com \
    --to=yj44.cho@samsung.com \
    --cc=a.hajda@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=galak@codeaurora.org \
    --cc=gautam.vivek@samsung.com \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=kgene.kim@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=robh+dt@kernel.org \
    --cc=sw0312.kim@samsung.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).