summaryrefslogtreecommitdiff
path: root/mali_kbase/mali_kbase_hw.h
diff options
context:
space:
mode:
authorJörg Wagner <jorwag@google.com>2023-12-14 09:44:26 +0000
committerJörg Wagner <jorwag@google.com>2023-12-14 09:44:26 +0000
commit049a542207ed694271316782397b78b2e202086a (patch)
tree105e9378d4d5062dc72109fdd4a77c915bd9425d /mali_kbase/mali_kbase_hw.h
parente61eb93296e9f940b32d4ad4b0c3a5557cbeaf17 (diff)
downloadgpu-049a542207ed694271316782397b78b2e202086a.tar.gz
Update KMD to r47p0
Provenance: ipdelivery@ad01e50d640910a99224382bb227e6d4de627657 Change-Id: I19ac9bce34a5c5a319c1b4a388e8b037b3dfe6e7
Diffstat (limited to 'mali_kbase/mali_kbase_hw.h')
-rw-r--r--mali_kbase/mali_kbase_hw.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/mali_kbase/mali_kbase_hw.h b/mali_kbase/mali_kbase_hw.h
index ddcddaa..44e1ee4 100644
--- a/mali_kbase/mali_kbase_hw.h
+++ b/mali_kbase/mali_kbase_hw.h
@@ -1,7 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
*
- * (C) COPYRIGHT 2012-2017, 2020-2022 ARM Limited. All rights reserved.
+ * (C) COPYRIGHT 2012-2023 ARM Limited. All rights reserved.
*
* This program is free software and is provided to you under the terms of the
* GNU General Public License version 2 as published by the Free Software
@@ -33,16 +33,21 @@
* @kbdev: Device pointer
* @issue: issue to be checked
*/
-#define kbase_hw_has_issue(kbdev, issue)\
- test_bit(issue, &(kbdev)->hw_issues_mask[0])
+#define kbase_hw_has_issue(kbdev, issue) test_bit(issue, &(kbdev)->hw_issues_mask[0])
/**
* kbase_hw_has_feature - Tell whether a feature is supported
* @kbdev: Device pointer
* @feature: feature to be checked
*/
-#define kbase_hw_has_feature(kbdev, feature)\
- test_bit(feature, &(kbdev)->hw_features_mask[0])
+#define kbase_hw_has_feature(kbdev, feature) test_bit(feature, &(kbdev)->hw_features_mask[0])
+
+/**
+ * kbase_hw_has_l2_slice_hash_feature - Tell if the feature is supported
+ * @kbdev: Device pointer
+ */
+#define kbase_hw_has_l2_slice_hash_feature(kbdev) \
+ test_bit(BASE_HW_FEATURE_L2_SLICE_HASH, &(kbdev)->hw_features_mask[0])
/**
* kbase_hw_set_issues_mask - Set the hardware issues mask based on the GPU ID
@@ -68,4 +73,4 @@ int kbase_hw_set_issues_mask(struct kbase_device *kbdev);
*/
void kbase_hw_set_features_mask(struct kbase_device *kbdev);
-#endif /* _KBASE_HW_H_ */
+#endif /* _KBASE_HW_H_ */