Blame view

drivers/w1/w1_netlink.h 1.64 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   * w1_netlink.h
   *
a80187663   Evgeniy Polyakov   MAINTAINERS: Evge...
4
   * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
   *
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
   */
  
  #ifndef __W1_NETLINK_H
  #define __W1_NETLINK_H
  
  #include <asm/types.h>
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
26
  #include <linux/connector.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
30
31
32
33
34
  
  #include "w1.h"
  
  enum w1_netlink_message_types {
  	W1_SLAVE_ADD = 0,
  	W1_SLAVE_REMOVE,
  	W1_MASTER_ADD,
  	W1_MASTER_REMOVE,
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
35
36
  	W1_MASTER_CMD,
  	W1_SLAVE_CMD,
610705e78   Evgeniy Polyakov   w1: add list mast...
37
  	W1_LIST_MASTERS,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
  };
7785925dd   Evgeniy Polyakov   [PATCH] w1: clean...
39
  struct w1_netlink_msg
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
  {
  	__u8				type;
4037014e3   Evgeniy Polyakov   w1: send status m...
42
  	__u8				status;
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
43
44
45
46
  	__u16				len;
  	union {
  		__u8			id[8];
  		struct w1_mst {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
  			__u32		id;
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
48
  			__u32		res;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
  		} mst;
  	} id;
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
51
52
  	__u8				data[0];
  };
325a06fb1   Evgeniy Polyakov   w1: move w1 comma...
53
54
55
56
57
58
  enum w1_commands {
  	W1_CMD_READ = 0,
  	W1_CMD_WRITE,
  	W1_CMD_SEARCH,
  	W1_CMD_ALARM_SEARCH,
  	W1_CMD_TOUCH,
f89735c4e   Evgeniy Polyakov   w1: added w1 rese...
59
  	W1_CMD_RESET,
325a06fb1   Evgeniy Polyakov   w1: move w1 comma...
60
61
  	W1_CMD_MAX,
  };
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
62
63
64
65
66
67
68
  
  struct w1_netlink_cmd
  {
  	__u8				cmd;
  	__u8				res;
  	__u16				len;
  	__u8				data[0];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
69
70
71
72
73
  };
  
  #ifdef __KERNEL__
  
  void w1_netlink_send(struct w1_master *, struct w1_netlink_msg *);
12003375a   Evgeniy Polyakov   [PATCH] w1: Users...
74
75
  int w1_init_netlink(void);
  void w1_fini_netlink(void);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
76
77
78
  
  #endif /* __KERNEL__ */
  #endif /* __W1_NETLINK_H */