summaryrefslogtreecommitdiffstats
path: root/include/asm-ia64
diff options
context:
space:
mode:
authorColin Ngam2005-04-25 22:07:00 +0200
committerTony Luck2005-04-25 22:07:00 +0200
commit658b32cad9ae087bd34f35a925fd75b76d663d4e (patch)
treeb742c5e1e756912fe6f6a81ebb4a9db814c641e7 /include/asm-ia64
parent[IA64-SGI] Shub2 provides an addition of 2 External Interrupt events. (diff)
downloadkernel-qcow2-linux-658b32cad9ae087bd34f35a925fd75b76d663d4e.tar.gz
kernel-qcow2-linux-658b32cad9ae087bd34f35a925fd75b76d663d4e.tar.xz
kernel-qcow2-linux-658b32cad9ae087bd34f35a925fd75b76d663d4e.zip
[IA64-SGI] support variable length nasids in shub2
This patch enables our TIO IO chipset to support variable length nasids in Shub2 chipset. Signed-off-by: Colin Ngam <cngam@sgi.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'include/asm-ia64')
-rw-r--r--include/asm-ia64/sn/addrs.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-ia64/sn/addrs.h b/include/asm-ia64/sn/addrs.h
index c916bd22767a..ae0bc99d573e 100644
--- a/include/asm-ia64/sn/addrs.h
+++ b/include/asm-ia64/sn/addrs.h
@@ -154,8 +154,9 @@
* the chiplet id is zero. If we implement TIO-TIO dma, we might need
* to insert a chiplet id into this macro. However, it is our belief
* right now that this chiplet id will be ICE, which is also zero.
+ * Nasid starts on bit 40.
*/
-#define PHYS_TO_TIODMA(x) ( (((u64)(x) & NASID_MASK) << 2) | NODE_OFFSET(x))
+#define PHYS_TO_TIODMA(x) ( (((u64)(NASID_GET(x))) << 40) | NODE_OFFSET(x))
#define PHYS_TO_DMA(x) ( (((u64)(x) & NASID_MASK) >> 2) | NODE_OFFSET(x))