blob: ea9f3e4536214d5c0316f8fdc2dfca7a6b789cce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * w1_netlink.h
3 *
Evgeniy Polyakova8018762011-08-25 15:59:06 -07004 * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 *
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.
11 *
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.
16 *
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
20 */
21
22#ifndef __W1_NETLINK_H
23#define __W1_NETLINK_H
24
25#include <asm/types.h>
Evgeniy Polyakov12003372006-03-23 19:11:58 +030026#include <linux/connector.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include "w1.h"
29
David Fries70b34d22014-01-15 22:29:17 -060030/** enum w1_netlink_message_types - message type
31 *
32 * @W1_SLAVE_ADD: notification that a slave device was added
33 * @W1_SLAVE_REMOVE: notification that a slave device was removed
34 * @W1_MASTER_ADD: notification that a new bus master was added
35 * @W1_MASTER_REMOVE: notification that a bus masterwas removed
36 * @W1_MASTER_CMD: initiate operations on a specific master
37 * @W1_SLAVE_CMD: sends reset, selects the slave, then does a read/write/touch
38 * operation
39 * @W1_LIST_MASTERS: used to determine the bus master identifiers
40 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070041enum w1_netlink_message_types {
42 W1_SLAVE_ADD = 0,
43 W1_SLAVE_REMOVE,
44 W1_MASTER_ADD,
45 W1_MASTER_REMOVE,
Evgeniy Polyakov12003372006-03-23 19:11:58 +030046 W1_MASTER_CMD,
47 W1_SLAVE_CMD,
Evgeniy Polyakov610705e2009-01-07 18:08:59 -080048 W1_LIST_MASTERS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
Evgeniy Polyakov77859252005-05-20 22:33:25 +040051struct w1_netlink_msg
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 __u8 type;
Evgeniy Polyakov40370142009-01-07 18:09:05 -080054 __u8 status;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030055 __u16 len;
56 union {
57 __u8 id[8];
58 struct w1_mst {
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 __u32 id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030060 __u32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 } mst;
62 } id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030063 __u8 data[0];
64};
65
David Fries70b34d22014-01-15 22:29:17 -060066/** enum w1_commands - commands available for master or slave operations
67 * @W1_CMD_READ: read len bytes
68 * @W1_CMD_WRITE: write len bytes
69 * @W1_CMD_SEARCH: initiate a standard search, returns only the slave
70 * devices found during that search
71 * @W1_CMD_ALARM_SEARCH: search for devices that are currently alarming
72 * @W1_CMD_TOUCH: Touches a series of bytes.
73 * @W1_CMD_RESET: sends a bus reset on the given master
74 * @W1_CMD_SLAVE_ADD: adds a slave to the given master,
75 * 8 byte slave id at data[0]
76 * @W1_CMD_SLAVE_REMOVE: removes a slave to the given master,
77 * 8 byte slave id at data[0]
78 * @W1_CMD_LIST_SLAVES: list of slaves registered on this master
79 * @W1_CMD_MAX: number of available commands
80 */
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -080081enum w1_commands {
82 W1_CMD_READ = 0,
83 W1_CMD_WRITE,
84 W1_CMD_SEARCH,
85 W1_CMD_ALARM_SEARCH,
86 W1_CMD_TOUCH,
Evgeniy Polyakovf89735c2009-01-07 18:09:04 -080087 W1_CMD_RESET,
David Fries70b34d22014-01-15 22:29:17 -060088 W1_CMD_SLAVE_ADD,
89 W1_CMD_SLAVE_REMOVE,
90 W1_CMD_LIST_SLAVES,
91 W1_CMD_MAX
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -080092};
Evgeniy Polyakov12003372006-03-23 19:11:58 +030093
94struct w1_netlink_cmd
95{
96 __u8 cmd;
97 __u8 res;
98 __u16 len;
99 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100};
101
102#ifdef __KERNEL__
103
104void w1_netlink_send(struct w1_master *, struct w1_netlink_msg *);
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300105int w1_init_netlink(void);
106void w1_fini_netlink(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108#endif /* __KERNEL__ */
109#endif /* __W1_NETLINK_H */