4 * State machine for handling IPMI KCS interfaces.
6 * Author: MontaVista Software, Inc.
7 * Corey Minyard <minyard@mvista.com>
10 * Copyright 2002 MontaVista Software Inc.
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.
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.
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.
35 * This state machine is taken from the state machine in the IPMI spec,
36 * pretty much verbatim. If you have questions about the states, see
40 #include <linux/kernel.h> /* For printk. */
41 #include <linux/module.h>
42 #include <linux/moduleparam.h>
43 #include <linux/string.h>
44 #include <linux/jiffies.h>
45 #include <linux/ipmi_msgdefs.h> /* for completion codes */
46 #include "ipmi_si_sm.h"
48 /* kcs_debug is a bit-field
49 * KCS_DEBUG_ENABLE - turned on for now
50 * KCS_DEBUG_MSG - commands and their responses
51 * KCS_DEBUG_STATES - state machine
53 #define KCS_DEBUG_STATES 4
54 #define KCS_DEBUG_MSG 2
55 #define KCS_DEBUG_ENABLE 1
58 module_param(kcs_debug
, int, 0644);
59 MODULE_PARM_DESC(kcs_debug
, "debug bitmask, 1=enable, 2=messages, 4=states");
61 /* The states the KCS driver may be in. */
63 /* The KCS interface is currently doing nothing. */
67 * We are starting an operation. The data is in the output
68 * buffer, but nothing has been done to the interface yet. This
69 * was added to the state machine in the spec to wait for the
74 /* We have written a write cmd to the interface. */
77 /* We are writing bytes to the interface. */
81 * We have written the write end cmd to the interface, and
82 * still need to write the last byte.
86 /* We are waiting to read data from the interface. */
90 * State to transition to the error handler, this was added to
91 * the state machine in the spec to be sure IBF was there.
96 * First stage error handler, wait for the interface to
102 * The abort cmd has been written, wait for the interface to
108 * We wrote some data to the interface, wait for it to switch
113 /* The hardware failed to follow the state machine. */
117 #define MAX_KCS_READ_SIZE IPMI_MAX_MSG_LENGTH
118 #define MAX_KCS_WRITE_SIZE IPMI_MAX_MSG_LENGTH
120 /* Timeouts in microseconds. */
121 #define IBF_RETRY_TIMEOUT 5000000
122 #define OBF_RETRY_TIMEOUT 5000000
123 #define MAX_ERROR_RETRIES 10
124 #define ERROR0_OBF_WAIT_JIFFIES (2*HZ)
127 enum kcs_states state
;
129 unsigned char write_data
[MAX_KCS_WRITE_SIZE
];
132 int orig_write_count
;
133 unsigned char read_data
[MAX_KCS_READ_SIZE
];
137 unsigned int error_retries
;
140 unsigned long error0_timeout
;
143 static unsigned int init_kcs_data(struct si_sm_data
*kcs
,
146 kcs
->state
= KCS_IDLE
;
149 kcs
->write_count
= 0;
150 kcs
->orig_write_count
= 0;
152 kcs
->error_retries
= 0;
154 kcs
->ibf_timeout
= IBF_RETRY_TIMEOUT
;
155 kcs
->obf_timeout
= OBF_RETRY_TIMEOUT
;
157 /* Reserve 2 I/O bytes. */
161 static inline unsigned char read_status(struct si_sm_data
*kcs
)
163 return kcs
->io
->inputb(kcs
->io
, 1);
166 static inline unsigned char read_data(struct si_sm_data
*kcs
)
168 return kcs
->io
->inputb(kcs
->io
, 0);
171 static inline void write_cmd(struct si_sm_data
*kcs
, unsigned char data
)
173 kcs
->io
->outputb(kcs
->io
, 1, data
);
176 static inline void write_data(struct si_sm_data
*kcs
, unsigned char data
)
178 kcs
->io
->outputb(kcs
->io
, 0, data
);
182 #define KCS_GET_STATUS_ABORT 0x60
183 #define KCS_WRITE_START 0x61
184 #define KCS_WRITE_END 0x62
185 #define KCS_READ_BYTE 0x68
188 #define GET_STATUS_STATE(status) (((status) >> 6) & 0x03)
189 #define KCS_IDLE_STATE 0
190 #define KCS_READ_STATE 1
191 #define KCS_WRITE_STATE 2
192 #define KCS_ERROR_STATE 3
193 #define GET_STATUS_ATN(status) ((status) & 0x04)
194 #define GET_STATUS_IBF(status) ((status) & 0x02)
195 #define GET_STATUS_OBF(status) ((status) & 0x01)
198 static inline void write_next_byte(struct si_sm_data
*kcs
)
200 write_data(kcs
, kcs
->write_data
[kcs
->write_pos
]);
202 (kcs
->write_count
)--;
205 static inline void start_error_recovery(struct si_sm_data
*kcs
, char *reason
)
207 (kcs
->error_retries
)++;
208 if (kcs
->error_retries
> MAX_ERROR_RETRIES
) {
209 if (kcs_debug
& KCS_DEBUG_ENABLE
)
210 printk(KERN_DEBUG
"ipmi_kcs_sm: kcs hosed: %s\n",
212 kcs
->state
= KCS_HOSED
;
214 kcs
->error0_timeout
= jiffies
+ ERROR0_OBF_WAIT_JIFFIES
;
215 kcs
->state
= KCS_ERROR0
;
219 static inline void read_next_byte(struct si_sm_data
*kcs
)
221 if (kcs
->read_pos
>= MAX_KCS_READ_SIZE
) {
222 /* Throw the data away and mark it truncated. */
226 kcs
->read_data
[kcs
->read_pos
] = read_data(kcs
);
229 write_data(kcs
, KCS_READ_BYTE
);
232 static inline int check_ibf(struct si_sm_data
*kcs
, unsigned char status
,
235 if (GET_STATUS_IBF(status
)) {
236 kcs
->ibf_timeout
-= time
;
237 if (kcs
->ibf_timeout
< 0) {
238 start_error_recovery(kcs
, "IBF not ready in time");
239 kcs
->ibf_timeout
= IBF_RETRY_TIMEOUT
;
244 kcs
->ibf_timeout
= IBF_RETRY_TIMEOUT
;
248 static inline int check_obf(struct si_sm_data
*kcs
, unsigned char status
,
251 if (!GET_STATUS_OBF(status
)) {
252 kcs
->obf_timeout
-= time
;
253 if (kcs
->obf_timeout
< 0) {
254 kcs
->obf_timeout
= OBF_RETRY_TIMEOUT
;
255 start_error_recovery(kcs
, "OBF not ready in time");
260 kcs
->obf_timeout
= OBF_RETRY_TIMEOUT
;
264 static void clear_obf(struct si_sm_data
*kcs
, unsigned char status
)
266 if (GET_STATUS_OBF(status
))
270 static void restart_kcs_transaction(struct si_sm_data
*kcs
)
272 kcs
->write_count
= kcs
->orig_write_count
;
275 kcs
->state
= KCS_WAIT_WRITE_START
;
276 kcs
->ibf_timeout
= IBF_RETRY_TIMEOUT
;
277 kcs
->obf_timeout
= OBF_RETRY_TIMEOUT
;
278 write_cmd(kcs
, KCS_WRITE_START
);
281 static int start_kcs_transaction(struct si_sm_data
*kcs
, unsigned char *data
,
287 return IPMI_REQ_LEN_INVALID_ERR
;
288 if (size
> MAX_KCS_WRITE_SIZE
)
289 return IPMI_REQ_LEN_EXCEEDED_ERR
;
291 if ((kcs
->state
!= KCS_IDLE
) && (kcs
->state
!= KCS_HOSED
))
292 return IPMI_NOT_IN_MY_STATE_ERR
;
294 if (kcs_debug
& KCS_DEBUG_MSG
) {
295 printk(KERN_DEBUG
"start_kcs_transaction -");
296 for (i
= 0; i
< size
; i
++)
297 printk(" %02x", (unsigned char) (data
[i
]));
300 kcs
->error_retries
= 0;
301 memcpy(kcs
->write_data
, data
, size
);
302 kcs
->write_count
= size
;
303 kcs
->orig_write_count
= size
;
306 kcs
->state
= KCS_START_OP
;
307 kcs
->ibf_timeout
= IBF_RETRY_TIMEOUT
;
308 kcs
->obf_timeout
= OBF_RETRY_TIMEOUT
;
312 static int get_kcs_result(struct si_sm_data
*kcs
, unsigned char *data
,
315 if (length
< kcs
->read_pos
) {
316 kcs
->read_pos
= length
;
320 memcpy(data
, kcs
->read_data
, kcs
->read_pos
);
322 if ((length
>= 3) && (kcs
->read_pos
< 3)) {
323 /* Guarantee that we return at least 3 bytes, with an
324 error in the third byte if it is too short. */
325 data
[2] = IPMI_ERR_UNSPECIFIED
;
328 if (kcs
->truncated
) {
330 * Report a truncated error. We might overwrite
331 * another error, but that's too bad, the user needs
332 * to know it was truncated.
334 data
[2] = IPMI_ERR_MSG_TRUNCATED
;
338 return kcs
->read_pos
;
342 * This implements the state machine defined in the IPMI manual, see
343 * that for details on how this works. Divide that flowchart into
344 * sections delimited by "Wait for IBF" and this will become clear.
346 static enum si_sm_result
kcs_event(struct si_sm_data
*kcs
, long time
)
348 unsigned char status
;
351 status
= read_status(kcs
);
353 if (kcs_debug
& KCS_DEBUG_STATES
)
354 printk(KERN_DEBUG
"KCS: State = %d, %x\n", kcs
->state
, status
);
356 /* All states wait for ibf, so just do it here. */
357 if (!check_ibf(kcs
, status
, time
))
358 return SI_SM_CALL_WITH_DELAY
;
360 /* Just about everything looks at the KCS state, so grab that, too. */
361 state
= GET_STATUS_STATE(status
);
363 switch (kcs
->state
) {
365 /* If there's and interrupt source, turn it off. */
366 clear_obf(kcs
, status
);
368 if (GET_STATUS_ATN(status
))
374 if (state
!= KCS_IDLE_STATE
) {
375 start_error_recovery(kcs
,
376 "State machine not idle at start");
380 clear_obf(kcs
, status
);
381 write_cmd(kcs
, KCS_WRITE_START
);
382 kcs
->state
= KCS_WAIT_WRITE_START
;
385 case KCS_WAIT_WRITE_START
:
386 if (state
!= KCS_WRITE_STATE
) {
387 start_error_recovery(
389 "Not in write state at write start");
393 if (kcs
->write_count
== 1) {
394 write_cmd(kcs
, KCS_WRITE_END
);
395 kcs
->state
= KCS_WAIT_WRITE_END
;
397 write_next_byte(kcs
);
398 kcs
->state
= KCS_WAIT_WRITE
;
403 if (state
!= KCS_WRITE_STATE
) {
404 start_error_recovery(kcs
,
405 "Not in write state for write");
408 clear_obf(kcs
, status
);
409 if (kcs
->write_count
== 1) {
410 write_cmd(kcs
, KCS_WRITE_END
);
411 kcs
->state
= KCS_WAIT_WRITE_END
;
413 write_next_byte(kcs
);
417 case KCS_WAIT_WRITE_END
:
418 if (state
!= KCS_WRITE_STATE
) {
419 start_error_recovery(kcs
,
424 clear_obf(kcs
, status
);
425 write_next_byte(kcs
);
426 kcs
->state
= KCS_WAIT_READ
;
430 if ((state
!= KCS_READ_STATE
) && (state
!= KCS_IDLE_STATE
)) {
431 start_error_recovery(
433 "Not in read or idle in read state");
437 if (state
== KCS_READ_STATE
) {
438 if (!check_obf(kcs
, status
, time
))
439 return SI_SM_CALL_WITH_DELAY
;
443 * We don't implement this exactly like the state
444 * machine in the spec. Some broken hardware
445 * does not write the final dummy byte to the
446 * read register. Thus obf will never go high
447 * here. We just go straight to idle, and we
448 * handle clearing out obf in idle state if it
449 * happens to come in.
451 clear_obf(kcs
, status
);
452 kcs
->orig_write_count
= 0;
453 kcs
->state
= KCS_IDLE
;
454 return SI_SM_TRANSACTION_COMPLETE
;
459 clear_obf(kcs
, status
);
460 status
= read_status(kcs
);
461 if (GET_STATUS_OBF(status
))
462 /* controller isn't responding */
463 if (time_before(jiffies
, kcs
->error0_timeout
))
464 return SI_SM_CALL_WITH_TICK_DELAY
;
465 write_cmd(kcs
, KCS_GET_STATUS_ABORT
);
466 kcs
->state
= KCS_ERROR1
;
470 clear_obf(kcs
, status
);
472 kcs
->state
= KCS_ERROR2
;
476 if (state
!= KCS_READ_STATE
) {
477 start_error_recovery(kcs
,
478 "Not in read state for error2");
481 if (!check_obf(kcs
, status
, time
))
482 return SI_SM_CALL_WITH_DELAY
;
484 clear_obf(kcs
, status
);
485 write_data(kcs
, KCS_READ_BYTE
);
486 kcs
->state
= KCS_ERROR3
;
490 if (state
!= KCS_IDLE_STATE
) {
491 start_error_recovery(kcs
,
492 "Not in idle state for error3");
496 if (!check_obf(kcs
, status
, time
))
497 return SI_SM_CALL_WITH_DELAY
;
499 clear_obf(kcs
, status
);
500 if (kcs
->orig_write_count
) {
501 restart_kcs_transaction(kcs
);
503 kcs
->state
= KCS_IDLE
;
504 return SI_SM_TRANSACTION_COMPLETE
;
512 if (kcs
->state
== KCS_HOSED
) {
513 init_kcs_data(kcs
, kcs
->io
);
517 return SI_SM_CALL_WITHOUT_DELAY
;
520 static int kcs_size(void)
522 return sizeof(struct si_sm_data
);
525 static int kcs_detect(struct si_sm_data
*kcs
)
528 * It's impossible for the KCS status register to be all 1's,
529 * (assuming a properly functioning, self-initialized BMC)
530 * but that's what you get from reading a bogus address, so we
533 if (read_status(kcs
) == 0xff)
539 static void kcs_cleanup(struct si_sm_data
*kcs
)
543 struct si_sm_handlers kcs_smi_handlers
= {
544 .init_data
= init_kcs_data
,
545 .start_transaction
= start_kcs_transaction
,
546 .get_result
= get_kcs_result
,
548 .detect
= kcs_detect
,
549 .cleanup
= kcs_cleanup
,