All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc/powernv: Tell OPAL about our MMU mode
@ 2017-06-25 20:05 Benjamin Herrenschmidt
  2017-06-28  5:17 ` Michael Ellerman
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Herrenschmidt @ 2017-06-25 20:05 UTC (permalink / raw)
  To: linuxppc dev list; +Cc: Stewart Smith, Michael Neuling

That will allow OPAL to configure the CPU in an optimal way.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---

The matching OPAL change has been sent to the skiboot list.

Setting those bits in the reinit() call with an older OPAL
will result in the call returning an error which Linux ignores
but it will still work in the sense that it will still honor
the other flags it understands (the endian switch ones).

 arch/powerpc/include/asm/opal-api.h    |  9 +++++++++
 arch/powerpc/platforms/powernv/opal.c  | 14 ++++++++++++--
 arch/powerpc/platforms/powernv/setup.c |  6 +++++-
 3 files changed, 26 insertions(+), 3 deletions(-)

diff --git a/arch/powerpc/include/asm/opal-api.h b/arch/powerpc/include/asm/opal-api.h
index cb3e624..85e6d88 100644
--- a/arch/powerpc/include/asm/opal-api.h
+++ b/arch/powerpc/include/asm/opal-api.h
@@ -805,6 +805,15 @@ struct OpalIoPhb3ErrorData {
 enum {
 	OPAL_REINIT_CPUS_HILE_BE	= (1 << 0),
 	OPAL_REINIT_CPUS_HILE_LE	= (1 << 1),
+
+	/* These two define the base MMU mode of the host on P9
+	 *
+	 * On P9 Nimbus DD2.0 and Cumlus (and later), KVM can still
+	 * create hash guests in "radix" mode with care (full core
+	 * switch only).
+	 */
+	OPAL_REINIT_CPUS_MMU_HASH	= (1 << 2),
+	OPAL_REINIT_CPUS_MMU_RADIX	= (1 << 3),
 };
 
 typedef struct oppanel_line {
diff --git a/arch/powerpc/platforms/powernv/opal.c b/arch/powerpc/platforms/powernv/opal.c
index 59684b4..e522d6b 100644
--- a/arch/powerpc/platforms/powernv/opal.c
+++ b/arch/powerpc/platforms/powernv/opal.c
@@ -59,6 +59,8 @@ static struct task_struct *kopald_tsk;
 
 void opal_configure_cores(void)
 {
+	uint64_t reinit_flags = 0;
+
 	/* Do the actual re-init, This will clobber all FPRs, VRs, etc...
 	 *
 	 * It will preserve non volatile GPRs and HSPRG0/1. It will
@@ -66,11 +68,19 @@ void opal_configure_cores(void)
 	 * but it might clobber a bunch.
 	 */
 #ifdef __BIG_ENDIAN__
-	opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_BE);
+	reinit_flags |= OPAL_REINIT_CPUS_HILE_BE;
 #else
-	opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_LE);
+	reinit_flags |= OPAL_REINIT_CPUS_HILE_LE;
 #endif
 
+	/* Radix MMU */
+	if (early_radix_enabled())
+		reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX;
+	else
+		reinit_flags |= OPAL_REINIT_CPUS_MMU_HASH;
+
+	opal_reinit_cpus(reinit_flags);
+
 	/* Restore some bits */
 	if (cur_cpu_spec->cpu_restore)
 		cur_cpu_spec->cpu_restore();
diff --git a/arch/powerpc/platforms/powernv/setup.c b/arch/powerpc/platforms/powernv/setup.c
index 2dc7e5f..d1cef70 100644
--- a/arch/powerpc/platforms/powernv/setup.c
+++ b/arch/powerpc/platforms/powernv/setup.c
@@ -254,8 +254,12 @@ static void pnv_kexec_cpu_down(int crash_shutdown, int secondary)
 		 * We might be running as little-endian - now that interrupts
 		 * are disabled, reset the HILE bit to big-endian so we don't
 		 * take interrupts in the wrong endian later
+		 *
+		 * We also switch to radix mode on P9 as this is compatible
+		 * with hash and will allow earlier kernels to boot.
 		 */
-		opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_BE);
+		opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_BE |
+				 OPAL_REINIT_CPUS_MMU_RADIX);
 	}
 }
 #endif /* CONFIG_KEXEC_CORE */

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/powernv: Tell OPAL about our MMU mode
  2017-06-25 20:05 [PATCH] powerpc/powernv: Tell OPAL about our MMU mode Benjamin Herrenschmidt
@ 2017-06-28  5:17 ` Michael Ellerman
  2017-06-28 13:06   ` Benjamin Herrenschmidt
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Ellerman @ 2017-06-28  5:17 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc dev list; +Cc: Stewart Smith, Michael Neuling

Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:

> That will allow OPAL to configure the CPU in an optimal way.
>
> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> ---
>
> The matching OPAL change has been sent to the skiboot list.
>
> Setting those bits in the reinit() call with an older OPAL
> will result in the call returning an error which Linux ignores
> but it will still work in the sense that it will still honor
> the other flags it understands (the endian switch ones).

My Tuleta disagrees (P8 DD2.1)

Booting with this applied, console output just stops at:

Early memory node ranges
  node   0: [mem 0x0000000000000000-0x00000007ffffffff]
  node   1: [mem 0x0000000800000000-0x0000000fffffffff]
  node  16: [mem 0x0000001000000000-0x00000017ffffffff]
  node  17: [mem 0x0000001800000000-0x0000001fffffffff]
Initmem setup node 0 [mem 0x0000000000000000-0x00000007ffffffff]
On node 0 totalpages: 524288
  DMA zone: 512 pages used for memmap
  DMA zone: 0 pages reserved
  DMA zone: 524288 pages, LIFO batch:1


Which doesn't really make sense. FSP says it's running (runtime).

The end of the OPAL log is below.

I think your patch means we're now calling slw_reinit(), whereas
previously we would skip it?

cheers


[   77.369430361,5] SkiBoot skiboot-5.4.5 starting...
...
[ 3657.439295457,7] OPAL: CPU re-init with flags: 0x1
[ 3657.439297714,5] OPAL: Switch to big-endian OS
[ 3657.439331559,6] CPU: Switching HILE on all CPUs to 0
[ 3657.439334329,7] CPU: [00000020] HID0 set to 0x0000000000000000
[ 3657.439338421,7] CPU: [00000021] HID0 set to 0x0000000000000000
[ 3657.444459269,7] CPU: [00000022] HID0 set to 0x0000000000000000
[ 3657.449579783,7] CPU: [00000023] HID0 set to 0x0000000000000000
[ 3657.454700263,7] CPU: [00000024] HID0 set to 0x0000000000000000
[ 3657.459820839,7] CPU: [00000025] HID0 set to 0x0000000000000000
[ 3657.464941340,7] CPU: [00000026] HID0 set to 0x0000000000000000
[ 3657.470061789,7] CPU: [00000027] HID0 set to 0x0000000000000000
[ 3657.475182489,7] CPU: [00000028] HID0 set to 0x0000000000000000
[ 3657.480303113,7] CPU: [00000029] HID0 set to 0x0000000000000000
[ 3657.485423724,7] CPU: [0000002a] HID0 set to 0x0000000000000000
[ 3657.490544363,7] CPU: [0000002b] HID0 set to 0x0000000000000000
[ 3657.495665019,7] CPU: [0000002c] HID0 set to 0x0000000000000000
[ 3657.500785664,7] CPU: [0000002d] HID0 set to 0x0000000000000000
[ 3657.505906312,7] CPU: [0000002e] HID0 set to 0x0000000000000000
[ 3657.511026948,7] CPU: [0000002f] HID0 set to 0x0000000000000000
[ 3658.004148353,7] CPU: [00000060] HID0 set to 0x0000000000000000
[ 3658.009268971,7] CPU: [00000061] HID0 set to 0x0000000000000000
[ 3658.014389562,7] CPU: [00000062] HID0 set to 0x0000000000000000
[ 3658.019510236,7] CPU: [00000063] HID0 set to 0x0000000000000000
[ 3658.024630888,7] CPU: [00000064] HID0 set to 0x0000000000000000
[ 3658.029751538,7] CPU: [00000065] HID0 set to 0x0000000000000000
[ 3658.034872229,7] CPU: [00000066] HID0 set to 0x0000000000000000
[ 3658.039992873,7] CPU: [00000067] HID0 set to 0x0000000000000000
[ 3658.045113621,7] CPU: [00000068] HID0 set to 0x0000000000000000
[ 3658.050234216,7] CPU: [00000069] HID0 set to 0x0000000000000000
[ 3658.055354862,7] CPU: [0000006a] HID0 set to 0x0000000000000000
[ 3658.060475496,7] CPU: [0000006b] HID0 set to 0x0000000000000000
[ 3658.065596111,7] CPU: [0000006c] HID0 set to 0x0000000000000000
[ 3658.070716747,7] CPU: [0000006d] HID0 set to 0x0000000000000000
[ 3658.075837392,7] CPU: [0000006e] HID0 set to 0x0000000000000000
[ 3658.080958012,7] CPU: [0000006f] HID0 set to 0x0000000000000000
[ 3658.086078859,7] CPU: [00000070] HID0 set to 0x0000000000000000
[ 3658.091199390,7] CPU: [00000071] HID0 set to 0x0000000000000000
[ 3658.096320012,7] CPU: [00000072] HID0 set to 0x0000000000000000
[ 3658.101440692,7] CPU: [00000073] HID0 set to 0x0000000000000000
[ 3658.106561322,7] CPU: [00000074] HID0 set to 0x0000000000000000
[ 3658.111681979,7] CPU: [00000075] HID0 set to 0x0000000000000000
[ 3658.116802652,7] CPU: [00000076] HID0 set to 0x0000000000000000
[ 3658.121923328,7] CPU: [00000077] HID0 set to 0x0000000000000000
[ 3658.127044809,7] CPU: [000000a0] HID0 set to 0x0000000000000000
[ 3658.132165386,7] CPU: [000000a1] HID0 set to 0x0000000000000000
[ 3658.137286102,7] CPU: [000000a2] HID0 set to 0x0000000000000000
[ 3658.142406857,7] CPU: [000000a3] HID0 set to 0x0000000000000000
[ 3658.147527622,7] CPU: [000000a4] HID0 set to 0x0000000000000000
[ 3658.152648378,7] CPU: [000000a5] HID0 set to 0x0000000000000000
[ 3658.157769125,7] CPU: [000000a6] HID0 set to 0x0000000000000000
[ 3658.162889853,7] CPU: [000000a7] HID0 set to 0x0000000000000000
[ 3658.168010827,7] CPU: [000000b0] HID0 set to 0x0000000000000000
[ 3658.173131569,7] CPU: [000000b1] HID0 set to 0x0000000000000000
[ 3658.178252302,7] CPU: [000000b2] HID0 set to 0x0000000000000000
[ 3658.183373016,7] CPU: [000000b3] HID0 set to 0x0000000000000000
[ 3658.188493773,7] CPU: [000000b4] HID0 set to 0x0000000000000000
[ 3658.193614520,7] CPU: [000000b5] HID0 set to 0x0000000000000000
[ 3658.198735277,7] CPU: [000000b6] HID0 set to 0x0000000000000000
[ 3658.203856013,7] CPU: [000000b7] HID0 set to 0x0000000000000000
[ 3658.208977363,7] CPU: [000000e0] HID0 set to 0x0000000000000000
[ 3658.214098100,7] CPU: [000000e1] HID0 set to 0x0000000000000000
[ 3658.219218744,7] CPU: [000000e2] HID0 set to 0x0000000000000000
[ 3658.224339507,7] CPU: [000000e3] HID0 set to 0x0000000000000000
[ 3658.229460192,7] CPU: [000000e4] HID0 set to 0x0000000000000000
[ 3658.234580944,7] CPU: [000000e5] HID0 set to 0x0000000000000000
[ 3658.239701692,7] CPU: [000000e6] HID0 set to 0x0000000000000000
[ 3658.244822461,7] CPU: [000000e7] HID0 set to 0x0000000000000000
[ 3658.249943268,7] CPU: [000000e8] HID0 set to 0x0000000000000000
[ 3658.255063970,7] CPU: [000000e9] HID0 set to 0x0000000000000000
[ 3658.260184680,7] CPU: [000000ea] HID0 set to 0x0000000000000000
[ 3658.265305418,7] CPU: [000000eb] HID0 set to 0x0000000000000000
[ 3658.270426166,7] CPU: [000000ec] HID0 set to 0x0000000000000000
[ 3658.275546960,7] CPU: [000000ed] HID0 set to 0x0000000000000000
[ 3658.280667704,7] CPU: [000000ee] HID0 set to 0x0000000000000000
[ 3658.285788453,7] CPU: [000000ef] HID0 set to 0x0000000000000000
[ 3658.290909290,7] CPU: [000000f0] HID0 set to 0x0000000000000000
[ 3658.296030018,7] CPU: [000000f1] HID0 set to 0x0000000000000000
[ 3658.301150744,7] CPU: [000000f2] HID0 set to 0x0000000000000000
[ 3658.306271509,7] CPU: [000000f3] HID0 set to 0x0000000000000000
[ 3658.311392259,7] CPU: [000000f4] HID0 set to 0x0000000000000000
[ 3658.316513023,7] CPU: [000000f5] HID0 set to 0x0000000000000000
[ 3658.321633750,7] CPU: [000000f6] HID0 set to 0x0000000000000000
[ 3658.326754495,7] CPU: [000000f7] HID0 set to 0x0000000000000000
[ 3658.331897723,7] CPU: [00000820] HID0 set to 0x0000000000000000
[ 3658.337018407,7] CPU: [00000821] HID0 set to 0x0000000000000000
[ 3658.342139177,7] CPU: [00000822] HID0 set to 0x0000000000000000
[ 3658.347260018,7] CPU: [00000823] HID0 set to 0x0000000000000000
[ 3658.352380819,7] CPU: [00000824] HID0 set to 0x0000000000000000
[ 3658.357501615,7] CPU: [00000825] HID0 set to 0x0000000000000000
[ 3658.362622416,7] CPU: [00000826] HID0 set to 0x0000000000000000
[ 3658.367743246,7] CPU: [00000827] HID0 set to 0x0000000000000000
[ 3658.372864151,7] CPU: [00000828] HID0 set to 0x0000000000000000
[ 3658.377984944,7] CPU: [00000829] HID0 set to 0x0000000000000000
[ 3658.383105717,7] CPU: [0000082a] HID0 set to 0x0000000000000000
[ 3658.388226529,7] CPU: [0000082b] HID0 set to 0x0000000000000000
[ 3658.393347323,7] CPU: [0000082c] HID0 set to 0x0000000000000000
[ 3658.398468130,7] CPU: [0000082d] HID0 set to 0x0000000000000000
[ 3658.403588943,7] CPU: [0000082e] HID0 set to 0x0000000000000000
[ 3658.408709783,7] CPU: [0000082f] HID0 set to 0x0000000000000000
[ 3658.413830659,7] CPU: [00000830] HID0 set to 0x0000000000000000
[ 3658.418951450,7] CPU: [00000831] HID0 set to 0x0000000000000000
[ 3658.424072191,7] CPU: [00000832] HID0 set to 0x0000000000000000
[ 3658.429193020,7] CPU: [00000833] HID0 set to 0x0000000000000000
[ 3658.434313796,7] CPU: [00000834] HID0 set to 0x0000000000000000
[ 3658.439434586,7] CPU: [00000835] HID0 set to 0x0000000000000000
[ 3658.444555441,7] CPU: [00000836] HID0 set to 0x0000000000000000
[ 3658.449676208,7] CPU: [00000837] HID0 set to 0x0000000000000000
[ 3658.454797776,7] CPU: [00000868] HID0 set to 0x0000000000000000
[ 3658.459918558,7] CPU: [00000869] HID0 set to 0x0000000000000000
[ 3658.465039345,7] CPU: [0000086a] HID0 set to 0x0000000000000000
[ 3658.470160132,7] CPU: [0000086b] HID0 set to 0x0000000000000000
[ 3658.475280938,7] CPU: [0000086c] HID0 set to 0x0000000000000000
[ 3658.480401720,7] CPU: [0000086d] HID0 set to 0x0000000000000000
[ 3658.485522530,7] CPU: [0000086e] HID0 set to 0x0000000000000000
[ 3658.490643316,7] CPU: [0000086f] HID0 set to 0x0000000000000000
[ 3658.495764235,7] CPU: [00000870] HID0 set to 0x0000000000000000
[ 3658.500884997,7] CPU: [00000871] HID0 set to 0x0000000000000000
[ 3658.506005757,7] CPU: [00000872] HID0 set to 0x0000000000000000
[ 3658.511126549,7] CPU: [00000873] HID0 set to 0x0000000000000000
[ 3659.004247352,7] CPU: [00000874] HID0 set to 0x0000000000000000
[ 3659.009368150,7] CPU: [00000875] HID0 set to 0x0000000000000000
[ 3659.014488932,7] CPU: [00000876] HID0 set to 0x0000000000000000
[ 3659.019609774,7] CPU: [00000877] HID0 set to 0x0000000000000000
[ 3659.024731434,7] CPU: [000008a8] HID0 set to 0x0000000000000000
[ 3659.029852092,7] CPU: [000008a9] HID0 set to 0x0000000000000000
[ 3659.034972942,7] CPU: [000008aa] HID0 set to 0x0000000000000000
[ 3659.040093806,7] CPU: [000008ab] HID0 set to 0x0000000000000000
[ 3659.045214667,7] CPU: [000008ac] HID0 set to 0x0000000000000000
[ 3659.050335455,7] CPU: [000008ad] HID0 set to 0x0000000000000000
[ 3659.055456332,7] CPU: [000008ae] HID0 set to 0x0000000000000000
[ 3659.060577234,7] CPU: [000008af] HID0 set to 0x0000000000000000
[ 3659.065698137,7] CPU: [000008b0] HID0 set to 0x0000000000000000
[ 3659.070818993,7] CPU: [000008b1] HID0 set to 0x0000000000000000
[ 3659.075939771,7] CPU: [000008b2] HID0 set to 0x0000000000000000
[ 3659.081060626,7] CPU: [000008b3] HID0 set to 0x0000000000000000
[ 3659.086181465,7] CPU: [000008b4] HID0 set to 0x0000000000000000
[ 3659.091302334,7] CPU: [000008b5] HID0 set to 0x0000000000000000
[ 3659.096423203,7] CPU: [000008b6] HID0 set to 0x0000000000000000
[ 3659.101544009,7] CPU: [000008b7] HID0 set to 0x0000000000000000
[ 3659.106665469,7] CPU: [000008e0] HID0 set to 0x0000000000000000
[ 3659.111786253,7] CPU: [000008e1] HID0 set to 0x0000000000000000
[ 3659.116907070,7] CPU: [000008e2] HID0 set to 0x0000000000000000
[ 3659.122027930,7] CPU: [000008e3] HID0 set to 0x0000000000000000
[ 3659.127148778,7] CPU: [000008e4] HID0 set to 0x0000000000000000
[ 3659.132269645,7] CPU: [000008e5] HID0 set to 0x0000000000000000
[ 3659.137390447,7] CPU: [000008e6] HID0 set to 0x0000000000000000
[ 3659.142511355,7] CPU: [000008e7] HID0 set to 0x0000000000000000
[ 3659.147632287,7] CPU: [000008e8] HID0 set to 0x0000000000000000
[ 3659.152753068,7] CPU: [000008e9] HID0 set to 0x0000000000000000
[ 3659.157873831,7] CPU: [000008ea] HID0 set to 0x0000000000000000
[ 3659.162994628,7] CPU: [000008eb] HID0 set to 0x0000000000000000
[ 3659.168115539,7] CPU: [000008ec] HID0 set to 0x0000000000000000
[ 3659.173236362,7] CPU: [000008ed] HID0 set to 0x0000000000000000
[ 3659.178357165,7] CPU: [000008ee] HID0 set to 0x0000000000000000
[ 3659.183477978,7] CPU: [000008ef] HID0 set to 0x0000000000000000
[ 3659.188598958,7] CPU: [000008f0] HID0 set to 0x0000000000000000
[ 3659.193719763,7] CPU: [000008f1] HID0 set to 0x0000000000000000
[ 3659.198840573,7] CPU: [000008f2] HID0 set to 0x0000000000000000
[ 3659.203961364,7] CPU: [000008f3] HID0 set to 0x0000000000000000
[ 3659.209082199,7] CPU: [000008f4] HID0 set to 0x0000000000000000
[ 3659.214203034,7] CPU: [000008f5] HID0 set to 0x0000000000000000
[ 3659.219323893,7] CPU: [000008f6] HID0 set to 0x0000000000000000
[ 3659.224444757,7] CPU: [000008f7] HID0 set to 0x0000000000000000
[ 3659.313043510,7] OPAL: CPU re-init with flags: 0x6
[ 3659.313046685,5] OPAL: Switch to little-endian OS
[ 3659.313345015,6] CPU: Switching HILE on all CPUs to 1
[ 3659.313347822,7] CPU: [00000020] HID0 set to 0x0000100000000000
[ 3659.313354328,7] CPU: [00000021] HID0 set to 0x0000100000000000
[ 3659.318475603,7] CPU: [00000022] HID0 set to 0x0000100000000000
[ 3659.323596157,7] CPU: [00000023] HID0 set to 0x0000100000000000
[ 3659.328716598,7] CPU: [00000024] HID0 set to 0x0000100000000000
[ 3659.333837119,7] CPU: [00000025] HID0 set to 0x0000100000000000
[ 3659.338957671,7] CPU: [00000026] HID0 set to 0x0000100000000000
[ 3659.344078163,7] CPU: [00000027] HID0 set to 0x0000100000000000
[ 3659.349198871,7] CPU: [00000028] HID0 set to 0x0000100000000000
[ 3659.354319506,7] CPU: [00000029] HID0 set to 0x0000100000000000
[ 3659.359440079,7] CPU: [0000002a] HID0 set to 0x0000100000000000
[ 3659.364560696,7] CPU: [0000002b] HID0 set to 0x0000100000000000
[ 3659.369681374,7] CPU: [0000002c] HID0 set to 0x0000100000000000
[ 3659.374802036,7] CPU: [0000002d] HID0 set to 0x0000100000000000
[ 3659.379922680,7] CPU: [0000002e] HID0 set to 0x0000100000000000
[ 3659.385043407,7] CPU: [0000002f] HID0 set to 0x0000100000000000
[ 3659.390164676,7] CPU: [00000060] HID0 set to 0x0000100000000000
[ 3659.395285263,7] CPU: [00000061] HID0 set to 0x0000100000000000
[ 3659.400405839,7] CPU: [00000062] HID0 set to 0x0000100000000000
[ 3659.405526406,7] CPU: [00000063] HID0 set to 0x0000100000000000
[ 3659.410647058,7] CPU: [00000064] HID0 set to 0x0000100000000000
[ 3659.415767664,7] CPU: [00000065] HID0 set to 0x0000100000000000
[ 3659.420888279,7] CPU: [00000066] HID0 set to 0x0000100000000000
[ 3659.426009008,7] CPU: [00000067] HID0 set to 0x0000100000000000
[ 3659.431129700,7] CPU: [00000068] HID0 set to 0x0000100000000000
[ 3659.436250350,7] CPU: [00000069] HID0 set to 0x0000100000000000
[ 3659.441370975,7] CPU: [0000006a] HID0 set to 0x0000100000000000
[ 3659.446491540,7] CPU: [0000006b] HID0 set to 0x0000100000000000
[ 3659.451612187,7] CPU: [0000006c] HID0 set to 0x0000100000000000
[ 3659.456732787,7] CPU: [0000006d] HID0 set to 0x0000100000000000
[ 3659.461853406,7] CPU: [0000006e] HID0 set to 0x0000100000000000
[ 3659.466973967,7] CPU: [0000006f] HID0 set to 0x0000100000000000
[ 3659.472094698,7] CPU: [00000070] HID0 set to 0x0000100000000000
[ 3659.477215292,7] CPU: [00000071] HID0 set to 0x0000100000000000
[ 3659.482335842,7] CPU: [00000072] HID0 set to 0x0000100000000000
[ 3659.487456522,7] CPU: [00000073] HID0 set to 0x0000100000000000
[ 3659.492577115,7] CPU: [00000074] HID0 set to 0x0000100000000000
[ 3659.497697774,7] CPU: [00000075] HID0 set to 0x0000100000000000
[ 3659.502818379,7] CPU: [00000076] HID0 set to 0x0000100000000000
[ 3659.507939033,7] CPU: [00000077] HID0 set to 0x0000100000000000
[ 3660.001060611,7] CPU: [000000a0] HID0 set to 0x0000100000000000
[ 3660.006181521,7] CPU: [000000a1] HID0 set to 0x0000100000000000
[ 3660.011302271,7] CPU: [000000a2] HID0 set to 0x0000100000000000
[ 3660.016423295,7] CPU: [000000a3] HID0 set to 0x0000100000000000
[ 3660.021544317,7] CPU: [000000a4] HID0 set to 0x0000100000000000
[ 3660.026665259,7] CPU: [000000a5] HID0 set to 0x0000100000000000
[ 3660.031786056,7] CPU: [000000a6] HID0 set to 0x0000100000000000
[ 3660.036906892,7] CPU: [000000a7] HID0 set to 0x0000100000000000
[ 3660.042027885,7] CPU: [000000b0] HID0 set to 0x0000100000000000
[ 3660.047148789,7] CPU: [000000b1] HID0 set to 0x0000100000000000
[ 3660.052269539,7] CPU: [000000b2] HID0 set to 0x0000100000000000
[ 3660.057390489,7] CPU: [000000b3] HID0 set to 0x0000100000000000
[ 3660.062511290,7] CPU: [000000b4] HID0 set to 0x0000100000000000
[ 3660.067632116,7] CPU: [000000b5] HID0 set to 0x0000100000000000
[ 3660.072753157,7] CPU: [000000b6] HID0 set to 0x0000100000000000
[ 3660.077874016,7] CPU: [000000b7] HID0 set to 0x0000100000000000
[ 3660.082995437,7] CPU: [000000e0] HID0 set to 0x0000100000000000
[ 3660.088116405,7] CPU: [000000e1] HID0 set to 0x0000100000000000
[ 3660.093237128,7] CPU: [000000e2] HID0 set to 0x0000100000000000
[ 3660.098358203,7] CPU: [000000e3] HID0 set to 0x0000100000000000
[ 3660.103479154,7] CPU: [000000e4] HID0 set to 0x0000100000000000
[ 3660.108600026,7] CPU: [000000e5] HID0 set to 0x0000100000000000
[ 3660.113720994,7] CPU: [000000e6] HID0 set to 0x0000100000000000
[ 3660.118841959,7] CPU: [000000e7] HID0 set to 0x0000100000000000
[ 3660.123962981,7] CPU: [000000e8] HID0 set to 0x0000100000000000
[ 3660.129083824,7] CPU: [000000e9] HID0 set to 0x0000100000000000
[ 3660.134204660,7] CPU: [000000ea] HID0 set to 0x0000100000000000
[ 3660.139325607,7] CPU: [000000eb] HID0 set to 0x0000100000000000
[ 3660.144446460,7] CPU: [000000ec] HID0 set to 0x0000100000000000
[ 3660.149567288,7] CPU: [000000ed] HID0 set to 0x0000100000000000
[ 3660.154688200,7] CPU: [000000ee] HID0 set to 0x0000100000000000
[ 3660.159809178,7] CPU: [000000ef] HID0 set to 0x0000100000000000
[ 3660.164930269,7] CPU: [000000f0] HID0 set to 0x0000100000000000
[ 3660.170051141,7] CPU: [000000f1] HID0 set to 0x0000100000000000
[ 3660.175172026,7] CPU: [000000f2] HID0 set to 0x0000100000000000
[ 3660.180292900,7] CPU: [000000f3] HID0 set to 0x0000100000000000
[ 3660.185413703,7] CPU: [000000f4] HID0 set to 0x0000100000000000
[ 3660.190534647,7] CPU: [000000f5] HID0 set to 0x0000100000000000
[ 3660.195655571,7] CPU: [000000f6] HID0 set to 0x0000100000000000
[ 3660.200776486,7] CPU: [000000f7] HID0 set to 0x0000100000000000
[ 3660.205919809,7] CPU: [00000820] HID0 set to 0x0000100000000000
[ 3660.211040598,7] CPU: [00000821] HID0 set to 0x0000100000000000
[ 3660.216161395,7] CPU: [00000822] HID0 set to 0x0000100000000000
[ 3660.221282230,7] CPU: [00000823] HID0 set to 0x0000100000000000
[ 3660.226403060,7] CPU: [00000824] HID0 set to 0x0000100000000000
[ 3660.231523896,7] CPU: [00000825] HID0 set to 0x0000100000000000
[ 3660.236644749,7] CPU: [00000826] HID0 set to 0x0000100000000000
[ 3660.241765595,7] CPU: [00000827] HID0 set to 0x0000100000000000
[ 3660.246886768,7] CPU: [00000828] HID0 set to 0x0000100000000000
[ 3660.252007609,7] CPU: [00000829] HID0 set to 0x0000100000000000
[ 3660.257128349,7] CPU: [0000082a] HID0 set to 0x0000100000000000
[ 3660.262249155,7] CPU: [0000082b] HID0 set to 0x0000100000000000
[ 3660.267369996,7] CPU: [0000082c] HID0 set to 0x0000100000000000
[ 3660.272490872,7] CPU: [0000082d] HID0 set to 0x0000100000000000
[ 3660.277611709,7] CPU: [0000082e] HID0 set to 0x0000100000000000
[ 3660.282732526,7] CPU: [0000082f] HID0 set to 0x0000100000000000
[ 3660.287853490,7] CPU: [00000830] HID0 set to 0x0000100000000000
[ 3660.292974219,7] CPU: [00000831] HID0 set to 0x0000100000000000
[ 3660.298094964,7] CPU: [00000832] HID0 set to 0x0000100000000000
[ 3660.303215794,7] CPU: [00000833] HID0 set to 0x0000100000000000
[ 3660.308336627,7] CPU: [00000834] HID0 set to 0x0000100000000000
[ 3660.313457478,7] CPU: [00000835] HID0 set to 0x0000100000000000
[ 3660.318578337,7] CPU: [00000836] HID0 set to 0x0000100000000000
[ 3660.323699152,7] CPU: [00000837] HID0 set to 0x0000100000000000
[ 3660.328820702,7] CPU: [00000868] HID0 set to 0x0000100000000000
[ 3660.333941521,7] CPU: [00000869] HID0 set to 0x0000100000000000
[ 3660.339062349,7] CPU: [0000086a] HID0 set to 0x0000100000000000
[ 3660.344183175,7] CPU: [0000086b] HID0 set to 0x0000100000000000
[ 3660.349304041,7] CPU: [0000086c] HID0 set to 0x0000100000000000
[ 3660.354424862,7] CPU: [0000086d] HID0 set to 0x0000100000000000
[ 3660.359545711,7] CPU: [0000086e] HID0 set to 0x0000100000000000
[ 3660.364666544,7] CPU: [0000086f] HID0 set to 0x0000100000000000
[ 3660.369787481,7] CPU: [00000870] HID0 set to 0x0000100000000000
[ 3660.374908257,7] CPU: [00000871] HID0 set to 0x0000100000000000
[ 3660.380029058,7] CPU: [00000872] HID0 set to 0x0000100000000000
[ 3660.385149891,7] CPU: [00000873] HID0 set to 0x0000100000000000
[ 3660.390270777,7] CPU: [00000874] HID0 set to 0x0000100000000000
[ 3660.395391625,7] CPU: [00000875] HID0 set to 0x0000100000000000
[ 3660.400512486,7] CPU: [00000876] HID0 set to 0x0000100000000000
[ 3660.405633297,7] CPU: [00000877] HID0 set to 0x0000100000000000
[ 3660.410754887,7] CPU: [000008a8] HID0 set to 0x0000100000000000
[ 3660.415875741,7] CPU: [000008a9] HID0 set to 0x0000100000000000
[ 3660.420996556,7] CPU: [000008aa] HID0 set to 0x0000100000000000
[ 3660.426117418,7] CPU: [000008ab] HID0 set to 0x0000100000000000
[ 3660.431238281,7] CPU: [000008ac] HID0 set to 0x0000100000000000
[ 3660.436359155,7] CPU: [000008ad] HID0 set to 0x0000100000000000
[ 3660.441479998,7] CPU: [000008ae] HID0 set to 0x0000100000000000
[ 3660.446600867,7] CPU: [000008af] HID0 set to 0x0000100000000000
[ 3660.451721826,7] CPU: [000008b0] HID0 set to 0x0000100000000000
[ 3660.456842624,7] CPU: [000008b1] HID0 set to 0x0000100000000000
[ 3660.461963409,7] CPU: [000008b2] HID0 set to 0x0000100000000000
[ 3660.467084275,7] CPU: [000008b3] HID0 set to 0x0000100000000000
[ 3660.472205128,7] CPU: [000008b4] HID0 set to 0x0000100000000000
[ 3660.477326018,7] CPU: [000008b5] HID0 set to 0x0000100000000000
[ 3660.482446912,7] CPU: [000008b6] HID0 set to 0x0000100000000000
[ 3660.487567757,7] CPU: [000008b7] HID0 set to 0x0000100000000000
[ 3660.492689279,7] CPU: [000008e0] HID0 set to 0x0000100000000000
[ 3660.497810105,7] CPU: [000008e1] HID0 set to 0x0000100000000000
[ 3660.502930940,7] CPU: [000008e2] HID0 set to 0x0000100000000000
[ 3660.508051815,7] CPU: [000008e3] HID0 set to 0x0000100000000000
[ 3661.001172688,7] CPU: [000008e4] HID0 set to 0x0000100000000000
[ 3661.006293548,7] CPU: [000008e5] HID0 set to 0x0000100000000000
[ 3661.011414479,7] CPU: [000008e6] HID0 set to 0x0000100000000000
[ 3661.016535324,7] CPU: [000008e7] HID0 set to 0x0000100000000000
[ 3661.021656265,7] CPU: [000008e8] HID0 set to 0x0000100000000000
[ 3661.026777064,7] CPU: [000008e9] HID0 set to 0x0000100000000000
[ 3661.031897914,7] CPU: [000008ea] HID0 set to 0x0000100000000000
[ 3661.037018811,7] CPU: [000008eb] HID0 set to 0x0000100000000000
[ 3661.042139665,7] CPU: [000008ec] HID0 set to 0x0000100000000000
[ 3661.047260540,7] CPU: [000008ed] HID0 set to 0x0000100000000000
[ 3661.052381399,7] CPU: [000008ee] HID0 set to 0x0000100000000000
[ 3661.057502277,7] CPU: [000008ef] HID0 set to 0x0000100000000000
[ 3661.062623185,7] CPU: [000008f0] HID0 set to 0x0000100000000000
[ 3661.067744019,7] CPU: [000008f1] HID0 set to 0x0000100000000000
[ 3661.072864905,7] CPU: [000008f2] HID0 set to 0x0000100000000000
[ 3661.077985771,7] CPU: [000008f3] HID0 set to 0x0000100000000000
[ 3661.083106594,7] CPU: [000008f4] HID0 set to 0x0000100000000000
[ 3661.088227421,7] CPU: [000008f5] HID0 set to 0x0000100000000000
[ 3661.093348315,7] CPU: [000008f6] HID0 set to 0x0000100000000000
[ 3661.098469171,7] CPU: [000008f7] HID0 set to 0x0000100000000000
[ 3661.103605476,7] SLW: CPU PIR 0x0021 goint to rvwinkle...
[ 3661.103608715,7] SLW: CPU PIR 0x0022 goint to rvwinkle...
[ 3661.103611489,7] SLW: CPU PIR 0x0023 goint to rvwinkle...
[ 3661.103614031,7] SLW: CPU PIR 0x0024 goint to rvwinkle...
[ 3661.103616414,7] SLW: CPU PIR 0x0025 goint to rvwinkle...
[ 3661.103618260,7] SLW: CPU PIR 0x0026 goint to rvwinkle...
[ 3661.103620381,7] SLW: CPU PIR 0x0027 goint to rvwinkle...
[ 3661.103622616,7] SLW: CPU PIR 0x0028 goint to rvwinkle...
[ 3661.103625863,7] SLW: CPU PIR 0x0029 goint to rvwinkle...
[ 3661.103628869,7] SLW: CPU PIR 0x002a goint to rvwinkle...
[ 3661.103631639,7] SLW: CPU PIR 0x002b goint to rvwinkle...
[ 3661.103634239,7] SLW: CPU PIR 0x002c goint to rvwinkle...
[ 3661.103636267,7] SLW: CPU PIR 0x002d goint to rvwinkle...
[ 3661.103638222,7] SLW: CPU PIR 0x002e goint to rvwinkle...
[ 3661.103639922,7] SLW: CPU PIR 0x002f goint to rvwinkle...
[ 3661.103642402,7] SLW: CPU PIR 0x0060 goint to rvwinkle...
[ 3661.103645606,7] SLW: CPU PIR 0x0061 goint to rvwinkle...
[ 3661.103648708,7] SLW: CPU PIR 0x0062 goint to rvwinkle...
[ 3661.103651508,7] SLW: CPU PIR 0x0063 goint to rvwinkle...
[ 3661.103654136,7] SLW: CPU PIR 0x0064 goint to rvwinkle...
[ 3661.103656107,7] SLW: CPU PIR 0x0065 goint to rvwinkle...
[ 3661.103658129,7] SLW: CPU PIR 0x0066 goint to rvwinkle...
[ 3661.103659905,7] SLW: CPU PIR 0x0067 goint to rvwinkle...
[ 3661.103662097,7] SLW: CPU PIR 0x0068 goint to rvwinkle...
[ 3661.103665359,7] SLW: CPU PIR 0x0069 goint to rvwinkle...
[ 3661.103668347,7] SLW: CPU PIR 0x006a goint to rvwinkle...
[ 3661.103671137,7] SLW: CPU PIR 0x006b goint to rvwinkle...
[ 3661.103673791,7] SLW: CPU PIR 0x006c goint to rvwinkle...
[ 3661.103675869,7] SLW: CPU PIR 0x006d goint to rvwinkle...
[ 3661.103678033,7] SLW: CPU PIR 0x006e goint to rvwinkle...
[ 3661.103679549,7] SLW: CPU PIR 0x006f goint to rvwinkle...
[ 3661.103681709,7] SLW: CPU PIR 0x0070 goint to rvwinkle...
[ 3661.103684923,7] SLW: CPU PIR 0x0071 goint to rvwinkle...
[ 3661.103688083,7] SLW: CPU PIR 0x0072 goint to rvwinkle...
[ 3661.103690884,7] SLW: CPU PIR 0x0073 goint to rvwinkle...
[ 3661.103693560,7] SLW: CPU PIR 0x0074 goint to rvwinkle...
[ 3661.103695558,7] SLW: CPU PIR 0x0075 goint to rvwinkle...
[ 3661.103697764,7] SLW: CPU PIR 0x0076 goint to rvwinkle...
[ 3661.103699393,7] SLW: CPU PIR 0x0077 goint to rvwinkle...
[ 3661.103703403,7] SLW: CPU PIR 0x00a0 goint to rvwinkle...
[ 3661.103707421,7] SLW: CPU PIR 0x00a1 goint to rvwinkle...
[ 3661.103711310,7] SLW: CPU PIR 0x00a2 goint to rvwinkle...
[ 3661.103714902,7] SLW: CPU PIR 0x00a3 goint to rvwinkle...
[ 3661.103718424,7] SLW: CPU PIR 0x00a4 goint to rvwinkle...
[ 3661.103721100,7] SLW: CPU PIR 0x00a5 goint to rvwinkle...
[ 3661.103724136,7] SLW: CPU PIR 0x00a6 goint to rvwinkle...
[ 3661.103726625,7] SLW: CPU PIR 0x00a7 goint to rvwinkle...
[ 3661.103729501,7] SLW: CPU PIR 0x00b0 goint to rvwinkle...
[ 3661.103733441,7] SLW: CPU PIR 0x00b1 goint to rvwinkle...
[ 3661.103737553,7] SLW: CPU PIR 0x00b2 goint to rvwinkle...
[ 3661.103741104,7] SLW: CPU PIR 0x00b3 goint to rvwinkle...
[ 3661.103744634,7] SLW: CPU PIR 0x00b4 goint to rvwinkle...
[ 3661.103747360,7] SLW: CPU PIR 0x00b5 goint to rvwinkle...
[ 3661.103750210,7] SLW: CPU PIR 0x00b6 goint to rvwinkle...
[ 3661.103752568,7] SLW: CPU PIR 0x00b7 goint to rvwinkle...
[ 3661.103755838,7] SLW: CPU PIR 0x00e0 goint to rvwinkle...
[ 3661.103759863,7] SLW: CPU PIR 0x00e1 goint to rvwinkle...
[ 3661.103763737,7] SLW: CPU PIR 0x00e2 goint to rvwinkle...
[ 3661.103767247,7] SLW: CPU PIR 0x00e3 goint to rvwinkle...
[ 3661.103770689,7] SLW: CPU PIR 0x00e4 goint to rvwinkle...
[ 3661.103773672,7] SLW: CPU PIR 0x00e5 goint to rvwinkle...
[ 3661.103776206,7] SLW: CPU PIR 0x00e6 goint to rvwinkle...
[ 3661.103778845,7] SLW: CPU PIR 0x00e7 goint to rvwinkle...
[ 3661.103781485,7] SLW: CPU PIR 0x00e8 goint to rvwinkle...
[ 3661.103785546,7] SLW: CPU PIR 0x00e9 goint to rvwinkle...
[ 3661.103789403,7] SLW: CPU PIR 0x00ea goint to rvwinkle...
[ 3661.103793086,7] SLW: CPU PIR 0x00eb goint to rvwinkle...
[ 3661.103796443,7] SLW: CPU PIR 0x00ec goint to rvwinkle...
[ 3661.103799180,7] SLW: CPU PIR 0x00ed goint to rvwinkle...
[ 3661.103801946,7] SLW: CPU PIR 0x00ee goint to rvwinkle...
[ 3661.103804556,7] SLW: CPU PIR 0x00ef goint to rvwinkle...
[ 3661.103807153,7] SLW: CPU PIR 0x00f0 goint to rvwinkle...
[ 3661.103811234,7] SLW: CPU PIR 0x00f1 goint to rvwinkle...
[ 3661.103815213,7] SLW: CPU PIR 0x00f2 goint to rvwinkle...
[ 3661.103818794,7] SLW: CPU PIR 0x00f3 goint to rvwinkle...
[ 3661.103822247,7] SLW: CPU PIR 0x00f4 goint to rvwinkle...
[ 3661.103825129,7] SLW: CPU PIR 0x00f5 goint to rvwinkle...
[ 3661.103827919,7] SLW: CPU PIR 0x00f6 goint to rvwinkle...
[ 3661.103830314,7] SLW: CPU PIR 0x00f7 goint to rvwinkle...
[ 3661.103851373,7] SLW: CPU PIR 0x0820 goint to rvwinkle...
[ 3661.103855753,7] SLW: CPU PIR 0x0821 goint to rvwinkle...
[ 3661.103859974,7] SLW: CPU PIR 0x0822 goint to rvwinkle...
[ 3661.103863818,7] SLW: CPU PIR 0x0823 goint to rvwinkle...
[ 3661.103867396,7] SLW: CPU PIR 0x0824 goint to rvwinkle...
[ 3661.103870509,7] SLW: CPU PIR 0x0825 goint to rvwinkle...
[ 3661.103873594,7] SLW: CPU PIR 0x0826 goint to rvwinkle...
[ 3661.103876316,7] SLW: CPU PIR 0x0827 goint to rvwinkle...
[ 3661.103879149,7] SLW: CPU PIR 0x0828 goint to rvwinkle...
[ 3661.103883604,7] SLW: CPU PIR 0x0829 goint to rvwinkle...
[ 3661.103887786,7] SLW: CPU PIR 0x082a goint to rvwinkle...
[ 3661.103891739,7] SLW: CPU PIR 0x082b goint to rvwinkle...
[ 3661.103895505,7] SLW: CPU PIR 0x082c goint to rvwinkle...
[ 3661.103898553,7] SLW: CPU PIR 0x082d goint to rvwinkle...
[ 3661.103901706,7] SLW: CPU PIR 0x082e goint to rvwinkle...
[ 3661.103904397,7] SLW: CPU PIR 0x082f goint to rvwinkle...
[ 3661.103907351,7] SLW: CPU PIR 0x0830 goint to rvwinkle...
[ 3661.103911500,7] SLW: CPU PIR 0x0831 goint to rvwinkle...
[ 3661.103915646,7] SLW: CPU PIR 0x0832 goint to rvwinkle...
[ 3661.103919580,7] SLW: CPU PIR 0x0833 goint to rvwinkle...
[ 3661.103923223,7] SLW: CPU PIR 0x0834 goint to rvwinkle...
[ 3661.103926385,7] SLW: CPU PIR 0x0835 goint to rvwinkle...
[ 3661.103929603,7] SLW: CPU PIR 0x0836 goint to rvwinkle...
[ 3661.103932330,7] SLW: CPU PIR 0x0837 goint to rvwinkle...
[ 3661.103935893,7] SLW: CPU PIR 0x0868 goint to rvwinkle...
[ 3661.103940084,7] SLW: CPU PIR 0x0869 goint to rvwinkle...
[ 3661.103944268,7] SLW: CPU PIR 0x086a goint to rvwinkle...
[ 3661.103948042,7] SLW: CPU PIR 0x086b goint to rvwinkle...
[ 3661.103951781,7] SLW: CPU PIR 0x086c goint to rvwinkle...
[ 3661.103954773,7] SLW: CPU PIR 0x086d goint to rvwinkle...
[ 3661.103957844,7] SLW: CPU PIR 0x086e goint to rvwinkle...
[ 3661.103960664,7] SLW: CPU PIR 0x086f goint to rvwinkle...
[ 3661.103963692,7] SLW: CPU PIR 0x0870 goint to rvwinkle...
[ 3661.103967812,7] SLW: CPU PIR 0x0871 goint to rvwinkle...
[ 3661.103972097,7] SLW: CPU PIR 0x0872 goint to rvwinkle...
[ 3661.103976024,7] SLW: CPU PIR 0x0873 goint to rvwinkle...
[ 3661.103979726,7] SLW: CPU PIR 0x0874 goint to rvwinkle...
[ 3661.103982672,7] SLW: CPU PIR 0x0875 goint to rvwinkle...
[ 3661.103985889,7] SLW: CPU PIR 0x0876 goint to rvwinkle...
[ 3661.103988681,7] SLW: CPU PIR 0x0877 goint to rvwinkle...
[ 3661.103992552,7] SLW: CPU PIR 0x08a8 goint to rvwinkle...
[ 3661.103996871,7] SLW: CPU PIR 0x08a9 goint to rvwinkle...
[ 3661.104001096,7] SLW: CPU PIR 0x08aa goint to rvwinkle...
[ 3661.104005096,7] SLW: CPU PIR 0x08ab goint to rvwinkle...
[ 3661.104009037,7] SLW: CPU PIR 0x08ac goint to rvwinkle...
[ 3661.104012325,7] SLW: CPU PIR 0x08ad goint to rvwinkle...
[ 3661.104015563,7] SLW: CPU PIR 0x08ae goint to rvwinkle...
[ 3661.104018537,7] SLW: CPU PIR 0x08af goint to rvwinkle...
[ 3661.104021529,7] SLW: CPU PIR 0x08b0 goint to rvwinkle...
[ 3661.104025848,7] SLW: CPU PIR 0x08b1 goint to rvwinkle...
[ 3661.104030051,7] SLW: CPU PIR 0x08b2 goint to rvwinkle...
[ 3661.104034105,7] SLW: CPU PIR 0x08b3 goint to rvwinkle...
[ 3661.104038048,7] SLW: CPU PIR 0x08b4 goint to rvwinkle...
[ 3661.104041346,7] SLW: CPU PIR 0x08b5 goint to rvwinkle...
[ 3661.104044639,7] SLW: CPU PIR 0x08b6 goint to rvwinkle...
[ 3661.104047565,7] SLW: CPU PIR 0x08b7 goint to rvwinkle...
[ 3661.104051086,7] SLW: CPU PIR 0x08e0 goint to rvwinkle...
[ 3661.104055378,7] SLW: CPU PIR 0x08e1 goint to rvwinkle...
[ 3661.104059570,7] SLW: CPU PIR 0x08e2 goint to rvwinkle...
[ 3661.104063519,7] SLW: CPU PIR 0x08e3 goint to rvwinkle...
[ 3661.104067383,7] SLW: CPU PIR 0x08e4 goint to rvwinkle...
[ 3661.104070723,7] SLW: CPU PIR 0x08e5 goint to rvwinkle...
[ 3661.104073874,7] SLW: CPU PIR 0x08e6 goint to rvwinkle...
[ 3661.104076813,7] SLW: CPU PIR 0x08e7 goint to rvwinkle...
[ 3661.104079675,7] SLW: CPU PIR 0x08e8 goint to rvwinkle...
[ 3661.104084060,7] SLW: CPU PIR 0x08e9 goint to rvwinkle...
[ 3661.104088433,7] SLW: CPU PIR 0x08ea goint to rvwinkle...
[ 3661.104092434,7] SLW: CPU PIR 0x08eb goint to rvwinkle...
[ 3661.104096395,7] SLW: CPU PIR 0x08ec goint to rvwinkle...
[ 3661.104099629,7] SLW: CPU PIR 0x08ed goint to rvwinkle...
[ 3661.104102853,7] SLW: CPU PIR 0x08ee goint to rvwinkle...
[ 3661.104105644,7] SLW: CPU PIR 0x08ef goint to rvwinkle...
[ 3661.104108552,7] SLW: CPU PIR 0x08f0 goint to rvwinkle...
[ 3661.104112884,7] SLW: CPU PIR 0x08f1 goint to rvwinkle...
[ 3661.104117153,7] SLW: CPU PIR 0x08f2 goint to rvwinkle...
[ 3661.104121159,7] SLW: CPU PIR 0x08f3 goint to rvwinkle...
[ 3661.104125158,7] SLW: CPU PIR 0x08f4 goint to rvwinkle...
[ 3661.104128260,7] SLW: CPU PIR 0x08f5 goint to rvwinkle...
[ 3661.104131665,7] SLW: CPU PIR 0x08f6 goint to rvwinkle...
[ 3661.104134525,7] SLW: CPU PIR 0x08f7 goint to rvwinkle...
[ 3662.104136810,7] SLW: core 0:4 history: 0x1800000000000000 (mid)
[ 3662.104138498,7] SLW: core 0:5 history: 0xff00000000000000 (mid)
[ 3662.104140406,7] SLW: core 0:c history: 0xff00000000000000 (mid)
[ 3662.104141781,7] SLW: core 0:d history: 0xff00000000000000 (mid)
[ 3662.104143092,7] SLW: core 0:e history: 0xff00000000000000 (mid)
[ 3662.104168730,7] SLW: core 1:4 history: 0xff00000000000000 (mid)
[ 3662.104170150,7] SLW: core 1:6 history: 0xff00000000000000 (mid)
[ 3662.104171892,7] SLW: core 1:c history: 0xff00000000000000 (mid)
[ 3662.104173230,7] SLW: core 1:d history: 0xff00000000000000 (mid)
[ 3662.104174563,7] SLW: core 1:e history: 0xff00000000000000 (mid)
[ 3662.104217281,7] SLW: core 10:4 history: 0xff00000000000000 (mid)
[ 3662.104218695,7] SLW: core 10:5 history: 0xff00000000000000 (mid)
[ 3662.104219972,7] SLW: core 10:6 history: 0xff00000000000000 (mid)
[ 3662.104221832,7] SLW: core 10:d history: 0xff00000000000000 (mid)
[ 3662.104223174,7] SLW: core 10:e history: 0xff00000000000000 (mid)
[ 3662.104248481,7] SLW: core 11:5 history: 0xff00000000000000 (mid)
[ 3662.104249866,7] SLW: core 11:6 history: 0xff00000000000000 (mid)
[ 3662.104251565,7] SLW: core 11:c history: 0xff00000000000000 (mid)
[ 3662.104252966,7] SLW: core 11:d history: 0xff00000000000000 (mid)
[ 3662.104254249,7] SLW: core 11:e history: 0xff00000000000000 (mid)
[    0.000316566,7] SLW: CPU PIR 0x0029 woken up !
[    0.000317611,7] SLW: CPU PIR 0x002a woken up !
[    0.000318524,7] SLW: CPU PIR 0x002b woken up !
[    0.000319582,7] SLW: CPU PIR 0x002c woken up !
[    0.000320115,7] SLW: CPU PIR 0x002d woken up !
[    0.000320115,7] SLW: CPU PIR 0x002f woken up !
[    0.000320115,7] SLW: CPU PIR 0x002e woken up !
[    0.000315650,7] SLW: CPU PIR 0x0028 woken up !
[ 3662.107511967,7] SLW: CPU PIR 0x0028 waiting for master...
[    0.000320779,7] SLW: CPU PIR 0x0060 woken up !
[    0.000322623,7] SLW: CPU PIR 0x0062 woken up !
[    0.000323660,7] SLW: CPU PIR 0x0063 woken up !
[    0.000324546,7] SLW: CPU PIR 0x0064 woken up !
[    0.000321611,7] SLW: CPU PIR 0x0061 woken up !
[    0.000324546,7] SLW: CPU PIR 0x0066 woken up !
[    0.000324546,7] SLW: CPU PIR 0x0065 woken up !
[    0.000324546,7] SLW: CPU PIR 0x0067 woken up !
[    0.000325997,7] SLW: CPU PIR 0x0069 woken up !
[    0.000325177,7] SLW: CPU PIR 0x0068 woken up !
[    0.000326954,7] SLW: CPU PIR 0x006a woken up !
[    0.000327887,7] SLW: CPU PIR 0x006b woken up !
[    0.000328696,7] SLW: CPU PIR 0x006c woken up !
[    0.000328696,7] SLW: CPU PIR 0x006f woken up !
[    0.000328696,7] SLW: CPU PIR 0x006d woken up !
[    0.000328696,7] SLW: CPU PIR 0x006e woken up !
[    0.000327203,7] SLW: CPU PIR 0x0071 woken up !
[    0.000328184,7] SLW: CPU PIR 0x0072 woken up !
[    0.000329100,7] SLW: CPU PIR 0x0073 woken up !
[    0.000326328,7] SLW: CPU PIR 0x0070 woken up !
[    0.000329932,7] SLW: CPU PIR 0x0074 woken up !
[    0.000329932,7] SLW: CPU PIR 0x0075 woken up !
[    0.000329932,7] SLW: CPU PIR 0x0076 woken up !
[    0.000329932,7] SLW: CPU PIR 0x0077 woken up !
[    0.000290467,7] SLW: CPU PIR 0x00a1 woken up !
[    0.000293627,7] SLW: CPU PIR 0x00a4 woken up !
[    0.000294650,7] SLW: CPU PIR 0x00a5 woken up !
[    0.000296931,7] SLW: CPU PIR 0x00a7 woken up !
[    0.000295702,7] SLW: CPU PIR 0x00a6 woken up !
[    0.000289723,7] SLW: CPU PIR 0x00a0 woken up !
[    0.000292545,7] SLW: CPU PIR 0x00a3 woken up !
[    0.000291513,7] SLW: CPU PIR 0x00a2 woken up !
[    0.000291839,7] SLW: CPU PIR 0x00b1 woken up !
[    0.000290858,7] SLW: CPU PIR 0x00b0 woken up !
[    0.000292854,7] SLW: CPU PIR 0x00b2 woken up !
[    0.000293847,7] SLW: CPU PIR 0x00b3 woken up !
[    0.000294700,7] SLW: CPU PIR 0x00b5 woken up !
[    0.000294700,7] SLW: CPU PIR 0x00b4 woken up !
[    0.000294700,7] SLW: CPU PIR 0x00b6 woken up !
[    0.000294700,7] SLW: CPU PIR 0x00b7 woken up !
[    0.000295716,7] SLW: CPU PIR 0x00e0 woken up !
[    0.000297615,7] SLW: CPU PIR 0x00e2 woken up !
[    0.000298588,7] SLW: CPU PIR 0x00e3 woken up !
[    0.000299491,7] SLW: CPU PIR 0x00e4 woken up !
[    0.000299491,7] SLW: CPU PIR 0x00e5 woken up !
[    0.000296645,7] SLW: CPU PIR 0x00e1 woken up !
[    0.000299491,7] SLW: CPU PIR 0x00e6 woken up !
[    0.000299491,7] SLW: CPU PIR 0x00e7 woken up !
[    0.000296521,7] SLW: CPU PIR 0x00e8 woken up !
[    0.000297403,7] SLW: CPU PIR 0x00e9 woken up !
[    0.000298601,7] SLW: CPU PIR 0x00ea woken up !
[    0.000299695,7] SLW: CPU PIR 0x00eb woken up !
[    0.000300503,7] SLW: CPU PIR 0x00ed woken up !
[    0.000300503,7] SLW: CPU PIR 0x00ee woken up !
[    0.000300503,7] SLW: CPU PIR 0x00ef woken up !
[    0.000300503,7] SLW: CPU PIR 0x00ec woken up !
[    0.000296697,7] SLW: CPU PIR 0x00f0 woken up !
[    0.000297785,7] SLW: CPU PIR 0x00f1 woken up !
[    0.000299083,7] SLW: CPU PIR 0x00f2 woken up !
[    0.000300076,7] SLW: CPU PIR 0x00f3 woken up !
[    0.000300969,7] SLW: CPU PIR 0x00f5 woken up !
[    0.000300969,7] SLW: CPU PIR 0x00f4 woken up !
[    0.000300969,7] SLW: CPU PIR 0x00f7 woken up !
[    0.000300969,7] SLW: CPU PIR 0x00f6 woken up !
[    0.000283641,7] SLW: CPU PIR 0x0820 woken up !
[    0.000284200,7] SLW: CPU PIR 0x0821 woken up !
[    0.000288774,7] SLW: CPU PIR 0x0825 woken up !
[    0.000285338,7] SLW: CPU PIR 0x0822 woken up !
[    0.000289889,7] SLW: CPU PIR 0x0826 woken up !
[    0.000286396,7] SLW: CPU PIR 0x0823 woken up !
[    0.000291132,7] SLW: CPU PIR 0x0827 woken up !
[    0.000287628,7] SLW: CPU PIR 0x0824 woken up !
[    0.000283241,7] SLW: CPU PIR 0x0828 woken up !
[    0.000284351,7] SLW: CPU PIR 0x0829 woken up !
[    0.000285681,7] SLW: CPU PIR 0x082a woken up !
[    0.000286860,7] SLW: CPU PIR 0x082b woken up !
[    0.000286860,7] SLW: CPU PIR 0x082c woken up !
[    0.000286860,7] SLW: CPU PIR 0x082d woken up !
[    0.000286860,7] SLW: CPU PIR 0x082e woken up !
[    0.000287549,7] SLW: CPU PIR 0x082f woken up !
[    0.000283056,7] SLW: CPU PIR 0x0830 woken up !
[    0.000284078,7] SLW: CPU PIR 0x0831 woken up !
[    0.000285435,7] SLW: CPU PIR 0x0832 woken up !
[    0.000286806,7] SLW: CPU PIR 0x0833 woken up !
[    0.000286806,7] SLW: CPU PIR 0x0834 woken up !
[    0.000286806,7] SLW: CPU PIR 0x0835 woken up !
[    0.000286806,7] SLW: CPU PIR 0x0836 woken up !
[    0.000286806,7] SLW: CPU PIR 0x0837 woken up !
[    0.000287515,7] SLW: CPU PIR 0x0868 woken up !
[    0.000288533,7] SLW: CPU PIR 0x0869 woken up !
[    0.000289886,7] SLW: CPU PIR 0x086a woken up !
[    0.000290971,7] SLW: CPU PIR 0x086b woken up !
[    0.000290971,7] SLW: CPU PIR 0x086c woken up !
[    0.000290971,7] SLW: CPU PIR 0x086d woken up !
[    0.000290971,7] SLW: CPU PIR 0x086e woken up !
[    0.000287012,7] SLW: CPU PIR 0x086f woken up !
[    0.000289062,7] SLW: CPU PIR 0x0871 woken up !
[    0.000287937,7] SLW: CPU PIR 0x0870 woken up !
[    0.000291358,7] SLW: CPU PIR 0x0873 woken up !
[    0.000290189,7] SLW: CPU PIR 0x0872 woken up !
[    0.000292279,7] SLW: CPU PIR 0x0874 woken up !
[    0.000292279,7] SLW: CPU PIR 0x0875 woken up !
[    0.000292279,7] SLW: CPU PIR 0x0877 woken up !
[    0.000292279,7] SLW: CPU PIR 0x0876 woken up !
[    0.000260188,7] SLW: CPU PIR 0x08a9 woken up !
[    0.000264032,7] SLW: CPU PIR 0x08ac woken up !
[    0.000259612,7] SLW: CPU PIR 0x08a8 woken up !
[    0.000266468,7] SLW: CPU PIR 0x08ae woken up !
[    0.000265219,7] SLW: CPU PIR 0x08ad woken up !
[    0.000261444,7] SLW: CPU PIR 0x08aa woken up !
[    0.000267683,7] SLW: CPU PIR 0x08af woken up !
[    0.000262587,7] SLW: CPU PIR 0x08ab woken up !
[    0.000256704,7] SLW: CPU PIR 0x08b0 woken up !
[    0.000257872,7] SLW: CPU PIR 0x08b1 woken up !
[    0.000259243,7] SLW: CPU PIR 0x08b2 woken up !
[    0.000260794,7] SLW: CPU PIR 0x08b3 woken up !
[    0.000260794,7] SLW: CPU PIR 0x08b4 woken up !
[    0.000254017,7] SLW: CPU PIR 0x08b5 woken up !
[    0.000254776,7] SLW: CPU PIR 0x08b6 woken up !
[    0.000255606,7] SLW: CPU PIR 0x08b7 woken up !
[    0.000260095,7] SLW: CPU PIR 0x08e0 woken up !
[    0.000261370,7] SLW: CPU PIR 0x08e1 woken up !
[    0.000262675,7] SLW: CPU PIR 0x08e2 woken up !
[    0.000264207,7] SLW: CPU PIR 0x08e3 woken up !
[    0.000264207,7] SLW: CPU PIR 0x08e4 woken up !
[    0.000264207,7] SLW: CPU PIR 0x08e5 woken up !
[ 3662.158712035,7] SLW: CPU PIR 0x08e6 woken up !
[ 3662.158712035,7] SLW: CPU PIR 0x08e7 woken up !
[    0.000263127,7] SLW: CPU PIR 0x08e9 woken up !
[    0.000261953,7] SLW: CPU PIR 0x08e8 woken up !
[    0.000264480,7] SLW: CPU PIR 0x08ea woken up !
[    0.000265873,7] SLW: CPU PIR 0x08eb woken up !
[    0.000266216,7] SLW: CPU PIR 0x08ec woken up !
[    0.000266216,7] SLW: CPU PIR 0x08ed woken up !
[    0.000262385,7] SLW: CPU PIR 0x08ef woken up !
[    0.000266216,7] SLW: CPU PIR 0x08ee woken up !
[    0.000262263,7] SLW: CPU PIR 0x08f1 woken up !
[    0.000261096,7] SLW: CPU PIR 0x08f0 woken up !
[    0.000263454,7] SLW: CPU PIR 0x08f2 woken up !
[    0.000264662,7] SLW: CPU PIR 0x08f3 woken up !
[    0.000265010,7] SLW: CPU PIR 0x08f4 woken up !
[    0.000265010,7] SLW: CPU PIR 0x08f5 woken up !
[ 3662.165056285,7] SLW: CPU PIR 0x0020 goint to rvwinkle...
[    0.000265010,7] SLW: CPU PIR 0x08f6 woken up !
[    0.000265010,7] SLW: CPU PIR 0x08f7 woken up !
[ 3663.165453320,7] SLW: Waking master (PIR 0x0020)...
[    0.000322473,7] SLW: CPU PIR 0x0022 woken up !
[    0.000321628,7] SLW: CPU PIR 0x0021 woken up !
[    0.000323358,7] SLW: CPU PIR 0x0023 woken up !
[    0.000324202,7] SLW: CPU PIR 0x0024 woken up !
[    0.000325368,7] SLW: CPU PIR 0x0026 woken up !
[    0.000325368,7] SLW: CPU PIR 0x0027 woken up !
[    0.000325368,7] SLW: CPU PIR 0x0025 woken up !
[ 3663.168724795,7] SLW: CPU PIR 0x0020 woken up !
[ 3663.168747211,7] SLW: core 0:4 history: 0x1f00000000000000 (new1)
[ 3663.168749072,7] SLW: core 0:4 history: 0x0000000000000000 (new2)
[ 3663.168755379,7] SLW: slw_unset_overrides 0:4
[ 3663.168755379,7] SLW: core 0:5 history: 0x0000000000000000 (new1)
[ 3663.168756936,7] SLW: core 0:5 history: 0x0000000000000000 (new2)
[ 3663.168763652,7] SLW: slw_unset_overrides 0:5
[ 3663.168768279,7] SLW: core 0:c history: 0x0000000000000000 (new1)
[ 3663.168771162,7] SLW: core 0:c history: 0x0000000000000000 (new2)
[ 3663.168773628,7] SLW: slw_unset_overrides 0:c
[ 3663.168776268,7] SLW: core 0:d history: 0x0000000000000000 (new1)
[ 3663.168779055,7] SLW: core 0:d history: 0x0000000000000000 (new2)
[ 3663.168781539,7] SLW: slw_unset_overrides 0:d
[ 3663.168784090,7] SLW: core 0:e history: 0x0000000000000000 (new1)
[ 3663.168786936,7] SLW: core 0:e history: 0x0000000000000000 (new2)
[ 3663.168789289,7] SLW: slw_unset_overrides 0:e
[ 3663.168887724,7] SLW: core 1:4 history: 0x0000000000000000 (new1)
[ 3663.168890623,7] SLW: core 1:4 history: 0x0000000000000000 (new2)
[ 3663.168893147,7] SLW: slw_unset_overrides 1:4
[ 3663.168895711,7] SLW: core 1:6 history: 0x0000000000000000 (new1)
[ 3663.168898630,7] SLW: core 1:6 history: 0x0000000000000000 (new2)
[ 3663.168901036,7] SLW: slw_unset_overrides 1:6
[ 3663.168904043,7] SLW: core 1:c history: 0x0000000000000000 (new1)
[ 3663.168906907,7] SLW: core 1:c history: 0x0000000000000000 (new2)
[ 3663.168909431,7] SLW: slw_unset_overrides 1:c
[ 3663.168911878,7] SLW: core 1:d history: 0x0000000000000000 (new1)
[ 3663.168914745,7] SLW: core 1:d history: 0x0000000000000000 (new2)
[ 3663.168917158,7] SLW: slw_unset_overrides 1:d
[ 3663.168919599,7] SLW: core 1:e history: 0x0000000000000000 (new1)
[ 3663.168922418,7] SLW: core 1:e history: 0x0000000000000000 (new2)
[ 3663.168924906,7] SLW: slw_unset_overrides 1:e
[ 3663.168980977,7] SLW: core 10:4 history: 0x0000000000000000 (new1)
[ 3663.168983970,7] SLW: core 10:4 history: 0x0000000000000000 (new2)
[ 3663.168986481,7] SLW: slw_unset_overrides 10:4
[ 3663.168989010,7] SLW: core 10:5 history: 0x0000000000000000 (new1)
[ 3663.168991846,7] SLW: core 10:5 history: 0x0000000000000000 (new2)
[ 3663.168994455,7] SLW: slw_unset_overrides 10:5
[ 3663.168996906,7] SLW: core 10:6 history: 0x0000000000000000 (new1)
[ 3663.168999862,7] SLW: core 10:6 history: 0x0000000000000000 (new2)
[ 3663.169002266,7] SLW: slw_unset_overrides 10:6
[ 3663.169005371,7] SLW: core 10:d history: 0x0000000000000000 (new1)
[ 3663.169008233,7] SLW: core 10:d history: 0x0000000000000000 (new2)
[ 3663.169010785,7] SLW: slw_unset_overrides 10:d
[ 3663.169013271,7] SLW: core 10:e history: 0x0000000000000000 (new1)
[ 3663.169016174,7] SLW: core 10:e history: 0x0000000000000000 (new2)
[ 3663.169018634,7] SLW: slw_unset_overrides 10:e
[ 3663.169052347,7] SLW: core 11:5 history: 0x0000000000000000 (new1)
[ 3663.169055278,7] SLW: core 11:5 history: 0x0000000000000000 (new2)
[ 3663.169057786,7] SLW: slw_unset_overrides 11:5
[ 3663.169060285,7] SLW: core 11:6 history: 0x0000000000000000 (new1)
[ 3663.169063238,7] SLW: core 11:6 history: 0x0000000000000000 (new2)
[ 3663.169065705,7] SLW: slw_unset_overrides 11:6
[ 3663.169068818,7] SLW: core 11:c history: 0x0000000000000000 (new1)
[ 3663.169071755,7] SLW: core 11:c history: 0x0000000000000000 (new2)
[ 3663.169074320,7] SLW: slw_unset_overrides 11:c
[ 3663.169076796,7] SLW: core 11:d history: 0x0000000000000000 (new1)
[ 3663.169079697,7] SLW: core 11:d history: 0x0000000000000000 (new2)
[ 3663.169082195,7] SLW: slw_unset_overrides 11:d
[ 3663.169084703,7] SLW: core 11:e history: 0x0000000000000000 (new1)
[ 3663.169087556,7] SLW: core 11:e history: 0x0000000000000000 (new2)
[ 3663.169090108,7] SLW: slw_unset_overrides 11:e
[ 3663.187025526,5] MDST: Table updated.
[ 3663.320168455,7] PHB0: Purging all IODA tables...
[ 3663.324682492,7] PHB1: Purging all IODA tables...
[ 3663.328369485,7] PHB4: Purging all IODA tables...
[ 3663.333891259,7] PHB5: Purging all IODA tables...
[ 3663.337700547,7] PHB64: Purging all IODA tables...
[ 3663.342816772,7] PHB68: Purging all IODA tables...
[ 3663.347052839,7] PHB69: Purging all IODA tables...

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/powernv: Tell OPAL about our MMU mode
  2017-06-28  5:17 ` Michael Ellerman
