blob: 3ef0d8b6aa6faf19c8e8d24a3033f15fc728a39b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
34#ifndef __LINUX_IPMI_SMI_H
35#define __LINUX_IPMI_SMI_H
36
37#include <linux/ipmi_msgdefs.h>
38#include <linux/proc_fs.h>
Corey Minyard50c812b2006-03-26 01:37:21 -080039#include <linux/device.h>
40#include <linux/platform_device.h>
Zhao Yakui16f42322010-12-08 10:10:16 +080041#include <linux/ipmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/* This files describes the interface for IPMI system management interface
44 drivers to bind into the IPMI message handler. */
45
46/* Structure for the low-level drivers. */
47typedef struct ipmi_smi *ipmi_smi_t;
48
49/*
50 * Messages to/from the lower layer. The smi interface will take one
51 * of these to send. After the send has occurred and a response has
52 * been received, it will report this same data structure back up to
53 * the upper layer. If an error occurs, it should fill in the
54 * response with an error code in the completion code location. When
55 * asynchronous data is received, one of these is allocated, the
56 * data_size is set to zero and the response holds the data from the
57 * get message or get event command that the interface initiated.
58 * Note that it is the interfaces responsibility to detect
59 * asynchronous data and messages and request them from the
60 * interface.
61 */
Corey Minyardc70d7492008-04-29 01:01:09 -070062struct ipmi_smi_msg {
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 struct list_head link;
64
65 long msgid;
66 void *user_data;
67
68 int data_size;
69 unsigned char data[IPMI_MAX_MSG_LENGTH];
70
71 int rsp_size;
72 unsigned char rsp[IPMI_MAX_MSG_LENGTH];
73
74 /* Will be called when the system is done with the message
Corey Minyardc70d7492008-04-29 01:01:09 -070075 (presumably to free it). */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 void (*done)(struct ipmi_smi_msg *msg);
77};
78
Corey Minyardc70d7492008-04-29 01:01:09 -070079struct ipmi_smi_handlers {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct module *owner;
81
Corey Minyard453823b2006-03-31 02:30:39 -080082 /* The low-level interface cannot start sending messages to
83 the upper layer until this function is called. This may
84 not be NULL, the lower layer must take the interface from
85 this call. */
86 int (*start_processing)(void *send_info,
87 ipmi_smi_t new_intf);
88
Zhao Yakui16f42322010-12-08 10:10:16 +080089 /*
90 * Get the detailed private info of the low level interface and store
91 * it into the structure of ipmi_smi_data. For example: the
92 * ACPI device handle will be returned for the pnp_acpi IPMI device.
93 */
94 int (*get_smi_info)(void *send_info, struct ipmi_smi_info *data);
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /* Called to enqueue an SMI message to be sent. This
97 operation is not allowed to fail. If an error occurs, it
98 should report back the error in a received message. It may
99 do this in the current call context, since no write locks
100 are held when this is run. If the priority is > 0, the
101 message will go into a high-priority queue and be sent
102 first. Otherwise, it goes into a normal-priority queue. */
103 void (*sender)(void *send_info,
104 struct ipmi_smi_msg *msg,
105 int priority);
106
107 /* Called by the upper layer to request that we try to get
108 events from the BMC we are attached to. */
109 void (*request_events)(void *send_info);
110
111 /* Called when the interface should go into "run to
112 completion" mode. If this call sets the value to true, the
113 interface should make sure that all messages are flushed
114 out and that none are pending, and any new requests are run
115 to completion immediately. */
116 void (*set_run_to_completion)(void *send_info, int run_to_completion);
117
118 /* Called to poll for work to do. This is so upper layers can
119 poll for operations during things like crash dumps. */
120 void (*poll)(void *send_info);
121
Corey Minyardb9675132006-12-06 20:41:02 -0800122 /* Enable/disable firmware maintenance mode. Note that this
123 is *not* the modes defined, this is simply an on/off
124 setting. The message handler does the mode handling. Note
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +0200125 that this is called from interrupt context, so it cannot
Corey Minyardb9675132006-12-06 20:41:02 -0800126 block. */
127 void (*set_maintenance_mode)(void *send_info, int enable);
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* Tell the handler that we are using it/not using it. The
130 message handler get the modules that this handler belongs
131 to; this function lets the SMI claim any modules that it
132 uses. These may be NULL if this is not required. */
133 int (*inc_usecount)(void *send_info);
134 void (*dec_usecount)(void *send_info);
135};
136
Corey Minyard50c812b2006-03-26 01:37:21 -0800137struct ipmi_device_id {
138 unsigned char device_id;
139 unsigned char device_revision;
140 unsigned char firmware_revision_1;
141 unsigned char firmware_revision_2;
142 unsigned char ipmi_version;
143 unsigned char additional_device_support;
144 unsigned int manufacturer_id;
145 unsigned int product_id;
146 unsigned char aux_firmware_revision[4];
147 unsigned int aux_firmware_revision_set : 1;
148};
149
150#define ipmi_version_major(v) ((v)->ipmi_version & 0xf)
151#define ipmi_version_minor(v) ((v)->ipmi_version >> 4)
152
153/* Take a pointer to a raw data buffer and a length and extract device
154 id information from it. The first byte of data must point to the
Corey Minyardd8c98612007-10-18 03:07:11 -0700155 netfn << 2, the data should be of the format:
156 netfn << 2, cmd, completion code, data
157 as normally comes from a device interface. */
158static inline int ipmi_demangle_device_id(const unsigned char *data,
159 unsigned int data_len,
160 struct ipmi_device_id *id)
Corey Minyard50c812b2006-03-26 01:37:21 -0800161{
Corey Minyardd8c98612007-10-18 03:07:11 -0700162 if (data_len < 9)
163 return -EINVAL;
164 if (data[0] != IPMI_NETFN_APP_RESPONSE << 2 ||
165 data[1] != IPMI_GET_DEVICE_ID_CMD)
166 /* Strange, didn't get the response we expected. */
167 return -EINVAL;
168 if (data[2] != 0)
169 /* That's odd, it shouldn't be able to fail. */
170 return -EINVAL;
171
172 data += 3;
173 data_len -= 3;
Corey Minyard50c812b2006-03-26 01:37:21 -0800174 id->device_id = data[0];
175 id->device_revision = data[1];
176 id->firmware_revision_1 = data[2];
177 id->firmware_revision_2 = data[3];
178 id->ipmi_version = data[4];
179 id->additional_device_support = data[5];
Corey Minyard64e862a2007-10-29 14:37:13 -0700180 if (data_len >= 11) {
Corey Minyardd8c98612007-10-18 03:07:11 -0700181 id->manufacturer_id = (data[6] | (data[7] << 8) |
182 (data[8] << 16));
183 id->product_id = data[9] | (data[10] << 8);
184 } else {
185 id->manufacturer_id = 0;
186 id->product_id = 0;
187 }
Corey Minyard50c812b2006-03-26 01:37:21 -0800188 if (data_len >= 15) {
189 memcpy(id->aux_firmware_revision, data+11, 4);
190 id->aux_firmware_revision_set = 1;
191 } else
192 id->aux_firmware_revision_set = 0;
Corey Minyardd8c98612007-10-18 03:07:11 -0700193
194 return 0;
Corey Minyard50c812b2006-03-26 01:37:21 -0800195}
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/* Add a low-level interface to the IPMI driver. Note that if the
Corey Minyard453823b2006-03-31 02:30:39 -0800198 interface doesn't know its slave address, it should pass in zero.
199 The low-level interface should not deliver any messages to the
200 upper layer until the start_processing() function in the handlers
201 is called, and the lower layer must get the interface from that
202 call. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
204 void *send_info,
Corey Minyard50c812b2006-03-26 01:37:21 -0800205 struct ipmi_device_id *device_id,
206 struct device *dev,
Corey Minyard759643b2006-12-06 20:40:59 -0800207 const char *sysfs_name,
Corey Minyard453823b2006-03-31 02:30:39 -0800208 unsigned char slave_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/*
211 * Remove a low-level interface from the IPMI driver. This will
212 * return an error if the interface is still in use by a user.
213 */
214int ipmi_unregister_smi(ipmi_smi_t intf);
215
216/*
217 * The lower layer reports received messages through this interface.
218 * The data_size should be zero if this is an asyncronous message. If
219 * the lower layer gets an error sending a message, it should format
220 * an error response in the message response.
221 */
222void ipmi_smi_msg_received(ipmi_smi_t intf,
223 struct ipmi_smi_msg *msg);
224
225/* The lower layer received a watchdog pre-timeout on interface. */
226void ipmi_smi_watchdog_pretimeout(ipmi_smi_t intf);
227
228struct ipmi_smi_msg *ipmi_alloc_smi_msg(void);
229static inline void ipmi_free_smi_msg(struct ipmi_smi_msg *msg)
230{
231 msg->done(msg);
232}
233
234/* Allow the lower layer to add things to the proc filesystem
235 directory for this interface. Note that the entry will
236 automatically be dstroyed when the interface is destroyed. */
237int ipmi_smi_add_proc_entry(ipmi_smi_t smi, char *name,
Alexey Dobriyan07412732011-05-26 16:25:55 -0700238 const struct file_operations *proc_ops,
Alexey Dobriyan99b76232009-03-25 22:48:06 +0300239 void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241#endif /* __LINUX_IPMI_SMI_H */