This source file includes following definitions.
- of_fpga_region_find
- of_fpga_region_get_mgr
- of_fpga_region_get_bridges
- child_regions_with_firmware
- of_fpga_region_parse_ov
- of_fpga_region_notify_pre_apply
- of_fpga_region_notify_post_remove
- of_fpga_region_notify
- of_fpga_region_probe
- of_fpga_region_remove
- of_fpga_region_init
- of_fpga_region_exit
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 #include <linux/fpga/fpga-bridge.h>
   9 #include <linux/fpga/fpga-mgr.h>
  10 #include <linux/fpga/fpga-region.h>
  11 #include <linux/idr.h>
  12 #include <linux/kernel.h>
  13 #include <linux/list.h>
  14 #include <linux/module.h>
  15 #include <linux/of_platform.h>
  16 #include <linux/slab.h>
  17 #include <linux/spinlock.h>
  18 
  19 static const struct of_device_id fpga_region_of_match[] = {
  20         { .compatible = "fpga-region", },
  21         {},
  22 };
  23 MODULE_DEVICE_TABLE(of, fpga_region_of_match);
  24 
  25 
  26 
  27 
  28 
  29 
  30 
  31 
  32 
  33 static struct fpga_region *of_fpga_region_find(struct device_node *np)
  34 {
  35         return fpga_region_class_find(NULL, np, device_match_of_node);
  36 }
  37 
  38 
  39 
  40 
  41 
  42 
  43 
  44 
  45 
  46 
  47 
  48 static struct fpga_manager *of_fpga_region_get_mgr(struct device_node *np)
  49 {
  50         struct device_node  *mgr_node;
  51         struct fpga_manager *mgr;
  52 
  53         of_node_get(np);
  54         while (np) {
  55                 if (of_device_is_compatible(np, "fpga-region")) {
  56                         mgr_node = of_parse_phandle(np, "fpga-mgr", 0);
  57                         if (mgr_node) {
  58                                 mgr = of_fpga_mgr_get(mgr_node);
  59                                 of_node_put(mgr_node);
  60                                 of_node_put(np);
  61                                 return mgr;
  62                         }
  63                 }
  64                 np = of_get_next_parent(np);
  65         }
  66         of_node_put(np);
  67 
  68         return ERR_PTR(-EINVAL);
  69 }
  70 
  71 
  72 
  73 
  74 
  75 
  76 
  77 
  78 
  79 
  80 
  81 
  82 
  83 
  84 
  85 
  86 static int of_fpga_region_get_bridges(struct fpga_region *region)
  87 {
  88         struct device *dev = ®ion->dev;
  89         struct device_node *region_np = dev->of_node;
  90         struct fpga_image_info *info = region->info;
  91         struct device_node *br, *np, *parent_br = NULL;
  92         int i, ret;
  93 
  94         
  95         ret = of_fpga_bridge_get_to_list(region_np->parent, info,
  96                                          ®ion->bridge_list);
  97 
  98         
  99         if (ret == -EBUSY)
 100                 return ret;
 101 
 102         
 103         if (!ret)
 104                 parent_br = region_np->parent;
 105 
 106         
 107         br = of_parse_phandle(info->overlay, "fpga-bridges", 0);
 108         if (br) {
 109                 of_node_put(br);
 110                 np = info->overlay;
 111         } else {
 112                 np = region_np;
 113         }
 114 
 115         for (i = 0; ; i++) {
 116                 br = of_parse_phandle(np, "fpga-bridges", i);
 117                 if (!br)
 118                         break;
 119 
 120                 
 121                 if (br == parent_br) {
 122                         of_node_put(br);
 123                         continue;
 124                 }
 125 
 126                 
 127                 ret = of_fpga_bridge_get_to_list(br, info,
 128                                                  ®ion->bridge_list);
 129                 of_node_put(br);
 130 
 131                 
 132                 if (ret == -EBUSY) {
 133                         fpga_bridges_put(®ion->bridge_list);
 134                         return -EBUSY;
 135                 }
 136         }
 137 
 138         return 0;
 139 }
 140 
 141 
 142 
 143 
 144 
 145 
 146 
 147 
 148 
 149 
 150 static int child_regions_with_firmware(struct device_node *overlay)
 151 {
 152         struct device_node *child_region;
 153         const char *child_firmware_name;
 154         int ret = 0;
 155 
 156         of_node_get(overlay);
 157 
 158         child_region = of_find_matching_node(overlay, fpga_region_of_match);
 159         while (child_region) {
 160                 if (!of_property_read_string(child_region, "firmware-name",
 161                                              &child_firmware_name)) {
 162                         ret = -EINVAL;
 163                         break;
 164                 }
 165                 child_region = of_find_matching_node(child_region,
 166                                                      fpga_region_of_match);
 167         }
 168 
 169         of_node_put(child_region);
 170 
 171         if (ret)
 172                 pr_err("firmware-name not allowed in child FPGA region: %pOF",
 173                        child_region);
 174 
 175         return ret;
 176 }
 177 
 178 
 179 
 180 
 181 
 182 
 183 
 184 
 185 
 186 
 187 
 188 
 189 
 190 
 191 
 192 static struct fpga_image_info *of_fpga_region_parse_ov(
 193                                                 struct fpga_region *region,
 194                                                 struct device_node *overlay)
 195 {
 196         struct device *dev = ®ion->dev;
 197         struct fpga_image_info *info;
 198         const char *firmware_name;
 199         int ret;
 200 
 201         if (region->info) {
 202                 dev_err(dev, "Region already has overlay applied.\n");
 203                 return ERR_PTR(-EINVAL);
 204         }
 205 
 206         
 207 
 208 
 209 
 210 
 211         ret = child_regions_with_firmware(overlay);
 212         if (ret)
 213                 return ERR_PTR(ret);
 214 
 215         info = fpga_image_info_alloc(dev);
 216         if (!info)
 217                 return ERR_PTR(-ENOMEM);
 218 
 219         info->overlay = overlay;
 220 
 221         
 222         if (of_property_read_bool(overlay, "partial-fpga-config"))
 223                 info->flags |= FPGA_MGR_PARTIAL_RECONFIG;
 224 
 225         if (of_property_read_bool(overlay, "external-fpga-config"))
 226                 info->flags |= FPGA_MGR_EXTERNAL_CONFIG;
 227 
 228         if (of_property_read_bool(overlay, "encrypted-fpga-config"))
 229                 info->flags |= FPGA_MGR_ENCRYPTED_BITSTREAM;
 230 
 231         if (!of_property_read_string(overlay, "firmware-name",
 232                                      &firmware_name)) {
 233                 info->firmware_name = devm_kstrdup(dev, firmware_name,
 234                                                    GFP_KERNEL);
 235                 if (!info->firmware_name)
 236                         return ERR_PTR(-ENOMEM);
 237         }
 238 
 239         of_property_read_u32(overlay, "region-unfreeze-timeout-us",
 240                              &info->enable_timeout_us);
 241 
 242         of_property_read_u32(overlay, "region-freeze-timeout-us",
 243                              &info->disable_timeout_us);
 244 
 245         of_property_read_u32(overlay, "config-complete-timeout-us",
 246                              &info->config_complete_timeout_us);
 247 
 248         
 249         if (!info->firmware_name) {
 250                 ret = 0;
 251                 goto ret_no_info;
 252         }
 253 
 254         
 255 
 256 
 257 
 258         if (info->flags & FPGA_MGR_EXTERNAL_CONFIG) {
 259                 dev_err(dev, "error: specified firmware and external-fpga-config");
 260                 ret = -EINVAL;
 261                 goto ret_no_info;
 262         }
 263 
 264         return info;
 265 ret_no_info:
 266         fpga_image_info_free(info);
 267         return ERR_PTR(ret);
 268 }
 269 
 270 
 271 
 272 
 273 
 274 
 275 
 276 
 277 
 278 
 279 
 280 
 281 
 282 
 283 
 284 static int of_fpga_region_notify_pre_apply(struct fpga_region *region,
 285                                            struct of_overlay_notify_data *nd)
 286 {
 287         struct device *dev = ®ion->dev;
 288         struct fpga_image_info *info;
 289         int ret;
 290 
 291         info = of_fpga_region_parse_ov(region, nd->overlay);
 292         if (IS_ERR(info))
 293                 return PTR_ERR(info);
 294 
 295         
 296         if (!info)
 297                 return 0;
 298 
 299         if (region->info) {
 300                 dev_err(dev, "Region already has overlay applied.\n");
 301                 return -EINVAL;
 302         }
 303 
 304         region->info = info;
 305         ret = fpga_region_program_fpga(region);
 306         if (ret) {
 307                 
 308                 fpga_image_info_free(info);
 309                 region->info = NULL;
 310         }
 311 
 312         return ret;
 313 }
 314 
 315 
 316 
 317 
 318 
 319 
 320 
 321 
 322 
 323 
 324 static void of_fpga_region_notify_post_remove(struct fpga_region *region,
 325                                               struct of_overlay_notify_data *nd)
 326 {
 327         fpga_bridges_disable(®ion->bridge_list);
 328         fpga_bridges_put(®ion->bridge_list);
 329         fpga_image_info_free(region->info);
 330         region->info = NULL;
 331 }
 332 
 333 
 334 
 335 
 336 
 337 
 338 
 339 
 340 
 341 
 342 
 343 
 344 static int of_fpga_region_notify(struct notifier_block *nb,
 345                                  unsigned long action, void *arg)
 346 {
 347         struct of_overlay_notify_data *nd = arg;
 348         struct fpga_region *region;
 349         int ret;
 350 
 351         switch (action) {
 352         case OF_OVERLAY_PRE_APPLY:
 353                 pr_debug("%s OF_OVERLAY_PRE_APPLY\n", __func__);
 354                 break;
 355         case OF_OVERLAY_POST_APPLY:
 356                 pr_debug("%s OF_OVERLAY_POST_APPLY\n", __func__);
 357                 return NOTIFY_OK;       
 358         case OF_OVERLAY_PRE_REMOVE:
 359                 pr_debug("%s OF_OVERLAY_PRE_REMOVE\n", __func__);
 360                 return NOTIFY_OK;       
 361         case OF_OVERLAY_POST_REMOVE:
 362                 pr_debug("%s OF_OVERLAY_POST_REMOVE\n", __func__);
 363                 break;
 364         default:                        
 365                 return NOTIFY_OK;
 366         }
 367 
 368         region = of_fpga_region_find(nd->target);
 369         if (!region)
 370                 return NOTIFY_OK;
 371 
 372         ret = 0;
 373         switch (action) {
 374         case OF_OVERLAY_PRE_APPLY:
 375                 ret = of_fpga_region_notify_pre_apply(region, nd);
 376                 break;
 377 
 378         case OF_OVERLAY_POST_REMOVE:
 379                 of_fpga_region_notify_post_remove(region, nd);
 380                 break;
 381         }
 382 
 383         put_device(®ion->dev);
 384 
 385         if (ret)
 386                 return notifier_from_errno(ret);
 387 
 388         return NOTIFY_OK;
 389 }
 390 
 391 static struct notifier_block fpga_region_of_nb = {
 392         .notifier_call = of_fpga_region_notify,
 393 };
 394 
 395 static int of_fpga_region_probe(struct platform_device *pdev)
 396 {
 397         struct device *dev = &pdev->dev;
 398         struct device_node *np = dev->of_node;
 399         struct fpga_region *region;
 400         struct fpga_manager *mgr;
 401         int ret;
 402 
 403         
 404         mgr = of_fpga_region_get_mgr(np);
 405         if (IS_ERR(mgr))
 406                 return -EPROBE_DEFER;
 407 
 408         region = devm_fpga_region_create(dev, mgr, of_fpga_region_get_bridges);
 409         if (!region) {
 410                 ret = -ENOMEM;
 411                 goto eprobe_mgr_put;
 412         }
 413 
 414         ret = fpga_region_register(region);
 415         if (ret)
 416                 goto eprobe_mgr_put;
 417 
 418         of_platform_populate(np, fpga_region_of_match, NULL, ®ion->dev);
 419         platform_set_drvdata(pdev, region);
 420 
 421         dev_info(dev, "FPGA Region probed\n");
 422 
 423         return 0;
 424 
 425 eprobe_mgr_put:
 426         fpga_mgr_put(mgr);
 427         return ret;
 428 }
 429 
 430 static int of_fpga_region_remove(struct platform_device *pdev)
 431 {
 432         struct fpga_region *region = platform_get_drvdata(pdev);
 433         struct fpga_manager *mgr = region->mgr;
 434 
 435         fpga_region_unregister(region);
 436         fpga_mgr_put(mgr);
 437 
 438         return 0;
 439 }
 440 
 441 static struct platform_driver of_fpga_region_driver = {
 442         .probe = of_fpga_region_probe,
 443         .remove = of_fpga_region_remove,
 444         .driver = {
 445                 .name   = "of-fpga-region",
 446                 .of_match_table = of_match_ptr(fpga_region_of_match),
 447         },
 448 };
 449 
 450 
 451 
 452 
 453 
 454 static int __init of_fpga_region_init(void)
 455 {
 456         int ret;
 457 
 458         ret = of_overlay_notifier_register(&fpga_region_of_nb);
 459         if (ret)
 460                 return ret;
 461 
 462         ret = platform_driver_register(&of_fpga_region_driver);
 463         if (ret)
 464                 goto err_plat;
 465 
 466         return 0;
 467 
 468 err_plat:
 469         of_overlay_notifier_unregister(&fpga_region_of_nb);
 470         return ret;
 471 }
 472 
 473 static void __exit of_fpga_region_exit(void)
 474 {
 475         platform_driver_unregister(&of_fpga_region_driver);
 476         of_overlay_notifier_unregister(&fpga_region_of_nb);
 477 }
 478 
 479 subsys_initcall(of_fpga_region_init);
 480 module_exit(of_fpga_region_exit);
 481 
 482 MODULE_DESCRIPTION("FPGA Region");
 483 MODULE_AUTHOR("Alan Tull <atull@kernel.org>");
 484 MODULE_LICENSE("GPL v2");