diff options
| author | Ahmed Mansour <ahmed.mansour@nxp.com> | 2017-12-15 16:01:00 -0500 | 
|---|---|---|
| committer | York Sun <york.sun@nxp.com> | 2018-01-10 12:28:47 -0800 | 
| commit | 44262327aa288b111a41ce067bed235759db4c1c (patch) | |
| tree | ca3e7a54d6e094a0c28b4aeb106374ef5c2c1692 /arch/powerpc/cpu/mpc85xx/cpu_init.c | |
| parent | 1b76f3b8ab70f221e4272026cabe0b60953eb8cf (diff) | |
drivers/misc: Share qbman init between archs
This patch adds changes necessary to move functionality present in
PowerPC folders with ARM architectures that have DPAA1 QBMan hardware
- Create new board/freescale/common/fsl_portals.c to house shared
  device tree fixups for DPAA1 devices with ARM and PowerPC cores
- Add new header file to top includes directory to allow files in
  both architectures to grab the function prototypes
- Port inhibit_portals() from PowerPC to ARM. This function is used in
  setup to disable interrupts on all QMan and BMan portals. It is
  needed because the interrupts are enabled by default for all portals
  including unused/uninitialised portals. When the kernel attempts to
  go to deep sleep the unused portals prevent it from doing so
Signed-off-by: Ahmed Mansour <ahmed.mansour@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc85xx/cpu_init.c')
| -rw-r--r-- | arch/powerpc/cpu/mpc85xx/cpu_init.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/arch/powerpc/cpu/mpc85xx/cpu_init.c b/arch/powerpc/cpu/mpc85xx/cpu_init.c index ea46e498534..b350bfeb065 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu_init.c +++ b/arch/powerpc/cpu/mpc85xx/cpu_init.c @@ -26,6 +26,7 @@  #ifdef CONFIG_FSL_CORENET  #include <asm/fsl_portals.h>  #include <asm/fsl_liodn.h> +#include <fsl_qbman.h>  #endif  #include <fsl_usb.h>  #include <hwconfig.h> @@ -804,7 +805,7 @@ int cpu_init_r(void)  #ifdef CONFIG_FSL_CORENET  	set_liodns();  #ifdef CONFIG_SYS_DPAA_QBMAN -	setup_portals(); +	setup_qbman_portals();  #endif  #endif | 