@ 2017-06-28 13:06   ` Benjamin Herrenschmidt
  2017-06-29  5:24     ` Michael Ellerman
  0 siblings, 1 reply; 5+ messages in thread
From: Benjamin Herrenschmidt @ 2017-06-28 13:06 UTC (permalink / raw)
  To: Michael Ellerman, linuxppc dev list; +Cc: Stewart Smith, Michael Neuling

On Wed, 2017-06-28 at 15:17 +1000, Michael Ellerman wrote:
> Which doesn't really make sense. FSP says it's running (runtime).
> 
> The end of the OPAL log is below.
> 
> I think your patch means we're now calling slw_reinit(), whereas
> previously we would skip it?

Ugh... and slw_reinit() is somewhat broken I suppose these days. Drat.

Mikey, we probably need to key that off arch 300 or check for a DT prop
skiboot would put in that tells Linux it can do this.

Ben.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/powernv: Tell OPAL about our MMU mode
  2017-06-28 13:06   ` Benjamin Herrenschmidt
@ 2017-06-29  5:24     ` Michael Ellerman
  2017-06-29 13:53       ` Benjamin Herrenschmidt
  0 siblings, 1 reply; 5+ messages in thread
From: Michael Ellerman @ 2017-06-29  5:24 UTC (permalink / raw)
  To: Benjamin Herrenschmidt, linuxppc dev list; +Cc: Stewart Smith, Michael Neuling

Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:

> On Wed, 2017-06-28 at 15:17 +1000, Michael Ellerman wrote:
>> Which doesn't really make sense. FSP says it's running (runtime).
>> 
>> The end of the OPAL log is below.
>> 
>> I think your patch means we're now calling slw_reinit(), whereas
>> previously we would skip it?
>
> Ugh... and slw_reinit() is somewhat broken I suppose these days. Drat.
>
> Mikey, we probably need to key that off arch 300 or check for a DT prop
> skiboot would put in that tells Linux it can do this.

DT prop of accepted reinit flags seems like it would work.

No prop means HILE_LE/HILE_BE.

cheers

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/powernv: Tell OPAL about our MMU mode
  2017-06-29  5:24     ` Michael Ellerman
