w1_family.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_FAMILY_DS2438 0x26
  30. #define W1_THERM_DS18B20 0x28
  31. #define W1_FAMILY_DS2408 0x29
  32. #define W1_EEPROM_DS2431 0x2D
  33. #define W1_FAMILY_DS2760 0x30
  34. #define W1_FAMILY_DS2780 0x32
  35. #define W1_FAMILY_DS2413 0x3A
  36. #define W1_FAMILY_DS2406 0x12
  37. #define W1_THERM_DS1825 0x3B
  38. #define W1_FAMILY_DS2781 0x3D
  39. #define W1_THERM_DS28EA00 0x42
  40. #define MAXNAMELEN 32
  41. struct w1_slave;
  42. /**
  43. * struct w1_family_ops - operations for a family type
  44. * @add_slave: add_slave
  45. * @remove_slave: remove_slave
  46. * @groups: sysfs group
  47. */
  48. struct w1_family_ops
  49. {
  50. int (* add_slave)(struct w1_slave *);
  51. void (* remove_slave)(struct w1_slave *);
  52. const struct attribute_group **groups;
  53. };
  54. /**
  55. * struct w1_family - reference counted family structure.
  56. * @family_entry: family linked list
  57. * @fid: 8 bit family identifier
  58. * @fops: operations for this family
  59. * @refcnt: reference counter
  60. */
  61. struct w1_family
  62. {
  63. struct list_head family_entry;
  64. u8 fid;
  65. struct w1_family_ops *fops;
  66. atomic_t refcnt;
  67. };
  68. extern spinlock_t w1_flock;
  69. void w1_family_put(struct w1_family *);
  70. void __w1_family_get(struct w1_family *);
  71. struct w1_family * w1_family_registered(u8);
  72. void w1_unregister_family(struct w1_family *);
  73. int w1_register_family(struct w1_family *);
  74. /**
  75. * module_w1_driver() - Helper macro for registering a 1-Wire families
  76. * @__w1_family: w1_family struct
  77. *
  78. * Helper macro for 1-Wire families which do not do anything special in module
  79. * init/exit. This eliminates a lot of boilerplate. Each module may only
  80. * use this macro once, and calling it replaces module_init() and module_exit()
  81. */
  82. #define module_w1_family(__w1_family) \
  83. module_driver(__w1_family, w1_register_family, \
  84. w1_unregister_family)
  85. #endif /* __W1_FAMILY_H */