diff options
Diffstat (limited to 'drivers/w1/w1.h')
| -rw-r--r-- | drivers/w1/w1.h | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/drivers/w1/w1.h b/drivers/w1/w1.h index 56980505e6c4..f1df5343f4ad 100644 --- a/drivers/w1/w1.h +++ b/drivers/w1/w1.h | |||
| @@ -41,10 +41,7 @@ struct w1_reg_num | |||
| 41 | 41 | ||
| 42 | #include <linux/completion.h> | 42 | #include <linux/completion.h> |
| 43 | #include <linux/device.h> | 43 | #include <linux/device.h> |
| 44 | 44 | #include <linux/mutex.h> | |
| 45 | #include <net/sock.h> | ||
| 46 | |||
| 47 | #include <asm/semaphore.h> | ||
| 48 | 45 | ||
| 49 | #include "w1_family.h" | 46 | #include "w1_family.h" |
| 50 | 47 | ||
| @@ -52,7 +49,7 @@ struct w1_reg_num | |||
| 52 | #define W1_SLAVE_DATA_SIZE 128 | 49 | #define W1_SLAVE_DATA_SIZE 128 |
| 53 | 50 | ||
| 54 | #define W1_SEARCH 0xF0 | 51 | #define W1_SEARCH 0xF0 |
| 55 | #define W1_CONDITIONAL_SEARCH 0xEC | 52 | #define W1_ALARM_SEARCH 0xEC |
| 56 | #define W1_CONVERT_TEMP 0x44 | 53 | #define W1_CONVERT_TEMP 0x44 |
| 57 | #define W1_SKIP_ROM 0xCC | 54 | #define W1_SKIP_ROM 0xCC |
| 58 | #define W1_READ_SCRATCHPAD 0xBE | 55 | #define W1_READ_SCRATCHPAD 0xBE |
| @@ -60,7 +57,7 @@ struct w1_reg_num | |||
| 60 | #define W1_READ_PSUPPLY 0xB4 | 57 | #define W1_READ_PSUPPLY 0xB4 |
| 61 | #define W1_MATCH_ROM 0x55 | 58 | #define W1_MATCH_ROM 0x55 |
| 62 | 59 | ||
| 63 | #define W1_SLAVE_ACTIVE (1<<0) | 60 | #define W1_SLAVE_ACTIVE 0 |
| 64 | 61 | ||
| 65 | struct w1_slave | 62 | struct w1_slave |
| 66 | { | 63 | { |
| @@ -145,8 +142,8 @@ struct w1_bus_master | |||
| 145 | */ | 142 | */ |
| 146 | u8 (*reset_bus)(void *); | 143 | u8 (*reset_bus)(void *); |
| 147 | 144 | ||
| 148 | /** Really nice hardware can handles the ROM searches */ | 145 | /** Really nice hardware can handles the different types of ROM search */ |
| 149 | void (*search)(void *, w1_slave_found_callback); | 146 | void (*search)(void *, u8, w1_slave_found_callback); |
| 150 | }; | 147 | }; |
| 151 | 148 | ||
| 152 | #define W1_MASTER_NEED_EXIT 0 | 149 | #define W1_MASTER_NEED_EXIT 0 |
| @@ -173,19 +170,30 @@ struct w1_master | |||
| 173 | long flags; | 170 | long flags; |
| 174 | 171 | ||
| 175 | struct task_struct *thread; | 172 | struct task_struct *thread; |
| 176 | struct semaphore mutex; | 173 | struct mutex mutex; |
| 177 | 174 | ||
| 178 | struct device_driver *driver; | 175 | struct device_driver *driver; |
| 179 | struct device dev; | 176 | struct device dev; |
| 180 | 177 | ||
| 181 | struct w1_bus_master *bus_master; | 178 | struct w1_bus_master *bus_master; |
| 182 | 179 | ||
| 183 | u32 seq, groups; | 180 | u32 seq; |
| 184 | struct sock *nls; | ||
| 185 | }; | 181 | }; |
| 186 | 182 | ||
| 187 | int w1_create_master_attributes(struct w1_master *); | 183 | int w1_create_master_attributes(struct w1_master *); |
| 188 | void w1_search(struct w1_master *dev, w1_slave_found_callback cb); | 184 | void w1_search(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb); |
| 185 | void w1_search_devices(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb); | ||
| 186 | struct w1_slave *w1_search_slave(struct w1_reg_num *id); | ||
| 187 | void w1_search_process(struct w1_master *dev, u8 search_type); | ||
| 188 | struct w1_master *w1_search_master_id(u32 id); | ||
| 189 | |||
| 190 | u8 w1_triplet(struct w1_master *dev, int bdir); | ||
| 191 | void w1_write_8(struct w1_master *, u8); | ||
| 192 | int w1_reset_bus(struct w1_master *); | ||
| 193 | u8 w1_calc_crc8(u8 *, int); | ||
| 194 | void w1_write_block(struct w1_master *, const u8 *, int); | ||
| 195 | u8 w1_read_block(struct w1_master *, u8 *, int); | ||
| 196 | int w1_reset_select_slave(struct w1_slave *sl); | ||
| 189 | 197 | ||
| 190 | static inline struct w1_slave* dev_to_w1_slave(struct device *dev) | 198 | static inline struct w1_slave* dev_to_w1_slave(struct device *dev) |
| 191 | { | 199 | { |
| @@ -202,15 +210,14 @@ static inline struct w1_master* dev_to_w1_master(struct device *dev) | |||
| 202 | return container_of(dev, struct w1_master, dev); | 210 | return container_of(dev, struct w1_master, dev); |
| 203 | } | 211 | } |
| 204 | 212 | ||
| 213 | extern struct device_driver w1_master_driver; | ||
| 214 | extern struct device w1_master_device; | ||
| 205 | extern int w1_max_slave_count; | 215 | extern int w1_max_slave_count; |
| 206 | extern int w1_max_slave_ttl; | 216 | extern int w1_max_slave_ttl; |
| 207 | extern spinlock_t w1_mlock; | ||
| 208 | extern struct list_head w1_masters; | 217 | extern struct list_head w1_masters; |
| 209 | extern struct device_driver w1_master_driver; | 218 | extern struct mutex w1_mlock; |
| 210 | extern struct device w1_master_device; | ||
| 211 | 219 | ||
| 212 | int w1_process(void *data); | 220 | extern int w1_process(void *); |
| 213 | void w1_reconnect_slaves(struct w1_family *f); | ||
| 214 | 221 | ||
| 215 | #endif /* __KERNEL__ */ | 222 | #endif /* __KERNEL__ */ |
| 216 | 223 | ||
