diff mbox

[U-Boot,1/4] fsl-layerscape/ls1043aqds: Integrate FSL PPA

Message ID 1492152504-37632-1-git-send-email-Zhiqiang.Hou@nxp.com
State Accepted
Commit e1b09290596ddc4604253a54a4fc313fc11770c9
Delegated to: York Sun
Headers show

Commit Message

Z.Q. Hou April 14, 2017, 6:48 a.m. UTC
From: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>

The PPA is a EL3 firmware, which support PSCI, hotplug,
power-management features etc.

Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
---
 board/freescale/ls1043aqds/ls1043aqds.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

York Sun April 26, 2017, 10:20 p.m. UTC | #1
On 04/14/2017 12:03 AM, Zhiqiang Hou wrote:
> From: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
>
> The PPA is a EL3 firmware, which support PSCI, hotplug,
> power-management features etc.
>
> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
> ---
>  board/freescale/ls1043aqds/ls1043aqds.c | 5 +++++
>  1 file changed, 5 insertions(+)

This set (except the last patch) is applied to fsl-qoriq master, with 
minor change in tag (subject). The last patch is not need due to a 
similar patch applied earlier.

York
diff mbox

Patch

diff --git a/board/freescale/ls1043aqds/ls1043aqds.c b/board/freescale/ls1043aqds/ls1043aqds.c
index 6507c09..0a6c3a8 100644
--- a/board/freescale/ls1043aqds/ls1043aqds.c
+++ b/board/freescale/ls1043aqds/ls1043aqds.c
@@ -10,6 +10,7 @@ 
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/fsl_serdes.h>
+#include <asm/arch/ppa.h>
 #include <asm/arch/fdt.h>
 #include <asm/arch/mmu.h>
 #include <asm/arch/soc.h>
@@ -324,6 +325,10 @@  int board_init(void)
 	config_serdes_mux();
 #endif
 
+#ifdef CONFIG_FSL_LS_PPA
+	ppa_init();
+#endif
+
 	return 0;
 }