Skip to content

Commit 22dcc7d

Browse files
committed
Merge tag 'powerpc-6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux
Pull powerpc fixes from Michael Ellerman: - Fix PCIe MEM size for pci2 node on Turris 1.x boards - Two minor build fixes Thanks to Christophe Leroy, Douglas Anderson, Pali Rohár, Petr Mladek, and Randy Dunlap. * tag 'powerpc-6.5-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: powerpc: dts: turris1x.dts: Fix PCIe MEM size for pci2 node powerpc: Include asm/nmi.c in mobility.c for watchdog_hardlockup_set_timeout_pct() powerpc: allow PPC_EARLY_DEBUG_CPM only when SERIAL_CPM=y
2 parents 70806ee + abaa02f commit 22dcc7d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

arch/powerpc/Kconfig.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ config PPC_EARLY_DEBUG_40x
240240

241241
config PPC_EARLY_DEBUG_CPM
242242
bool "Early serial debugging for Freescale CPM-based serial ports"
243-
depends on SERIAL_CPM
243+
depends on SERIAL_CPM=y
244244
help
245245
Select this to enable early debugging for Freescale chips
246246
using a CPM-based serial port. This assumes that the bootwrapper

arch/powerpc/boot/dts/turris1x.dts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,12 +476,12 @@
476476
* channel 1 (but only USB 2.0 subset) to USB 2.0 pins on mPCIe
477477
* slot 1 (CN5), channels 2 and 3 to connector P600.
478478
*
479-
* P2020 PCIe Root Port uses 1MB of PCIe MEM and xHCI controller
479+
* P2020 PCIe Root Port does not use PCIe MEM and xHCI controller
480480
* uses 64kB + 8kB of PCIe MEM. No PCIe IO is used or required.
481-
* So allocate 2MB of PCIe MEM for this PCIe bus.
481+
* So allocate 128kB of PCIe MEM for this PCIe bus.
482482
*/
483483
reg = <0 0xffe08000 0 0x1000>;
484-
ranges = <0x02000000 0x0 0xc0000000 0 0xc0000000 0x0 0x00200000>, /* MEM */
484+
ranges = <0x02000000 0x0 0xc0000000 0 0xc0000000 0x0 0x00020000>, /* MEM */
485485
<0x01000000 0x0 0x00000000 0 0xffc20000 0x0 0x00010000>; /* IO */
486486

487487
pcie@0 {

arch/powerpc/platforms/pseries/mobility.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <linux/stringify.h>
2525

2626
#include <asm/machdep.h>
27+
#include <asm/nmi.h>
2728
#include <asm/rtas.h>
2829
#include "pseries.h"
2930
#include "vas.h" /* vas_migration_handler() */

0 commit comments

Comments
 (0)