blob: 2251da7f32d95420aa1d3d90748641c8d7671af9 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Ian Munsie1cd258d2014-10-08 19:54:56 +11002/*
3 * Copyright 2014 IBM Corp.
Ian Munsie1cd258d2014-10-08 19:54:56 +11004 */
5
Michael Neulingec249dd2015-05-27 16:07:16 +10006#ifndef _MISC_CXL_BASE_H
7#define _MISC_CXL_BASE_H
Ian Munsie1cd258d2014-10-08 19:54:56 +11008
9#ifdef CONFIG_CXL_BASE
10
11#define CXL_IRQ_RANGES 4
12
13struct cxl_irq_ranges {
14 irq_hw_number_t offset[CXL_IRQ_RANGES];
15 irq_hw_number_t range[CXL_IRQ_RANGES];
16};
17
18extern atomic_t cxl_use_count;
19
20static inline bool cxl_ctx_in_use(void)
21{
22 return (atomic_read(&cxl_use_count) != 0);
23}
24
25static inline void cxl_ctx_get(void)
26{
27 atomic_inc(&cxl_use_count);
28}
29
30static inline void cxl_ctx_put(void)
31{
32 atomic_dec(&cxl_use_count);
33}
34
Ian Munsie62ccf2d2016-07-14 07:17:03 +100035struct cxl_afu *cxl_afu_get(struct cxl_afu *afu);
36void cxl_afu_put(struct cxl_afu *afu);
Ian Munsie1cd258d2014-10-08 19:54:56 +110037void cxl_slbia(struct mm_struct *mm);
38
39#else /* CONFIG_CXL_BASE */
40
41static inline bool cxl_ctx_in_use(void) { return false; }
Ian Munsie62ccf2d2016-07-14 07:17:03 +100042static inline struct cxl_afu *cxl_afu_get(struct cxl_afu *afu) { return NULL; }
43static inline void cxl_afu_put(struct cxl_afu *afu) {}
Ian Munsie1cd258d2014-10-08 19:54:56 +110044static inline void cxl_slbia(struct mm_struct *mm) {}
Ian Munsie1cd258d2014-10-08 19:54:56 +110045
46#endif /* CONFIG_CXL_BASE */
47
48#endif