summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2014-12-01 00:51:51 +0000
committerJonas Gorski <jogo@openwrt.org>2014-12-01 00:51:51 +0000
commitef4f69adc0a42e81368c2e52c2f5cf12c4343101 (patch)
tree58bdc9e09cce7b7c0de44295b9ce2e2e561dfa27 /target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch
parentbb312899f6b6c2a979f39e56f0ff8659b5a57a9b (diff)
downloadmaster-31e0f0ae-ef4f69adc0a42e81368c2e52c2f5cf12c4343101.tar.gz
master-31e0f0ae-ef4f69adc0a42e81368c2e52c2f5cf12c4343101.tar.bz2
master-31e0f0ae-ef4f69adc0a42e81368c2e52c2f5cf12c4343101.zip
brcm63xx: convert to irq domain
Add irq-domain aware irqchip drivers for the irq controllers of bcm63xx and switch to use them. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 43454
Diffstat (limited to 'target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch')
-rw-r--r--target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch b/target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch
new file mode 100644
index 0000000000..e05c91d931
--- /dev/null
+++ b/target/linux/brcm63xx/patches-3.14/310-cfe_simplify_detection.patch
@@ -0,0 +1,20 @@
+--- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_board.h
++++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_board.h
+@@ -1,6 +1,8 @@
+ #ifndef BCM63XX_BOARD_H_
+ #define BCM63XX_BOARD_H_
+
++#include <asm/bootinfo.h>
++
+ const char *board_get_name(void);
+
+ void board_prom_init(void);
+@@ -9,4 +11,8 @@ void board_setup(void);
+
+ int board_register_devices(void);
+
++static inline bool bcm63xx_is_cfe_present(void) {
++ return fw_arg3 == 0x43464531;
++}
++
+ #endif /* ! BCM63XX_BOARD_H_ */