summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-fsl-layerscape/speed.h
diff options
context:
space:
mode:
authorAhmed Mansour <ahmed.mansour@nxp.com>2017-12-15 16:01:00 -0500
committerYork Sun <york.sun@nxp.com>2018-01-10 12:28:47 -0800
commit44262327aa288b111a41ce067bed235759db4c1c (patch)
treeca3e7a54d6e094a0c28b4aeb106374ef5c2c1692 /arch/arm/include/asm/arch-fsl-layerscape/speed.h
parent1b76f3b8ab70f221e4272026cabe0b60953eb8cf (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/arm/include/asm/arch-fsl-layerscape/speed.h')
-rw-r--r--arch/arm/include/asm/arch-fsl-layerscape/speed.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/speed.h b/arch/arm/include/asm/arch-fsl-layerscape/speed.h
index de795f6056..e94fe8e254 100644
--- a/arch/arm/include/asm/arch-fsl-layerscape/speed.h
+++ b/arch/arm/include/asm/arch-fsl-layerscape/speed.h
@@ -7,4 +7,7 @@
#ifndef _FSL_LAYERSCAPE_SPEED_H
#define _FSL_LAYERSCAPE_SPEED_H
void get_sys_info(struct sys_info *sys_info);
+#ifdef CONFIG_SYS_DPAA_QBMAN
+unsigned long get_qman_freq(void);
+#endif
#endif /* _FSL_LAYERSCAPE_SPEED_H */