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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * ipmi_smi.h
  3.  *
  4.  * MontaVista IPMI system management 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_SMI_H
  34. #define __LINUX_IPMI_SMI_H
  35. #include <linux/ipmi_msgdefs.h>
  36. #include <linux/proc_fs.h>
  37. #include <linux/module.h>
  38. /* This files describes the interface for IPMI system management interface
  39.    drivers to bind into the IPMI message handler. */
  40. /* Structure for the low-level drivers. */
  41. typedef struct ipmi_smi *ipmi_smi_t;
  42. /*
  43.  * Messages to/from the lower layer.  The smi interface will take one
  44.  * of these to send. After the send has occurred and a response has
  45.  * been received, it will report this same data structure back up to
  46.  * the upper layer.  If an error occurs, it should fill in the
  47.  * response with an error code in the completion code location. When
  48.  * asynchronous data is received, one of these is allocated, the
  49.  * data_size is set to zero and the response holds the data from the
  50.  * get message or get event command that the interface initiated.
  51.  * Note that it is the interfaces responsibility to detect
  52.  * asynchronous data and messages and request them from the
  53.  * interface.
  54.  */
  55. struct ipmi_smi_msg
  56. {
  57. struct list_head link;
  58. long    msgid;
  59. void    *user_data;
  60. int           data_size;
  61. unsigned char data[IPMI_MAX_MSG_LENGTH];
  62. int           rsp_size;
  63. unsigned char rsp[IPMI_MAX_MSG_LENGTH];
  64. /* Will be called when the system is done with the message
  65.            (presumably to free it). */
  66. void (*done)(struct ipmi_smi_msg *msg);
  67. };
  68. struct ipmi_smi_handlers
  69. {
  70. struct module *owner;
  71. /* Called to enqueue an SMI message to be sent.  This
  72.    operation is not allowed to fail.  If an error occurs, it
  73.    should report back the error in a received message.  It may
  74.    do this in the current call context, since no write locks
  75.    are held when this is run.  If the priority is > 0, the
  76.    message will go into a high-priority queue and be sent
  77.    first.  Otherwise, it goes into a normal-priority queue. */
  78. void (*sender)(void                *send_info,
  79.        struct ipmi_smi_msg *msg,
  80.        int                 priority);
  81. /* Called by the upper layer to request that we try to get
  82.    events from the BMC we are attached to. */
  83. void (*request_events)(void *send_info);
  84. /* Called when the interface should go into "run to
  85.    completion" mode.  If this call sets the value to true, the
  86.    interface should make sure that all messages are flushed
  87.    out and that none are pending, and any new requests are run
  88.    to completion immediately. */
  89. void (*set_run_to_completion)(void *send_info, int run_to_completion);
  90. /* Called to poll for work to do.  This is so upper layers can
  91.    poll for operations during things like crash dumps. */
  92. void (*poll)(void *send_info);
  93. /* Tell the handler that we are using it/not using it.  The
  94.    message handler get the modules that this handler belongs
  95.    to; this function lets the SMI claim any modules that it
  96.    uses.  These may be NULL if this is not required. */
  97. int (*inc_usecount)(void *send_info);
  98. void (*dec_usecount)(void *send_info);
  99. };
  100. /* Add a low-level interface to the IPMI driver.  Note that if the
  101.    interface doesn't know its slave address, it should pass in zero. */
  102. int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
  103.       void                     *send_info,
  104.       unsigned char            version_major,
  105.       unsigned char            version_minor,
  106.       unsigned char            slave_addr,
  107.       ipmi_smi_t               *intf);
  108. /*
  109.  * Remove a low-level interface from the IPMI driver.  This will
  110.  * return an error if the interface is still in use by a user.
  111.  */
  112. int ipmi_unregister_smi(ipmi_smi_t intf);
  113. /*
  114.  * The lower layer reports received messages through this interface.
  115.  * The data_size should be zero if this is an asyncronous message.  If
  116.  * the lower layer gets an error sending a message, it should format
  117.  * an error response in the message response.
  118.  */
  119. void ipmi_smi_msg_received(ipmi_smi_t          intf,
  120.    struct ipmi_smi_msg *msg);
  121. /* The lower layer received a watchdog pre-timeout on interface. */
  122. void ipmi_smi_watchdog_pretimeout(ipmi_smi_t intf);
  123. struct ipmi_smi_msg *ipmi_alloc_smi_msg(void);
  124. static inline void ipmi_free_smi_msg(struct ipmi_smi_msg *msg)
  125. {
  126. msg->done(msg);
  127. }
  128. /* Allow the lower layer to add things to the proc filesystem
  129.    directory for this interface.  Note that the entry will
  130.    automatically be dstroyed when the interface is destroyed. */
  131. int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
  132.     read_proc_t *read_proc, write_proc_t *write_proc,
  133.     void *data, struct module *owner);
  134. #endif /* __LINUX_IPMI_SMI_H */