diff mbox series

parisc: fix iosapic address compare

Message ID 20190318141301.14750-1-svens@stackframe.org (mailing list archive)
State Superseded, archived
Headers show
Series parisc: fix iosapic address compare | expand

Commit Message

Sven Schnelle March 18, 2019, 2:13 p.m. UTC
Hi Helge,

i just updated my C3750 to latest git, and got the kernel oops below. It looks
like the change to using F_EXTEND breaks using 32 bit kernels on at least my
C3750. Not sure whether we should revert the F_EXTEND change, or just cast
the other side of the compare to long. The patch below does this.

      _______________________________ 
    < Your System ate a SPARC! Gah! >
     ------------------------------- 
            \   ^__^
                (__)\       )\/\
                 U  ||----w |
                    ||     ||
swapper (pid 1): Unknown kernel breakpoint (code 9)
CPU: 0 PID: 1 Comm: swapper Not tainted 5.0.0+ #60
Hardware name: 9000/785/C3750

     YZrvWESTHLNXBCVMcbcbcbcbOGFRQPDI
PSW: 00000000000001000000000000001111 Not tainted
r00-03  0004000f 109bf020 10451e1c 4fc58340
r04-07  109bf730 00000000 109bf020 00002710
r08-11  10852cf4 10852d08 1093d800 1093d800
r12-15  4fc43470 0000ffff 10998820 10459834
r16-19  101c9f28 00000000 38be5e00 00000000
r20-23  38be5e00 38000000 10459834 00000000
r24-27  3d090000 00000000 4fc43400 10902020
r28-31  00000000 38be5e00 4fc583c0 101165d4
sr00-03  00000000 00000000 00000000 00000000
sr04-07  00000000 00000000 00000000 00000000

IASQ: 00000000 00000000 IAOQ: 10459adc 10459ae0
 IIR: 03ffe01f    ISR: 102400ff  IOR: 1605835c
 CPU:        0   CR30: 4fc58000 CR31: ffffffff
 ORIG_R28: 109a8820
 IAOQ[0]: superio_init+0x2a8/0x508
 IAOQ[1]: superio_init+0x2ac/0x508
 RP(r2): pci_do_fixups+0x12c/0x208
Backtrace:
 [<10451e1c>] pci_do_fixups+0x12c/0x208
 [<101165d4>] 0x101165d4
 [<10156184>] do_one_initcall+0xa0/0x1d8
 [<101014dc>] 0x101014dc
 [<10762fd8>] kernel_init+0x20/0x1a0
 [<1015e01c>] ret_from_kernel_thread+0x1c/0x24

CPU: 0 PID: 1 Comm: swapper Not tainted 5.0.0+ #60
Hardware name: 9000/785/C3750
Backtrace:
 [<101593a4>] show_stack+0x3c/0x4c
 [<107494a8>] dump_stack+0x3c/0x4c
 [<1015953c>] die_if_kernel+0x16c/0x2ac
 [<1015a16c>] handle_interruption+0x91c/0x960
 [<10459adc>] superio_init+0x2a8/0x508
 [<10451e1c>] pci_do_fixups+0x12c/0x208
 [<101165d4>] 0x101165d4
 [<10156184>] do_one_initcall+0xa0/0x1d8
 [<101014dc>] 0x101014dc
 [<10762fd8>] kernel_init+0x20/0x1a0
 [<1015e01c>] ret_from_kernel_thread+0x1c/0x24

---[ end trace 7170ce927b5084fc ]---

Regards
Sven

Comments

John David Anglin March 18, 2019, 3:32 p.m. UTC | #1
On 2019-03-18 10:13 a.m., Sven Schnelle wrote:
> Using F_EXTEND doesn't work here as it casts hpa to long,
Actually, it casts to unsigned long.

Dave
Helge Deller March 18, 2019, 10:03 p.m. UTC | #2
Hi Sven,

* Sven Schnelle <svens@stackframe.org>:
> i just updated my C3750 to latest git, and got the kernel oops below. It looks
> like the change to using F_EXTEND breaks using 32 bit kernels on at least my
> C3750. Not sure whether we should revert the F_EXTEND change, or just cast
> the other side of the compare to long. The patch below does this.

Thanks for testing!
I think, as suggested by you, revertig parts of my patch makes most sense.
I've committed the patch below to my for-next tree.
Can you check if it works for you?

Helge

--------------------
From dae50289effc106df023796eb25d602244e73ac1 Mon Sep 17 00:00:00 2001
From: Helge Deller <deller@gmx.de>
Date: Mon, 18 Mar 2019 22:56:15 +0100
Subject: [PATCH] Revert: parisc: Use F_EXTEND() macro in iosapic code

Revert parts of commit 97d7e2e3fd8a ("parisc: Use F_EXTEND() macro in
iosapic code").  It breaks booting the 32-bit kernel.

Reported-by: Sven Schnelle <svens@stackframe.org>
Fixes: 97d7e2e3fd8a ("parisc: Use F_EXTEND() macro in iosapic code")
Signed-off-by: Helge Deller <deller@gmx.de>

diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c
index 1be571c20062..6bad04cbb1d3 100644
--- a/drivers/parisc/iosapic.c
+++ b/drivers/parisc/iosapic.c
@@ -157,8 +157,12 @@
 #define DBG_IRT(x...)
 #endif
 
+#ifdef CONFIG_64BIT
+#define COMPARE_IRTE_ADDR(irte, hpa)	((irte)->dest_iosapic_addr == (hpa))
+#else
 #define COMPARE_IRTE_ADDR(irte, hpa)	\
-		((irte)->dest_iosapic_addr == F_EXTEND(hpa))
+		((irte)->dest_iosapic_addr == ((hpa) | 0xffffffff00000000ULL))
+#endif
 
 #define IOSAPIC_REG_SELECT              0x00
 #define IOSAPIC_REG_WINDOW              0x10
Sven Schnelle March 19, 2019, 6:05 a.m. UTC | #3
Hi Helge,

On Mon, Mar 18, 2019 at 11:03:06PM +0100, Helge Deller wrote:
> Hi Sven,
> 
> * Sven Schnelle <svens@stackframe.org>:
> > i just updated my C3750 to latest git, and got the kernel oops below. It looks
> > like the change to using F_EXTEND breaks using 32 bit kernels on at least my
> > C3750. Not sure whether we should revert the F_EXTEND change, or just cast
> > the other side of the compare to long. The patch below does this.
> 
> Thanks for testing!
> I think, as suggested by you, revertig parts of my patch makes most sense.
> I've committed the patch below to my for-next tree.
> Can you check if it works for you?

Yes, works for me. The good thing about this Bug is that i was forced
to read the NS87560 driver source and have an idea now why it's called
SuckyIO :)

Tested-by: Sven Schnelle <svens@stackframe.org>

Regards
Sven
diff mbox series

Patch

diff --git a/drivers/parisc/iosapic.c b/drivers/parisc/iosapic.c
index 1be571c20062..1b0c3139d971 100644
--- a/drivers/parisc/iosapic.c
+++ b/drivers/parisc/iosapic.c
@@ -158,7 +158,7 @@ 
 #endif
 
 #define COMPARE_IRTE_ADDR(irte, hpa)	\
-		((irte)->dest_iosapic_addr == F_EXTEND(hpa))
+		((long)(irte)->dest_iosapic_addr == F_EXTEND(hpa))
 
 #define IOSAPIC_REG_SELECT              0x00
 #define IOSAPIC_REG_WINDOW              0x10