]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
fpga: dfl: store MMIO resources in feature device data
authorPeter Colberg <peter.colberg@intel.com>
Wed, 20 Nov 2024 01:10:28 +0000 (20:10 -0500)
committerXu Yilun <yilun.xu@linux.intel.com>
Wed, 18 Dec 2024 14:28:48 +0000 (22:28 +0800)
Instead of directly copying the MMIO resource of each feature to the
feature device resources, add a new member to the feature device data
to store the resources and copy them to the feature device using
platform_device_add_resources(). This prepares a subsequent commit
which completely destroys and recreates the feature device when
releasing and reassigning the corresponding port, respectively.

Signed-off-by: Peter Colberg <peter.colberg@intel.com>
Reviewed-by: Matthew Gerlach <matthew.gerlach@linux.intel.com>
Reviewed-by: Basheer Ahmed Muddebihal <basheer.ahmed.muddebihal@linux.intel.com>
Acked-by: Xu Yilun <yilun.xu@intel.com>
Link: https://lore.kernel.org/r/20241120011035.230574-13-peter.colberg@intel.com
Signed-off-by: Xu Yilun <yilun.xu@linux.intel.com>
drivers/fpga/dfl.c
drivers/fpga/dfl.h

index 3015dfc1d552ad7c54d7be07813f1ecc389692c9..143c5b4797894b7b3ebcb692f3acc4ce4e37643d 100644 (file)
@@ -761,6 +761,11 @@ binfo_create_feature_dev_data(struct build_feature_devs_info *binfo)
        if (!fdata->features)
                return ERR_PTR(-ENOMEM);
 
+       fdata->resources = devm_kcalloc(binfo->dev, binfo->feature_num,
+                                       sizeof(*fdata->resources), GFP_KERNEL);
+       if (!fdata->resources)
+               return ERR_PTR(-ENOMEM);
+
        fdata->dev = fdev;
        fdata->type = type;
        fdata->num = binfo->feature_num;
@@ -778,13 +783,6 @@ binfo_create_feature_dev_data(struct build_feature_devs_info *binfo)
         */
        WARN_ON(fdata->disable_count);
 
-       /* each sub feature has one MMIO resource */
-       fdev->num_resources = binfo->feature_num;
-       fdev->resource = kcalloc(binfo->feature_num, sizeof(*fdev->resource),
-                                GFP_KERNEL);
-       if (!fdev->resource)
-               return ERR_PTR(-ENOMEM);
-
        /* fill features and resource information for feature dev */
        list_for_each_entry_safe(finfo, p, &binfo->sub_features, node) {
                struct dfl_feature *feature = &fdata->features[index++];
@@ -822,7 +820,7 @@ binfo_create_feature_dev_data(struct build_feature_devs_info *binfo)
                                return ERR_CAST(feature->ioaddr);
                } else {
                        feature->resource_index = res_idx;
-                       fdev->resource[res_idx++] = finfo->mmio_res;
+                       fdata->resources[res_idx++] = finfo->mmio_res;
                }
 
                if (finfo->nr_irqs) {
@@ -843,6 +841,8 @@ binfo_create_feature_dev_data(struct build_feature_devs_info *binfo)
                kfree(finfo);
        }
 
+       fdata->resource_num = res_idx;
+
        return fdata;
 }
 
@@ -886,6 +886,11 @@ static int feature_dev_register(struct dfl_feature_dev_data *fdata)
        fdev->dev.parent = &fdata->dfl_cdev->region->dev;
        fdev->dev.devt = dfl_get_devt(dfl_devs[fdata->type].devt_type, fdev->id);
 
+       ret = platform_device_add_resources(fdev, fdata->resources,
+                                           fdata->resource_num);
+       if (ret)
+               return ret;
+
        pdata.fdata = fdata;
        ret = platform_device_add_data(fdev, &pdata, sizeof(pdata));
        if (ret)
index d2765555e10939fc03d8d1f7ccdee92deec8b96e..921d946e4820852470c89f316c9e1b58ff6e2fd9 100644 (file)
@@ -317,6 +317,8 @@ struct dfl_feature {
  * @num: number for sub features.
  * @private: ptr to feature dev private data.
  * @features: sub features for the feature dev.
+ * @resource_num: number of resources for the feature dev.
+ * @resources: resources for the feature dev.
  */
 struct dfl_feature_dev_data {
        struct list_head node;
@@ -331,6 +333,8 @@ struct dfl_feature_dev_data {
        void *private;
        int num;
        struct dfl_feature *features;
+       int resource_num;
+       struct resource *resources;
 };
 
 /**