diff options
author | Michael Ellerman <michael@ellerman.id.au> | 2012-08-19 17:44:01 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-09-05 01:19:35 -0400 |
commit | d3dbeef657fdc9e870e0b01f811bbb906af052f8 (patch) | |
tree | 85f19e5f69ac6ae8d71bc8d9d6bd6d6ef70a4395 /arch/powerpc/include/asm/reg.h | |
parent | d1cfc0ce5d3196ccd88b9d868bb7cbcab61e0a31 (diff) |
powerpc: Rename 64-bit PVR constants to PVR_foo
We have an old FIXME in reg.h which points out that we should standardise
on PVR_foo for our PVR #defines. Currently we use PVR_ on 32-bit and PV_
on 64-bit.
So do that rename and remove the FIXME.
Seeing as we're touching all but one usage of __is_processor(), rename it
to something less ugly and more indicative of what it does, which is
simply to check the PVR version.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/reg.h')
-rw-r--r-- | arch/powerpc/include/asm/reg.h | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/arch/powerpc/include/asm/reg.h b/arch/powerpc/include/asm/reg.h index 638608677e2a..43bb15fc899b 100644 --- a/arch/powerpc/include/asm/reg.h +++ b/arch/powerpc/include/asm/reg.h | |||
@@ -937,7 +937,7 @@ | |||
937 | #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ | 937 | #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */ |
938 | #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ | 938 | #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */ |
939 | 939 | ||
940 | #define __is_processor(pv) (PVR_VER(mfspr(SPRN_PVR)) == (pv)) | 940 | #define pvr_version_is(pvr) (PVR_VER(mfspr(SPRN_PVR)) == (pvr)) |
941 | 941 | ||
942 | /* | 942 | /* |
943 | * IBM has further subdivided the standard PowerPC 16-bit version and | 943 | * IBM has further subdivided the standard PowerPC 16-bit version and |
@@ -1002,25 +1002,24 @@ | |||
1002 | #define PVR_476_ISS 0x00052000 | 1002 | #define PVR_476_ISS 0x00052000 |
1003 | 1003 | ||
1004 | /* 64-bit processors */ | 1004 | /* 64-bit processors */ |
1005 | /* XXX the prefix should be PVR_, we'll do a global sweep to fix it one day */ | 1005 | #define PVR_NORTHSTAR 0x0033 |
1006 | #define PV_NORTHSTAR 0x0033 | 1006 | #define PVR_PULSAR 0x0034 |
1007 | #define PV_PULSAR 0x0034 | 1007 | #define PVR_POWER4 0x0035 |
1008 | #define PV_POWER4 0x0035 | 1008 | #define PVR_ICESTAR 0x0036 |
1009 | #define PV_ICESTAR 0x0036 | 1009 | #define PVR_SSTAR 0x0037 |
1010 | #define PV_SSTAR 0x0037 | 1010 | #define PVR_POWER4p 0x0038 |
1011 | #define PV_POWER4p 0x0038 | 1011 | #define PVR_970 0x0039 |
1012 | #define PV_970 0x0039 | 1012 | #define PVR_POWER5 0x003A |
1013 | #define PV_POWER5 0x003A | 1013 | #define PVR_POWER5p 0x003B |
1014 | #define PV_POWER5p 0x003B | 1014 | #define PVR_970FX 0x003C |
1015 | #define PV_970FX 0x003C | 1015 | #define PVR_POWER6 0x003E |
1016 | #define PV_POWER6 0x003E | 1016 | #define PVR_POWER7 0x003F |
1017 | #define PV_POWER7 0x003F | 1017 | #define PVR_630 0x0040 |
1018 | #define PV_630 0x0040 | 1018 | #define PVR_630p 0x0041 |
1019 | #define PV_630p 0x0041 | 1019 | #define PVR_970MP 0x0044 |
1020 | #define PV_970MP 0x0044 | 1020 | #define PVR_970GX 0x0045 |
1021 | #define PV_970GX 0x0045 | 1021 | #define PVR_BE 0x0070 |
1022 | #define PV_BE 0x0070 | 1022 | #define PVR_PA6T 0x0090 |
1023 | #define PV_PA6T 0x0090 | ||
1024 | 1023 | ||
1025 | /* Macros for setting and retrieving special purpose registers */ | 1024 | /* Macros for setting and retrieving special purpose registers */ |
1026 | #ifndef __ASSEMBLY__ | 1025 | #ifndef __ASSEMBLY__ |