[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: v8.1M cpu emulation and target-arm feature-identification strategy
From: |
Peter Maydell |
Subject: |
Re: v8.1M cpu emulation and target-arm feature-identification strategy |
Date: |
Wed, 5 Aug 2020 20:16:57 +0100 |
On Wed, 5 Aug 2020 at 18:00, Richard Henderson
<richard.henderson@linaro.org> wrote:
> Older ones like XSCALE are obvious
Looking at the XScale manual we could actually implement
ARM_FEATURE_XSCALE as (cpu->midr & 0xffff0000 == 0x69050000)
[Vendor=intel, arch=ARMv5TE], and ARM_FEATURE_IWMMXT as
(cpu->midr & 0xffffe000 == 0x69054000) [Vendor=intel,
arch=ARMv5TE, Core Generation=2]... Doesn't really gain
us much, of course :-)
thanks
-- PMM