Hi all, On Wed, Oct 01, 2014 at 06:54:18PM +0100, Stephen Boyd wrote: > On 09/19/14 11:24, Stephen Boyd wrote: > > On 09/18/14 15:46, Russell King - ARM Linux wrote: > >> I know that you're changing this to conform with the ARM ARM, but we > >> have to consider that before VFP was subsumed into the ARM ARM, this > >> register had the format described as per this file, and these other > >> bits may be set for an ARM part. Including these bits in the mask > >> means that we will mis-identify these older parts as VFPv3. > >> > > Do you, or anyone else, know of other implementations? I *hope* that > > this same exercise was done by the VFP architects before they > > re-purposed bits but who knows. If nobody is actually setting these > > higher bits then is there any problem widening the mask (besides it > > being slightly confusing)? > > > > Any thoughts? I've spoken to the architects about this, and it seems that you need to parse FPSID differently depending upon whether you are a v7 CPU or not. However, as you are well aware, detecting whether or not you are v7 isn't as simple as it sounds. cpu_architecture() checks the VMSA/PMSA fields in MMFR0, but that's not quite right for 11MPcore (and 1176 iirc), which are v6 implementations. So, it sounds like the scheme is: if (revised_cpuid_format()) // i.e. MIDR.Architecture == 0xF determine_vfp_arch_using_mvfr_regs(); else determine_vfp_arch_using_fpsid(); which in turn means that we probably need to rethink how we want to advertise floating point hardware features in the future. ARMv8, for example, adds an additional MVFR2 register, which advertises additional floating point instructions without explicitly creating something akin to VFPv5. Will -- To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html