extcon.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef __LINUX_EXTCON_INTERNAL_H__
  2. #define __LINUX_EXTCON_INTERNAL_H__
  3. #include <linux/extcon.h>
  4. /**
  5. * struct extcon_dev - An extcon device represents one external connector.
  6. * @name: The name of this extcon device. Parent device name is
  7. * used if NULL.
  8. * @supported_cable: Array of supported cable names ending with EXTCON_NONE.
  9. * If supported_cable is NULL, cable name related APIs
  10. * are disabled.
  11. * @mutually_exclusive: Array of mutually exclusive set of cables that cannot
  12. * be attached simultaneously. The array should be
  13. * ending with NULL or be NULL (no mutually exclusive
  14. * cables). For example, if it is { 0x7, 0x30, 0}, then,
  15. * {0, 1}, {0, 1, 2}, {0, 2}, {1, 2}, or {4, 5} cannot
  16. * be attached simulataneously. {0x7, 0} is equivalent to
  17. * {0x3, 0x6, 0x5, 0}. If it is {0xFFFFFFFF, 0}, there
  18. * can be no simultaneous connections.
  19. * @dev: Device of this extcon.
  20. * @state: Attach/detach state of this extcon. Do not provide at
  21. * register-time.
  22. * @nh: Notifier for the state change events from this extcon
  23. * @entry: To support list of extcon devices so that users can
  24. * search for extcon devices based on the extcon name.
  25. * @lock:
  26. * @max_supported: Internal value to store the number of cables.
  27. * @extcon_dev_type: Device_type struct to provide attribute_groups
  28. * customized for each extcon device.
  29. * @cables: Sysfs subdirectories. Each represents one cable.
  30. *
  31. * In most cases, users only need to provide "User initializing data" of
  32. * this struct when registering an extcon. In some exceptional cases,
  33. * optional callbacks may be needed. However, the values in "internal data"
  34. * are overwritten by register function.
  35. */
  36. struct extcon_dev {
  37. /* Optional user initializing data */
  38. const char *name;
  39. const unsigned int *supported_cable;
  40. const u32 *mutually_exclusive;
  41. /* Internal data. Please do not set. */
  42. struct device dev;
  43. struct raw_notifier_head *nh;
  44. struct list_head entry;
  45. int max_supported;
  46. spinlock_t lock; /* could be called by irq handler */
  47. u32 state;
  48. /* /sys/class/extcon/.../cable.n/... */
  49. struct device_type extcon_dev_type;
  50. struct extcon_cable *cables;
  51. /* /sys/class/extcon/.../mutually_exclusive/... */
  52. struct attribute_group attr_g_muex;
  53. struct attribute **attrs_muex;
  54. struct device_attribute *d_attrs_muex;
  55. };
  56. #endif /* __LINUX_EXTCON_INTERNAL_H__ */