0010-ar71xx-add-flush-reset-register-writes-should-fix-restart-issues-17839.patch 1000 B

123456789101112131415161718192021222324
  1. From: Matthias Schiffer <mschiffer@universe-factory.net>
  2. Date: Fri, 9 Jan 2015 09:27:39 +0100
  3. Subject: ar71xx: add flush reset register writes, should fix restart issues (#17839)
  4. Backport of r43777
  5. diff --git a/target/linux/ar71xx/patches-3.10/728-MIPS-ath79-fix-restart.patch b/target/linux/ar71xx/patches-3.10/728-MIPS-ath79-fix-restart.patch
  6. index 0027c59..612078c 100644
  7. --- a/target/linux/ar71xx/patches-3.10/728-MIPS-ath79-fix-restart.patch
  8. +++ b/target/linux/ar71xx/patches-3.10/728-MIPS-ath79-fix-restart.patch
  9. @@ -8,3 +8,13 @@
  10. ath79_device_reset_set(AR71XX_RESET_FULL_CHIP);
  11. for (;;)
  12. if (cpu_wait)
  13. +--- a/arch/mips/include/asm/mach-ath79/ath79.h
  14. ++++ b/arch/mips/include/asm/mach-ath79/ath79.h
  15. +@@ -144,6 +144,7 @@ static inline u32 ath79_pll_rr(unsigned
  16. + static inline void ath79_reset_wr(unsigned reg, u32 val)
  17. + {
  18. + __raw_writel(val, ath79_reset_base + reg);
  19. ++ (void) __raw_readl(ath79_reset_base + reg); /* flush */
  20. + }
  21. +
  22. + static inline u32 ath79_reset_rr(unsigned reg)