]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/w1/w1_family.h
drivers/fsi: Add module license to core driver
[mirror_ubuntu-artful-kernel.git] / drivers / w1 / w1_family.h
CommitLineData
1da177e4 1/*
a8018766 2 * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
7785925d 3 *
1da177e4
LT
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.
1da177e4
LT
13 */
14
15#ifndef __W1_FAMILY_H
16#define __W1_FAMILY_H
17
18#include <linux/types.h>
19#include <linux/device.h>
60063497 20#include <linux/atomic.h>
1da177e4
LT
21
22#define W1_FAMILY_DEFAULT 0
4b7e4f82 23#define W1_FAMILY_BQ27000 0x01
85e941cc
EP
24#define W1_FAMILY_SMEM_01 0x01
25#define W1_FAMILY_SMEM_81 0x81
dd6478d6 26#define W1_FAMILY_DS2405 0x05
718a538f 27#define W1_THERM_DS18S20 0x10
fbf7f7b4 28#define W1_FAMILY_DS28E04 0x1C
17fecb55 29#define W1_COUNTER_DS2423 0x1D
718a538f 30#define W1_THERM_DS1822 0x22
a3d65f25 31#define W1_EEPROM_DS2433 0x23
e3af95e6 32#define W1_FAMILY_DS2438 0x26
718a538f 33#define W1_THERM_DS18B20 0x28
89610274 34#define W1_FAMILY_DS2408 0x29
d8273674 35#define W1_EEPROM_DS2431 0x2D
d7ce6d1d 36#define W1_FAMILY_DS2760 0x30
275ac746 37#define W1_FAMILY_DS2780 0x32
31b4ca3e 38#define W1_FAMILY_DS2413 0x3A
94859308 39#define W1_FAMILY_DS2406 0x12
f3261dfb 40#define W1_THERM_DS1825 0x3B
fef37e9a 41#define W1_FAMILY_DS2781 0x3D
f7b1371e 42#define W1_THERM_DS28EA00 0x42
1da177e4
LT
43
44#define MAXNAMELEN 32
45
d2a4ef6a
EP
46struct w1_slave;
47
b3be177a
DF
48/**
49 * struct w1_family_ops - operations for a family type
50 * @add_slave: add_slave
51 * @remove_slave: remove_slave
52 * @groups: sysfs group
53 */
1da177e4
LT
54struct w1_family_ops
55{
d2a4ef6a
EP
56 int (* add_slave)(struct w1_slave *);
57 void (* remove_slave)(struct w1_slave *);
36c27a65 58 const struct attribute_group **groups;
1da177e4
LT
59};
60
b3be177a
DF
61/**
62 * struct w1_family - reference counted family structure.
63 * @family_entry: family linked list
64 * @fid: 8 bit family identifier
65 * @fops: operations for this family
66 * @refcnt: reference counter
67 */
1da177e4
LT
68struct w1_family
69{
70 struct list_head family_entry;
71 u8 fid;
7785925d 72
1da177e4 73 struct w1_family_ops *fops;
7785925d 74
1da177e4 75 atomic_t refcnt;
1da177e4
LT
76};
77
78extern spinlock_t w1_flock;
79
1da177e4
LT
80void w1_family_put(struct w1_family *);
81void __w1_family_get(struct w1_family *);
1da177e4
LT
82struct w1_family * w1_family_registered(u8);
83void w1_unregister_family(struct w1_family *);
84int w1_register_family(struct w1_family *);
85
939fc832
AD
86/**
87 * module_w1_driver() - Helper macro for registering a 1-Wire families
88 * @__w1_family: w1_family struct
89 *
90 * Helper macro for 1-Wire families which do not do anything special in module
91 * init/exit. This eliminates a lot of boilerplate. Each module may only
92 * use this macro once, and calling it replaces module_init() and module_exit()
93 */
94#define module_w1_family(__w1_family) \
95 module_driver(__w1_family, w1_register_family, \
96 w1_unregister_family)
97
1da177e4 98#endif /* __W1_FAMILY_H */