initial commit with v2.6.9
[linux-2.6.9-moxart.git] / drivers / w1 / w1.h
blob54a3437a8bbe5dc9e2b3ae5445152e4bdbc459a4
1 /*
2 * w1.h
4 * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
5 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef __W1_H
23 #define __W1_H
25 struct w1_reg_num
27 __u64 family:8,
28 id:48,
29 crc:8;
32 #ifdef __KERNEL__
34 #include <linux/completion.h>
35 #include <linux/device.h>
37 #include <net/sock.h>
39 #include <asm/semaphore.h>
41 #include "w1_family.h"
43 #define W1_MAXNAMELEN 32
44 #define W1_SLAVE_DATA_SIZE 128
46 #define W1_SEARCH 0xF0
47 #define W1_CONDITIONAL_SEARCH 0xEC
48 #define W1_CONVERT_TEMP 0x44
49 #define W1_SKIP_ROM 0xCC
50 #define W1_READ_SCRATCHPAD 0xBE
51 #define W1_READ_ROM 0x33
52 #define W1_READ_PSUPPLY 0xB4
53 #define W1_MATCH_ROM 0x55
55 #define W1_SLAVE_ACTIVE (1<<0)
57 struct w1_slave
59 struct module *owner;
60 unsigned char name[W1_MAXNAMELEN];
61 struct list_head w1_slave_entry;
62 struct w1_reg_num reg_num;
63 atomic_t refcnt;
64 u8 rom[9];
65 u32 flags;
67 struct w1_master *master;
68 struct w1_family *family;
69 struct device dev;
70 struct completion dev_released;
72 struct bin_attribute attr_bin;
73 struct device_attribute attr_name, attr_val;
76 struct w1_bus_master
78 unsigned long data;
80 u8 (*read_bit)(unsigned long);
81 void (*write_bit)(unsigned long, u8);
83 u8 (*read_byte)(unsigned long);
84 void (*write_byte)(unsigned long, u8);
86 u8 (*read_block)(unsigned long, u8 *, int);
87 void (*write_block)(unsigned long, u8 *, int);
89 u8 (*touch_bit)(unsigned long, u8);
91 u8 (*reset_bus)(unsigned long);
94 struct w1_master
96 struct list_head w1_master_entry;
97 struct module *owner;
98 unsigned char name[W1_MAXNAMELEN];
99 struct list_head slist;
100 int max_slave_count, slave_count;
101 unsigned long attempts;
102 int initialized;
103 u32 id;
105 atomic_t refcnt;
107 void *priv;
108 int priv_size;
110 int need_exit;
111 pid_t kpid;
112 wait_queue_head_t kwait;
113 struct semaphore mutex;
115 struct device_driver *driver;
116 struct device dev;
117 struct completion dev_released;
118 struct completion dev_exited;
120 struct w1_bus_master *bus_master;
122 u32 seq, groups;
123 struct sock *nls;
126 int w1_create_master_attributes(struct w1_master *);
127 void w1_destroy_master_attributes(struct w1_master *);
129 #endif /* __KERNEL__ */
131 #endif /* __W1_H */