rpaphp.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
  4. *
  5. * Copyright (C) 2003 Linda Xie <[email protected]>
  6. *
  7. * All rights reserved.
  8. *
  9. * Send feedback to <[email protected]>,
  10. *
  11. */
  12. #ifndef _PPC64PHP_H
  13. #define _PPC64PHP_H
  14. #include <linux/pci.h>
  15. #include <linux/pci_hotplug.h>
  16. #define DR_INDICATOR 9002
  17. #define DR_ENTITY_SENSE 9003
  18. #define POWER_ON 100
  19. #define POWER_OFF 0
  20. #define LED_OFF 0
  21. #define LED_ON 1 /* continuous on */
  22. #define LED_ID 2 /* slow blinking */
  23. #define LED_ACTION 3 /* fast blinking */
  24. /* Sensor values from rtas_get-sensor */
  25. #define EMPTY 0 /* No card in slot */
  26. #define PRESENT 1 /* Card in slot */
  27. #define MY_NAME "rpaphp"
  28. extern bool rpaphp_debug;
  29. #define dbg(format, arg...) \
  30. do { \
  31. if (rpaphp_debug) \
  32. printk(KERN_DEBUG "%s: " format, \
  33. MY_NAME, ## arg); \
  34. } while (0)
  35. #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg)
  36. #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg)
  37. #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg)
  38. /* slot states */
  39. #define NOT_VALID 3
  40. #define NOT_CONFIGURED 2
  41. #define CONFIGURED 1
  42. #define EMPTY 0
  43. /* DRC constants */
  44. #define MAX_DRC_NAME_LEN 64
  45. /*
  46. * struct slot - slot information for each *physical* slot
  47. */
  48. struct slot {
  49. struct list_head rpaphp_slot_list;
  50. int state;
  51. u32 index;
  52. u32 type;
  53. u32 power_domain;
  54. u8 attention_status;
  55. char *name;
  56. struct device_node *dn;
  57. struct pci_bus *bus;
  58. struct list_head *pci_devs;
  59. struct hotplug_slot hotplug_slot;
  60. };
  61. extern const struct hotplug_slot_ops rpaphp_hotplug_slot_ops;
  62. extern struct list_head rpaphp_slot_head;
  63. static inline struct slot *to_slot(struct hotplug_slot *hotplug_slot)
  64. {
  65. return container_of(hotplug_slot, struct slot, hotplug_slot);
  66. }
  67. /* function prototypes */
  68. /* rpaphp_pci.c */
  69. int rpaphp_enable_slot(struct slot *slot);
  70. int rpaphp_get_sensor_state(struct slot *slot, int *state);
  71. /* rpaphp_core.c */
  72. int rpaphp_add_slot(struct device_node *dn);
  73. int rpaphp_check_drc_props(struct device_node *dn, char *drc_name,
  74. char *drc_type);
  75. /* rpaphp_slot.c */
  76. void dealloc_slot_struct(struct slot *slot);
  77. struct slot *alloc_slot_struct(struct device_node *dn, int drc_index, char *drc_name, int power_domain);
  78. int rpaphp_register_slot(struct slot *slot);
  79. int rpaphp_deregister_slot(struct slot *slot);
  80. #endif /* _PPC64PHP_H */