onewirevar.h revision 1.1 1 /* $OpenBSD: onewirevar.h,v 1.1 2006/03/04 16:27:03 grange Exp $ */
2
3 /*
4 * Copyright (c) 2006 Alexander Yurchenko <grange (at) openbsd.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19 #ifndef _DEV_ONEWIRE_ONEWIREVAR_H_
20 #define _DEV_ONEWIRE_ONEWIREVAR_H_
21
22 /*
23 * 1-Wire bus interface.
24 */
25
26 /* Bus master interface */
27 struct onewire_bus {
28 void * bus_cookie;
29
30 int (*bus_reset)(void *);
31 int (*bus_bit)(void *, int);
32 int (*bus_read_byte)(void *);
33 void (*bus_write_byte)(void *, int);
34 int (*bus_triplet)(void *, int);
35 };
36
37 /* Bus methods */
38 int onewire_lock(void *, int);
39 void onewire_unlock(void *);
40 int onewire_reset(void *);
41 int onewire_bit(void *, int);
42 int onewire_read_byte(void *);
43 void onewire_write_byte(void *, int);
44 int onewire_triplet(void *, int);
45 void onewire_read_block(void *, void *, int);
46 void onewire_write_block(void *, const void *, int);
47 void onewire_matchrom(void *, u_int64_t);
48
49 #define ONEWIRE_NOWAIT 0x0001
50
51 /* Bus attachment */
52 struct onewirebus_attach_args {
53 struct onewire_bus * oba_bus;
54 };
55
56 int onewirebus_print(void *, const char *);
57
58 /* Device attachment */
59 struct onewire_attach_args {
60 void * oa_onewire;
61 u_int64_t oa_rom;
62 };
63
64 /* Family matching */
65 struct onewire_matchfam {
66 int om_type;
67 };
68
69 /* Miscellaneous routines */
70 int onewire_crc(const void *, int);
71 const char * onewire_famname(int);
72 int onewire_matchbyfam(struct onewire_attach_args *,
73 const struct onewire_matchfam *, int);
74
75 /* Bus bit-banging */
76 struct onewire_bbops {
77 void (*bb_rx)(void *);
78 void (*bb_tx)(void *);
79 int (*bb_get)(void *);
80 void (*bb_set)(void *, int);
81 };
82
83 int onewire_bb_reset(const struct onewire_bbops *, void *);
84 int onewire_bb_bit(const struct onewire_bbops *, void *, int);
85
86 #endif /* !_DEV_ONEWIRE_ONEWIREVAR_H_ */
87