All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
@ 2019-09-18  8:50 Yuantian Tang
  2019-09-25  5:04 ` Priyanka Jain
  2019-10-22  4:31 ` Priyanka Jain
  0 siblings, 2 replies; 6+ messages in thread
From: Yuantian Tang @ 2019-09-18  8:50 UTC (permalink / raw)
  To: u-boot

Add LS1027A, LS1018A and LS1017A  personalities support to
LS1028A processor soc family.

LS1028A processor is the prime personality of LS1028A soc family.
LS1027A processor is a lower funtionality version of QorIQ LS1028A
which does not support the multimedia subsystems, such as LCD
controller, GPU, and eDP PHY.
The QorIQ LS1018A and LS1017A are low power versions of the QorIQ
LS1028A and LS1027A processors, respectively which integrate single
64-bit Arm A72 core.

Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
---
v2:
	- refine description
 arch/arm/cpu/armv8/fsl-layerscape/cpu.c        | 3 +++
 arch/arm/include/asm/arch-fsl-layerscape/soc.h | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
index 3e2a24fe80..dee96afe2d 100644
--- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
+++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
@@ -58,6 +58,9 @@ static struct cpu_type cpu_type_list[] = {
 	CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
 	CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
 	CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
+	CPU_TYPE_ENTRY(LS1017A, LS1017A, 1),
+	CPU_TYPE_ENTRY(LS1018A, LS1018A, 1),
+	CPU_TYPE_ENTRY(LS1027A, LS1027A, 2),
 	CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
 	CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
 	CPU_TYPE_ENTRY(LS1084A, LS1084A, 8),
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h b/arch/arm/include/asm/arch-fsl-layerscape/soc.h

--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
@@ -83,6 +83,9 @@ enum boot_src get_boot_src(void);
 /* LS1043A/LS1023A 23x23 package silicon has different value of VAR_PER */
 #define SVR_LS1043A_P23		0x879202
 #define SVR_LS1023A_P23		0x87920A
+#define SVR_LS1017A		0x870B24
+#define SVR_LS1018A		0x870B20
+#define SVR_LS1027A		0x870B04
 #define SVR_LS1028A		0x870B00
 #define SVR_LS1046A		0x870700
 #define SVR_LS1026A		0x870708
-- 
2.17.1

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

* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
  2019-09-18  8:50 [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support Yuantian Tang
@ 2019-09-25  5:04 ` Priyanka Jain
  2019-09-25  5:35   ` Andy Tang
  2019-10-22  4:31 ` Priyanka Jain
  1 sibling, 1 reply; 6+ messages in thread
From: Priyanka Jain @ 2019-09-25  5:04 UTC (permalink / raw)
  To: u-boot



>-----Original Message-----
>From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Yuantian Tang
>Sent: Wednesday, September 18, 2019 2:21 PM
>To: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
>Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
>Subject: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
>
Please update subject to be more specific about Soc personalities.
Something like
armv8: ls1028a: add LS1027A, LS1018A, LS1017A support
you can skip this line in description

--priyankajain
>Add LS1027A, LS1018A and LS1017A  personalities support to LS1028A
>processor soc family.
>
>LS1028A processor is the prime personality of LS1028A soc family.
>LS1027A processor is a lower funtionality version of QorIQ LS1028A which does
>not support the multimedia subsystems, such as LCD controller, GPU, and eDP
>PHY.
>The QorIQ LS1018A and LS1017A are low power versions of the QorIQ LS1028A
>and LS1027A processors, respectively which integrate single 64-bit Arm A72
>core.
>
>Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
>---
>v2:
>	- refine description
> arch/arm/cpu/armv8/fsl-layerscape/cpu.c        | 3 +++
> arch/arm/include/asm/arch-fsl-layerscape/soc.h | 3 +++
> 2 files changed, 6 insertions(+)
>
>diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>index 3e2a24fe80..dee96afe2d 100644
>--- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>+++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>@@ -58,6 +58,9 @@ static struct cpu_type cpu_type_list[] = {
> 	CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
> 	CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
> 	CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
>+	CPU_TYPE_ENTRY(LS1017A, LS1017A, 1),
>+	CPU_TYPE_ENTRY(LS1018A, LS1018A, 1),
>+	CPU_TYPE_ENTRY(LS1027A, LS1027A, 2),
> 	CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
> 	CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
> 	CPU_TYPE_ENTRY(LS1084A, LS1084A, 8),
>diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>
>--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>@@ -83,6 +83,9 @@ enum boot_src get_boot_src(void);
> /* LS1043A/LS1023A 23x23 package silicon has different value of VAR_PER */
> #define SVR_LS1043A_P23		0x879202
> #define SVR_LS1023A_P23		0x87920A
>+#define SVR_LS1017A		0x870B24
>+#define SVR_LS1018A		0x870B20
>+#define SVR_LS1027A		0x870B04
> #define SVR_LS1028A		0x870B00
> #define SVR_LS1046A		0x870700
> #define SVR_LS1026A		0x870708
>--
>2.17.1
>
>_______________________________________________
>U-Boot mailing list
>U-Boot at lists.denx.de
>https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.de
>nx.de%2Flistinfo%2Fu-
>boot&amp;data=02%7C01%7Cpriyanka.jain%40nxp.com%7Cad5af7711fa6403
>9450208d73c16cc16%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C
>637043940922465590&amp;sdata=dtSR0EQhGhJYBzhKAOWWGCMRbxYax%2F
>uuJmKY%2FKAhQBY%3D&amp;reserved=0

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

* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
  2019-09-25  5:04 ` Priyanka Jain
@ 2019-09-25  5:35   ` Andy Tang
  2019-09-25  5:43     ` Priyanka Jain
  0 siblings, 1 reply; 6+ messages in thread
From: Andy Tang @ 2019-09-25  5:35 UTC (permalink / raw)
  To: u-boot

Hi Priyanka,

Please see my reply inline.

> -----Original Message-----
> From: Priyanka Jain
> Sent: 2019年9月25日 13:05
> To: Andy Tang <andy.tang@nxp.com>; Priyanka Jain <priyanka.jain@nxp.com>
> Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
> Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
> support
> 
> 
> 
> >-----Original Message-----
> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Yuantian Tang
> >Sent: Wednesday, September 18, 2019 2:21 PM
> >To: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
> >Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
> >Subject: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
> >support
> >
> Please update subject to be more specific about Soc personalities.
> Something like
> armv8: ls1028a: add LS1027A, LS1018A, LS1017A support you can skip this
> line in description
Any reason it must be put in patch subject?

BR,
Andy
> 
> --priyankajain
> >Add LS1027A, LS1018A and LS1017A  personalities support to LS1028A
> >processor soc family.
> >
> >LS1028A processor is the prime personality of LS1028A soc family.
> >LS1027A processor is a lower funtionality version of QorIQ LS1028A
> >which does not support the multimedia subsystems, such as LCD
> >controller, GPU, and eDP PHY.
> >The QorIQ LS1018A and LS1017A are low power versions of the QorIQ
> >LS1028A and LS1027A processors, respectively which integrate single
> >64-bit Arm A72 core.
> >
> >Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> >---
> >v2:
> >	- refine description
> > arch/arm/cpu/armv8/fsl-layerscape/cpu.c        | 3 +++
> > arch/arm/include/asm/arch-fsl-layerscape/soc.h | 3 +++
> > 2 files changed, 6 insertions(+)
> >
> >diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >index 3e2a24fe80..dee96afe2d 100644
> >--- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >+++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >@@ -58,6 +58,9 @@ static struct cpu_type cpu_type_list[] = {
> > 	CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
> > 	CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
> > 	CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
> >+	CPU_TYPE_ENTRY(LS1017A, LS1017A, 1),
> >+	CPU_TYPE_ENTRY(LS1018A, LS1018A, 1),
> >+	CPU_TYPE_ENTRY(LS1027A, LS1027A, 2),
> > 	CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
> > 	CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
> > 	CPU_TYPE_ENTRY(LS1084A, LS1084A, 8),
> >diff --git a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >
> >--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >@@ -83,6 +83,9 @@ enum boot_src get_boot_src(void);
> > /* LS1043A/LS1023A 23x23 package silicon has different value of VAR_PER
> */
> > #define SVR_LS1043A_P23		0x879202
> > #define SVR_LS1023A_P23		0x87920A
> >+#define SVR_LS1017A		0x870B24
> >+#define SVR_LS1018A		0x870B20
> >+#define SVR_LS1027A		0x870B04
> > #define SVR_LS1028A		0x870B00
> > #define SVR_LS1046A		0x870700
> > #define SVR_LS1026A		0x870708
> >--
> >2.17.1
> >
> >_______________________________________________
> >U-Boot mailing list
> >U-Boot at lists.denx.de
> >https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists
> >.de
> >nx.de%2Flistinfo%2Fu-
> >boot&amp;data=02%7C01%7Cpriyanka.jain%40nxp.com%7Cad5af7711fa64
> 03
> >9450208d73c16cc16%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%
> 7C
> >637043940922465590&amp;sdata=dtSR0EQhGhJYBzhKAOWWGCMRbxYax
> %2F
> >uuJmKY%2FKAhQBY%3D&amp;reserved=0

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

* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
  2019-09-25  5:35   ` Andy Tang
@ 2019-09-25  5:43     ` Priyanka Jain
  2019-09-25  6:10       ` Andy Tang
  0 siblings, 1 reply; 6+ messages in thread
From: Priyanka Jain @ 2019-09-25  5:43 UTC (permalink / raw)
  To: u-boot



>-----Original Message-----
>From: Andy Tang
>Sent: Wednesday, September 25, 2019 11:06 AM
>To: Priyanka Jain <priyanka.jain@nxp.com>
>Cc: u-boot at lists.denx.de
>Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
>support
>
>Hi Priyanka,
>
>Please see my reply inline.
>
>> -----Original Message-----
>> From: Priyanka Jain
>> Sent: 2019年9月25日 13:05
>> To: Andy Tang <andy.tang@nxp.com>; Priyanka Jain
>> <priyanka.jain@nxp.com>
>> Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
>> Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more
>> personalities support
>>
>>
>>
>> >-----Original Message-----
>> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Yuantian
>> >Tang
>> >Sent: Wednesday, September 18, 2019 2:21 PM
>> >To: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
>> >Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
>> >Subject: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
>> >support
>> >
>> Please update subject to be more specific about Soc personalities.
>> Something like
>> armv8: ls1028a: add LS1027A, LS1018A, LS1017A support you can skip
>> this line in description
>Any reason it must be put in patch subject?
It’s a suggestion as subject are supposed to specific summary about the content of patch
"Add more personalities" is a bit vague
--priyankajain
>
>BR,
>Andy
>>
>> --priyankajain
>> >Add LS1027A, LS1018A and LS1017A  personalities support to LS1028A
>> >processor soc family.
>> >
>> >LS1028A processor is the prime personality of LS1028A soc family.
>> >LS1027A processor is a lower funtionality version of QorIQ LS1028A
>> >which does not support the multimedia subsystems, such as LCD
>> >controller, GPU, and eDP PHY.
>> >The QorIQ LS1018A and LS1017A are low power versions of the QorIQ
>> >LS1028A and LS1027A processors, respectively which integrate single
>> >64-bit Arm A72 core.
>> >
>> >Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
>> >---
>> >v2:
>> >	- refine description
>> > arch/arm/cpu/armv8/fsl-layerscape/cpu.c        | 3 +++
>> > arch/arm/include/asm/arch-fsl-layerscape/soc.h | 3 +++
>> > 2 files changed, 6 insertions(+)
>> >
>> >diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>> >b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>> >index 3e2a24fe80..dee96afe2d 100644
>> >--- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>> >+++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
>> >@@ -58,6 +58,9 @@ static struct cpu_type cpu_type_list[] = {
>> > 	CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
>> > 	CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
>> > 	CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
>> >+	CPU_TYPE_ENTRY(LS1017A, LS1017A, 1),
>> >+	CPU_TYPE_ENTRY(LS1018A, LS1018A, 1),
>> >+	CPU_TYPE_ENTRY(LS1027A, LS1027A, 2),
>> > 	CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
>> > 	CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
>> > 	CPU_TYPE_ENTRY(LS1084A, LS1084A, 8), diff --git
>> >a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>> >b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>> >
>> >--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>> >+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
>> >@@ -83,6 +83,9 @@ enum boot_src get_boot_src(void);
>> > /* LS1043A/LS1023A 23x23 package silicon has different value of
>> >VAR_PER
>> */
>> > #define SVR_LS1043A_P23		0x879202
>> > #define SVR_LS1023A_P23		0x87920A
>> >+#define SVR_LS1017A		0x870B24
>> >+#define SVR_LS1018A		0x870B20
>> >+#define SVR_LS1027A		0x870B04
>> > #define SVR_LS1028A		0x870B00
>> > #define SVR_LS1046A		0x870700
>> > #define SVR_LS1026A		0x870708
>> >--
>> >2.17.1
>> >
>> >_______________________________________________
>> >U-Boot mailing list
>> >U-Boot at lists.denx.de
>> >https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flis
>> >ts
>> >.de
>> >nx.de%2Flistinfo%2Fu-
>> >boot&amp;data=02%7C01%7Cpriyanka.jain%40nxp.com%7Cad5af7711fa64
>> 03
>>
>>9450208d73c16cc16%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%
>> 7C
>> >637043940922465590&amp;sdata=dtSR0EQhGhJYBzhKAOWWGCMRbxYax
>> %2F
>> >uuJmKY%2FKAhQBY%3D&amp;reserved=0

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

* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
  2019-09-25  5:43     ` Priyanka Jain
@ 2019-09-25  6:10       ` Andy Tang
  0 siblings, 0 replies; 6+ messages in thread
From: Andy Tang @ 2019-09-25  6:10 UTC (permalink / raw)
  To: u-boot

Hi Priyanka,

Please see my reply inline.

> -----Original Message-----
> From: Priyanka Jain
> Sent: 2019年9月25日 13:43
> To: Andy Tang <andy.tang@nxp.com>
> Cc: u-boot at lists.denx.de
> Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
> support
> 
> 
> 
> >-----Original Message-----
> >From: Andy Tang
> >Sent: Wednesday, September 25, 2019 11:06 AM
> >To: Priyanka Jain <priyanka.jain@nxp.com>
> >Cc: u-boot at lists.denx.de
> >Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
> >support
> >
> >Hi Priyanka,
> >
> >Please see my reply inline.
> >
> >> -----Original Message-----
> >> From: Priyanka Jain
> >> Sent: 2019年9月25日 13:05
> >> To: Andy Tang <andy.tang@nxp.com>; Priyanka Jain
> >> <priyanka.jain@nxp.com>
> >> Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
> >> Subject: RE: [U-Boot] [PATCH v2] armv8: ls1028a: add more
> >> personalities support
> >>
> >>
> >>
> >> >-----Original Message-----
> >> >From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Yuantian
> >> >Tang
> >> >Sent: Wednesday, September 18, 2019 2:21 PM
> >> >To: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
> >> >Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
> >> >Subject: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities
> >> >support
> >> >
> >> Please update subject to be more specific about Soc personalities.
> >> Something like
> >> armv8: ls1028a: add LS1027A, LS1018A, LS1017A support you can skip
> >> this line in description
> >Any reason it must be put in patch subject?
> It’s a suggestion as subject are supposed to specific summary about the
> content of patch "Add more personalities" is a bit vague --priyankajain
We can put the "more personalities" in subject or in description.
Either way is ok. I prefer to put it in description. Subject should be as concise as possible.

Thanks for your suggestion.
BR,
Andy
> >
> >BR,
> >Andy
> >>
> >> --priyankajain
> >> >Add LS1027A, LS1018A and LS1017A  personalities support to LS1028A
> >> >processor soc family.
> >> >
> >> >LS1028A processor is the prime personality of LS1028A soc family.
> >> >LS1027A processor is a lower funtionality version of QorIQ LS1028A
> >> >which does not support the multimedia subsystems, such as LCD
> >> >controller, GPU, and eDP PHY.
> >> >The QorIQ LS1018A and LS1017A are low power versions of the QorIQ
> >> >LS1028A and LS1027A processors, respectively which integrate single
> >> >64-bit Arm A72 core.
> >> >
> >> >Signed-off-by: Tang Yuantian <andy.tang@nxp.com>
> >> >---
> >> >v2:
> >> >	- refine description
> >> > arch/arm/cpu/armv8/fsl-layerscape/cpu.c        | 3 +++
> >> > arch/arm/include/asm/arch-fsl-layerscape/soc.h | 3 +++
> >> > 2 files changed, 6 insertions(+)
> >> >
> >> >diff --git a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >> >b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >> >index 3e2a24fe80..dee96afe2d 100644
> >> >--- a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >> >+++ b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
> >> >@@ -58,6 +58,9 @@ static struct cpu_type cpu_type_list[] = {
> >> > 	CPU_TYPE_ENTRY(LS1026A, LS1026A, 2),
> >> > 	CPU_TYPE_ENTRY(LS2040A, LS2040A, 4),
> >> > 	CPU_TYPE_ENTRY(LS1012A, LS1012A, 1),
> >> >+	CPU_TYPE_ENTRY(LS1017A, LS1017A, 1),
> >> >+	CPU_TYPE_ENTRY(LS1018A, LS1018A, 1),
> >> >+	CPU_TYPE_ENTRY(LS1027A, LS1027A, 2),
> >> > 	CPU_TYPE_ENTRY(LS1028A, LS1028A, 2),
> >> > 	CPU_TYPE_ENTRY(LS1088A, LS1088A, 8),
> >> > 	CPU_TYPE_ENTRY(LS1084A, LS1084A, 8), diff --git
> >> >a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >> >b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >> >
> >> >--- a/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >> >+++ b/arch/arm/include/asm/arch-fsl-layerscape/soc.h
> >> >@@ -83,6 +83,9 @@ enum boot_src get_boot_src(void);
> >> > /* LS1043A/LS1023A 23x23 package silicon has different value of
> >> >VAR_PER
> >> */
> >> > #define SVR_LS1043A_P23		0x879202
> >> > #define SVR_LS1023A_P23		0x87920A
> >> >+#define SVR_LS1017A		0x870B24
> >> >+#define SVR_LS1018A		0x870B20
> >> >+#define SVR_LS1027A		0x870B04
> >> > #define SVR_LS1028A		0x870B00
> >> > #define SVR_LS1046A		0x870700
> >> > #define SVR_LS1026A		0x870708
> >> >--
> >> >2.17.1
> >> >
> >> >_______________________________________________
> >> >U-Boot mailing list
> >> >U-Boot at lists.denx.de
> >> >https://eur01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fli
> >> >s
> >> >ts
> >> >.de
> >> >nx.de%2Flistinfo%2Fu-
> >> >boot&amp;data=02%7C01%7Cpriyanka.jain%40nxp.com%7Cad5af7711f
> a64
> >> 03
> >>
> >>9450208d73c16cc16%7C686ea1d3bc2b4c6fa92cd99c5c301635%7C0%7C0
> %
> >> 7C
> >> >637043940922465590&amp;sdata=dtSR0EQhGhJYBzhKAOWWGCMRbxY
> ax
> >> %2F
> >> >uuJmKY%2FKAhQBY%3D&amp;reserved=0

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

* [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
  2019-09-18  8:50 [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support Yuantian Tang
  2019-09-25  5:04 ` Priyanka Jain
@ 2019-10-22  4:31 ` Priyanka Jain
  1 sibling, 0 replies; 6+ messages in thread
From: Priyanka Jain @ 2019-10-22  4:31 UTC (permalink / raw)
  To: u-boot



>-----Original Message-----
>From: U-Boot <u-boot-bounces@lists.denx.de> On Behalf Of Yuantian Tang
>Sent: Wednesday, September 18, 2019 2:21 PM
>To: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
>Cc: Andy Tang <andy.tang@nxp.com>; u-boot at lists.denx.de
>Subject: [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support
>
>Add LS1027A, LS1018A and LS1017A  personalities support to LS1028A
>processor soc family.
>
>LS1028A processor is the prime personality of LS1028A soc family.
>LS1027A processor is a lower funtionality version of QorIQ LS1028A which
>does not support the multimedia subsystems, such as LCD controller, GPU,
>and eDP PHY.
>The QorIQ LS1018A and LS1017A are low power versions of the QorIQ LS1028A
>and LS1027A processors, respectively which integrate single 64-bit Arm A72
>core.
>
>Signed-off-by: Tang Yuantian <andy.tang@nxp.com>

<snip>

Slight update in description.
Applied to fsl-qoriq master, awaiting upstream.

Thanks
priyankajain

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

end of thread, other threads:[~2019-10-22  4:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-18  8:50 [U-Boot] [PATCH v2] armv8: ls1028a: add more personalities support Yuantian Tang
2019-09-25  5:04 ` Priyanka Jain
2019-09-25  5:35   ` Andy Tang
2019-09-25  5:43     ` Priyanka Jain
2019-09-25  6:10       ` Andy Tang
2019-10-22  4:31 ` Priyanka Jain

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.