rpaphp_slot.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * RPA Virtual I/O device functions
  4. * Copyright (C) 2004 Linda Xie <lxie@us.ibm.com>
  5. *
  6. * All rights reserved.
  7. *
  8. * Send feedback to <lxie@us.ibm.com>
  9. *
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/module.h>
  13. #include <linux/sysfs.h>
  14. #include <linux/pci.h>
  15. #include <linux/string.h>
  16. #include <linux/slab.h>
  17. #include <asm/rtas.h>
  18. #include "rpaphp.h"
  19. /* free up the memory used by a slot */
  20. static void rpaphp_release_slot(struct hotplug_slot *hotplug_slot)
  21. {
  22. struct slot *slot = (struct slot *) hotplug_slot->private;
  23. dealloc_slot_struct(slot);
  24. }
  25. void dealloc_slot_struct(struct slot *slot)
  26. {
  27. kfree(slot->hotplug_slot->info);
  28. kfree(slot->name);
  29. kfree(slot->hotplug_slot);
  30. kfree(slot);
  31. }
  32. struct slot *alloc_slot_struct(struct device_node *dn,
  33. int drc_index, char *drc_name, int power_domain)
  34. {
  35. struct slot *slot;
  36. slot = kzalloc(sizeof(struct slot), GFP_KERNEL);
  37. if (!slot)
  38. goto error_nomem;
  39. slot->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
  40. if (!slot->hotplug_slot)
  41. goto error_slot;
  42. slot->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
  43. GFP_KERNEL);
  44. if (!slot->hotplug_slot->info)
  45. goto error_hpslot;
  46. slot->name = kstrdup(drc_name, GFP_KERNEL);
  47. if (!slot->name)
  48. goto error_info;
  49. slot->dn = dn;
  50. slot->index = drc_index;
  51. slot->power_domain = power_domain;
  52. slot->hotplug_slot->private = slot;
  53. slot->hotplug_slot->ops = &rpaphp_hotplug_slot_ops;
  54. slot->hotplug_slot->release = &rpaphp_release_slot;
  55. return (slot);
  56. error_info:
  57. kfree(slot->hotplug_slot->info);
  58. error_hpslot:
  59. kfree(slot->hotplug_slot);
  60. error_slot:
  61. kfree(slot);
  62. error_nomem:
  63. return NULL;
  64. }
  65. static int is_registered(struct slot *slot)
  66. {
  67. struct slot *tmp_slot;
  68. list_for_each_entry(tmp_slot, &rpaphp_slot_head, rpaphp_slot_list) {
  69. if (!strcmp(tmp_slot->name, slot->name))
  70. return 1;
  71. }
  72. return 0;
  73. }
  74. int rpaphp_deregister_slot(struct slot *slot)
  75. {
  76. int retval = 0;
  77. struct hotplug_slot *php_slot = slot->hotplug_slot;
  78. dbg("%s - Entry: deregistering slot=%s\n",
  79. __func__, slot->name);
  80. list_del(&slot->rpaphp_slot_list);
  81. retval = pci_hp_deregister(php_slot);
  82. if (retval)
  83. err("Problem unregistering a slot %s\n", slot->name);
  84. dbg("%s - Exit: rc[%d]\n", __func__, retval);
  85. return retval;
  86. }
  87. EXPORT_SYMBOL_GPL(rpaphp_deregister_slot);
  88. int rpaphp_register_slot(struct slot *slot)
  89. {
  90. struct hotplug_slot *php_slot = slot->hotplug_slot;
  91. struct device_node *child;
  92. u32 my_index;
  93. int retval;
  94. int slotno = -1;
  95. dbg("%s registering slot:path[%pOF] index[%x], name[%s] pdomain[%x] type[%d]\n",
  96. __func__, slot->dn, slot->index, slot->name,
  97. slot->power_domain, slot->type);
  98. /* should not try to register the same slot twice */
  99. if (is_registered(slot)) {
  100. err("rpaphp_register_slot: slot[%s] is already registered\n", slot->name);
  101. return -EAGAIN;
  102. }
  103. for_each_child_of_node(slot->dn, child) {
  104. retval = of_property_read_u32(child, "ibm,my-drc-index", &my_index);
  105. if (my_index == slot->index) {
  106. slotno = PCI_SLOT(PCI_DN(child)->devfn);
  107. of_node_put(child);
  108. break;
  109. }
  110. }
  111. retval = pci_hp_register(php_slot, slot->bus, slotno, slot->name);
  112. if (retval) {
  113. err("pci_hp_register failed with error %d\n", retval);
  114. return retval;
  115. }
  116. /* add slot to our internal list */
  117. list_add(&slot->rpaphp_slot_list, &rpaphp_slot_head);
  118. info("Slot [%s] registered\n", slot->name);
  119. return 0;
  120. }