@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright(c) 2021 Intel Corporation. All rights reserved. */
#include <linux/platform_device.h>
+#include <linux/genalloc.h>
#include <linux/device.h>
#include <linux/module.h>
#include <linux/pci.h>
@@ -55,6 +56,17 @@ static struct cxl_port *get_root_decoder(const struct cxl_memdev *endpoint)
return NULL;
}
+static void release_cxl_region(void *r)
+{
+ struct cxl_region *region = (struct cxl_region *)r;
+ struct cxl_decoder *cxld = cxld_from_region(region);
+ struct resource *parent_res = &cxld->res;
+ const struct resource *res = region->res;
+
+ gen_pool_free(cxld->address_space, res->start, resource_size(res));
+ __release_region(parent_res, res->start, resource_size(res));
+}
+
/**
* sanitize_region() - Check is region is reasonably configured
* @region: The region to check
@@ -104,8 +116,27 @@ static int sanitize_region(const struct cxl_region *region)
*/
static int allocate_address_space(struct cxl_region *region)
{
- /* TODO */
- return 0;
+ struct cxl_decoder *cxld = cxld_from_region(region);
+ unsigned long start;
+
+ start = gen_pool_alloc(cxld->address_space, region->size);
+ if (!start) {
+ trace_allocation_failed(region,
+ "Couldn't allocate address space");
+ return -ENOMEM;
+ }
+ region->res =
+ __request_region(&cxld->res, start, region->size,
+ dev_name(®ion->dev), IORESOURCE_EXCLUSIVE);
+
+ if (IS_ERR(region->res)) {
+ trace_allocation_failed(region, "Couldn't obtain region");
+ gen_pool_free(cxld->address_space, start, region->size);
+ return PTR_ERR(region->res);
+ }
+
+ return devm_add_action_or_reset(®ion->dev, release_cxl_region,
+ region);
}
/**
@@ -35,6 +35,9 @@ DEFINE_EVENT(cxl_region_template, region_activated,
DEFINE_EVENT(cxl_region_template, sanitize_failed,
TP_PROTO(const struct cxl_region *region, char *status),
TP_ARGS(region, status));
+DEFINE_EVENT(cxl_region_template, allocation_failed,
+ TP_PROTO(const struct cxl_region *region, char *status),
+ TP_ARGS(region, status));
#endif /* if !defined (__CXL_TRACE_H__) || defined(TRACE_HEADER_MULTI_READ) */
When a region is not assigned a host physical address, one is picked by the driver. As the address will determine which CFMWS contains the region, it's usually a better idea to let the driver make this determination. Signed-off-by: Ben Widawsky <ben.widawsky@intel.com> --- drivers/cxl/region.c | 35 +++++++++++++++++++++++++++++++++-- drivers/cxl/trace.h | 3 +++ 2 files changed, 36 insertions(+), 2 deletions(-)