Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/fdt Increase max PIC sources



details:   https://anonhg.NetBSD.org/src/rev/7057d40103d6
branches:  trunk
changeset: 445702:7057d40103d6
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Fri Nov 09 23:35:06 2018 +0000

description:
Increase max PIC sources

diffstat:

 sys/arch/arm/fdt/fdt_intr.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r 0791649a671c -r 7057d40103d6 sys/arch/arm/fdt/fdt_intr.h
--- a/sys/arch/arm/fdt/fdt_intr.h       Fri Nov 09 23:34:20 2018 +0000
+++ b/sys/arch/arm/fdt/fdt_intr.h       Fri Nov 09 23:35:06 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: fdt_intr.h,v 1.4 2018/09/05 10:20:47 jmcneill Exp $ */
+/* $NetBSD: fdt_intr.h,v 1.5 2018/11/09 23:35:06 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared McNeill <jmcneill%invisible.ca@localhost>
@@ -36,8 +36,8 @@
 #define        __HAVE_PIC_SET_PRIORITY
 #define        __HAVE_PIC_PENDING_INTRS
 
-#define        PIC_MAXSOURCES          480
-#define        PIC_MAXMAXSOURCES       (PIC_MAXSOURCES + 32)
+#define        PIC_MAXSOURCES          8192
+#define        PIC_MAXMAXSOURCES       (PIC_MAXSOURCES * 2 + 32)
 
 void   arm_fdt_irq_set_handler(void (*)(void *));
 void   arm_fdt_irq_handler(void *);



Home | Main Index | Thread Index | Old Index