@ 2017-06-29 13:53       ` Benjamin Herrenschmidt
  0 siblings, 0 replies; 5+ messages in thread
From: Benjamin Herrenschmidt @ 2017-06-29 13:53 UTC (permalink / raw)
  To: Michael Ellerman, linuxppc dev list; +Cc: Stewart Smith, Michael Neuling

On Thu, 2017-06-29 at 15:24 +1000, Michael Ellerman wrote:
> Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:
> 
> > On Wed, 2017-06-28 at 15:17 +1000, Michael Ellerman wrote:
> > > Which doesn't really make sense. FSP says it's running (runtime).
> > > 
> > > The end of the OPAL log is below.
> > > 
> > > I think your patch means we're now calling slw_reinit(), whereas
> > > previously we would skip it?
> > 
> > Ugh... and slw_reinit() is somewhat broken I suppose these days. Drat.
> > 
> > Mikey, we probably need to key that off arch 300 or check for a DT prop
> > skiboot would put in that tells Linux it can do this.
> 
> DT prop of accepted reinit flags seems like it would work.
> 
> No prop means HILE_LE/HILE_BE

Maybe... The bug is only with p8 (and I'm changing skiboot to fix
even that) so I think I may just key off ARCH300... we'll see when I
get back to it, got bogged down with other things.

Ben.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-29 13:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-25 20:05 [PATCH] powerpc/powernv: Tell OPAL about our MMU mode Benjamin Herrenschmidt
2017-06-28  5:17 ` Michael Ellerman
2017-06-28 13:06   ` Benjamin Herrenschmidt
2017-06-29  5:24     ` Michael Ellerman
2017-06-29 13:53       ` Benjamin Herrenschmidt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.