diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-02-04 18:40:53 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-03-20 04:11:45 -0500 |
commit | d96b81533ba3d5775e45aee6986b2aa33c10801c (patch) | |
tree | 334af39452d650cc14b389c58a30cc54e9e130dd /include/asm-sparc64/cpudata.h | |
parent | e1c21c4f476f2270c98aad1fe55e5f33e25f77f5 (diff) |
[SPARC64]: Add sun4v case to __GET_CPUID() patch tables.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64/cpudata.h')
-rw-r--r-- | include/asm-sparc64/cpudata.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-sparc64/cpudata.h b/include/asm-sparc64/cpudata.h index c15514f82c33..4f28a85c1043 100644 --- a/include/asm-sparc64/cpudata.h +++ b/include/asm-sparc64/cpudata.h | |||
@@ -68,6 +68,7 @@ struct cpuid_patch_entry { | |||
68 | unsigned int cheetah_safari[4]; | 68 | unsigned int cheetah_safari[4]; |
69 | unsigned int cheetah_jbus[4]; | 69 | unsigned int cheetah_jbus[4]; |
70 | unsigned int starfire[4]; | 70 | unsigned int starfire[4]; |
71 | unsigned int sun4v[4]; | ||
71 | }; | 72 | }; |
72 | extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end; | 73 | extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end; |
73 | #endif | 74 | #endif |
@@ -79,6 +80,8 @@ extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end; | |||
79 | 80 | ||
80 | #define TRAP_BLOCK_SZ_SHIFT 6 | 81 | #define TRAP_BLOCK_SZ_SHIFT 6 |
81 | 82 | ||
83 | #include <asm/scratchpad.h> | ||
84 | |||
82 | #ifdef CONFIG_SMP | 85 | #ifdef CONFIG_SMP |
83 | 86 | ||
84 | #define __GET_CPUID(REG) \ | 87 | #define __GET_CPUID(REG) \ |
@@ -105,6 +108,11 @@ extern struct cpuid_patch_entry __cpuid_patch, __cpuid_patch_end; | |||
105 | sllx REG, 9, REG; \ | 108 | sllx REG, 9, REG; \ |
106 | or REG, 0xd0, REG; \ | 109 | or REG, 0xd0, REG; \ |
107 | lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\ | 110 | lduwa [REG] ASI_PHYS_BYPASS_EC_E, REG;\ |
111 | /* sun4v implementation. */ \ | ||
112 | mov SCRATCHPAD_CPUID, REG; \ | ||
113 | nop; \ | ||
114 | ldxa [REG] ASI_SCRATCHPAD, REG; \ | ||
115 | nop; \ | ||
108 | .previous; | 116 | .previous; |
109 | 117 | ||
110 | /* Clobbers TMP, current address space PGD phys address into DEST. */ | 118 | /* Clobbers TMP, current address space PGD phys address into DEST. */ |