[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6e17958a-6cd8-4c6c-c890-f5f48b084d6f@redhat.com>
Date: Tue, 21 Aug 2018 13:26:13 +0200
From: Paolo Bonzini <pbonzini@...hat.com>
To: Borislav Petkov <bp@...en8.de>, Pu Wen <puwen@...on.cn>
Cc: tglx@...utronix.de, mingo@...hat.com, hpa@...or.com,
x86@...nel.org, thomas.lendacky@....com, mchehab@...nel.org,
mikhail.jin@...il.com, linux-kernel@...r.kernel.org,
linux-arch@...r.kernel.org, linux-edac@...r.kernel.org
Subject: Re: [PATCH v4 15/16] driver/edac: enable Hygon support to AMD64 EDAC
driver
On 21/08/2018 13:20, Borislav Petkov wrote:
> On Tue, Aug 21, 2018 at 07:04:23PM +0800, Pu Wen wrote:
>> Sure, JV will negotiate with AMD and make sure only JV use family 18h and
>> AMD won't use family 0x18h, which will make the patch tight and clear.
>>
>> What's the best way to adapt for EDAC driver?
>> * To simplify the code based on AMD won't do family 0x18 and remove
>> vendor checking.
>
> That, provided AMD won't use family 0x18.
>
But then I don't see the point of adding the Hygon vendor, since any
check can be simplified:
(AMD || HYGON) -->
AMD
(AMD && fam = 17h) || (HYGON && fam = 18h) -->
AMD && (fam = 17h || fam = 18h)
(AMD && fam = 17h) || HYGON -->
AMD && (fam = 17h || fam = 18h)
etc. Anyway, I don't care much either way.
Paolo
Powered by blists - more mailing lists