mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-11 17:34:57 +00:00
b2c9c4dda2
This patch copies over refreshed config and patches from 5.10 with the following changes: - dropped superfluous tc654/tc655 variant detection patch (tc654 support will become available upstream starting with 5.17-rc7+). - dropped xhci msi(x) workaround... as the broken MSI(X) is now gone. - dropped dwc2 workaround since the driver was fixed and it works without it. Please note: Netgear WNDAP660 & WNDAP620 users: Due to the kernel's size increase, uboot will likely break because it is overwrite the kernel during decompression. To fix this (and debrick affected devices, no reflash necessary), attach the RJ45-Serial-Console cable and enter the following in the uboot prompt during bootup: setenv kernel_addr_r 1100000 saveenv run bootcmd to restore the old/previous behavior: setenv kernel_addr_r 600000 saveenv run bootcmd Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
15 lines
554 B
Diff
15 lines
554 B
Diff
--- a/arch/powerpc/platforms/4xx/pci.c
|
|
+++ b/arch/powerpc/platforms/4xx/pci.c
|
|
@@ -1902,9 +1902,9 @@ static void __init ppc4xx_configure_pcie
|
|
* if it works
|
|
*/
|
|
out_le32(mbase + PECFG_PIM0LAL, 0x00000000);
|
|
- out_le32(mbase + PECFG_PIM0LAH, 0x00000000);
|
|
+ out_le32(mbase + PECFG_PIM0LAH, 0x00000008);
|
|
out_le32(mbase + PECFG_PIM1LAL, 0x00000000);
|
|
- out_le32(mbase + PECFG_PIM1LAH, 0x00000000);
|
|
+ out_le32(mbase + PECFG_PIM1LAH, 0x0000000c);
|
|
out_le32(mbase + PECFG_PIM01SAH, 0xffff0000);
|
|
out_le32(mbase + PECFG_PIM01SAL, 0x00000000);
|
|
|