blob: f876772c0fb40145d003dbdccd4630972909eb77 [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
Andrew F. Davisde0d6db2017-06-05 08:52:08 -050021#include "w1_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
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
Mauro Carvalho Chehabaa931b42017-12-18 10:30:19 -020062 * @id: union holding bus master id (msg.id) and slave device id (id[8]).
63 * @id.id: Slave ID (8 bytes)
64 * @id.mst: bus master identification
65 * @id.mst.id: bus master ID
66 * @id.mst.res: bus master reserved
David Fries8a0427d2014-04-08 22:37:09 -050067 * @data: start address of any following data
68 *
69 * The base message structure for w1 messages over netlink.
70 * The netlink connector data sequence is, struct nlmsghdr, struct cn_msg,
71 * then one or more struct w1_netlink_msg (each with optional data).
72 */
Evgeniy Polyakov77859252005-05-20 22:33:25 +040073struct w1_netlink_msg
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 __u8 type;
Evgeniy Polyakov40370142009-01-07 18:09:05 -080076 __u8 status;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030077 __u16 len;
78 union {
79 __u8 id[8];
80 struct w1_mst {
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 __u32 id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030082 __u32 res;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 } mst;
84 } id;
Evgeniy Polyakov12003372006-03-23 19:11:58 +030085 __u8 data[0];
86};
87
David Friesb3be1772014-01-15 22:29:25 -060088/**
89 * enum w1_commands - commands available for master or slave operations
David Fries8a0427d2014-04-08 22:37:09 -050090 *
David Fries70b34d22014-01-15 22:29:17 -060091 * @W1_CMD_READ: read len bytes
92 * @W1_CMD_WRITE: write len bytes
93 * @W1_CMD_SEARCH: initiate a standard search, returns only the slave
94 * devices found during that search
95 * @W1_CMD_ALARM_SEARCH: search for devices that are currently alarming
96 * @W1_CMD_TOUCH: Touches a series of bytes.
97 * @W1_CMD_RESET: sends a bus reset on the given master
98 * @W1_CMD_SLAVE_ADD: adds a slave to the given master,
99 * 8 byte slave id at data[0]
100 * @W1_CMD_SLAVE_REMOVE: removes a slave to the given master,
101 * 8 byte slave id at data[0]
102 * @W1_CMD_LIST_SLAVES: list of slaves registered on this master
103 * @W1_CMD_MAX: number of available commands
104 */
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -0800105enum w1_commands {
106 W1_CMD_READ = 0,
107 W1_CMD_WRITE,
108 W1_CMD_SEARCH,
109 W1_CMD_ALARM_SEARCH,
110 W1_CMD_TOUCH,
Evgeniy Polyakovf89735c2009-01-07 18:09:04 -0800111 W1_CMD_RESET,
David Fries70b34d22014-01-15 22:29:17 -0600112 W1_CMD_SLAVE_ADD,
113 W1_CMD_SLAVE_REMOVE,
114 W1_CMD_LIST_SLAVES,
115 W1_CMD_MAX
Evgeniy Polyakov325a06f2009-01-07 18:09:03 -0800116};
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300117
David Fries8a0427d2014-04-08 22:37:09 -0500118/**
119 * struct w1_netlink_cmd - holds the command and data
120 *
121 * @cmd: one of enum w1_commands
122 * @res: reserved
123 * @len: length of data following w1_netlink_cmd
124 * @data: start address of any following data
125 *
126 * One or more struct w1_netlink_cmd is placed starting at w1_netlink_msg.data
127 * each with optional data.
128 */
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300129struct w1_netlink_cmd
130{
131 __u8 cmd;
132 __u8 res;
133 __u16 len;
134 __u8 data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135};
136
137#ifdef __KERNEL__
138
139void w1_netlink_send(struct w1_master *, struct w1_netlink_msg *);
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300140int w1_init_netlink(void);
141void w1_fini_netlink(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143#endif /* __KERNEL__ */
144#endif /* __W1_NETLINK_H */