Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-08-04 Thread Maciej W. Rozycki
On Mon, 3 Aug 2020, Florian Fainelli wrote: > diff --git a/arch/mips/bmips/setup.c b/arch/mips/bmips/setup.c > index 19308df5f577..df0efea12611 100644 > --- a/arch/mips/bmips/setup.c > +++ b/arch/mips/bmips/setup.c > @@ -110,6 +110,20 @@ static void bcm6368_quirks(void) >

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-08-03 Thread Florian Fainelli
On 8/3/2020 4:30 AM, Thomas Bogendoerfer wrote: > On Fri, Jul 31, 2020 at 03:49:28PM -0700, Florian Fainelli wrote: >> On 7/31/20 3:34 AM, Jiaxun Yang wrote: >>> >>> >>> 在 2020/7/31 下午12:24, Florian Fainelli 写道: Disable pref 30 by utilizing the standard quirk method and matching the af

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-08-03 Thread Thomas Bogendoerfer
On Fri, Jul 31, 2020 at 03:49:28PM -0700, Florian Fainelli wrote: > On 7/31/20 3:34 AM, Jiaxun Yang wrote: > > > > > > 在 2020/7/31 下午12:24, Florian Fainelli 写道: > >> Disable pref 30 by utilizing the standard quirk method and matching the > >> affected SoCs: 7344, 7346, 7425. > >> > >> Signed-off-

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-07-31 Thread Florian Fainelli
On 7/31/20 2:05 AM, Thomas Bogendoerfer wrote: > On Thu, Jul 30, 2020 at 09:24:01PM -0700, Florian Fainelli wrote: >> Disable pref 30 by utilizing the standard quirk method and matching the >> affected SoCs: 7344, 7346, 7425. >> >> Signed-off-by: Florian Fainelli >> --- >> arch/mips/bmips/setup.c

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-07-31 Thread Florian Fainelli
On 7/31/20 3:34 AM, Jiaxun Yang wrote: > > > 在 2020/7/31 下午12:24, Florian Fainelli 写道: >> Disable pref 30 by utilizing the standard quirk method and matching the >> affected SoCs: 7344, 7346, 7425. >> >> Signed-off-by: Florian Fainelli >> --- >>   arch/mips/bmips/setup.c | 17 + >

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-07-31 Thread Jiaxun Yang
在 2020/7/31 下午12:24, Florian Fainelli 写道: Disable pref 30 by utilizing the standard quirk method and matching the affected SoCs: 7344, 7346, 7425. Signed-off-by: Florian Fainelli --- arch/mips/bmips/setup.c | 17 + 1 file changed, 17 insertions(+) diff --git a/arch/mips/b

Re: [PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-07-31 Thread Thomas Bogendoerfer
On Thu, Jul 30, 2020 at 09:24:01PM -0700, Florian Fainelli wrote: > Disable pref 30 by utilizing the standard quirk method and matching the > affected SoCs: 7344, 7346, 7425. > > Signed-off-by: Florian Fainelli > --- > arch/mips/bmips/setup.c | 17 + > 1 file changed, 17 insertio

[PATCH] MIPS: BMIPS: Disable pref 30 for buggy CPUs

2020-07-30 Thread Florian Fainelli
Disable pref 30 by utilizing the standard quirk method and matching the affected SoCs: 7344, 7346, 7425. Signed-off-by: Florian Fainelli --- arch/mips/bmips/setup.c | 17 + 1 file changed, 17 insertions(+) diff --git a/arch/mips/bmips/setup.c b/arch/mips/bmips/setup.c index 1930