* [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register
@ 2016-03-23 11:10 Gong Qianyu
2016-03-23 11:10 ` [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR Gong Qianyu
2016-03-29 16:00 ` [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register York Sun
0 siblings, 2 replies; 4+ messages in thread
From: Gong Qianyu @ 2016-03-23 11:10 UTC (permalink / raw)
To: u-boot
From: Mingkai Hu <mingkai.hu@nxp.com>
Signed-off-by: Mingkai Hu <mingkai.hu@nxp.com>
Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
---
arch/arm/include/asm/arch-fsl-layerscape/soc.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
index ea78e15..512a8e0 100644
--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
@@ -41,7 +41,7 @@ struct cpu_type {
{ .name = #n, .soc_ver = SVR_##v, .num_cores = (nc)}
#define SVR_WO_E 0xFFFFFE
-#define SVR_LS1043 0x879204
+#define SVR_LS1043 0x879200
#define SVR_LS2045 0x870120
#define SVR_LS2080 0x870110
#define SVR_LS2085 0x870100
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR
2016-03-23 11:10 [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register Gong Qianyu
@ 2016-03-23 11:10 ` Gong Qianyu
2016-03-29 16:01 ` York Sun
2016-03-29 16:00 ` [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register York Sun
1 sibling, 1 reply; 4+ messages in thread
From: Gong Qianyu @ 2016-03-23 11:10 UTC (permalink / raw)
To: u-boot
From: Mingkai Hu <mingkai.hu@nxp.com>
Signed-off-by: Mingkai Hu <mingkai.hu@nxp.com>
Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
---
arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 1 +
arch/arm/include/asm/arch-fsl-layerscape/soc.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
index 794b764..a9dadfa 100644
--- a/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/cpu.h
@@ -12,6 +12,7 @@ static struct cpu_type cpu_type_list[] = {
CPU_TYPE_ENTRY(LS2085, LS2085, 8),
CPU_TYPE_ENTRY(LS2045, LS2045, 4),
CPU_TYPE_ENTRY(LS1043, LS1043, 4),
+ CPU_TYPE_ENTRY(LS1023, LS1023, 2),
CPU_TYPE_ENTRY(LS2040, LS2040, 4),
};
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
index 512a8e0..56989e1 100644
--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
@@ -42,6 +42,7 @@ struct cpu_type {
#define SVR_WO_E 0xFFFFFE
#define SVR_LS1043 0x879200
+#define SVR_LS1023 0x879208
#define SVR_LS2045 0x870120
#define SVR_LS2080 0x870110
#define SVR_LS2085 0x870100
--
2.1.0.27.g96db324
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register
2016-03-23 11:10 [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register Gong Qianyu
2016-03-23 11:10 ` [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR Gong Qianyu
@ 2016-03-29 16:00 ` York Sun
1 sibling, 0 replies; 4+ messages in thread
From: York Sun @ 2016-03-29 16:00 UTC (permalink / raw)
To: u-boot
On 03/23/2016 04:20 AM, Gong Qianyu wrote:
> From: Mingkai Hu <mingkai.hu@nxp.com>
>
> Signed-off-by: Mingkai Hu <mingkai.hu@nxp.com>
> Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
> ---
> arch/arm/include/asm/arch-fsl-layerscape/soc.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
Minor change to subject.
Applied to u-boot-fsl-qoriq master. Awaiting upstream.
Thanks.
York
^ permalink raw reply [flat|nested] 4+ messages in thread
* [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR
2016-03-23 11:10 ` [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR Gong Qianyu
@ 2016-03-29 16:01 ` York Sun
0 siblings, 0 replies; 4+ messages in thread
From: York Sun @ 2016-03-29 16:01 UTC (permalink / raw)
To: u-boot
On 03/23/2016 04:20 AM, Gong Qianyu wrote:
> From: Mingkai Hu <mingkai.hu@nxp.com>
>
> Signed-off-by: Mingkai Hu <mingkai.hu@nxp.com>
> Signed-off-by: Gong Qianyu <Qianyu.Gong@nxp.com>
> ---
> arch/arm/include/asm/arch-fsl-layerscape/cpu.h | 1 +
> arch/arm/include/asm/arch-fsl-layerscape/soc.h | 1 +
> 2 files changed, 2 insertions(+)
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-03-29 16:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-23 11:10 [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register Gong Qianyu
2016-03-23 11:10 ` [U-Boot] [PATCH 2/2] armv8: fsl-layerscape: add LS1023A SVR Gong Qianyu
2016-03-29 16:01 ` York Sun
2016-03-29 16:00 ` [U-Boot] [PATCH 1/2] armv8: fsl-layerscape: change LS1043A SVR register York Sun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox