w1_family.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __W1_FAMILY_H
  15. #define __W1_FAMILY_H
  16. #include <linux/types.h>
  17. #include <linux/device.h>
  18. #include <linux/atomic.h>
  19. #define W1_FAMILY_DEFAULT 0
  20. #define W1_FAMILY_BQ27000 0x01
  21. #define W1_FAMILY_SMEM_01 0x01
  22. #define W1_FAMILY_SMEM_81 0x81
  23. #define W1_FAMILY_DS2405 0x05
  24. #define W1_THERM_DS18S20 0x10
  25. #define W1_FAMILY_DS28E04 0x1C
  26. #define W1_COUNTER_DS2423 0x1D
  27. #define W1_THERM_DS1822 0x22
  28. #define W1_EEPROM_DS2433 0x23
  29. #define W1_THERM_DS18B20 0x28
  30. #define W1_FAMILY_DS2408 0x29
  31. #define W1_EEPROM_DS2431 0x2D
  32. #define W1_FAMILY_DS2760 0x30
  33. #define W1_FAMILY_DS2780 0x32
  34. #define W1_FAMILY_DS2413 0x3A
  35. #define W1_FAMILY_DS2406 0x12
  36. #define W1_THERM_DS1825 0x3B
  37. #define W1_FAMILY_DS2781 0x3D
  38. #define W1_THERM_DS28EA00 0x42
  39. #define MAXNAMELEN 32
  40. struct w1_slave;
  41. /**
  42. * struct w1_family_ops - operations for a family type
  43. * @add_slave: add_slave
  44. * @remove_slave: remove_slave
  45. * @groups: sysfs group
  46. */
  47. struct w1_family_ops
  48. {
  49. int (* add_slave)(struct w1_slave *);
  50. void (* remove_slave)(struct w1_slave *);
  51. const struct attribute_group **groups;
  52. };
  53. /**
  54. * struct w1_family - reference counted family structure.
  55. * @family_entry: family linked list
  56. * @fid: 8 bit family identifier
  57. * @fops: operations for this family
  58. * @refcnt: reference counter
  59. */
  60. struct w1_family
  61. {
  62. struct list_head family_entry;
  63. u8 fid;
  64. struct w1_family_ops *fops;
  65. atomic_t refcnt;
  66. };
  67. extern spinlock_t w1_flock;
  68. void w1_family_put(struct w1_family *);
  69. void __w1_family_get(struct w1_family *);
  70. struct w1_family * w1_family_registered(u8);
  71. void w1_unregister_family(struct w1_family *);
  72. int w1_register_family(struct w1_family *);
  73. /**
  74. * module_w1_driver() - Helper macro for registering a 1-Wire families
  75. * @__w1_family: w1_family struct
  76. *
  77. * Helper macro for 1-Wire families which do not do anything special in module
  78. * init/exit. This eliminates a lot of boilerplate. Each module may only
  79. * use this macro once, and calling it replaces module_init() and module_exit()
  80. */
  81. #define module_w1_family(__w1_family) \
  82. module_driver(__w1_family, w1_register_family, \
  83. w1_unregister_family)
  84. #endif /* __W1_FAMILY_H */