rpaphp_slot.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. void dealloc_slot_struct(struct slot *slot)
  21. {
  22. kfree(slot->hotplug_slot->info);
  23. kfree(slot->name);
  24. kfree(slot->hotplug_slot);
  25. kfree(slot);
  26. }
  27. struct slot *alloc_slot_struct(struct device_node *dn,
  28. int drc_index, char *drc_name, int power_domain)
  29. {
  30. struct slot *slot;
  31. slot = kzalloc(sizeof(struct slot), GFP_KERNEL);
  32. if (!slot)
  33. goto error_nomem;
  34. slot->hotplug_slot = kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
  35. if (!slot->hotplug_slot)
  36. goto error_slot;
  37. slot->hotplug_slot->info = kzalloc(sizeof(struct hotplug_slot_info),
  38. GFP_KERNEL);
  39. if (!slot->hotplug_slot->info)
  40. goto error_hpslot;
  41. slot->name = kstrdup(drc_name, GFP_KERNEL);
  42. if (!slot->name)
  43. goto error_info;
  44. slot->dn = dn;
  45. slot->index = drc_index;
  46. slot->power_domain = power_domain;
  47. slot->hotplug_slot->private = slot;
  48. slot->hotplug_slot->ops = &rpaphp_hotplug_slot_ops;
  49. return (slot);
  50. error_info:
  51. kfree(slot->hotplug_slot->info);
  52. error_hpslot:
  53. kfree(slot->hotplug_slot);
  54. error_slot:
  55. kfree(slot);
  56. error_nomem:
  57. return NULL;
  58. }
  59. static int is_registered(struct slot *slot)
  60. {
  61. struct slot *tmp_slot;
  62. list_for_each_entry(tmp_slot, &rpaphp_slot_head, rpaphp_slot_list) {
  63. if (!strcmp(tmp_slot->name, slot->name))
  64. return 1;
  65. }
  66. return 0;
  67. }
  68. int rpaphp_deregister_slot(struct slot *slot)
  69. {
  70. int retval = 0;
  71. struct hotplug_slot *php_slot = slot->hotplug_slot;
  72. dbg("%s - Entry: deregistering slot=%s\n",
  73. __func__, slot->name);
  74. list_del(&slot->rpaphp_slot_list);
  75. pci_hp_deregister(php_slot);
  76. dealloc_slot_struct(slot);
  77. dbg("%s - Exit: rc[%d]\n", __func__, retval);
  78. return retval;
  79. }
  80. EXPORT_SYMBOL_GPL(rpaphp_deregister_slot);
  81. int rpaphp_register_slot(struct slot *slot)
  82. {
  83. struct hotplug_slot *php_slot = slot->hotplug_slot;
  84. struct device_node *child;
  85. u32 my_index;
  86. int retval;
  87. int slotno = -1;
  88. dbg("%s registering slot:path[%pOF] index[%x], name[%s] pdomain[%x] type[%d]\n",
  89. __func__, slot->dn, slot->index, slot->name,
  90. slot->power_domain, slot->type);
  91. /* should not try to register the same slot twice */
  92. if (is_registered(slot)) {
  93. err("rpaphp_register_slot: slot[%s] is already registered\n", slot->name);
  94. return -EAGAIN;
  95. }
  96. for_each_child_of_node(slot->dn, child) {
  97. retval = of_property_read_u32(child, "ibm,my-drc-index", &my_index);
  98. if (my_index == slot->index) {
  99. slotno = PCI_SLOT(PCI_DN(child)->devfn);
  100. of_node_put(child);
  101. break;
  102. }
  103. }
  104. retval = pci_hp_register(php_slot, slot->bus, slotno, slot->name);
  105. if (retval) {
  106. err("pci_hp_register failed with error %d\n", retval);
  107. return retval;
  108. }
  109. /* add slot to our internal list */
  110. list_add(&slot->rpaphp_slot_list, &rpaphp_slot_head);
  111. info("Slot [%s] registered\n", slot->name);
  112. return 0;
  113. }