From eb2d3cfcdfbfb805d51a40751e56c29c7ed6e1a6 Mon Sep 17 00:00:00 2001 From: Oded Gabbay Date: Sat, 2 May 2015 12:10:04 +0300 Subject: [PATCH] Add missing DoorbellType field to HSA_CAPABILITY Signed-off-by: Oded Gabbay --- include/hsakmttypes.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/hsakmttypes.h b/include/hsakmttypes.h index ec10255b50..a7e0a81ab5 100644 --- a/include/hsakmttypes.h +++ b/include/hsakmttypes.h @@ -168,7 +168,10 @@ typedef union unsigned int WatchPointsSupported: 1; // Indicates if Watchpoints are available on the node. unsigned int WatchPointsTotalBits: 4; // ld(Watchpoints) available. To determine the number use 2^value - unsigned int Reserved : 20; + unsigned int DoorbellType : 2; // 0: This node has pre-1.0 doorbell characteristic + // 1: This node has 1.0 doorbell characteristic + // 2,3: reserved for future use + unsigned int Reserved : 18; } ui32; } HSA_CAPABILITY;