All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/1] ls102xa: Indexes of CSU slave is incorrect
@ 2016-03-29  7:41 Vincent Siles
  2016-03-29  7:41 ` [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h Vincent Siles
  0 siblings, 1 reply; 4+ messages in thread
From: Vincent Siles @ 2016-03-29  7:41 UTC (permalink / raw)
  To: u-boot


In [1], we can see that the order of CSU slave indexes is a bit
scrambled at the end. The ns_access.h file does not represent this
ordering correctly. This patch aims to fix that.

[1]: http://www.nxp.com/products/microcontrollers-and-processors/arm-processors/qoriq-arm-processors/qoriq-ls1021a-dual-core-communications-processor-with-lcd-controller:LS1021A?fpsp=1&tab=Documentation_Tab


Vincent Siles (1):
  arm: Fix order of CSU indexes in ns_access.h

 arch/arm/include/asm/arch-ls102xa/ns_access.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h
  2016-03-29  7:41 [U-Boot] [PATCH 0/1] ls102xa: Indexes of CSU slave is incorrect Vincent Siles
@ 2016-03-29  7:41 ` Vincent Siles
       [not found]   ` <56FAA872.4000902@nxp.com>
  2016-04-06 17:27   ` York Sun
  0 siblings, 2 replies; 4+ messages in thread
From: Vincent Siles @ 2016-03-29  7:41 UTC (permalink / raw)
  To: u-boot

This patch aims to fix the order of CSU slave index for the LS1021a
board.

Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>

---

 arch/arm/include/asm/arch-ls102xa/ns_access.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/include/asm/arch-ls102xa/ns_access.h b/arch/arm/include/asm/arch-ls102xa/ns_access.h
index a921fb6..44acfd2 100644
--- a/arch/arm/include/asm/arch-ls102xa/ns_access.h
+++ b/arch/arm/include/asm/arch-ls102xa/ns_access.h
@@ -82,12 +82,12 @@ enum csu_cslx_ind {
 	CSU_CSLX_FTM5,
 	CSU_CSLX_FTM8,
 	CSU_CSLX_FTM7,
-	CSU_CSLX_COP_DCSR,
 	CSU_CSLX_EPU,
-	CSU_CSLX_GDI,
+	CSU_CSLX_COP_DCSR,
 	CSU_CSLX_DDI,
+	CSU_CSLX_GDI,
 	CSU_CSLX_RESERVED1,
-	CSU_CSLX_USB3_PHY = 117,
+	CSU_CSLX_USB3_PHY = 116,
 	CSU_CSLX_RESERVED2,
 	CSU_CSLX_MAX,
 };
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h
       [not found]   ` <56FAA872.4000902@nxp.com>
@ 2016-03-31  6:14     ` Huan Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Huan Wang @ 2016-03-31  6:14 UTC (permalink / raw)
  To: u-boot

> -------- Original Message --------
> Subject: [PATCH] arm: Fix order of CSU indexes in ns_access.h
> Date: 03/29/2016 12:41 AM
> From: Vincent Siles <vincent.siles@provenrun.com>
> To: u-boot at lists.denx.de <u-boot@lists.denx.de>
> CC: vincent.siles at provenrun.com <vincent.siles@provenrun.com>,
> yorksun at freescale.com <yorksun@freescale.com>, Mingkai Hu
> <Mingkai.Hu@freescale.com>, Gong Qianyu <Qianyu.Gong@freescale.com>,
> Albert Aribaud <albert.u.boot@aribaud.net>, Hou Zhiqiang
> <B48286@freescale.com>
> 
> This patch aims to fix the order of CSU slave index for the LS1021a
> board.
> 
> Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>
> 
> ---
> 
>  arch/arm/include/asm/arch-ls102xa/ns_access.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-ls102xa/ns_access.h
> b/arch/arm/include/asm/arch-ls102xa/ns_access.h
> index a921fb6..44acfd2 100644
> --- a/arch/arm/include/asm/arch-ls102xa/ns_access.h
> +++ b/arch/arm/include/asm/arch-ls102xa/ns_access.h
> @@ -82,12 +82,12 @@ enum csu_cslx_ind {
>  	CSU_CSLX_FTM5,
>  	CSU_CSLX_FTM8,
>  	CSU_CSLX_FTM7,
> -	CSU_CSLX_COP_DCSR,
>  	CSU_CSLX_EPU,
> -	CSU_CSLX_GDI,
> +	CSU_CSLX_COP_DCSR,
>  	CSU_CSLX_DDI,
> +	CSU_CSLX_GDI,
>  	CSU_CSLX_RESERVED1,
> -	CSU_CSLX_USB3_PHY = 117,
> +	CSU_CSLX_USB3_PHY = 116,
>  	CSU_CSLX_RESERVED2,
>  	CSU_CSLX_MAX,
>  };
> --
Reviewed-by: Alison Wang <alison.wang@nxp.com>

Best Regards,
Alison Wang

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h
  2016-03-29  7:41 ` [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h Vincent Siles
       [not found]   ` <56FAA872.4000902@nxp.com>
@ 2016-04-06 17:27   ` York Sun
  1 sibling, 0 replies; 4+ messages in thread
From: York Sun @ 2016-04-06 17:27 UTC (permalink / raw)
  To: u-boot

On 03/29/2016 12:41 AM, Vincent Siles wrote:
> This patch aims to fix the order of CSU slave index for the LS1021a
> board.
> 
> Signed-off-by: Vincent Siles <vincent.siles@provenrun.com>
> 
> ---
> 
>  arch/arm/include/asm/arch-ls102xa/ns_access.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 

Revised tag in subject.
Applied to u-boot-fsl-qoriq master. Awaiting upstream.
Thanks.

York

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-04-06 17:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-03-29  7:41 [U-Boot] [PATCH 0/1] ls102xa: Indexes of CSU slave is incorrect Vincent Siles
2016-03-29  7:41 ` [U-Boot] [PATCH] arm: Fix order of CSU indexes in ns_access.h Vincent Siles
     [not found]   ` <56FAA872.4000902@nxp.com>
2016-03-31  6:14     ` Huan Wang
2016-04-06 17:27   ` York Sun

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.