1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/platform_device.h>
3 #include <linux/memregion.h>
4 #include <linux/module.h>
5 #include <linux/pfn_t.h>
9 static bool region_idle;
10 module_param_named(region_idle, region_idle, bool, 0644);
12 static int dax_hmem_probe(struct platform_device *pdev)
14 unsigned long flags = IORESOURCE_DAX_KMEM;
15 struct device *dev = &pdev->dev;
16 struct dax_region *dax_region;
17 struct memregion_info *mri;
18 struct dev_dax_data data;
21 * @region_idle == true indicates that an administrative agent
22 * wants to manipulate the range partitioning before the devices
23 * are created, so do not send them to the dax_kmem driver by
29 mri = dev->platform_data;
30 dax_region = alloc_dax_region(dev, pdev->id, &mri->range,
31 mri->target_node, PMD_SIZE, flags);
35 data = (struct dev_dax_data) {
36 .dax_region = dax_region,
38 .size = region_idle ? 0 : range_len(&mri->range),
39 .memmap_on_memory = false,
42 return PTR_ERR_OR_ZERO(devm_create_dev_dax(&data));
45 static struct platform_driver dax_hmem_driver = {
46 .probe = dax_hmem_probe,
52 static void release_memregion(void *data)
54 memregion_free((long) data);
57 static void release_hmem(void *pdev)
59 platform_device_unregister(pdev);
62 static int hmem_register_device(struct device *host, int target_nid,
63 const struct resource *res)
65 struct platform_device *pdev;
66 struct memregion_info info;
70 if (IS_ENABLED(CONFIG_CXL_REGION) &&
71 region_intersects(res->start, resource_size(res), IORESOURCE_MEM,
72 IORES_DESC_CXL) != REGION_DISJOINT) {
73 dev_dbg(host, "deferring range to CXL: %pr\n", res);
77 rc = region_intersects(res->start, resource_size(res), IORESOURCE_MEM,
78 IORES_DESC_SOFT_RESERVED);
79 if (rc != REGION_INTERSECTS)
82 id = memregion_alloc(GFP_KERNEL);
84 dev_err(host, "memregion allocation failure for %pr\n", res);
87 rc = devm_add_action_or_reset(host, release_memregion, (void *) id);
91 pdev = platform_device_alloc("hmem", id);
93 dev_err(host, "device allocation failure for %pr\n", res);
97 pdev->dev.numa_node = numa_map_to_online_node(target_nid);
98 info = (struct memregion_info) {
99 .target_node = target_nid,
105 rc = platform_device_add_data(pdev, &info, sizeof(info));
107 dev_err(host, "memregion_info allocation failure for %pr\n",
112 rc = platform_device_add(pdev);
114 dev_err(host, "%s add failed for %pr\n", dev_name(&pdev->dev),
119 return devm_add_action_or_reset(host, release_hmem, pdev);
122 platform_device_put(pdev);
126 static int dax_hmem_platform_probe(struct platform_device *pdev)
128 return walk_hmem_resources(&pdev->dev, hmem_register_device);
131 static struct platform_driver dax_hmem_platform_driver = {
132 .probe = dax_hmem_platform_probe,
134 .name = "hmem_platform",
138 static __init int dax_hmem_init(void)
142 rc = platform_driver_register(&dax_hmem_platform_driver);
146 rc = platform_driver_register(&dax_hmem_driver);
148 platform_driver_unregister(&dax_hmem_platform_driver);
153 static __exit void dax_hmem_exit(void)
155 platform_driver_unregister(&dax_hmem_driver);
156 platform_driver_unregister(&dax_hmem_platform_driver);
159 module_init(dax_hmem_init);
160 module_exit(dax_hmem_exit);
162 /* Allow for CXL to define its own dax regions */
163 #if IS_ENABLED(CONFIG_CXL_REGION)
164 #if IS_MODULE(CONFIG_CXL_ACPI)
165 MODULE_SOFTDEP("pre: cxl_acpi");
169 MODULE_ALIAS("platform:hmem*");
170 MODULE_ALIAS("platform:hmem_platform*");
171 MODULE_LICENSE("GPL v2");
172 MODULE_AUTHOR("Intel Corporation");