rpaphp.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
  3. *
  4. * Copyright (C) 2003 Linda Xie <lxie@us.ibm.com>
  5. *
  6. * All rights reserved.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or (at
  11. * your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
  16. * NON INFRINGEMENT. See the GNU General Public License for more
  17. * details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. *
  23. * Send feedback to <lxie@us.ibm.com>,
  24. *
  25. */
  26. #ifndef _PPC64PHP_H
  27. #define _PPC64PHP_H
  28. #include <linux/pci.h>
  29. #include <linux/pci_hotplug.h>
  30. #define DR_INDICATOR 9002
  31. #define DR_ENTITY_SENSE 9003
  32. #define POWER_ON 100
  33. #define POWER_OFF 0
  34. #define LED_OFF 0
  35. #define LED_ON 1 /* continuous on */
  36. #define LED_ID 2 /* slow blinking */
  37. #define LED_ACTION 3 /* fast blinking */
  38. /* Sensor values from rtas_get-sensor */
  39. #define EMPTY 0 /* No card in slot */
  40. #define PRESENT 1 /* Card in slot */
  41. #define MY_NAME "rpaphp"
  42. extern bool rpaphp_debug;
  43. #define dbg(format, arg...) \
  44. do { \
  45. if (rpaphp_debug) \
  46. printk(KERN_DEBUG "%s: " format, \
  47. MY_NAME , ## arg); \
  48. } while (0)
  49. #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME , ## arg)
  50. #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME , ## arg)
  51. #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME , ## arg)
  52. /* slot states */
  53. #define NOT_VALID 3
  54. #define NOT_CONFIGURED 2
  55. #define CONFIGURED 1
  56. #define EMPTY 0
  57. /*
  58. * struct slot - slot information for each *physical* slot
  59. */
  60. struct slot {
  61. struct list_head rpaphp_slot_list;
  62. int state;
  63. u32 index;
  64. u32 type;
  65. u32 power_domain;
  66. char *name;
  67. struct device_node *dn;
  68. struct pci_bus *bus;
  69. struct list_head *pci_devs;
  70. struct hotplug_slot *hotplug_slot;
  71. };
  72. extern struct hotplug_slot_ops rpaphp_hotplug_slot_ops;
  73. extern struct list_head rpaphp_slot_head;
  74. /* function prototypes */
  75. /* rpaphp_pci.c */
  76. int rpaphp_enable_slot(struct slot *slot);
  77. int rpaphp_get_sensor_state(struct slot *slot, int *state);
  78. /* rpaphp_core.c */
  79. int rpaphp_add_slot(struct device_node *dn);
  80. int rpaphp_get_drc_props(struct device_node *dn, int *drc_index,
  81. char **drc_name, char **drc_type, int *drc_power_domain);
  82. /* rpaphp_slot.c */
  83. void dealloc_slot_struct(struct slot *slot);
  84. struct slot *alloc_slot_struct(struct device_node *dn, int drc_index, char *drc_name, int power_domain);
  85. int rpaphp_register_slot(struct slot *slot);
  86. int rpaphp_deregister_slot(struct slot *slot);
  87. #endif /* _PPC64PHP_H */