1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2014 IBM Corp.
6 #include <linux/module.h>
7 #include <linux/rcupdate.h>
9 #include <misc/cxl-base.h>
11 #include <linux/of_platform.h>
14 /* protected by rcu */
15 static struct cxl_calls
*cxl_calls
;
17 atomic_t cxl_use_count
= ATOMIC_INIT(0);
18 EXPORT_SYMBOL(cxl_use_count
);
20 #ifdef CONFIG_CXL_MODULE
22 static inline struct cxl_calls
*cxl_calls_get(void)
24 struct cxl_calls
*calls
= NULL
;
27 calls
= rcu_dereference(cxl_calls
);
28 if (calls
&& !try_module_get(calls
->owner
))
35 static inline void cxl_calls_put(struct cxl_calls
*calls
)
37 BUG_ON(calls
!= cxl_calls
);
39 /* we don't need to rcu this, as we hold a reference to the module */
40 module_put(cxl_calls
->owner
);
43 #else /* !defined CONFIG_CXL_MODULE */
45 static inline struct cxl_calls
*cxl_calls_get(void)
50 static inline void cxl_calls_put(struct cxl_calls
*calls
) { }
52 #endif /* CONFIG_CXL_MODULE */
54 /* AFU refcount management */
55 struct cxl_afu
*cxl_afu_get(struct cxl_afu
*afu
)
57 return (get_device(&afu
->dev
) == NULL
) ? NULL
: afu
;
59 EXPORT_SYMBOL_GPL(cxl_afu_get
);
61 void cxl_afu_put(struct cxl_afu
*afu
)
63 put_device(&afu
->dev
);
65 EXPORT_SYMBOL_GPL(cxl_afu_put
);
67 void cxl_slbia(struct mm_struct
*mm
)
69 struct cxl_calls
*calls
;
71 calls
= cxl_calls_get();
81 int register_cxl_calls(struct cxl_calls
*calls
)
86 rcu_assign_pointer(cxl_calls
, calls
);
89 EXPORT_SYMBOL_GPL(register_cxl_calls
);
91 void unregister_cxl_calls(struct cxl_calls
*calls
)
93 BUG_ON(cxl_calls
->owner
!= calls
->owner
);
94 RCU_INIT_POINTER(cxl_calls
, NULL
);
97 EXPORT_SYMBOL_GPL(unregister_cxl_calls
);
99 int cxl_update_properties(struct device_node
*dn
,
100 struct property
*new_prop
)
102 return of_update_property(dn
, new_prop
);
104 EXPORT_SYMBOL_GPL(cxl_update_properties
);
106 static int __init
cxl_base_init(void)
108 struct device_node
*np
;
109 struct platform_device
*dev
;
113 * Scan for compatible devices in guest only
115 if (cpu_has_feature(CPU_FTR_HVMODE
))
118 for_each_compatible_node(np
, NULL
, "ibm,coherent-platform-facility") {
119 dev
= of_platform_device_create(np
, NULL
, NULL
);
123 pr_devel("Found %d cxl device(s)\n", count
);
126 device_initcall(cxl_base_init
);