Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * w1_netlink.h |
| 3 | * |
Evgeniy Polyakov | a801876 | 2011-08-25 15:59:06 -0700 | [diff] [blame] | 4 | * Copyright (c) 2003 Evgeniy Polyakov <zbr@ioremap.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 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 Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 26 | #include <linux/connector.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
| 28 | #include "w1.h" |
| 29 | |
David Fries | b3be177 | 2014-01-15 22:29:25 -0600 | [diff] [blame] | 30 | /** |
David Fries | 8a0427d | 2014-04-08 22:37:09 -0500 | [diff] [blame] | 31 | * enum w1_cn_msg_flags - bitfield flags for struct cn_msg.flags |
| 32 | * |
| 33 | * @W1_CN_BUNDLE: Request bundling replies into fewer messagse. Be prepared |
| 34 | * to handle multiple struct cn_msg, struct w1_netlink_msg, and |
| 35 | * struct w1_netlink_cmd in one packet. |
| 36 | */ |
| 37 | enum w1_cn_msg_flags { |
| 38 | W1_CN_BUNDLE = 1, |
| 39 | }; |
| 40 | |
| 41 | /** |
David Fries | b3be177 | 2014-01-15 22:29:25 -0600 | [diff] [blame] | 42 | * enum w1_netlink_message_types - message type |
David Fries | 70b34d2 | 2014-01-15 22:29:17 -0600 | [diff] [blame] | 43 | * |
| 44 | * @W1_SLAVE_ADD: notification that a slave device was added |
| 45 | * @W1_SLAVE_REMOVE: notification that a slave device was removed |
| 46 | * @W1_MASTER_ADD: notification that a new bus master was added |
| 47 | * @W1_MASTER_REMOVE: notification that a bus masterwas removed |
| 48 | * @W1_MASTER_CMD: initiate operations on a specific master |
| 49 | * @W1_SLAVE_CMD: sends reset, selects the slave, then does a read/write/touch |
| 50 | * operation |
| 51 | * @W1_LIST_MASTERS: used to determine the bus master identifiers |
| 52 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | enum w1_netlink_message_types { |
| 54 | W1_SLAVE_ADD = 0, |
| 55 | W1_SLAVE_REMOVE, |
| 56 | W1_MASTER_ADD, |
| 57 | W1_MASTER_REMOVE, |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 58 | W1_MASTER_CMD, |
| 59 | W1_SLAVE_CMD, |
Evgeniy Polyakov | 610705e | 2009-01-07 18:08:59 -0800 | [diff] [blame] | 60 | W1_LIST_MASTERS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | }; |
| 62 | |
David Fries | 8a0427d | 2014-04-08 22:37:09 -0500 | [diff] [blame] | 63 | /** |
| 64 | * struct w1_netlink_msg - holds w1 message type, id, and result |
| 65 | * |
| 66 | * @type: one of enum w1_netlink_message_types |
| 67 | * @status: kernel feedback for success 0 or errno failure value |
| 68 | * @len: length of data following w1_netlink_msg |
| 69 | * @id: union holding master bus id (msg.id) and slave device id (id[8]). |
| 70 | * @data: start address of any following data |
| 71 | * |
| 72 | * The base message structure for w1 messages over netlink. |
| 73 | * The netlink connector data sequence is, struct nlmsghdr, struct cn_msg, |
| 74 | * then one or more struct w1_netlink_msg (each with optional data). |
| 75 | */ |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 76 | struct w1_netlink_msg |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { |
| 78 | __u8 type; |
Evgeniy Polyakov | 4037014 | 2009-01-07 18:09:05 -0800 | [diff] [blame] | 79 | __u8 status; |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 80 | __u16 len; |
| 81 | union { |
| 82 | __u8 id[8]; |
| 83 | struct w1_mst { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | __u32 id; |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 85 | __u32 res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } mst; |
| 87 | } id; |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 88 | __u8 data[0]; |
| 89 | }; |
| 90 | |
David Fries | b3be177 | 2014-01-15 22:29:25 -0600 | [diff] [blame] | 91 | /** |
| 92 | * enum w1_commands - commands available for master or slave operations |
David Fries | 8a0427d | 2014-04-08 22:37:09 -0500 | [diff] [blame] | 93 | * |
David Fries | 70b34d2 | 2014-01-15 22:29:17 -0600 | [diff] [blame] | 94 | * @W1_CMD_READ: read len bytes |
| 95 | * @W1_CMD_WRITE: write len bytes |
| 96 | * @W1_CMD_SEARCH: initiate a standard search, returns only the slave |
| 97 | * devices found during that search |
| 98 | * @W1_CMD_ALARM_SEARCH: search for devices that are currently alarming |
| 99 | * @W1_CMD_TOUCH: Touches a series of bytes. |
| 100 | * @W1_CMD_RESET: sends a bus reset on the given master |
| 101 | * @W1_CMD_SLAVE_ADD: adds a slave to the given master, |
| 102 | * 8 byte slave id at data[0] |
| 103 | * @W1_CMD_SLAVE_REMOVE: removes a slave to the given master, |
| 104 | * 8 byte slave id at data[0] |
| 105 | * @W1_CMD_LIST_SLAVES: list of slaves registered on this master |
| 106 | * @W1_CMD_MAX: number of available commands |
| 107 | */ |
Evgeniy Polyakov | 325a06f | 2009-01-07 18:09:03 -0800 | [diff] [blame] | 108 | enum w1_commands { |
| 109 | W1_CMD_READ = 0, |
| 110 | W1_CMD_WRITE, |
| 111 | W1_CMD_SEARCH, |
| 112 | W1_CMD_ALARM_SEARCH, |
| 113 | W1_CMD_TOUCH, |
Evgeniy Polyakov | f89735c | 2009-01-07 18:09:04 -0800 | [diff] [blame] | 114 | W1_CMD_RESET, |
David Fries | 70b34d2 | 2014-01-15 22:29:17 -0600 | [diff] [blame] | 115 | W1_CMD_SLAVE_ADD, |
| 116 | W1_CMD_SLAVE_REMOVE, |
| 117 | W1_CMD_LIST_SLAVES, |
| 118 | W1_CMD_MAX |
Evgeniy Polyakov | 325a06f | 2009-01-07 18:09:03 -0800 | [diff] [blame] | 119 | }; |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 120 | |
David Fries | 8a0427d | 2014-04-08 22:37:09 -0500 | [diff] [blame] | 121 | /** |
| 122 | * struct w1_netlink_cmd - holds the command and data |
| 123 | * |
| 124 | * @cmd: one of enum w1_commands |
| 125 | * @res: reserved |
| 126 | * @len: length of data following w1_netlink_cmd |
| 127 | * @data: start address of any following data |
| 128 | * |
| 129 | * One or more struct w1_netlink_cmd is placed starting at w1_netlink_msg.data |
| 130 | * each with optional data. |
| 131 | */ |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 132 | struct w1_netlink_cmd |
| 133 | { |
| 134 | __u8 cmd; |
| 135 | __u8 res; |
| 136 | __u16 len; |
| 137 | __u8 data[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | #ifdef __KERNEL__ |
| 141 | |
| 142 | void w1_netlink_send(struct w1_master *, struct w1_netlink_msg *); |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 143 | int w1_init_netlink(void); |
| 144 | void w1_fini_netlink(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | #endif /* __KERNEL__ */ |
| 147 | #endif /* __W1_NETLINK_H */ |