All of lore.kernel.org
 help / color / mirror / Atom feed
From: eugeniy.paltsev@synopsys.com (Eugeniy Paltsev)
To: linux-snps-arc@lists.infradead.org
Subject: [PATCH] ARC: [hsdk] Make it easier to add PAE40 region to DTB
Date: Wed, 3 Apr 2019 16:34:02 +0000	[thread overview]
Message-ID: <1554309241.2797.20.camel@synopsys.com> (raw)
In-Reply-To: <1554232683-8173-1-git-send-email-vgupta@synopsys.com>

Hi Vineet,

On Tue, 2019-04-02@12:18 -0700, Vineet Gupta wrote:
> 1. Bump top level address-cells/size-cells nodes to 2 (to ensure all
>    down stream addresses are 64-bits, unless explicitly specified
>    otherwise (in "soc" bus with all peripherals)
> 
> 2. "memory" also specified with address/size 2
> 
> 3. Add a commented reference for PAE40 region beyond 4GB physical
>    address space

[see below]

> 
> Signed-off-by: Vineet Gupta <vgupta at synopsys.com>
> ---
>  arch/arc/boot/dts/hsdk.dts | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arc/boot/dts/hsdk.dts b/arch/arc/boot/dts/hsdk.dts
> index 69bc1c9e8e50..7425bb0f2d1b 100644
> --- a/arch/arc/boot/dts/hsdk.dts
> +++ b/arch/arc/boot/dts/hsdk.dts
> @@ -18,8 +18,8 @@
>  	model = "snps,hsdk";
>  	compatible = "snps,hsdk";
>  
> -	#address-cells = <1>;
> -	#size-cells = <1>;
> +	#address-cells = <2>;
> +	#size-cells = <2>;
>  
>  	chosen {
>  		bootargs = "earlycon=uart8250,mmio32,0xf0005000,115200n8 console=ttyS0,115200n8 debug print-fatal-signals=1";
> @@ -105,7 +105,7 @@
>  		#size-cells = <1>;
>  		interrupt-parent = <&idu_intc>;
>  
> -		ranges = <0x00000000 0xf0000000 0x10000000>;
> +		ranges = <0x00000000 0x0 0xf0000000 0x10000000>;
>  
>  		cgu_rst: reset-controller at 8a0 {
>  			compatible = "snps,hsdk-reset";
> @@ -269,9 +269,10 @@
>  	};
>  
>  	memory at 80000000 {
> -		#address-cells = <1>;
> -		#size-cells = <1>;
> +		#address-cells = <2>;
> +		#size-cells = <2>;
>  		device_type = "memory";
> -		reg = <0x80000000 0x40000000>;  /* 1 GiB */
> +		reg = <0x0 0x80000000 0x0 0x40000000>;  /* 1 GB lowmem */
> +		/*     0x1 0x00000000 0x0 0x40000000>;     1 GB highmem */

Could you please get rid of comment with reference for PAE40/HIGHMEM region in this patch?
It gives wrong expectations that if we uncomment it and enable PAE40 in config we'll get working system.
But it isn't true - we also need to remap AXI apertures appropriately.

Otherwise kernel will crush somewhere. Moreover kernel will crush for different reasons in case of launch
via U-boot and via MDB (because we remap AXI apertures in U-boot for internal purposes).

If you really want to keep this - I can send you patch with AXI apertures remapping we need to apply firstly.

Thanks.

>  	};
>  };
-- 
 Eugeniy Paltsev

WARNING: multiple messages have this Message-ID (diff)
From: Eugeniy Paltsev <eugeniy.paltsev@synopsys.com>
To: Vineet Gupta <vineet.gupta1@synopsys.com>,
	"linux-snps-arc@lists.infradead.org" 
	<linux-snps-arc@lists.infradead.org>
Cc: "robh@kernel.org" <robh@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] ARC: [hsdk] Make it easier to add PAE40 region to DTB
Date: Wed, 3 Apr 2019 16:34:02 +0000	[thread overview]
Message-ID: <1554309241.2797.20.camel@synopsys.com> (raw)
In-Reply-To: <1554232683-8173-1-git-send-email-vgupta@synopsys.com>

Hi Vineet,

On Tue, 2019-04-02 at 12:18 -0700, Vineet Gupta wrote:
> 1. Bump top level address-cells/size-cells nodes to 2 (to ensure all
>    down stream addresses are 64-bits, unless explicitly specified
>    otherwise (in "soc" bus with all peripherals)
> 
> 2. "memory" also specified with address/size 2
> 
> 3. Add a commented reference for PAE40 region beyond 4GB physical
>    address space

[see below]

> 
> Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
> ---
>  arch/arc/boot/dts/hsdk.dts | 13 +++++++------
>  1 file changed, 7 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arc/boot/dts/hsdk.dts b/arch/arc/boot/dts/hsdk.dts
> index 69bc1c9e8e50..7425bb0f2d1b 100644
> --- a/arch/arc/boot/dts/hsdk.dts
> +++ b/arch/arc/boot/dts/hsdk.dts
> @@ -18,8 +18,8 @@
>  	model = "snps,hsdk";
>  	compatible = "snps,hsdk";
>  
> -	#address-cells = <1>;
> -	#size-cells = <1>;
> +	#address-cells = <2>;
> +	#size-cells = <2>;
>  
>  	chosen {
>  		bootargs = "earlycon=uart8250,mmio32,0xf0005000,115200n8 console=ttyS0,115200n8 debug print-fatal-signals=1";
> @@ -105,7 +105,7 @@
>  		#size-cells = <1>;
>  		interrupt-parent = <&idu_intc>;
>  
> -		ranges = <0x00000000 0xf0000000 0x10000000>;
> +		ranges = <0x00000000 0x0 0xf0000000 0x10000000>;
>  
>  		cgu_rst: reset-controller@8a0 {
>  			compatible = "snps,hsdk-reset";
> @@ -269,9 +269,10 @@
>  	};
>  
>  	memory@80000000 {
> -		#address-cells = <1>;
> -		#size-cells = <1>;
> +		#address-cells = <2>;
> +		#size-cells = <2>;
>  		device_type = "memory";
> -		reg = <0x80000000 0x40000000>;  /* 1 GiB */
> +		reg = <0x0 0x80000000 0x0 0x40000000>;  /* 1 GB lowmem */
> +		/*     0x1 0x00000000 0x0 0x40000000>;     1 GB highmem */

Could you please get rid of comment with reference for PAE40/HIGHMEM region in this patch?
It gives wrong expectations that if we uncomment it and enable PAE40 in config we'll get working system.
But it isn't true - we also need to remap AXI apertures appropriately.

Otherwise kernel will crush somewhere. Moreover kernel will crush for different reasons in case of launch
via U-boot and via MDB (because we remap AXI apertures in U-boot for internal purposes).

If you really want to keep this - I can send you patch with AXI apertures remapping we need to apply firstly.

Thanks.

>  	};
>  };
-- 
 Eugeniy Paltsev

  reply	other threads:[~2019-04-03 16:34 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-02 19:18 [PATCH] ARC: [hsdk] Make it easier to add PAE40 region to DTB Vineet Gupta
2019-04-02 19:18 ` Vineet Gupta
2019-04-03 16:34 ` Eugeniy Paltsev [this message]
2019-04-03 16:34   ` Eugeniy Paltsev
2019-04-03 16:44   ` Vineet Gupta
2019-04-03 16:44     ` Vineet Gupta

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=1554309241.2797.20.camel@synopsys.com \
    --to=eugeniy.paltsev@synopsys.com \
    --cc=linux-snps-arc@lists.infradead.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.