blob: b389e5ff5fa503435b9ac5dd21c01dee6e51a4e5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Evgeniy Polyakova8018762011-08-25 15:59:06 -07002 * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#ifndef __W1_NETLINK_H
16#define __W1_NETLINK_H
17
18#include <asm/types.h>
Evgeniy Polyakov12003372006-03-23 19:11:58 +030019#include <linux/connector.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include "w1.h"
22
David Friesb3be1772014-01-15 22:29:25 -060023/**
David Fries8a0427d2014-04-08 22:37:09 -050024 * enum w1_cn_msg_flags - bitfield flags for struct cn_msg.flags
25 *
26 * @W1_CN_BUNDLE: Request bundling replies into fewer messagse. Be prepared
27 * to handle multiple struct cn_msg, struct w1_netlink_msg, and
28 * struct w1_netlink_cmd in one packet.
29 */
30enum w1_cn_msg_flags {
31 W1_CN_BUNDLE = 1,
32};
33
34/**
David Friesb3be1772014-01-15 22:29:25 -060035 * enum w1_netlink_message_types - message type
David Fries70b34d22014-01-15 22:29:17 -060036 *
37 * @W1_SLAVE_ADD: notification that a slave device was added
38 * @W1_SLAVE_REMOVE: notification that a slave device was removed
39 * @W1_MASTER_ADD: notification that a new bus master was added
40 * @W1_MASTER_REMOVE: notification that a bus masterwas removed
41 * @W1_MASTER_CMD: initiate operations on a specific master
42 * @W1_SLAVE_CMD: sends reset, selects the slave, then does a read/write/touch
43 * operation
44 * @W1_LIST_MASTERS: used to determine the bus master identifiers
45 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046enum w1_netlink_message_types {
47 W1_SLAVE_ADD = 0,
48 W1_SLAVE_REMOVE,
49 W1_MASTER_ADD,
50 W1_MASTER_REMOVE,
Evgeniy Polyakov12003372006-03-23 19:11:58 +030051 W1_MASTER_CMD,
52 W1_SLAVE_CMD,
Evgeniy Polyakov610705e2009-01-07 18:08:59 -080053 W1_LIST_MASTERS,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
David Fries8a0427d2014-04-08 22:37:09 -050056/**
57 * struct w1_netlink_msg - holds w1 message type, id, and result
58 *
59 * @type: one of enum w1_netlink_message_types
60 * @status: kernel feedback for success 0 or errno failure value
61 * @len: length of data following w1_netlink_msg
62 * @id: union holding master bus id (msg.id) and slave device id (id[8]).
63 * @data: start address of any following data
64 *
65 * The base message structure for w1 messages over netlink.
66 * The netlink connector data sequence is, struct nlmsghdr, struct cn_msg,
67 * then one or more struct w1_netlink_msg (each with optional data).
68 */
Evgeniy Polyakov77859252005-05-20 22:33:25 +040069struct w1_netlink_msg
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
71 __u8 type;
Evgeniy Polyakov40370142009-01-07 18:09:05 -080072 __u8 status;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030073 __u16 len;
74 union {
75 __u8 id[8];
76 struct w1_mst {
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 __u32 id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030078 __u32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 } mst;
80 } id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030081 __u8 data[0];
82};
83
David Friesb3be1772014-01-15 22:29:25 -060084/**
85 * enum w1_commands - commands available for master or slave operations
David Fries8a0427d2014-04-08 22:37:09 -050086 *
David Fries70b34d22014-01-15 22:29:17 -060087 * @W1_CMD_READ: read len bytes
88 * @W1_CMD_WRITE: write len bytes
89 * @W1_CMD_SEARCH: initiate a standard search, returns only the slave
90 * devices found during that search
91 * @W1_CMD_ALARM_SEARCH: search for devices that are currently alarming
92 * @W1_CMD_TOUCH: Touches a series of bytes.
93 * @W1_CMD_RESET: sends a bus reset on the given master
94 * @W1_CMD_SLAVE_ADD: adds a slave to the given master,
95 * 8 byte slave id at data[0]
96 * @W1_CMD_SLAVE_REMOVE: removes a slave to the given master,
97 * 8 byte slave id at data[0]
98 * @W1_CMD_LIST_SLAVES: list of slaves registered on this master
99 * @W1_CMD_MAX: number of available commands
100 */
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -0800101enum w1_commands {
102 W1_CMD_READ = 0,
103 W1_CMD_WRITE,
104 W1_CMD_SEARCH,
105 W1_CMD_ALARM_SEARCH,
106 W1_CMD_TOUCH,
Evgeniy Polyakovf89735c2009-01-07 18:09:04 -0800107 W1_CMD_RESET,
David Fries70b34d22014-01-15 22:29:17 -0600108 W1_CMD_SLAVE_ADD,
109 W1_CMD_SLAVE_REMOVE,
110 W1_CMD_LIST_SLAVES,
111 W1_CMD_MAX
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -0800112};
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300113
David Fries8a0427d2014-04-08 22:37:09 -0500114/**
115 * struct w1_netlink_cmd - holds the command and data
116 *
117 * @cmd: one of enum w1_commands
118 * @res: reserved
119 * @len: length of data following w1_netlink_cmd
120 * @data: start address of any following data
121 *
122 * One or more struct w1_netlink_cmd is placed starting at w1_netlink_msg.data
123 * each with optional data.
124 */
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300125struct w1_netlink_cmd
126{
127 __u8 cmd;
128 __u8 res;
129 __u16 len;
130 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131};
132
133#ifdef __KERNEL__
134
135void w1_netlink_send(struct w1_master *, struct w1_netlink_msg *);
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300136int w1_init_netlink(void);
137void w1_fini_netlink(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139#endif /* __KERNEL__ */
140#endif /* __W1_NETLINK_H */