mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
[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>
This commit is contained in:
parent
8f9e146732
commit
b29e7132b5
@ -964,7 +964,8 @@ static inline s64
|
||||
ia64_pal_cache_read (pal_cache_line_id_u_t line_id, u64 physical_addr)
|
||||
{
|
||||
struct ia64_pal_retval iprv;
|
||||
PAL_CALL(iprv, PAL_CACHE_READ, line_id.pclid_data, physical_addr, 0);
|
||||
PAL_CALL_PHYS_STK(iprv, PAL_CACHE_READ, line_id.pclid_data,
|
||||
physical_addr, 0);
|
||||
return iprv.status;
|
||||
}
|
||||
|
||||
@ -986,7 +987,8 @@ static inline s64
|
||||
ia64_pal_cache_write (pal_cache_line_id_u_t line_id, u64 physical_addr, u64 data)
|
||||
{
|
||||
struct ia64_pal_retval iprv;
|
||||
PAL_CALL(iprv, PAL_CACHE_WRITE, line_id.pclid_data, physical_addr, data);
|
||||
PAL_CALL_PHYS_STK(iprv, PAL_CACHE_WRITE, line_id.pclid_data,
|
||||
physical_addr, data);
|
||||
return iprv.status;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user