ipmi.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:22k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ipmi.h
  3.  *
  4.  * MontaVista IPMI interface
  5.  *
  6.  * Author: MontaVista Software, Inc.
  7.  *         Corey Minyard <minyard@mvista.com>
  8.  *         source@mvista.com
  9.  *
  10.  * Copyright 2002 MontaVista Software Inc.
  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.
  32.  */
  33. #ifndef __LINUX_IPMI_H
  34. #define __LINUX_IPMI_H
  35. #include <linux/ipmi_msgdefs.h>
  36. #include <linux/compiler.h>
  37. /*
  38.  * This file describes an interface to an IPMI driver.  You have to
  39.  * have a fairly good understanding of IPMI to use this, so go read
  40.  * the specs first before actually trying to do anything.
  41.  *
  42.  * With that said, this driver provides a multi-user interface to the
  43.  * IPMI driver, and it allows multiple IPMI physical interfaces below
  44.  * the driver.  The physical interfaces bind as a lower layer on the
  45.  * driver.  They appear as interfaces to the application using this
  46.  * interface.
  47.  *
  48.  * Multi-user means that multiple applications may use the driver,
  49.  * send commands, receive responses, etc.  The driver keeps track of
  50.  * commands the user sends and tracks the responses.  The responses
  51.  * will go back to the application that send the command.  If the
  52.  * response doesn't come back in time, the driver will return a
  53.  * timeout error response to the application.  Asynchronous events
  54.  * from the BMC event queue will go to all users bound to the driver.
  55.  * The incoming event queue in the BMC will automatically be flushed
  56.  * if it becomes full and it is queried once a second to see if
  57.  * anything is in it.  Incoming commands to the driver will get
  58.  * delivered as commands.
  59.  *
  60.  * This driver provides two main interfaces: one for in-kernel
  61.  * applications and another for userland applications.  The
  62.  * capabilities are basically the same for both interface, although
  63.  * the interfaces are somewhat different.  The stuff in the
  64.  * #ifdef KERNEL below is the in-kernel interface.  The userland
  65.  * interface is defined later in the file.  */
  66. /*
  67.  * This is an overlay for all the address types, so it's easy to
  68.  * determine the actual address type.  This is kind of like addresses
  69.  * work for sockets.
  70.  */
  71. #define IPMI_MAX_ADDR_SIZE 32
  72. struct ipmi_addr
  73. {
  74.  /* Try to take these from the "Channel Medium Type" table
  75.     in section 6.5 of the IPMI 1.5 manual. */
  76. int   addr_type;
  77. short channel;
  78. char  data[IPMI_MAX_ADDR_SIZE];
  79. };
  80. /*
  81.  * When the address is not used, the type will be set to this value.
  82.  * The channel is the BMC's channel number for the channel (usually
  83.  * 0), or IPMC_BMC_CHANNEL if communicating directly with the BMC.
  84.  */
  85. #define IPMI_SYSTEM_INTERFACE_ADDR_TYPE 0x0c
  86. struct ipmi_system_interface_addr
  87. {
  88. int           addr_type;
  89. short         channel;
  90. unsigned char lun;
  91. };
  92. /* An IPMB Address. */
  93. #define IPMI_IPMB_ADDR_TYPE 0x01
  94. /* Used for broadcast get device id as described in section 17.9 of the
  95.    IPMI 1.5 manual. */ 
  96. #define IPMI_IPMB_BROADCAST_ADDR_TYPE 0x41
  97. struct ipmi_ipmb_addr
  98. {
  99. int           addr_type;
  100. short         channel;
  101. unsigned char slave_addr;
  102. unsigned char lun;
  103. };
  104. /*
  105.  * A LAN Address.  This is an address to/from a LAN interface bridged
  106.  * by the BMC, not an address actually out on the LAN.
  107.  *
  108.  * A concious decision was made here to deviate slightly from the IPMI
  109.  * spec.  We do not use rqSWID and rsSWID like it shows in the
  110.  * message.  Instead, we use remote_SWID and local_SWID.  This means
  111.  * that any message (a request or response) from another device will
  112.  * always have exactly the same address.  If you didn't do this,
  113.  * requests and responses from the same device would have different
  114.  * addresses, and that's not too cool.
  115.  *
  116.  * In this address, the remote_SWID is always the SWID the remote
  117.  * message came from, or the SWID we are sending the message to.
  118.  * local_SWID is always our SWID.  Note that having our SWID in the
  119.  * message is a little weird, but this is required.
  120.  */
  121. #define IPMI_LAN_ADDR_TYPE 0x04
  122. struct ipmi_lan_addr
  123. {
  124. int           addr_type;
  125. short         channel;
  126. unsigned char privilege;
  127. unsigned char session_handle;
  128. unsigned char remote_SWID;
  129. unsigned char local_SWID;
  130. unsigned char lun;
  131. };
  132. /*
  133.  * Channel for talking directly with the BMC.  When using this
  134.  * channel, This is for the system interface address type only.  FIXME
  135.  * - is this right, or should we use -1?
  136.  */
  137. #define IPMI_BMC_CHANNEL  0xf
  138. #define IPMI_NUM_CHANNELS 0x10
  139. /*
  140.  * A raw IPMI message without any addressing.  This covers both
  141.  * commands and responses.  The completion code is always the first
  142.  * byte of data in the response (as the spec shows the messages laid
  143.  * out).
  144.  */
  145. struct ipmi_msg
  146. {
  147. unsigned char  netfn;
  148. unsigned char  cmd;
  149. unsigned short data_len;
  150. unsigned char  __user *data;
  151. };
  152. struct kernel_ipmi_msg
  153. {
  154. unsigned char  netfn;
  155. unsigned char  cmd;
  156. unsigned short data_len;
  157. unsigned char  *data;
  158. };
  159. /*
  160.  * Various defines that are useful for IPMI applications.
  161.  */
  162. #define IPMI_INVALID_CMD_COMPLETION_CODE 0xC1
  163. #define IPMI_TIMEOUT_COMPLETION_CODE 0xC3
  164. #define IPMI_UNKNOWN_ERR_COMPLETION_CODE 0xff
  165. /*
  166.  * Receive types for messages coming from the receive interface.  This
  167.  * is used for the receive in-kernel interface and in the receive
  168.  * IOCTL.
  169.  *
  170.  * The "IPMI_RESPONSE_RESPNOSE_TYPE" is a little strange sounding, but
  171.  * it allows you to get the message results when you send a response
  172.  * message.
  173.  */
  174. #define IPMI_RESPONSE_RECV_TYPE 1 /* A response to a command */
  175. #define IPMI_ASYNC_EVENT_RECV_TYPE 2 /* Something from the event queue */
  176. #define IPMI_CMD_RECV_TYPE 3 /* A command from somewhere else */
  177. #define IPMI_RESPONSE_RESPONSE_TYPE 4 /* The response for
  178.       a sent response, giving any
  179.       error status for sending the
  180.       response.  When you send a
  181.       response message, this will
  182.       be returned. */
  183. /* Note that async events and received commands do not have a completion
  184.    code as the first byte of the incoming data, unlike a response. */
  185. #ifdef __KERNEL__
  186. /*
  187.  * The in-kernel interface.
  188.  */
  189. #include <linux/list.h>
  190. #include <linux/module.h>
  191. #ifdef CONFIG_PROC_FS
  192. #include <linux/proc_fs.h>
  193. extern struct proc_dir_entry *proc_ipmi_root;
  194. #endif /* CONFIG_PROC_FS */
  195. /* Opaque type for a IPMI message user.  One of these is needed to
  196.    send and receive messages. */
  197. typedef struct ipmi_user *ipmi_user_t;
  198. /*
  199.  * Stuff coming from the receive interface comes as one of these.
  200.  * They are allocated, the receiver must free them with
  201.  * ipmi_free_recv_msg() when done with the message.  The link is not
  202.  * used after the message is delivered, so the upper layer may use the
  203.  * link to build a linked list, if it likes.
  204.  */
  205. struct ipmi_recv_msg
  206. {
  207. struct list_head link;
  208. /* The type of message as defined in the "Receive Types"
  209.            defines above. */
  210. int              recv_type;
  211. ipmi_user_t      user;
  212. struct ipmi_addr addr;
  213. long             msgid;
  214. struct kernel_ipmi_msg  msg;
  215. /* The user_msg_data is the data supplied when a message was
  216.    sent, if this is a response to a sent message.  If this is
  217.    not a response to a sent message, then user_msg_data will
  218.    be NULL.  If the user above is NULL, then this will be the
  219.    intf. */
  220. void             *user_msg_data;
  221. /* Call this when done with the message.  It will presumably free
  222.    the message and do any other necessary cleanup. */
  223. void (*done)(struct ipmi_recv_msg *msg);
  224. /* Place-holder for the data, don't make any assumptions about
  225.    the size or existance of this, since it may change. */
  226. unsigned char   msg_data[IPMI_MAX_MSG_LENGTH];
  227. };
  228. /* Allocate and free the receive message. */
  229. static inline void ipmi_free_recv_msg(struct ipmi_recv_msg *msg)
  230. {
  231. msg->done(msg);
  232. }
  233. struct ipmi_user_hndl
  234. {
  235.         /* Routine type to call when a message needs to be routed to
  236.    the upper layer.  This will be called with some locks held,
  237.    the only IPMI routines that can be called are ipmi_request
  238.    and the alloc/free operations.  The handler_data is the
  239.    variable supplied when the receive handler was registered. */
  240. void (*ipmi_recv_hndl)(struct ipmi_recv_msg *msg,
  241.        void                 *user_msg_data);
  242. /* Called when the interface detects a watchdog pre-timeout.  If
  243.    this is NULL, it will be ignored for the user. */
  244. void (*ipmi_watchdog_pretimeout)(void *handler_data);
  245. };
  246. /* Create a new user of the IPMI layer on the given interface number. */
  247. int ipmi_create_user(unsigned int          if_num,
  248.      struct ipmi_user_hndl *handler,
  249.      void                  *handler_data,
  250.      ipmi_user_t           *user);
  251. /* Destroy the given user of the IPMI layer.  Note that after this
  252.    function returns, the system is guaranteed to not call any
  253.    callbacks for the user.  Thus as long as you destroy all the users
  254.    before you unload a module, you will be safe.  And if you destroy
  255.    the users before you destroy the callback structures, it should be
  256.    safe, too. */
  257. int ipmi_destroy_user(ipmi_user_t user);
  258. /* Get the IPMI version of the BMC we are talking to. */
  259. void ipmi_get_version(ipmi_user_t   user,
  260.       unsigned char *major,
  261.       unsigned char *minor);
  262. /* Set and get the slave address and LUN that we will use for our
  263.    source messages.  Note that this affects the interface, not just
  264.    this user, so it will affect all users of this interface.  This is
  265.    so some initialization code can come in and do the OEM-specific
  266.    things it takes to determine your address (if not the BMC) and set
  267.    it for everyone else.  Note that each channel can have its own address. */
  268. int ipmi_set_my_address(ipmi_user_t   user,
  269. unsigned int  channel,
  270. unsigned char address);
  271. int ipmi_get_my_address(ipmi_user_t   user,
  272. unsigned int  channel,
  273. unsigned char *address);
  274. int ipmi_set_my_LUN(ipmi_user_t   user,
  275.     unsigned int  channel,
  276.     unsigned char LUN);
  277. int ipmi_get_my_LUN(ipmi_user_t   user,
  278.     unsigned int  channel,
  279.     unsigned char *LUN);
  280. /*
  281.  * Like ipmi_request, but lets you specify the number of retries and
  282.  * the retry time.  The retries is the number of times the message
  283.  * will be resent if no reply is received.  If set to -1, the default
  284.  * value will be used.  The retry time is the time in milliseconds
  285.  * between retries.  If set to zero, the default value will be
  286.  * used.
  287.  *
  288.  * Don't use this unless you *really* have to.  It's primarily for the
  289.  * IPMI over LAN converter; since the LAN stuff does its own retries,
  290.  * it makes no sense to do it here.  However, this can be used if you
  291.  * have unusual requirements.
  292.  */
  293. int ipmi_request_settime(ipmi_user_t      user,
  294.  struct ipmi_addr *addr,
  295.  long             msgid,
  296.  struct kernel_ipmi_msg  *msg,
  297.  void             *user_msg_data,
  298.  int              priority,
  299.  int              max_retries,
  300.  unsigned int     retry_time_ms);
  301. /*
  302.  * Like ipmi_request, but with messages supplied.  This will not
  303.  * allocate any memory, and the messages may be statically allocated
  304.  * (just make sure to do the "done" handling on them).  Note that this
  305.  * is primarily for the watchdog timer, since it should be able to
  306.  * send messages even if no memory is available.  This is subject to
  307.  * change as the system changes, so don't use it unless you REALLY
  308.  * have to.
  309.  */
  310. int ipmi_request_supply_msgs(ipmi_user_t          user,
  311.      struct ipmi_addr     *addr,
  312.      long                 msgid,
  313.      struct kernel_ipmi_msg *msg,
  314.      void                 *user_msg_data,
  315.      void                 *supplied_smi,
  316.      struct ipmi_recv_msg *supplied_recv,
  317.      int                  priority);
  318. /*
  319.  * When commands come in to the SMS, the user can register to receive
  320.  * them.  Only one user can be listening on a specific netfn/cmd pair
  321.  * at a time, you will get an EBUSY error if the command is already
  322.  * registered.  If a command is received that does not have a user
  323.  * registered, the driver will automatically return the proper
  324.  * error.
  325.  */
  326. int ipmi_register_for_cmd(ipmi_user_t   user,
  327.   unsigned char netfn,
  328.   unsigned char cmd);
  329. int ipmi_unregister_for_cmd(ipmi_user_t   user,
  330.     unsigned char netfn,
  331.     unsigned char cmd);
  332. /*
  333.  * Allow run-to-completion mode to be set for the interface of
  334.  * a specific user.
  335.  */
  336. void ipmi_user_set_run_to_completion(ipmi_user_t user, int val);
  337. /*
  338.  * When the user is created, it will not receive IPMI events by
  339.  * default.  The user must set this to TRUE to get incoming events.
  340.  * The first user that sets this to TRUE will receive all events that
  341.  * have been queued while no one was waiting for events.
  342.  */
  343. int ipmi_set_gets_events(ipmi_user_t user, int val);
  344. /*
  345.  * Called when a new SMI is registered.  This will also be called on
  346.  * every existing interface when a new watcher is registered with
  347.  * ipmi_smi_watcher_register().
  348.  */
  349. struct ipmi_smi_watcher
  350. {
  351. struct list_head link;
  352. /* You must set the owner to the current module, if you are in
  353.    a module (generally just set it to "THIS_MODULE"). */
  354. struct module *owner;
  355. /* These two are called with read locks held for the interface
  356.    the watcher list.  So you can add and remove users from the
  357.    IPMI interface, send messages, etc., but you cannot add
  358.    or remove SMI watchers or SMI interfaces. */
  359. void (*new_smi)(int if_num);
  360. void (*smi_gone)(int if_num);
  361. };
  362. int ipmi_smi_watcher_register(struct ipmi_smi_watcher *watcher);
  363. int ipmi_smi_watcher_unregister(struct ipmi_smi_watcher *watcher);
  364. /* The following are various helper functions for dealing with IPMI
  365.    addresses. */
  366. /* Return the maximum length of an IPMI address given it's type. */
  367. unsigned int ipmi_addr_length(int addr_type);
  368. /* Validate that the given IPMI address is valid. */
  369. int ipmi_validate_addr(struct ipmi_addr *addr, int len);
  370. #endif /* __KERNEL__ */
  371. /*
  372.  * The userland interface
  373.  */
  374. /*
  375.  * The userland interface for the IPMI driver is a standard character
  376.  * device, with each instance of an interface registered as a minor
  377.  * number under the major character device.
  378.  *
  379.  * The read and write calls do not work, to get messages in and out
  380.  * requires ioctl calls because of the complexity of the data.  select
  381.  * and poll do work, so you can wait for input using the file
  382.  * descriptor, you just can use read to get it.
  383.  *
  384.  * In general, you send a command down to the interface and receive
  385.  * responses back.  You can use the msgid value to correlate commands
  386.  * and responses, the driver will take care of figuring out which
  387.  * incoming messages are for which command and find the proper msgid
  388.  * value to report.  You will only receive reponses for commands you
  389.  * send.  Asynchronous events, however, go to all open users, so you
  390.  * must be ready to handle these (or ignore them if you don't care).
  391.  *
  392.  * The address type depends upon the channel type.  When talking
  393.  * directly to the BMC (IPMC_BMC_CHANNEL), the address is ignored
  394.  * (IPMI_UNUSED_ADDR_TYPE).  When talking to an IPMB channel, you must
  395.  * supply a valid IPMB address with the addr_type set properly.
  396.  *
  397.  * When talking to normal channels, the driver takes care of the
  398.  * details of formatting and sending messages on that channel.  You do
  399.  * not, for instance, have to format a send command, you just send
  400.  * whatever command you want to the channel, the driver will create
  401.  * the send command, automatically issue receive command and get even
  402.  * commands, and pass those up to the proper user.
  403.  */
  404. /* The magic IOCTL value for this interface. */
  405. #define IPMI_IOC_MAGIC 'i'
  406. /* Messages sent to the interface are this format. */
  407. struct ipmi_req
  408. {
  409. unsigned char __user *addr; /* Address to send the message to. */
  410. unsigned int  addr_len;
  411. long    msgid; /* The sequence number for the message.  This
  412.   exact value will be reported back in the
  413.   response to this request if it is a command.
  414.   If it is a response, this will be used as
  415.   the sequence value for the response.  */
  416. struct ipmi_msg msg;
  417. };
  418. /*
  419.  * Send a message to the interfaces.  error values are:
  420.  *   - EFAULT - an address supplied was invalid.
  421.  *   - EINVAL - The address supplied was not valid, or the command
  422.  *              was not allowed.
  423.  *   - EMSGSIZE - The message to was too large.
  424.  *   - ENOMEM - Buffers could not be allocated for the command.
  425.  */
  426. #define IPMICTL_SEND_COMMAND _IOR(IPMI_IOC_MAGIC, 13,
  427.      struct ipmi_req)
  428. /* Messages sent to the interface with timing parameters are this
  429.    format. */
  430. struct ipmi_req_settime
  431. {
  432. struct ipmi_req req;
  433. /* See ipmi_request_settime() above for details on these
  434.            values. */
  435. int          retries;
  436. unsigned int retry_time_ms;
  437. };
  438. /*
  439.  * Send a message to the interfaces with timing parameters.  error values
  440.  * are:
  441.  *   - EFAULT - an address supplied was invalid.
  442.  *   - EINVAL - The address supplied was not valid, or the command
  443.  *              was not allowed.
  444.  *   - EMSGSIZE - The message to was too large.
  445.  *   - ENOMEM - Buffers could not be allocated for the command.
  446.  */
  447. #define IPMICTL_SEND_COMMAND_SETTIME _IOR(IPMI_IOC_MAGIC, 21,
  448.      struct ipmi_req_settime)
  449. /* Messages received from the interface are this format. */
  450. struct ipmi_recv
  451. {
  452. int     recv_type; /* Is this a command, response or an
  453.       asyncronous event. */
  454. unsigned char __user *addr;    /* Address the message was from is put
  455.    here.  The caller must supply the
  456.    memory. */
  457. unsigned int  addr_len; /* The size of the address buffer.
  458.    The caller supplies the full buffer
  459.    length, this value is updated to
  460.    the actual message length when the
  461.    message is received. */
  462. long    msgid; /* The sequence number specified in the request
  463.   if this is a response.  If this is a command,
  464.   this will be the sequence number from the
  465.   command. */
  466. struct ipmi_msg msg; /* The data field must point to a buffer.
  467. The data_size field must be set to the
  468. size of the message buffer.  The
  469. caller supplies the full buffer
  470. length, this value is updated to the
  471. actual message length when the message
  472. is received. */
  473. };
  474. /*
  475.  * Receive a message.  error values:
  476.  *  - EAGAIN - no messages in the queue.
  477.  *  - EFAULT - an address supplied was invalid.
  478.  *  - EINVAL - The address supplied was not valid.
  479.  *  - EMSGSIZE - The message to was too large to fit into the message buffer,
  480.  *               the message will be left in the buffer. */
  481. #define IPMICTL_RECEIVE_MSG _IOWR(IPMI_IOC_MAGIC, 12,
  482.       struct ipmi_recv)
  483. /*
  484.  * Like RECEIVE_MSG, but if the message won't fit in the buffer, it
  485.  * will truncate the contents instead of leaving the data in the
  486.  * buffer.
  487.  */
  488. #define IPMICTL_RECEIVE_MSG_TRUNC _IOWR(IPMI_IOC_MAGIC, 11,
  489.       struct ipmi_recv)
  490. /* Register to get commands from other entities on this interface. */
  491. struct ipmi_cmdspec
  492. {
  493. unsigned char netfn;
  494. unsigned char cmd;
  495. };
  496. /* 
  497.  * Register to receive a specific command.  error values:
  498.  *   - EFAULT - an address supplied was invalid.
  499.  *   - EBUSY - The netfn/cmd supplied was already in use.
  500.  *   - ENOMEM - could not allocate memory for the entry.
  501.  */
  502. #define IPMICTL_REGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 14,
  503.      struct ipmi_cmdspec)
  504. /*
  505.  * Unregister a regsitered command.  error values:
  506.  *  - EFAULT - an address supplied was invalid.
  507.  *  - ENOENT - The netfn/cmd was not found registered for this user.
  508.  */
  509. #define IPMICTL_UNREGISTER_FOR_CMD _IOR(IPMI_IOC_MAGIC, 15,
  510.      struct ipmi_cmdspec)
  511. /* 
  512.  * Set whether this interface receives events.  Note that the first
  513.  * user registered for events will get all pending events for the
  514.  * interface.  error values:
  515.  *  - EFAULT - an address supplied was invalid.
  516.  */
  517. #define IPMICTL_SET_GETS_EVENTS_CMD _IOR(IPMI_IOC_MAGIC, 16, int)
  518. /*
  519.  * Set and get the slave address and LUN that we will use for our
  520.  * source messages.  Note that this affects the interface, not just
  521.  * this user, so it will affect all users of this interface.  This is
  522.  * so some initialization code can come in and do the OEM-specific
  523.  * things it takes to determine your address (if not the BMC) and set
  524.  * it for everyone else.  You should probably leave the LUN alone.
  525.  */
  526. struct ipmi_channel_lun_address_set
  527. {
  528. unsigned short channel;
  529. unsigned char  value;
  530. };
  531. #define IPMICTL_SET_MY_CHANNEL_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 24, struct ipmi_channel_lun_address_set)
  532. #define IPMICTL_GET_MY_CHANNEL_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 25, struct ipmi_channel_lun_address_set)
  533. #define IPMICTL_SET_MY_CHANNEL_LUN_CMD    _IOR(IPMI_IOC_MAGIC, 26, struct ipmi_channel_lun_address_set)
  534. #define IPMICTL_GET_MY_CHANNEL_LUN_CMD    _IOR(IPMI_IOC_MAGIC, 27, struct ipmi_channel_lun_address_set)
  535. /* Legacy interfaces, these only set IPMB 0. */
  536. #define IPMICTL_SET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 17, unsigned int)
  537. #define IPMICTL_GET_MY_ADDRESS_CMD _IOR(IPMI_IOC_MAGIC, 18, unsigned int)
  538. #define IPMICTL_SET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 19, unsigned int)
  539. #define IPMICTL_GET_MY_LUN_CMD _IOR(IPMI_IOC_MAGIC, 20, unsigned int)
  540. /*
  541.  * Get/set the default timing values for an interface.  You shouldn't
  542.  * generally mess with these.
  543.  */
  544. struct ipmi_timing_parms
  545. {
  546. int          retries;
  547. unsigned int retry_time_ms;
  548. };
  549. #define IPMICTL_SET_TIMING_PARMS_CMD _IOR(IPMI_IOC_MAGIC, 22, 
  550.      struct ipmi_timing_parms)
  551. #define IPMICTL_GET_TIMING_PARMS_CMD _IOR(IPMI_IOC_MAGIC, 23, 
  552.      struct ipmi_timing_parms)
  553. #endif /* __LINUX_IPMI_H */