rpaphp_slot.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. /*
  2. * RPA Virtual I/O device functions
  3. * Copyright (C) 2004 Linda Xie <lxie@us.ibm.com>
  4. *
  5. * All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or (at
  10. * your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  15. * NON INFRINGEMENT. See the GNU General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. *
  22. * Send feedback to <lxie@us.ibm.com>
  23. *
  24. */
  25. #include <linux/kernel.h>
  26. #include <linux/module.h>
  27. #include <linux/kobject.h>
  28. #include <linux/sysfs.h>
  29. #include <linux/pci.h>
  30. #include <asm/rtas.h>
  31. #include "rpaphp.h"
  32. static ssize_t removable_read_file (struct hotplug_slot *php_slot, char *buf)
  33. {
  34. u8 value;
  35. int retval = -ENOENT;
  36. struct slot *slot = (struct slot *)php_slot->private;
  37. if (!slot)
  38. return retval;
  39. value = slot->removable;
  40. retval = sprintf (buf, "%d\n", value);
  41. return retval;
  42. }
  43. static struct hotplug_slot_attribute hotplug_slot_attr_removable = {
  44. .attr = {.name = "phy_removable", .mode = S_IFREG | S_IRUGO},
  45. .show = removable_read_file,
  46. };
  47. static void rpaphp_sysfs_add_attr_removable (struct hotplug_slot *slot)
  48. {
  49. sysfs_create_file(&slot->kobj, &hotplug_slot_attr_removable.attr);
  50. }
  51. static void rpaphp_sysfs_remove_attr_removable (struct hotplug_slot *slot)
  52. {
  53. sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_removable.attr);
  54. }
  55. static ssize_t location_read_file (struct hotplug_slot *php_slot, char *buf)
  56. {
  57. char *value;
  58. int retval = -ENOENT;
  59. struct slot *slot = (struct slot *)php_slot->private;
  60. if (!slot)
  61. return retval;
  62. value = slot->location;
  63. retval = sprintf (buf, "%s\n", value);
  64. return retval;
  65. }
  66. static struct hotplug_slot_attribute hotplug_slot_attr_location = {
  67. .attr = {.name = "phy_location", .mode = S_IFREG | S_IRUGO},
  68. .show = location_read_file,
  69. };
  70. static void rpaphp_sysfs_add_attr_location (struct hotplug_slot *slot)
  71. {
  72. sysfs_create_file(&slot->kobj, &hotplug_slot_attr_location.attr);
  73. }
  74. static void rpaphp_sysfs_remove_attr_location (struct hotplug_slot *slot)
  75. {
  76. sysfs_remove_file(&slot->kobj, &hotplug_slot_attr_location.attr);
  77. }
  78. /* free up the memory used by a slot */
  79. static void rpaphp_release_slot(struct hotplug_slot *hotplug_slot)
  80. {
  81. struct slot *slot = (struct slot *) hotplug_slot->private;
  82. dealloc_slot_struct(slot);
  83. }
  84. void dealloc_slot_struct(struct slot *slot)
  85. {
  86. kfree(slot->hotplug_slot->info);
  87. kfree(slot->hotplug_slot->name);
  88. kfree(slot->hotplug_slot);
  89. kfree(slot);
  90. return;
  91. }
  92. struct slot *alloc_slot_struct(struct device_node *dn, int drc_index, char *drc_name,
  93. int power_domain)
  94. {
  95. struct slot *slot;
  96. slot = kmalloc(sizeof (struct slot), GFP_KERNEL);
  97. if (!slot)
  98. goto error_nomem;
  99. memset(slot, 0, sizeof (struct slot));
  100. slot->hotplug_slot = kmalloc(sizeof (struct hotplug_slot), GFP_KERNEL);
  101. if (!slot->hotplug_slot)
  102. goto error_slot;
  103. memset(slot->hotplug_slot, 0, sizeof (struct hotplug_slot));
  104. slot->hotplug_slot->info = kmalloc(sizeof (struct hotplug_slot_info),
  105. GFP_KERNEL);
  106. if (!slot->hotplug_slot->info)
  107. goto error_hpslot;
  108. memset(slot->hotplug_slot->info, 0, sizeof (struct hotplug_slot_info));
  109. slot->hotplug_slot->name = kmalloc(BUS_ID_SIZE + 1, GFP_KERNEL);
  110. if (!slot->hotplug_slot->name)
  111. goto error_info;
  112. slot->location = kmalloc(strlen(drc_name) + 1, GFP_KERNEL);
  113. if (!slot->location)
  114. goto error_name;
  115. slot->name = slot->hotplug_slot->name;
  116. slot->dn = dn;
  117. slot->index = drc_index;
  118. strcpy(slot->location, drc_name);
  119. slot->power_domain = power_domain;
  120. slot->hotplug_slot->private = slot;
  121. slot->hotplug_slot->ops = &rpaphp_hotplug_slot_ops;
  122. slot->hotplug_slot->release = &rpaphp_release_slot;
  123. return (slot);
  124. error_name:
  125. kfree(slot->hotplug_slot->name);
  126. error_info:
  127. kfree(slot->hotplug_slot->info);
  128. error_hpslot:
  129. kfree(slot->hotplug_slot);
  130. error_slot:
  131. kfree(slot);
  132. error_nomem:
  133. return NULL;
  134. }
  135. static int is_registered(struct slot *slot)
  136. {
  137. struct slot *tmp_slot;
  138. list_for_each_entry(tmp_slot, &rpaphp_slot_head, rpaphp_slot_list) {
  139. if (!strcmp(tmp_slot->name, slot->name))
  140. return 1;
  141. }
  142. return 0;
  143. }
  144. int deregister_slot(struct slot *slot)
  145. {
  146. int retval = 0;
  147. struct hotplug_slot *php_slot = slot->hotplug_slot;
  148. dbg("%s - Entry: deregistering slot=%s\n",
  149. __FUNCTION__, slot->name);
  150. list_del(&slot->rpaphp_slot_list);
  151. /* remove "phy_location" file */
  152. rpaphp_sysfs_remove_attr_location(php_slot);
  153. /* remove "phy_removable" file */
  154. rpaphp_sysfs_remove_attr_removable(php_slot);
  155. retval = pci_hp_deregister(php_slot);
  156. if (retval)
  157. err("Problem unregistering a slot %s\n", slot->name);
  158. else
  159. num_slots--;
  160. dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval);
  161. return retval;
  162. }
  163. int register_slot(struct slot *slot)
  164. {
  165. int retval;
  166. dbg("%s registering slot:path[%s] index[%x], name[%s] pdomain[%x] type[%d]\n",
  167. __FUNCTION__, slot->dn->full_name, slot->index, slot->name,
  168. slot->power_domain, slot->type);
  169. /* should not try to register the same slot twice */
  170. if (is_registered(slot)) { /* should't be here */
  171. err("register_slot: slot[%s] is already registered\n", slot->name);
  172. rpaphp_release_slot(slot->hotplug_slot);
  173. return -EAGAIN;
  174. }
  175. retval = pci_hp_register(slot->hotplug_slot);
  176. if (retval) {
  177. err("pci_hp_register failed with error %d\n", retval);
  178. rpaphp_release_slot(slot->hotplug_slot);
  179. return retval;
  180. }
  181. /* create "phy_locatoin" file */
  182. rpaphp_sysfs_add_attr_location(slot->hotplug_slot);
  183. /* create "phy_removable" file */
  184. rpaphp_sysfs_add_attr_removable(slot->hotplug_slot);
  185. /* add slot to our internal list */
  186. dbg("%s adding slot[%s] to rpaphp_slot_list\n",
  187. __FUNCTION__, slot->name);
  188. list_add(&slot->rpaphp_slot_list, &rpaphp_slot_head);
  189. if (slot->dev_type == VIO_DEV)
  190. info("Slot [%s](VIO location=%s) registered\n",
  191. slot->name, slot->location);
  192. else
  193. info("Slot [%s](PCI location=%s) registered\n",
  194. slot->name, slot->location);
  195. num_slots++;
  196. return 0;
  197. }
  198. int rpaphp_get_power_status(struct slot *slot, u8 * value)
  199. {
  200. int rc = 0, level;
  201. if (slot->type == HOTPLUG) {
  202. rc = rtas_get_power_level(slot->power_domain, &level);
  203. if (!rc) {
  204. dbg("%s the power level of slot %s(pwd-domain:0x%x) is %d\n",
  205. __FUNCTION__, slot->name, slot->power_domain, level);
  206. *value = level;
  207. } else
  208. err("failed to get power-level for slot(%s), rc=0x%x\n",
  209. slot->location, rc);
  210. } else {
  211. dbg("%s report POWER_ON for EMBEDDED or PHB slot %s\n",
  212. __FUNCTION__, slot->location);
  213. *value = (u8) POWER_ON;
  214. }
  215. return rc;
  216. }
  217. int rpaphp_set_attention_status(struct slot *slot, u8 status)
  218. {
  219. int rc;
  220. /* status: LED_OFF or LED_ON */
  221. rc = rtas_set_indicator(DR_INDICATOR, slot->index, status);
  222. if (rc < 0)
  223. err("slot(name=%s location=%s index=0x%x) set attention-status(%d) failed! rc=0x%x\n",
  224. slot->name, slot->location, slot->index, status, rc);
  225. return rc;
  226. }