diff options
author | Russ Anderson <rja@sgi.com> | 2006-09-26 15:47:48 -0400 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2006-09-26 18:21:11 -0400 |
commit | b29e7132b5a9f2496beed37beef7ba4d010afb2c (patch) | |
tree | d274ba31b5f8aa1ab4a3560c3480c5afecca4fe4 /include | |
parent | 8f9e146732dcba5161dad3747ee73be1f8c13133 (diff) |
[IA64] PAL calls need physical mode, stacked
PAL_CACHE_READ and PAL_CACHE_WRITE need to be called in physical
mode with stacked registers.
Signed-off-by: Russ Anderson (rja@sgi.com)
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ia64/pal.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-ia64/pal.h b/include/asm-ia64/pal.h index d1587e4f5759..2c8fd92d0ece 100644 --- a/include/asm-ia64/pal.h +++ b/include/asm-ia64/pal.h | |||
@@ -964,7 +964,8 @@ static inline s64 | |||
964 | ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr) | 964 | ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr) |
965 | { | 965 | { |
966 | struct ia64_pal_retval iprv; | 966 | struct ia64_pal_retval iprv; |
967 | PAL_CALL(iprv, PAL_CACHE_READ, line_id.pclid_data, physical_addr, 0); | 967 | PAL_CALL_PHYS_STK(iprv, PAL_CACHE_READ, line_id.pclid_data, |
968 | physical_addr, 0); | ||
968 | return iprv.status; | 969 | return iprv.status; |
969 | } | 970 | } |
970 | 971 | ||
@@ -986,7 +987,8 @@ static inline s64 | |||
986 | ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data) | 987 | ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data) |
987 | { | 988 | { |
988 | struct ia64_pal_retval iprv; | 989 | struct ia64_pal_retval iprv; |
989 | PAL_CALL(iprv, PAL_CACHE_WRITE, line_id.pclid_data, physical_addr, data); | 990 | PAL_CALL_PHYS_STK(iprv, PAL_CACHE_WRITE, line_id.pclid_data, |
991 | physical_addr, data); | ||
990 | return iprv.status; | 992 | return iprv.status; |
991 | } | 993 | } |
992 | 994 | ||