blob: 90cbe7e65059f6b604a87c6bf39cd9bbeae7684c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Evgeniy Polyakova8018762011-08-25 15:59:06 -07002 * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
Evgeniy Polyakov77859252005-05-20 22:33:25 +04003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Andrew F. Davisde0d6db2017-06-05 08:52:08 -050015#ifndef __LINUX_W1_H
16#define __LINUX_W1_H
17
18#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
David Friesb3be1772014-01-15 22:29:25 -060020/**
21 * struct w1_reg_num - broken out slave device id
22 *
23 * @family: identifies the type of device
24 * @id: along with family is the unique device id
25 * @crc: checksum of the other bytes
26 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -050027struct w1_reg_num {
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#if defined(__LITTLE_ENDIAN_BITFIELD)
Evgeniy Polyakov6b729862005-06-04 01:30:43 +040029 __u64 family:8,
30 id:48,
31 crc:8;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#elif defined(__BIG_ENDIAN_BITFIELD)
33 __u64 crc:8,
34 id:48,
35 family:8;
36#else
37#error "Please fix <asm/byteorder.h>"
38#endif
39};
40
41#ifdef __KERNEL__
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define W1_MAXNAMELEN 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define W1_SEARCH 0xF0
Evgeniy Polyakov12003372006-03-23 19:11:58 +030046#define W1_ALARM_SEARCH 0xEC
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define W1_CONVERT_TEMP 0x44
48#define W1_SKIP_ROM 0xCC
Ben Sen0a19f122016-05-01 23:23:33 +020049#define W1_COPY_SCRATCHPAD 0x48
50#define W1_WRITE_SCRATCHPAD 0x4E
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#define W1_READ_SCRATCHPAD 0xBE
52#define W1_READ_ROM 0x33
53#define W1_READ_PSUPPLY 0xB4
54#define W1_MATCH_ROM 0x55
Jean-François Dagenais67dfd542011-05-26 16:26:01 -070055#define W1_RESUME_CMD 0xA5
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David Friesb3be1772014-01-15 22:29:25 -060057/**
58 * struct w1_slave - holds a single slave device on the bus
59 *
60 * @owner: Points to the one wire "wire" kernel module.
61 * @name: Device id is ascii.
62 * @w1_slave_entry: data for the linked list
63 * @reg_num: the slave id in binary
64 * @refcnt: reference count, delete when 0
65 * @flags: bit flags for W1_SLAVE_ACTIVE W1_SLAVE_DETACH
66 * @ttl: decrement per search this slave isn't found, deatch at 0
67 * @master: bus which this slave is on
68 * @family: module for device family type
69 * @family_data: pointer for use by the family module
70 * @dev: kernel device identifier
71 *
72 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -050073struct w1_slave {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 struct module *owner;
75 unsigned char name[W1_MAXNAMELEN];
76 struct list_head w1_slave_entry;
77 struct w1_reg_num reg_num;
78 atomic_t refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int ttl;
Michal Nazarewiczbb670932013-11-12 15:11:42 -080080 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 struct w1_master *master;
Evgeniy Polyakov77859252005-05-20 22:33:25 +040083 struct w1_family *family;
Evgeniy Polyakova45f1052005-08-17 15:19:08 +040084 void *family_data;
Evgeniy Polyakov77859252005-05-20 22:33:25 +040085 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
David Friesc30c9b12008-10-15 22:04:38 -070088typedef void (*w1_slave_found_callback)(struct w1_master *, u64);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Evgeniy Polyakov6b729862005-06-04 01:30:43 +040090/**
David Friesb3be1772014-01-15 22:29:25 -060091 * struct w1_bus_master - operations available on a bus master
92 *
93 * @data: the first parameter in all the functions below
94 *
95 * @read_bit: Sample the line level @return the level read (0 or 1)
96 *
97 * @write_bit: Sets the line level
98 *
99 * @touch_bit: the lowest-level function for devices that really support the
100 * 1-wire protocol.
101 * touch_bit(0) = write-0 cycle
102 * touch_bit(1) = write-1 / read cycle
103 * @return the bit read (0 or 1)
104 *
105 * @read_byte: Reads a bytes. Same as 8 touch_bit(1) calls.
106 * @return the byte read
107 *
108 * @write_byte: Writes a byte. Same as 8 touch_bit(x) calls.
109 *
110 * @read_block: Same as a series of read_byte() calls
111 * @return the number of bytes read
112 *
113 * @write_block: Same as a series of write_byte() calls
114 *
115 * @triplet: Combines two reads and a smart write for ROM searches
116 * @return bit0=Id bit1=comp_id bit2=dir_taken
117 *
118 * @reset_bus: long write-0 with a read for the presence pulse detection
119 * @return -1=Error, 0=Device present, 1=No device present
120 *
121 * @set_pullup: Put out a strong pull-up pulse of the specified duration.
122 * @return -1=Error, 0=completed
123 *
124 * @search: Really nice hardware can handles the different types of ROM search
125 * w1_master* is passed to the slave found callback.
126 * u8 is search_type, W1_SEARCH or W1_ALARM_SEARCH
127 *
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400128 * Note: read_bit and write_bit are very low level functions and should only
129 * be used with hardware that doesn't really support 1-wire operations,
130 * like a parallel/serial port.
131 * Either define read_bit and write_bit OR define, at minimum, touch_bit and
132 * reset_bus.
David Friesb3be1772014-01-15 22:29:25 -0600133 *
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400134 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500135struct w1_bus_master {
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300136 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300138 u8 (*read_bit)(void *);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400139
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300140 void (*write_bit)(void *, u8);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400141
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300142 u8 (*touch_bit)(void *, u8);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400143
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300144 u8 (*read_byte)(void *);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400145
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300146 void (*write_byte)(void *, u8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300148 u8 (*read_block)(void *, u8 *, int);
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400149
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300150 void (*write_block)(void *, const u8 *, int);
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400151
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300152 u8 (*triplet)(void *, u8);
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400153
Evgeniy Polyakovccd69942005-12-06 13:38:27 +0300154 u8 (*reset_bus)(void *);
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400155
David Fries6a158c02008-10-15 22:04:42 -0700156 u8 (*set_pullup)(void *, int);
157
David Friesc30c9b12008-10-15 22:04:38 -0700158 void (*search)(void *, struct w1_master *,
159 u8, w1_slave_found_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160};
161
David Fries42105692014-01-15 22:29:13 -0600162/**
163 * enum w1_master_flags - bitfields used in w1_master.flags
164 * @W1_ABORT_SEARCH: abort searching early on shutdown
David Friesa1613052014-01-15 22:29:15 -0600165 * @W1_WARN_MAX_COUNT: limit warning when the maximum count is reached
David Fries42105692014-01-15 22:29:13 -0600166 */
167enum w1_master_flags {
168 W1_ABORT_SEARCH = 0,
David Friesa1613052014-01-15 22:29:15 -0600169 W1_WARN_MAX_COUNT = 1,
David Fries42105692014-01-15 22:29:13 -0600170};
171
David Friesb3be1772014-01-15 22:29:25 -0600172/**
173 * struct w1_master - one per bus master
174 * @w1_master_entry: master linked list
175 * @owner: module owner
176 * @name: dynamically allocate bus name
177 * @list_mutex: protect slist and async_list
178 * @slist: linked list of slaves
179 * @async_list: linked list of netlink commands to execute
180 * @max_slave_count: maximum number of slaves to search for at a time
181 * @slave_count: current number of slaves known
182 * @attempts: number of searches ran
183 * @slave_ttl: number of searches before a slave is timed out
184 * @initialized: prevent init/removal race conditions
185 * @id: w1 bus number
186 * @search_count: number of automatic searches to run, -1 unlimited
187 * @search_id: allows continuing a search
188 * @refcnt: reference count
189 * @priv: private data storage
David Friesb3be1772014-01-15 22:29:25 -0600190 * @enable_pullup: allows a strong pullup
191 * @pullup_duration: time for the next strong pullup
192 * @flags: one of w1_master_flags
193 * @thread: thread for bus search and netlink commands
194 * @mutex: protect most of w1_master
195 * @bus_mutex: pretect concurrent bus access
196 * @driver: sysfs driver
197 * @dev: sysfs device
198 * @bus_master: io operations available
199 * @seq: sequence number used for netlink broadcasts
David Friesb3be1772014-01-15 22:29:25 -0600200 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500201struct w1_master {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct list_head w1_master_entry;
203 struct module *owner;
204 unsigned char name[W1_MAXNAMELEN];
David Fries9fcbbac2014-01-15 22:29:18 -0600205 /* list_mutex protects just slist and async_list so slaves can be
206 * searched for and async commands added while the master has
207 * w1_master.mutex locked and is operating on the bus.
David Friesb3be1772014-01-15 22:29:25 -0600208 * lock order w1_mlock, w1_master.mutex, w1_master.list_mutex
David Fries9fcbbac2014-01-15 22:29:18 -0600209 */
210 struct mutex list_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct list_head slist;
David Fries9fcbbac2014-01-15 22:29:18 -0600212 struct list_head async_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 int max_slave_count, slave_count;
214 unsigned long attempts;
215 int slave_ttl;
216 int initialized;
217 u32 id;
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400218 int search_count;
David Fries3c6955e2014-01-15 22:29:16 -0600219 /* id to start searching on, to continue a search or 0 to restart */
220 u64 search_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 atomic_t refcnt;
223
224 void *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
David Fries6a158c02008-10-15 22:04:42 -0700226 /** 5V strong pullup enabled flag, 1 enabled, zero disabled. */
227 int enable_pullup;
228 /** 5V strong pullup duration in milliseconds, zero disabled. */
229 int pullup_duration;
230
David Fries42105692014-01-15 22:29:13 -0600231 long flags;
232
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +0300233 struct task_struct *thread;
Evgeniy Polyakovabd52a12006-04-03 12:04:27 +0400234 struct mutex mutex;
NeilBrownb02f8be2012-05-18 15:59:52 +1000235 struct mutex bus_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 struct device_driver *driver;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400238 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 struct w1_bus_master *bus_master;
241
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300242 u32 seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243};
244
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500245int w1_add_master_device(struct w1_bus_master *master);
246void w1_remove_master_device(struct w1_bus_master *master);
247
David Fries9fcbbac2014-01-15 22:29:18 -0600248/**
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500249 * struct w1_family_ops - operations for a family type
250 * @add_slave: add_slave
251 * @remove_slave: remove_slave
252 * @groups: sysfs group
David Fries9fcbbac2014-01-15 22:29:18 -0600253 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500254struct w1_family_ops {
255 int (*add_slave)(struct w1_slave *sl);
256 void (*remove_slave)(struct w1_slave *sl);
257 const struct attribute_group **groups;
David Fries9fcbbac2014-01-15 22:29:18 -0600258};
259
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500260/**
261 * struct w1_family - reference counted family structure.
262 * @family_entry: family linked list
263 * @fid: 8 bit family identifier
264 * @fops: operations for this family
265 * @refcnt: reference counter
David Friesc30c9b12008-10-15 22:04:38 -0700266 */
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500267struct w1_family {
268 struct list_head family_entry;
269 u8 fid;
270
271 struct w1_family_ops *fops;
272
273 atomic_t refcnt;
274};
275
276int w1_register_family(struct w1_family *family);
277void w1_unregister_family(struct w1_family *family);
278
279/**
280 * module_w1_driver() - Helper macro for registering a 1-Wire families
281 * @__w1_family: w1_family struct
282 *
283 * Helper macro for 1-Wire families which do not do anything special in module
284 * init/exit. This eliminates a lot of boilerplate. Each module may only
285 * use this macro once, and calling it replaces module_init() and module_exit()
286 */
287#define module_w1_family(__w1_family) \
288 module_driver(__w1_family, w1_register_family, \
289 w1_unregister_family)
David Friesc30c9b12008-10-15 22:04:38 -0700290
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300291u8 w1_triplet(struct w1_master *dev, int bdir);
292void w1_write_8(struct w1_master *, u8);
Madhusudhan Chikkature34e453d2008-11-12 13:27:08 -0800293u8 w1_read_8(struct w1_master *);
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300294int w1_reset_bus(struct w1_master *);
295u8 w1_calc_crc8(u8 *, int);
296void w1_write_block(struct w1_master *, const u8 *, int);
Evgeniy Polyakov9be62e02009-01-07 18:09:01 -0800297void w1_touch_block(struct w1_master *, u8 *, int);
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300298u8 w1_read_block(struct w1_master *, u8 *, int);
299int w1_reset_select_slave(struct w1_slave *sl);
Jean-François Dagenais67dfd542011-05-26 16:26:01 -0700300int w1_reset_resume_command(struct w1_master *);
David Fries6a158c02008-10-15 22:04:42 -0700301void w1_next_pullup(struct w1_master *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400303static inline struct w1_slave* dev_to_w1_slave(struct device *dev)
304{
305 return container_of(dev, struct w1_slave, dev);
306}
307
308static inline struct w1_slave* kobj_to_w1_slave(struct kobject *kobj)
309{
310 return dev_to_w1_slave(container_of(kobj, struct device, kobj));
311}
312
313static inline struct w1_master* dev_to_w1_master(struct device *dev)
314{
315 return container_of(dev, struct w1_master, dev);
316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318#endif /* __KERNEL__ */
319
Andrew F. Davisde0d6db2017-06-05 08:52:08 -0500320#endif /* __LINUX_W1_H */