1 /* SPDX-License-Identifier: GPL-2.0+ WITH Linu << 2 /* 1 /* 3 * ipmi.h 2 * ipmi.h 4 * 3 * 5 * MontaVista IPMI interface 4 * MontaVista IPMI interface 6 * 5 * 7 * Author: MontaVista Software, Inc. 6 * Author: MontaVista Software, Inc. 8 * Corey Minyard <minyard@mvista.com> 7 * Corey Minyard <minyard@mvista.com> 9 * source@mvista.com 8 * source@mvista.com 10 * 9 * 11 * Copyright 2002 MontaVista Software Inc. 10 * Copyright 2002 MontaVista Software Inc. 12 * 11 * >> 12 * This program is free software; you can redistribute it and/or modify it >> 13 * under the terms of the GNU General Public License as published by the >> 14 * Free Software Foundation; either version 2 of the License, or (at your >> 15 * option) any later version. >> 16 * >> 17 * >> 18 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED >> 19 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF >> 20 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. >> 21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, >> 22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, >> 23 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS >> 24 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND >> 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR >> 26 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE >> 27 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. >> 28 * >> 29 * You should have received a copy of the GNU General Public License along >> 30 * with this program; if not, write to the Free Software Foundation, Inc., >> 31 * 675 Mass Ave, Cambridge, MA 02139, USA. 13 */ 32 */ 14 33 15 #ifndef _UAPI__LINUX_IPMI_H 34 #ifndef _UAPI__LINUX_IPMI_H 16 #define _UAPI__LINUX_IPMI_H 35 #define _UAPI__LINUX_IPMI_H 17 36 18 #include <linux/ipmi_msgdefs.h> 37 #include <linux/ipmi_msgdefs.h> 19 #include <linux/compiler.h> 38 #include <linux/compiler.h> 20 39 21 /* 40 /* 22 * This file describes an interface to an IPMI 41 * This file describes an interface to an IPMI driver. You have to 23 * have a fairly good understanding of IPMI to 42 * have a fairly good understanding of IPMI to use this, so go read 24 * the specs first before actually trying to d 43 * the specs first before actually trying to do anything. 25 * 44 * 26 * With that said, this driver provides a mult 45 * With that said, this driver provides a multi-user interface to the 27 * IPMI driver, and it allows multiple IPMI ph 46 * IPMI driver, and it allows multiple IPMI physical interfaces below 28 * the driver. The physical interfaces bind a 47 * the driver. The physical interfaces bind as a lower layer on the 29 * driver. They appear as interfaces to the a 48 * driver. They appear as interfaces to the application using this 30 * interface. 49 * interface. 31 * 50 * 32 * Multi-user means that multiple applications 51 * Multi-user means that multiple applications may use the driver, 33 * send commands, receive responses, etc. The 52 * send commands, receive responses, etc. The driver keeps track of 34 * commands the user sends and tracks the resp 53 * commands the user sends and tracks the responses. The responses 35 * will go back to the application that send t 54 * will go back to the application that send the command. If the 36 * response doesn't come back in time, the dri 55 * response doesn't come back in time, the driver will return a 37 * timeout error response to the application. 56 * timeout error response to the application. Asynchronous events 38 * from the BMC event queue will go to all use 57 * from the BMC event queue will go to all users bound to the driver. 39 * The incoming event queue in the BMC will au 58 * The incoming event queue in the BMC will automatically be flushed 40 * if it becomes full and it is queried once a 59 * if it becomes full and it is queried once a second to see if 41 * anything is in it. Incoming commands to th 60 * anything is in it. Incoming commands to the driver will get 42 * delivered as commands. 61 * delivered as commands. 43 */ 62 */ 44 63 45 /* 64 /* 46 * This is an overlay for all the address type 65 * This is an overlay for all the address types, so it's easy to 47 * determine the actual address type. This is 66 * determine the actual address type. This is kind of like addresses 48 * work for sockets. 67 * work for sockets. 49 */ 68 */ 50 #define IPMI_MAX_ADDR_SIZE 32 69 #define IPMI_MAX_ADDR_SIZE 32 51 struct ipmi_addr { 70 struct ipmi_addr { 52 /* Try to take these from the "Channe 71 /* Try to take these from the "Channel Medium Type" table 53 in section 6.5 of the IPMI 1.5 man 72 in section 6.5 of the IPMI 1.5 manual. */ 54 int addr_type; 73 int addr_type; 55 short channel; 74 short channel; 56 char data[IPMI_MAX_ADDR_SIZE]; 75 char data[IPMI_MAX_ADDR_SIZE]; 57 }; 76 }; 58 77 59 /* 78 /* 60 * When the address is not used, the type will 79 * When the address is not used, the type will be set to this value. 61 * The channel is the BMC's channel number for 80 * The channel is the BMC's channel number for the channel (usually 62 * 0), or IPMC_BMC_CHANNEL if communicating di 81 * 0), or IPMC_BMC_CHANNEL if communicating directly with the BMC. 63 */ 82 */ 64 #define IPMI_SYSTEM_INTERFACE_ADDR_TYPE 0x0c 83 #define IPMI_SYSTEM_INTERFACE_ADDR_TYPE 0x0c 65 struct ipmi_system_interface_addr { 84 struct ipmi_system_interface_addr { 66 int addr_type; 85 int addr_type; 67 short channel; 86 short channel; 68 unsigned char lun; 87 unsigned char lun; 69 }; 88 }; 70 89 71 /* An IPMB Address. */ 90 /* An IPMB Address. */ 72 #define IPMI_IPMB_ADDR_TYPE 0x01 91 #define IPMI_IPMB_ADDR_TYPE 0x01 73 /* Used for broadcast get device id as describ 92 /* Used for broadcast get device id as described in section 17.9 of the 74 IPMI 1.5 manual. */ 93 IPMI 1.5 manual. */ 75 #define IPMI_IPMB_BROADCAST_ADDR_TYPE 0x41 94 #define IPMI_IPMB_BROADCAST_ADDR_TYPE 0x41 76 struct ipmi_ipmb_addr { 95 struct ipmi_ipmb_addr { 77 int addr_type; 96 int addr_type; 78 short channel; 97 short channel; 79 unsigned char slave_addr; 98 unsigned char slave_addr; 80 unsigned char lun; 99 unsigned char lun; 81 }; 100 }; 82 101 83 /* 102 /* 84 * Used for messages received directly from an << 85 * through a MC. This is for systems that sit << 86 * they can receive commands and respond to th << 87 */ << 88 #define IPMI_IPMB_DIRECT_ADDR_TYPE 0x81 << 89 struct ipmi_ipmb_direct_addr { << 90 int addr_type; << 91 short channel; << 92 unsigned char slave_addr; << 93 unsigned char rs_lun; << 94 unsigned char rq_lun; << 95 }; << 96 << 97 /* << 98 * A LAN Address. This is an address to/from 103 * A LAN Address. This is an address to/from a LAN interface bridged 99 * by the BMC, not an address actually out on 104 * by the BMC, not an address actually out on the LAN. 100 * 105 * 101 * A conscious decision was made here to devia 106 * A conscious decision was made here to deviate slightly from the IPMI 102 * spec. We do not use rqSWID and rsSWID like 107 * spec. We do not use rqSWID and rsSWID like it shows in the 103 * message. Instead, we use remote_SWID and l 108 * message. Instead, we use remote_SWID and local_SWID. This means 104 * that any message (a request or response) fr 109 * that any message (a request or response) from another device will 105 * always have exactly the same address. If y 110 * always have exactly the same address. If you didn't do this, 106 * requests and responses from the same device 111 * requests and responses from the same device would have different 107 * addresses, and that's not too cool. 112 * addresses, and that's not too cool. 108 * 113 * 109 * In this address, the remote_SWID is always 114 * In this address, the remote_SWID is always the SWID the remote 110 * message came from, or the SWID we are sendi 115 * message came from, or the SWID we are sending the message to. 111 * local_SWID is always our SWID. Note that h 116 * local_SWID is always our SWID. Note that having our SWID in the 112 * message is a little weird, but this is requ 117 * message is a little weird, but this is required. 113 */ 118 */ 114 #define IPMI_LAN_ADDR_TYPE 0x04 119 #define IPMI_LAN_ADDR_TYPE 0x04 115 struct ipmi_lan_addr { 120 struct ipmi_lan_addr { 116 int addr_type; 121 int addr_type; 117 short channel; 122 short channel; 118 unsigned char privilege; 123 unsigned char privilege; 119 unsigned char session_handle; 124 unsigned char session_handle; 120 unsigned char remote_SWID; 125 unsigned char remote_SWID; 121 unsigned char local_SWID; 126 unsigned char local_SWID; 122 unsigned char lun; 127 unsigned char lun; 123 }; 128 }; 124 129 125 130 126 /* 131 /* 127 * Channel for talking directly with the BMC. 132 * Channel for talking directly with the BMC. When using this 128 * channel, This is for the system interface a 133 * channel, This is for the system interface address type only. FIXME 129 * - is this right, or should we use -1? 134 * - is this right, or should we use -1? 130 */ 135 */ 131 #define IPMI_BMC_CHANNEL 0xf 136 #define IPMI_BMC_CHANNEL 0xf 132 #define IPMI_NUM_CHANNELS 0x10 137 #define IPMI_NUM_CHANNELS 0x10 133 138 134 /* 139 /* 135 * Used to signify an "all channel" bitmask. 140 * Used to signify an "all channel" bitmask. This is more than the 136 * actual number of channels because this is u 141 * actual number of channels because this is used in userland and 137 * will cover us if the number of channels is 142 * will cover us if the number of channels is extended. 138 */ 143 */ 139 #define IPMI_CHAN_ALL (~0) 144 #define IPMI_CHAN_ALL (~0) 140 145 141 146 142 /* 147 /* 143 * A raw IPMI message without any addressing. 148 * A raw IPMI message without any addressing. This covers both 144 * commands and responses. The completion cod 149 * commands and responses. The completion code is always the first 145 * byte of data in the response (as the spec s 150 * byte of data in the response (as the spec shows the messages laid 146 * out). 151 * out). 147 */ 152 */ 148 struct ipmi_msg { 153 struct ipmi_msg { 149 unsigned char netfn; 154 unsigned char netfn; 150 unsigned char cmd; 155 unsigned char cmd; 151 unsigned short data_len; 156 unsigned short data_len; 152 unsigned char __user *data; 157 unsigned char __user *data; 153 }; 158 }; 154 159 155 struct kernel_ipmi_msg { 160 struct kernel_ipmi_msg { 156 unsigned char netfn; 161 unsigned char netfn; 157 unsigned char cmd; 162 unsigned char cmd; 158 unsigned short data_len; 163 unsigned short data_len; 159 unsigned char *data; 164 unsigned char *data; 160 }; 165 }; 161 166 162 /* 167 /* 163 * Various defines that are useful for IPMI ap 168 * Various defines that are useful for IPMI applications. 164 */ 169 */ 165 #define IPMI_INVALID_CMD_COMPLETION_CODE 170 #define IPMI_INVALID_CMD_COMPLETION_CODE 0xC1 166 #define IPMI_TIMEOUT_COMPLETION_CODE 171 #define IPMI_TIMEOUT_COMPLETION_CODE 0xC3 167 #define IPMI_UNKNOWN_ERR_COMPLETION_CODE 172 #define IPMI_UNKNOWN_ERR_COMPLETION_CODE 0xff 168 173 169 174 170 /* 175 /* 171 * Receive types for messages coming from the 176 * Receive types for messages coming from the receive interface. This 172 * is used for the receive in-kernel interface 177 * is used for the receive in-kernel interface and in the receive 173 * IOCTL. 178 * IOCTL. 174 * 179 * 175 * The "IPMI_RESPONSE_RESPONSE_TYPE" is a litt !! 180 * The "IPMI_RESPONSE_RESPNOSE_TYPE" is a little strange sounding, but 176 * it allows you to get the message results wh 181 * it allows you to get the message results when you send a response 177 * message. 182 * message. 178 */ 183 */ 179 #define IPMI_RESPONSE_RECV_TYPE 1 /* A 184 #define IPMI_RESPONSE_RECV_TYPE 1 /* A response to a command */ 180 #define IPMI_ASYNC_EVENT_RECV_TYPE 2 /* S 185 #define IPMI_ASYNC_EVENT_RECV_TYPE 2 /* Something from the event queue */ 181 #define IPMI_CMD_RECV_TYPE 3 /* A 186 #define IPMI_CMD_RECV_TYPE 3 /* A command from somewhere else */ 182 #define IPMI_RESPONSE_RESPONSE_TYPE 4 /* T 187 #define IPMI_RESPONSE_RESPONSE_TYPE 4 /* The response for 183 188 a sent response, giving any 184 189 error status for sending the 185 190 response. When you send a 186 191 response message, this will 187 192 be returned. */ 188 #define IPMI_OEM_RECV_TYPE 5 /* T 193 #define IPMI_OEM_RECV_TYPE 5 /* The response for OEM Channels */ 189 194 190 /* Note that async events and received command 195 /* Note that async events and received commands do not have a completion 191 code as the first byte of the incoming data 196 code as the first byte of the incoming data, unlike a response. */ 192 197 193 198 194 /* 199 /* 195 * Modes for ipmi_set_maint_mode() and the use 200 * Modes for ipmi_set_maint_mode() and the userland IOCTL. The AUTO 196 * setting is the default and means it will be 201 * setting is the default and means it will be set on certain 197 * commands. Hard setting it on and off will 202 * commands. Hard setting it on and off will override automatic 198 * operation. 203 * operation. 199 */ 204 */ 200 #define IPMI_MAINTENANCE_MODE_AUTO 0 205 #define IPMI_MAINTENANCE_MODE_AUTO 0 201 #define IPMI_MAINTENANCE_MODE_OFF 1 206 #define IPMI_MAINTENANCE_MODE_OFF 1 202 #define IPMI_MAINTENANCE_MODE_ON 2 207 #define IPMI_MAINTENANCE_MODE_ON 2 203 208 204 209 205 210 206 /* 211 /* 207 * The userland interface 212 * The userland interface 208 */ 213 */ 209 214 210 /* 215 /* 211 * The userland interface for the IPMI driver 216 * The userland interface for the IPMI driver is a standard character 212 * device, with each instance of an interface 217 * device, with each instance of an interface registered as a minor 213 * number under the major character device. 218 * number under the major character device. 214 * 219 * 215 * The read and write calls do not work, to ge 220 * The read and write calls do not work, to get messages in and out 216 * requires ioctl calls because of the complex 221 * requires ioctl calls because of the complexity of the data. select 217 * and poll do work, so you can wait for input 222 * and poll do work, so you can wait for input using the file 218 * descriptor, you just can use read to get it 223 * descriptor, you just can use read to get it. 219 * 224 * 220 * In general, you send a command down to the 225 * In general, you send a command down to the interface and receive 221 * responses back. You can use the msgid valu 226 * responses back. You can use the msgid value to correlate commands 222 * and responses, the driver will take care of 227 * and responses, the driver will take care of figuring out which 223 * incoming messages are for which command and 228 * incoming messages are for which command and find the proper msgid 224 * value to report. You will only receive rep 229 * value to report. You will only receive reponses for commands you 225 * send. Asynchronous events, however, go to 230 * send. Asynchronous events, however, go to all open users, so you 226 * must be ready to handle these (or ignore th 231 * must be ready to handle these (or ignore them if you don't care). 227 * 232 * 228 * The address type depends upon the channel t 233 * The address type depends upon the channel type. When talking 229 * directly to the BMC (IPMC_BMC_CHANNEL), the 234 * directly to the BMC (IPMC_BMC_CHANNEL), the address is ignored 230 * (IPMI_UNUSED_ADDR_TYPE). When talking to a 235 * (IPMI_UNUSED_ADDR_TYPE). When talking to an IPMB channel, you must 231 * supply a valid IPMB address with the addr_t 236 * supply a valid IPMB address with the addr_type set properly. 232 * 237 * 233 * When talking to normal channels, the driver 238 * When talking to normal channels, the driver takes care of the 234 * details of formatting and sending messages 239 * details of formatting and sending messages on that channel. You do 235 * not, for instance, have to format a send co 240 * not, for instance, have to format a send command, you just send 236 * whatever command you want to the channel, t 241 * whatever command you want to the channel, the driver will create 237 * the send command, automatically issue recei 242 * the send command, automatically issue receive command and get even 238 * commands, and pass those up to the proper u 243 * commands, and pass those up to the proper user. 239 */ 244 */ 240 245 241 246 242 /* The magic IOCTL value for this interface. * 247 /* The magic IOCTL value for this interface. */ 243 #define IPMI_IOC_MAGIC 'i' 248 #define IPMI_IOC_MAGIC 'i' 244 249 245 250 246 /* Messages sent to the interface are this for 251 /* Messages sent to the interface are this format. */ 247 struct ipmi_req { 252 struct ipmi_req { 248 unsigned char __user *addr; /* Address 253 unsigned char __user *addr; /* Address to send the message to. */ 249 unsigned int addr_len; 254 unsigned int addr_len; 250 255 251 long msgid; /* The sequence number 256 long msgid; /* The sequence number for the message. This 252 exact value will be 257 exact value will be reported back in the 253 response to this req 258 response to this request if it is a command. 254 If it is a response, 259 If it is a response, this will be used as 255 the sequence value f 260 the sequence value for the response. */ 256 261 257 struct ipmi_msg msg; 262 struct ipmi_msg msg; 258 }; 263 }; 259 /* 264 /* 260 * Send a message to the interfaces. error va 265 * Send a message to the interfaces. error values are: 261 * - EFAULT - an address supplied was invali 266 * - EFAULT - an address supplied was invalid. 262 * - EINVAL - The address supplied was not v 267 * - EINVAL - The address supplied was not valid, or the command 263 * was not allowed. 268 * was not allowed. 264 * - EMSGSIZE - The message to was too large 269 * - EMSGSIZE - The message to was too large. 265 * - ENOMEM - Buffers could not be allocated 270 * - ENOMEM - Buffers could not be allocated for the command. 266 */ 271 */ 267 #define IPMICTL_SEND_COMMAND _IOR(I 272 #define IPMICTL_SEND_COMMAND _IOR(IPMI_IOC_MAGIC, 13, \ 268 s 273 struct ipmi_req) 269 274 270 /* Messages sent to the interface with timing 275 /* Messages sent to the interface with timing parameters are this 271 format. */ 276 format. */ 272 struct ipmi_req_settime { 277 struct ipmi_req_settime { 273 struct ipmi_req req; 278 struct ipmi_req req; 274 279 275 /* See ipmi_request_settime() above fo 280 /* See ipmi_request_settime() above for details on these 276 values. */ 281 values. */ 277 int retries; 282 int retries; 278 unsigned int retry_time_ms; 283 unsigned int retry_time_ms; 279 }; 284 }; 280 /* 285 /* 281 * Send a message to the interfaces with timin 286 * Send a message to the interfaces with timing parameters. error values 282 * are: 287 * are: 283 * - EFAULT - an address supplied was invali 288 * - EFAULT - an address supplied was invalid. 284 * - EINVAL - The address supplied was not v 289 * - EINVAL - The address supplied was not valid, or the command 285 * was not allowed. 290 * was not allowed. 286 * - EMSGSIZE - The message to was too large 291 * - EMSGSIZE - The message to was too large. 287 * - ENOMEM - Buffers could not be allocated 292 * - ENOMEM - Buffers could not be allocated for the command. 288 */ 293 */ 289 #define IPMICTL_SEND_COMMAND_SETTIME _IOR(I 294 #define IPMICTL_SEND_COMMAND_SETTIME _IOR(IPMI_IOC_MAGIC, 21, \ 290 s 295 struct ipmi_req_settime) 291 296 292 /* Messages received from the interface are th 297 /* Messages received from the interface are this format. */ 293 struct ipmi_recv { 298 struct ipmi_recv { 294 int recv_type; /* Is this a comman 299 int recv_type; /* Is this a command, response or an 295 asyncronous even 300 asyncronous event. */ 296 301 297 unsigned char __user *addr; /* Addr 302 unsigned char __user *addr; /* Address the message was from is put 298 here. The 303 here. The caller must supply the 299 memory. */ 304 memory. */ 300 unsigned int addr_len; /* The size of 305 unsigned int addr_len; /* The size of the address buffer. 301 The caller 306 The caller supplies the full buffer 302 length, thi 307 length, this value is updated to 303 the actual 308 the actual message length when the 304 message is 309 message is received. */ 305 310 306 long msgid; /* The sequence number 311 long msgid; /* The sequence number specified in the request 307 if this is a respons 312 if this is a response. If this is a command, 308 this will be the seq 313 this will be the sequence number from the 309 command. */ 314 command. */ 310 315 311 struct ipmi_msg msg; /* The data field 316 struct ipmi_msg msg; /* The data field must point to a buffer. 312 The data_size 317 The data_size field must be set to the 313 size of the me 318 size of the message buffer. The 314 caller supplie 319 caller supplies the full buffer 315 length, this v 320 length, this value is updated to the 316 actual message 321 actual message length when the message 317 is received. * 322 is received. */ 318 }; 323 }; 319 324 320 /* 325 /* 321 * Receive a message. error values: 326 * Receive a message. error values: 322 * - EAGAIN - no messages in the queue. 327 * - EAGAIN - no messages in the queue. 323 * - EFAULT - an address supplied was invalid 328 * - EFAULT - an address supplied was invalid. 324 * - EINVAL - The address supplied was not va 329 * - EINVAL - The address supplied was not valid. 325 * - EMSGSIZE - The message to was too large 330 * - EMSGSIZE - The message to was too large to fit into the message buffer, 326 * the message will be left in t 331 * the message will be left in the buffer. */ 327 #define IPMICTL_RECEIVE_MSG _IOWR( 332 #define IPMICTL_RECEIVE_MSG _IOWR(IPMI_IOC_MAGIC, 12, \ 328 333 struct ipmi_recv) 329 334 330 /* 335 /* 331 * Like RECEIVE_MSG, but if the message won't 336 * Like RECEIVE_MSG, but if the message won't fit in the buffer, it 332 * will truncate the contents instead of leavi 337 * will truncate the contents instead of leaving the data in the 333 * buffer. 338 * buffer. 334 */ 339 */ 335 #define IPMICTL_RECEIVE_MSG_TRUNC _IOWR( 340 #define IPMICTL_RECEIVE_MSG_TRUNC _IOWR(IPMI_IOC_MAGIC, 11, \ 336 341 struct ipmi_recv) 337 342 338 /* Register to get commands from other entitie 343 /* Register to get commands from other entities on this interface. */ 339 struct ipmi_cmdspec { 344 struct ipmi_cmdspec { 340 unsigned char netfn; 345 unsigned char netfn; 341 unsigned char cmd; 346 unsigned char cmd; 342 }; 347 }; 343 348 344 /* 349 /* 345 * Register to receive a specific command. er 350 * Register to receive a specific command. error values: 346 * - EFAULT - an address supplied was invali 351 * - EFAULT - an address supplied was invalid. 347 * - EBUSY - The netfn/cmd supplied was alre 352 * - EBUSY - The netfn/cmd supplied was already in use. 348 * - ENOMEM - could not allocate memory for 353 * - ENOMEM - could not allocate memory for the entry. 349 */ 354 */ 350 #define IPMICTL_REGISTER_FOR_CMD _IOR(I 355 #define IPMICTL_REGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 14, \ 351 s 356 struct ipmi_cmdspec) 352 /* 357 /* 353 * Unregister a registered command. error val !! 358 * Unregister a regsitered command. error values: 354 * - EFAULT - an address supplied was invalid 359 * - EFAULT - an address supplied was invalid. 355 * - ENOENT - The netfn/cmd was not found reg 360 * - ENOENT - The netfn/cmd was not found registered for this user. 356 */ 361 */ 357 #define IPMICTL_UNREGISTER_FOR_CMD _IOR(I 362 #define IPMICTL_UNREGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 15, \ 358 s 363 struct ipmi_cmdspec) 359 364 360 /* 365 /* 361 * Register to get commands from other entitie 366 * Register to get commands from other entities on specific channels. 362 * This way, you can only listen on specific c 367 * This way, you can only listen on specific channels, or have messages 363 * from some channels go to one place and othe 368 * from some channels go to one place and other channels to someplace 364 * else. The chans field is a bitmask, (1 << 369 * else. The chans field is a bitmask, (1 << channel) for each channel. 365 * It may be IPMI_CHAN_ALL for all channels. 370 * It may be IPMI_CHAN_ALL for all channels. 366 */ 371 */ 367 struct ipmi_cmdspec_chans { 372 struct ipmi_cmdspec_chans { 368 unsigned int netfn; 373 unsigned int netfn; 369 unsigned int cmd; 374 unsigned int cmd; 370 unsigned int chans; 375 unsigned int chans; 371 }; 376 }; 372 377 373 /* 378 /* 374 * Register to receive a specific command on s 379 * Register to receive a specific command on specific channels. error values: 375 * - EFAULT - an address supplied was invali 380 * - EFAULT - an address supplied was invalid. 376 * - EBUSY - One of the netfn/cmd/chans supp 381 * - EBUSY - One of the netfn/cmd/chans supplied was already in use. 377 * - ENOMEM - could not allocate memory for 382 * - ENOMEM - could not allocate memory for the entry. 378 */ 383 */ 379 #define IPMICTL_REGISTER_FOR_CMD_CHANS _IOR(I 384 #define IPMICTL_REGISTER_FOR_CMD_CHANS _IOR(IPMI_IOC_MAGIC, 28, \ 380 s 385 struct ipmi_cmdspec_chans) 381 /* 386 /* 382 * Unregister some netfn/cmd/chans. error val 387 * Unregister some netfn/cmd/chans. error values: 383 * - EFAULT - an address supplied was invalid 388 * - EFAULT - an address supplied was invalid. 384 * - ENOENT - None of the netfn/cmd/chans wer 389 * - ENOENT - None of the netfn/cmd/chans were found registered for this user. 385 */ 390 */ 386 #define IPMICTL_UNREGISTER_FOR_CMD_CHANS _IOR( 391 #define IPMICTL_UNREGISTER_FOR_CMD_CHANS _IOR(IPMI_IOC_MAGIC, 29, \ 387 s 392 struct ipmi_cmdspec_chans) 388 393 389 /* 394 /* 390 * Set whether this interface receives events. 395 * Set whether this interface receives events. Note that the first 391 * user registered for events will get all pen 396 * user registered for events will get all pending events for the 392 * interface. error values: 397 * interface. error values: 393 * - EFAULT - an address supplied was invalid 398 * - EFAULT - an address supplied was invalid. 394 */ 399 */ 395 #define IPMICTL_SET_GETS_EVENTS_CMD _IOR(I 400 #define IPMICTL_SET_GETS_EVENTS_CMD _IOR(IPMI_IOC_MAGIC, 16, int) 396 401 397 /* 402 /* 398 * Set and get the slave address and LUN that 403 * Set and get the slave address and LUN that we will use for our 399 * source messages. Note that this affects th 404 * source messages. Note that this affects the interface, not just 400 * this user, so it will affect all users of t 405 * this user, so it will affect all users of this interface. This is 401 * so some initialization code can come in and 406 * so some initialization code can come in and do the OEM-specific 402 * things it takes to determine your address ( 407 * things it takes to determine your address (if not the BMC) and set 403 * it for everyone else. You should probably 408 * it for everyone else. You should probably leave the LUN alone. 404 */ 409 */ 405 struct ipmi_channel_lun_address_set { 410 struct ipmi_channel_lun_address_set { 406 unsigned short channel; 411 unsigned short channel; 407 unsigned char value; 412 unsigned char value; 408 }; 413 }; 409 #define IPMICTL_SET_MY_CHANNEL_ADDRESS_CMD \ 414 #define IPMICTL_SET_MY_CHANNEL_ADDRESS_CMD \ 410 _IOR(IPMI_IOC_MAGIC, 24, struct ipmi_c 415 _IOR(IPMI_IOC_MAGIC, 24, struct ipmi_channel_lun_address_set) 411 #define IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD \ 416 #define IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD \ 412 _IOR(IPMI_IOC_MAGIC, 25, struct ipmi_c 417 _IOR(IPMI_IOC_MAGIC, 25, struct ipmi_channel_lun_address_set) 413 #define IPMICTL_SET_MY_CHANNEL_LUN_CMD \ 418 #define IPMICTL_SET_MY_CHANNEL_LUN_CMD \ 414 _IOR(IPMI_IOC_MAGIC, 26, struct ipmi_c 419 _IOR(IPMI_IOC_MAGIC, 26, struct ipmi_channel_lun_address_set) 415 #define IPMICTL_GET_MY_CHANNEL_LUN_CMD \ 420 #define IPMICTL_GET_MY_CHANNEL_LUN_CMD \ 416 _IOR(IPMI_IOC_MAGIC, 27, struct ipmi_c 421 _IOR(IPMI_IOC_MAGIC, 27, struct ipmi_channel_lun_address_set) 417 /* Legacy interfaces, these only set IPMB 0. * 422 /* Legacy interfaces, these only set IPMB 0. */ 418 #define IPMICTL_SET_MY_ADDRESS_CMD _IOR(I 423 #define IPMICTL_SET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 17, unsigned int) 419 #define IPMICTL_GET_MY_ADDRESS_CMD _IOR(I 424 #define IPMICTL_GET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 18, unsigned int) 420 #define IPMICTL_SET_MY_LUN_CMD _IOR(I 425 #define IPMICTL_SET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 19, unsigned int) 421 #define IPMICTL_GET_MY_LUN_CMD _IOR(I 426 #define IPMICTL_GET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 20, unsigned int) 422 427 423 /* 428 /* 424 * Get/set the default timing values for an in 429 * Get/set the default timing values for an interface. You shouldn't 425 * generally mess with these. 430 * generally mess with these. 426 */ 431 */ 427 struct ipmi_timing_parms { 432 struct ipmi_timing_parms { 428 int retries; 433 int retries; 429 unsigned int retry_time_ms; 434 unsigned int retry_time_ms; 430 }; 435 }; 431 #define IPMICTL_SET_TIMING_PARMS_CMD _IOR(I 436 #define IPMICTL_SET_TIMING_PARMS_CMD _IOR(IPMI_IOC_MAGIC, 22, \ 432 s 437 struct ipmi_timing_parms) 433 #define IPMICTL_GET_TIMING_PARMS_CMD _IOR(I 438 #define IPMICTL_GET_TIMING_PARMS_CMD _IOR(IPMI_IOC_MAGIC, 23, \ 434 s 439 struct ipmi_timing_parms) 435 440 436 /* 441 /* 437 * Set the maintenance mode. See ipmi_set_mai 442 * Set the maintenance mode. See ipmi_set_maintenance_mode() above 438 * for a description of what this does. 443 * for a description of what this does. 439 */ 444 */ 440 #define IPMICTL_GET_MAINTENANCE_MODE_CMD 445 #define IPMICTL_GET_MAINTENANCE_MODE_CMD _IOR(IPMI_IOC_MAGIC, 30, int) 441 #define IPMICTL_SET_MAINTENANCE_MODE_CMD 446 #define IPMICTL_SET_MAINTENANCE_MODE_CMD _IOW(IPMI_IOC_MAGIC, 31, int) 442 447 443 #endif /* _UAPI__LINUX_IPMI_H */ 448 #endif /* _UAPI__LINUX_IPMI_H */ 444 449
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.