4 * The interface to the IPMI driver for SMBus access to a SMBus
5 * compliant device. Called SSIF by the IPMI spec.
7 * Author: Intel Corporation
8 * Todd Davis <todd.c.davis@intel.com>
10 * Rewritten by Corey Minyard <minyard@acm.org> to support the
11 * non-blocking I2C interface, add support for multi-part
12 * transactions, add PEC support, and general clenaup.
14 * Copyright 2003 Intel Corporation
15 * Copyright 2005 MontaVista Software
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2 of the License, or (at your
20 * option) any later version.
24 * This file holds the "policy" for the interface to the SSIF state
25 * machine. It does the configuration, handles timers and interrupts,
26 * and drives the real SSIF state machine.
30 * TODO: Figure out how to use SMB alerts. This will require a new
31 * interface into the I2C driver, I believe.
34 #if defined(MODVERSIONS)
35 #include <linux/modversions.h>
38 #include <linux/module.h>
39 #include <linux/moduleparam.h>
40 #include <linux/sched.h>
41 #include <linux/seq_file.h>
42 #include <linux/timer.h>
43 #include <linux/delay.h>
44 #include <linux/errno.h>
45 #include <linux/spinlock.h>
46 #include <linux/slab.h>
47 #include <linux/list.h>
48 #include <linux/i2c.h>
49 #include <linux/ipmi_smi.h>
50 #include <linux/init.h>
51 #include <linux/dmi.h>
52 #include <linux/kthread.h>
53 #include <linux/acpi.h>
54 #include <linux/ctype.h>
55 #include <linux/time64.h>
56 #include "ipmi_si_sm.h"
59 #define PFX "ipmi_ssif: "
60 #define DEVICE_NAME "ipmi_ssif"
62 #define IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_CMD 0x57
64 #define SSIF_IPMI_REQUEST 2
65 #define SSIF_IPMI_MULTI_PART_REQUEST_START 6
66 #define SSIF_IPMI_MULTI_PART_REQUEST_MIDDLE 7
67 #define SSIF_IPMI_RESPONSE 3
68 #define SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE 9
70 /* ssif_debug is a bit-field
71 * SSIF_DEBUG_MSG - commands and their responses
72 * SSIF_DEBUG_STATES - message states
73 * SSIF_DEBUG_TIMING - Measure times between events in the driver
75 #define SSIF_DEBUG_TIMING 4
76 #define SSIF_DEBUG_STATE 2
77 #define SSIF_DEBUG_MSG 1
78 #define SSIF_NODEBUG 0
79 #define SSIF_DEFAULT_DEBUG (SSIF_NODEBUG)
84 #define SSIF_MSG_USEC 20000 /* 20ms between message tries. */
85 #define SSIF_MSG_PART_USEC 5000 /* 5ms for a message part */
87 /* How many times to we retry sending/receiving the message. */
88 #define SSIF_SEND_RETRIES 5
89 #define SSIF_RECV_RETRIES 250
91 #define SSIF_MSG_MSEC (SSIF_MSG_USEC / 1000)
92 #define SSIF_MSG_JIFFIES ((SSIF_MSG_USEC * 1000) / TICK_NSEC)
93 #define SSIF_MSG_PART_JIFFIES ((SSIF_MSG_PART_USEC * 1000) / TICK_NSEC)
95 enum ssif_intf_state
{
100 SSIF_GETTING_MESSAGES
,
101 /* FIXME - add watchdog stuff. */
104 #define SSIF_IDLE(ssif) ((ssif)->ssif_state == SSIF_NORMAL \
105 && (ssif)->curr_msg == NULL)
108 * Indexes into stats[] in ssif_info below.
110 enum ssif_stat_indexes
{
111 /* Number of total messages sent. */
112 SSIF_STAT_sent_messages
= 0,
115 * Number of message parts sent. Messages may be broken into
116 * parts if they are long.
118 SSIF_STAT_sent_messages_parts
,
121 * Number of time a message was retried.
123 SSIF_STAT_send_retries
,
126 * Number of times the send of a message failed.
128 SSIF_STAT_send_errors
,
131 * Number of message responses received.
133 SSIF_STAT_received_messages
,
136 * Number of message fragments received.
138 SSIF_STAT_received_message_parts
,
141 * Number of times the receive of a message was retried.
143 SSIF_STAT_receive_retries
,
146 * Number of errors receiving messages.
148 SSIF_STAT_receive_errors
,
151 * Number of times a flag fetch was requested.
153 SSIF_STAT_flag_fetches
,
156 * Number of times the hardware didn't follow the state machine.
161 * Number of received events.
165 /* Number of asyncronous messages received. */
166 SSIF_STAT_incoming_messages
,
168 /* Number of watchdog pretimeouts. */
169 SSIF_STAT_watchdog_pretimeouts
,
171 /* Number of alers received. */
174 /* Always add statistics before this value, it must be last. */
178 struct ssif_addr_info
{
179 struct i2c_board_info binfo
;
183 enum ipmi_addr_src addr_src
;
184 union ipmi_smi_info_union addr_info
;
186 struct i2c_client
*client
;
188 struct mutex clients_mutex
;
189 struct list_head clients
;
191 struct list_head link
;
196 typedef void (*ssif_i2c_done
)(struct ssif_info
*ssif_info
, int result
,
197 unsigned char *data
, unsigned int len
);
203 struct ipmi_smi_msg
*waiting_msg
;
204 struct ipmi_smi_msg
*curr_msg
;
205 enum ssif_intf_state ssif_state
;
206 unsigned long ssif_debug
;
208 struct ipmi_smi_handlers handlers
;
210 enum ipmi_addr_src addr_source
; /* ACPI, PCI, SMBIOS, hardcode, etc. */
211 union ipmi_smi_info_union addr_info
;
214 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
215 * is set to hold the flags until we are done handling everything
218 #define RECEIVE_MSG_AVAIL 0x01
219 #define EVENT_MSG_BUFFER_FULL 0x02
220 #define WDT_PRE_TIMEOUT_INT 0x08
221 unsigned char msg_flags
;
224 bool has_event_buffer
;
228 * Used to tell what we should do with alerts. If we are
229 * waiting on a response, read the data immediately.
235 * If set to true, this will request events the next time the
236 * state machine is idle.
241 * If set to true, this will request flags the next time the
242 * state machine is idle.
247 * Used to perform timer operations when run-to-completion
248 * mode is on. This is a countdown timer.
252 /* Used for sending/receiving data. +1 for the length. */
253 unsigned char data
[IPMI_MAX_MSG_LENGTH
+ 1];
254 unsigned int data_len
;
256 /* Temp receive buffer, gets copied into data. */
257 unsigned char recv
[I2C_SMBUS_BLOCK_MAX
];
259 struct i2c_client
*client
;
260 ssif_i2c_done done_handler
;
262 /* Thread interface handling */
263 struct task_struct
*thread
;
264 struct completion wake_thread
;
268 unsigned char *i2c_data
;
269 unsigned int i2c_size
;
271 struct timer_list retry_timer
;
274 /* Info from SSIF cmd */
275 unsigned char max_xmit_msg_size
;
276 unsigned char max_recv_msg_size
;
277 unsigned int multi_support
;
280 #define SSIF_NO_MULTI 0
281 #define SSIF_MULTI_2_PART 1
282 #define SSIF_MULTI_n_PART 2
283 unsigned char *multi_data
;
284 unsigned int multi_len
;
285 unsigned int multi_pos
;
287 atomic_t stats
[SSIF_NUM_STATS
];
290 #define ssif_inc_stat(ssif, stat) \
291 atomic_inc(&(ssif)->stats[SSIF_STAT_ ## stat])
292 #define ssif_get_stat(ssif, stat) \
293 ((unsigned int) atomic_read(&(ssif)->stats[SSIF_STAT_ ## stat]))
295 static bool initialized
;
297 static atomic_t next_intf
= ATOMIC_INIT(0);
299 static void return_hosed_msg(struct ssif_info
*ssif_info
,
300 struct ipmi_smi_msg
*msg
);
301 static void start_next_msg(struct ssif_info
*ssif_info
, unsigned long *flags
);
302 static int start_send(struct ssif_info
*ssif_info
,
306 static unsigned long *ipmi_ssif_lock_cond(struct ssif_info
*ssif_info
,
307 unsigned long *flags
)
309 spin_lock_irqsave(&ssif_info
->lock
, *flags
);
313 static void ipmi_ssif_unlock_cond(struct ssif_info
*ssif_info
,
314 unsigned long *flags
)
316 spin_unlock_irqrestore(&ssif_info
->lock
, *flags
);
319 static void deliver_recv_msg(struct ssif_info
*ssif_info
,
320 struct ipmi_smi_msg
*msg
)
322 ipmi_smi_t intf
= ssif_info
->intf
;
325 ipmi_free_smi_msg(msg
);
326 } else if (msg
->rsp_size
< 0) {
327 return_hosed_msg(ssif_info
, msg
);
329 "Malformed message in deliver_recv_msg: rsp_size = %d\n",
332 ipmi_smi_msg_received(intf
, msg
);
336 static void return_hosed_msg(struct ssif_info
*ssif_info
,
337 struct ipmi_smi_msg
*msg
)
339 ssif_inc_stat(ssif_info
, hosed
);
341 /* Make it a response */
342 msg
->rsp
[0] = msg
->data
[0] | 4;
343 msg
->rsp
[1] = msg
->data
[1];
344 msg
->rsp
[2] = 0xFF; /* Unknown error. */
347 deliver_recv_msg(ssif_info
, msg
);
351 * Must be called with the message lock held. This will release the
352 * message lock. Note that the caller will check SSIF_IDLE and start a
353 * new operation, so there is no need to check for new messages to
356 static void start_clear_flags(struct ssif_info
*ssif_info
, unsigned long *flags
)
358 unsigned char msg
[3];
360 ssif_info
->msg_flags
&= ~WDT_PRE_TIMEOUT_INT
;
361 ssif_info
->ssif_state
= SSIF_CLEARING_FLAGS
;
362 ipmi_ssif_unlock_cond(ssif_info
, flags
);
364 /* Make sure the watchdog pre-timeout flag is not set at startup. */
365 msg
[0] = (IPMI_NETFN_APP_REQUEST
<< 2);
366 msg
[1] = IPMI_CLEAR_MSG_FLAGS_CMD
;
367 msg
[2] = WDT_PRE_TIMEOUT_INT
;
369 if (start_send(ssif_info
, msg
, 3) != 0) {
370 /* Error, just go to normal state. */
371 ssif_info
->ssif_state
= SSIF_NORMAL
;
375 static void start_flag_fetch(struct ssif_info
*ssif_info
, unsigned long *flags
)
379 ssif_info
->req_flags
= false;
380 ssif_info
->ssif_state
= SSIF_GETTING_FLAGS
;
381 ipmi_ssif_unlock_cond(ssif_info
, flags
);
383 mb
[0] = (IPMI_NETFN_APP_REQUEST
<< 2);
384 mb
[1] = IPMI_GET_MSG_FLAGS_CMD
;
385 if (start_send(ssif_info
, mb
, 2) != 0)
386 ssif_info
->ssif_state
= SSIF_NORMAL
;
389 static void check_start_send(struct ssif_info
*ssif_info
, unsigned long *flags
,
390 struct ipmi_smi_msg
*msg
)
392 if (start_send(ssif_info
, msg
->data
, msg
->data_size
) != 0) {
393 unsigned long oflags
;
395 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
396 ssif_info
->curr_msg
= NULL
;
397 ssif_info
->ssif_state
= SSIF_NORMAL
;
398 ipmi_ssif_unlock_cond(ssif_info
, flags
);
399 ipmi_free_smi_msg(msg
);
403 static void start_event_fetch(struct ssif_info
*ssif_info
, unsigned long *flags
)
405 struct ipmi_smi_msg
*msg
;
407 ssif_info
->req_events
= false;
409 msg
= ipmi_alloc_smi_msg();
411 ssif_info
->ssif_state
= SSIF_NORMAL
;
412 ipmi_ssif_unlock_cond(ssif_info
, flags
);
416 ssif_info
->curr_msg
= msg
;
417 ssif_info
->ssif_state
= SSIF_GETTING_EVENTS
;
418 ipmi_ssif_unlock_cond(ssif_info
, flags
);
420 msg
->data
[0] = (IPMI_NETFN_APP_REQUEST
<< 2);
421 msg
->data
[1] = IPMI_READ_EVENT_MSG_BUFFER_CMD
;
424 check_start_send(ssif_info
, flags
, msg
);
427 static void start_recv_msg_fetch(struct ssif_info
*ssif_info
,
428 unsigned long *flags
)
430 struct ipmi_smi_msg
*msg
;
432 msg
= ipmi_alloc_smi_msg();
434 ssif_info
->ssif_state
= SSIF_NORMAL
;
435 ipmi_ssif_unlock_cond(ssif_info
, flags
);
439 ssif_info
->curr_msg
= msg
;
440 ssif_info
->ssif_state
= SSIF_GETTING_MESSAGES
;
441 ipmi_ssif_unlock_cond(ssif_info
, flags
);
443 msg
->data
[0] = (IPMI_NETFN_APP_REQUEST
<< 2);
444 msg
->data
[1] = IPMI_GET_MSG_CMD
;
447 check_start_send(ssif_info
, flags
, msg
);
451 * Must be called with the message lock held. This will release the
452 * message lock. Note that the caller will check SSIF_IDLE and start a
453 * new operation, so there is no need to check for new messages to
456 static void handle_flags(struct ssif_info
*ssif_info
, unsigned long *flags
)
458 if (ssif_info
->msg_flags
& WDT_PRE_TIMEOUT_INT
) {
459 ipmi_smi_t intf
= ssif_info
->intf
;
460 /* Watchdog pre-timeout */
461 ssif_inc_stat(ssif_info
, watchdog_pretimeouts
);
462 start_clear_flags(ssif_info
, flags
);
464 ipmi_smi_watchdog_pretimeout(intf
);
465 } else if (ssif_info
->msg_flags
& RECEIVE_MSG_AVAIL
)
466 /* Messages available. */
467 start_recv_msg_fetch(ssif_info
, flags
);
468 else if (ssif_info
->msg_flags
& EVENT_MSG_BUFFER_FULL
)
469 /* Events available. */
470 start_event_fetch(ssif_info
, flags
);
472 ssif_info
->ssif_state
= SSIF_NORMAL
;
473 ipmi_ssif_unlock_cond(ssif_info
, flags
);
477 static int ipmi_ssif_thread(void *data
)
479 struct ssif_info
*ssif_info
= data
;
481 while (!kthread_should_stop()) {
484 /* Wait for something to do */
485 result
= wait_for_completion_interruptible(
486 &ssif_info
->wake_thread
);
487 if (ssif_info
->stopping
)
489 if (result
== -ERESTARTSYS
)
491 init_completion(&ssif_info
->wake_thread
);
493 if (ssif_info
->i2c_read_write
== I2C_SMBUS_WRITE
) {
494 result
= i2c_smbus_write_block_data(
495 ssif_info
->client
, ssif_info
->i2c_command
,
496 ssif_info
->i2c_data
[0],
497 ssif_info
->i2c_data
+ 1);
498 ssif_info
->done_handler(ssif_info
, result
, NULL
, 0);
500 result
= i2c_smbus_read_block_data(
501 ssif_info
->client
, ssif_info
->i2c_command
,
502 ssif_info
->i2c_data
);
504 ssif_info
->done_handler(ssif_info
, result
,
507 ssif_info
->done_handler(ssif_info
, 0,
516 static int ssif_i2c_send(struct ssif_info
*ssif_info
,
517 ssif_i2c_done handler
,
518 int read_write
, int command
,
519 unsigned char *data
, unsigned int size
)
521 ssif_info
->done_handler
= handler
;
523 ssif_info
->i2c_read_write
= read_write
;
524 ssif_info
->i2c_command
= command
;
525 ssif_info
->i2c_data
= data
;
526 ssif_info
->i2c_size
= size
;
527 complete(&ssif_info
->wake_thread
);
532 static void msg_done_handler(struct ssif_info
*ssif_info
, int result
,
533 unsigned char *data
, unsigned int len
);
535 static void start_get(struct ssif_info
*ssif_info
)
539 ssif_info
->rtc_us_timer
= 0;
540 ssif_info
->multi_pos
= 0;
542 rv
= ssif_i2c_send(ssif_info
, msg_done_handler
, I2C_SMBUS_READ
,
544 ssif_info
->recv
, I2C_SMBUS_BLOCK_DATA
);
546 /* request failed, just return the error. */
547 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
548 pr_info("Error from i2c_non_blocking_op(5)\n");
550 msg_done_handler(ssif_info
, -EIO
, NULL
, 0);
554 static void retry_timeout(struct timer_list
*t
)
556 struct ssif_info
*ssif_info
= from_timer(ssif_info
, t
, retry_timer
);
557 unsigned long oflags
, *flags
;
560 if (ssif_info
->stopping
)
563 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
564 waiting
= ssif_info
->waiting_alert
;
565 ssif_info
->waiting_alert
= false;
566 ipmi_ssif_unlock_cond(ssif_info
, flags
);
569 start_get(ssif_info
);
573 static void ssif_alert(struct i2c_client
*client
, enum i2c_alert_protocol type
,
576 struct ssif_info
*ssif_info
= i2c_get_clientdata(client
);
577 unsigned long oflags
, *flags
;
580 if (type
!= I2C_PROTOCOL_SMBUS_ALERT
)
583 ssif_inc_stat(ssif_info
, alerts
);
585 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
586 if (ssif_info
->waiting_alert
) {
587 ssif_info
->waiting_alert
= false;
588 del_timer(&ssif_info
->retry_timer
);
590 } else if (ssif_info
->curr_msg
) {
591 ssif_info
->got_alert
= true;
593 ipmi_ssif_unlock_cond(ssif_info
, flags
);
595 start_get(ssif_info
);
598 static int start_resend(struct ssif_info
*ssif_info
);
600 static void msg_done_handler(struct ssif_info
*ssif_info
, int result
,
601 unsigned char *data
, unsigned int len
)
603 struct ipmi_smi_msg
*msg
;
604 unsigned long oflags
, *flags
;
608 * We are single-threaded here, so no need for a lock until we
609 * start messing with driver states or the queues.
613 ssif_info
->retries_left
--;
614 if (ssif_info
->retries_left
> 0) {
615 ssif_inc_stat(ssif_info
, receive_retries
);
617 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
618 ssif_info
->waiting_alert
= true;
619 ssif_info
->rtc_us_timer
= SSIF_MSG_USEC
;
620 mod_timer(&ssif_info
->retry_timer
,
621 jiffies
+ SSIF_MSG_JIFFIES
);
622 ipmi_ssif_unlock_cond(ssif_info
, flags
);
626 ssif_inc_stat(ssif_info
, receive_errors
);
628 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
629 pr_info("Error in msg_done_handler: %d\n", result
);
634 if ((len
> 1) && (ssif_info
->multi_pos
== 0)
635 && (data
[0] == 0x00) && (data
[1] == 0x01)) {
636 /* Start of multi-part read. Start the next transaction. */
639 ssif_inc_stat(ssif_info
, received_message_parts
);
641 /* Remove the multi-part read marker. */
643 for (i
= 0; i
< len
; i
++)
644 ssif_info
->data
[i
] = data
[i
+2];
645 ssif_info
->multi_len
= len
;
646 ssif_info
->multi_pos
= 1;
648 rv
= ssif_i2c_send(ssif_info
, msg_done_handler
, I2C_SMBUS_READ
,
649 SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE
,
650 ssif_info
->recv
, I2C_SMBUS_BLOCK_DATA
);
652 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
653 pr_info("Error from i2c_non_blocking_op(1)\n");
658 } else if (ssif_info
->multi_pos
) {
659 /* Middle of multi-part read. Start the next transaction. */
661 unsigned char blocknum
;
665 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
666 pr_info(PFX
"Middle message with no data\n");
673 if (ssif_info
->multi_len
+ len
- 1 > IPMI_MAX_MSG_LENGTH
) {
674 /* Received message too big, abort the operation. */
676 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
677 pr_info("Received message too big\n");
682 /* Remove the blocknum from the data. */
684 for (i
= 0; i
< len
; i
++)
685 ssif_info
->data
[i
+ ssif_info
->multi_len
] = data
[i
+ 1];
686 ssif_info
->multi_len
+= len
;
687 if (blocknum
== 0xff) {
689 len
= ssif_info
->multi_len
;
690 data
= ssif_info
->data
;
691 } else if (blocknum
+ 1 != ssif_info
->multi_pos
) {
693 * Out of sequence block, just abort. Block
694 * numbers start at zero for the second block,
695 * but multi_pos starts at one, so the +1.
699 ssif_inc_stat(ssif_info
, received_message_parts
);
701 ssif_info
->multi_pos
++;
703 rv
= ssif_i2c_send(ssif_info
, msg_done_handler
,
705 SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE
,
707 I2C_SMBUS_BLOCK_DATA
);
709 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
711 "Error from ssif_i2c_send\n");
720 ssif_inc_stat(ssif_info
, receive_errors
);
722 ssif_inc_stat(ssif_info
, received_messages
);
723 ssif_inc_stat(ssif_info
, received_message_parts
);
728 if (ssif_info
->ssif_debug
& SSIF_DEBUG_STATE
)
729 pr_info(PFX
"DONE 1: state = %d, result=%d.\n",
730 ssif_info
->ssif_state
, result
);
732 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
733 msg
= ssif_info
->curr_msg
;
736 if (msg
->rsp_size
> IPMI_MAX_MSG_LENGTH
)
737 msg
->rsp_size
= IPMI_MAX_MSG_LENGTH
;
738 memcpy(msg
->rsp
, data
, msg
->rsp_size
);
739 ssif_info
->curr_msg
= NULL
;
742 switch (ssif_info
->ssif_state
) {
744 ipmi_ssif_unlock_cond(ssif_info
, flags
);
749 return_hosed_msg(ssif_info
, msg
);
751 deliver_recv_msg(ssif_info
, msg
);
754 case SSIF_GETTING_FLAGS
:
755 /* We got the flags from the SSIF, now handle them. */
756 if ((result
< 0) || (len
< 4) || (data
[2] != 0)) {
758 * Error fetching flags, or invalid length,
759 * just give up for now.
761 ssif_info
->ssif_state
= SSIF_NORMAL
;
762 ipmi_ssif_unlock_cond(ssif_info
, flags
);
763 pr_warn(PFX
"Error getting flags: %d %d, %x\n",
764 result
, len
, data
[2]);
765 } else if (data
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
766 || data
[1] != IPMI_GET_MSG_FLAGS_CMD
) {
768 * Don't abort here, maybe it was a queued
769 * response to a previous command.
771 ipmi_ssif_unlock_cond(ssif_info
, flags
);
772 pr_warn(PFX
"Invalid response getting flags: %x %x\n",
775 ssif_inc_stat(ssif_info
, flag_fetches
);
776 ssif_info
->msg_flags
= data
[3];
777 handle_flags(ssif_info
, flags
);
781 case SSIF_CLEARING_FLAGS
:
782 /* We cleared the flags. */
783 if ((result
< 0) || (len
< 3) || (data
[2] != 0)) {
784 /* Error clearing flags */
785 pr_warn(PFX
"Error clearing flags: %d %d, %x\n",
786 result
, len
, data
[2]);
787 } else if (data
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
788 || data
[1] != IPMI_CLEAR_MSG_FLAGS_CMD
) {
789 pr_warn(PFX
"Invalid response clearing flags: %x %x\n",
792 ssif_info
->ssif_state
= SSIF_NORMAL
;
793 ipmi_ssif_unlock_cond(ssif_info
, flags
);
796 case SSIF_GETTING_EVENTS
:
797 if ((result
< 0) || (len
< 3) || (msg
->rsp
[2] != 0)) {
798 /* Error getting event, probably done. */
801 /* Take off the event flag. */
802 ssif_info
->msg_flags
&= ~EVENT_MSG_BUFFER_FULL
;
803 handle_flags(ssif_info
, flags
);
804 } else if (msg
->rsp
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
805 || msg
->rsp
[1] != IPMI_READ_EVENT_MSG_BUFFER_CMD
) {
806 pr_warn(PFX
"Invalid response getting events: %x %x\n",
807 msg
->rsp
[0], msg
->rsp
[1]);
809 /* Take off the event flag. */
810 ssif_info
->msg_flags
&= ~EVENT_MSG_BUFFER_FULL
;
811 handle_flags(ssif_info
, flags
);
813 handle_flags(ssif_info
, flags
);
814 ssif_inc_stat(ssif_info
, events
);
815 deliver_recv_msg(ssif_info
, msg
);
819 case SSIF_GETTING_MESSAGES
:
820 if ((result
< 0) || (len
< 3) || (msg
->rsp
[2] != 0)) {
821 /* Error getting event, probably done. */
824 /* Take off the msg flag. */
825 ssif_info
->msg_flags
&= ~RECEIVE_MSG_AVAIL
;
826 handle_flags(ssif_info
, flags
);
827 } else if (msg
->rsp
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
828 || msg
->rsp
[1] != IPMI_GET_MSG_CMD
) {
829 pr_warn(PFX
"Invalid response clearing flags: %x %x\n",
830 msg
->rsp
[0], msg
->rsp
[1]);
833 /* Take off the msg flag. */
834 ssif_info
->msg_flags
&= ~RECEIVE_MSG_AVAIL
;
835 handle_flags(ssif_info
, flags
);
837 ssif_inc_stat(ssif_info
, incoming_messages
);
838 handle_flags(ssif_info
, flags
);
839 deliver_recv_msg(ssif_info
, msg
);
844 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
845 if (SSIF_IDLE(ssif_info
) && !ssif_info
->stopping
) {
846 if (ssif_info
->req_events
)
847 start_event_fetch(ssif_info
, flags
);
848 else if (ssif_info
->req_flags
)
849 start_flag_fetch(ssif_info
, flags
);
851 start_next_msg(ssif_info
, flags
);
853 ipmi_ssif_unlock_cond(ssif_info
, flags
);
855 if (ssif_info
->ssif_debug
& SSIF_DEBUG_STATE
)
856 pr_info(PFX
"DONE 2: state = %d.\n", ssif_info
->ssif_state
);
859 static void msg_written_handler(struct ssif_info
*ssif_info
, int result
,
860 unsigned char *data
, unsigned int len
)
864 /* We are single-threaded here, so no need for a lock. */
866 ssif_info
->retries_left
--;
867 if (ssif_info
->retries_left
> 0) {
868 if (!start_resend(ssif_info
)) {
869 ssif_inc_stat(ssif_info
, send_retries
);
872 /* request failed, just return the error. */
873 ssif_inc_stat(ssif_info
, send_errors
);
875 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
877 "Out of retries in msg_written_handler\n");
878 msg_done_handler(ssif_info
, -EIO
, NULL
, 0);
882 ssif_inc_stat(ssif_info
, send_errors
);
885 * Got an error on transmit, let the done routine
888 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
889 pr_info("Error in msg_written_handler: %d\n", result
);
891 msg_done_handler(ssif_info
, result
, NULL
, 0);
895 if (ssif_info
->multi_data
) {
897 * In the middle of a multi-data write. See the comment
898 * in the SSIF_MULTI_n_PART case in the probe function
899 * for details on the intricacies of this.
902 unsigned char *data_to_send
;
904 ssif_inc_stat(ssif_info
, sent_messages_parts
);
906 left
= ssif_info
->multi_len
- ssif_info
->multi_pos
;
910 ssif_info
->multi_data
[ssif_info
->multi_pos
] = left
;
911 data_to_send
= ssif_info
->multi_data
+ ssif_info
->multi_pos
;
912 ssif_info
->multi_pos
+= left
;
915 * Write is finished. Note that we must end
916 * with a write of less than 32 bytes to
917 * complete the transaction, even if it is
920 ssif_info
->multi_data
= NULL
;
922 rv
= ssif_i2c_send(ssif_info
, msg_written_handler
,
924 SSIF_IPMI_MULTI_PART_REQUEST_MIDDLE
,
926 I2C_SMBUS_BLOCK_DATA
);
928 /* request failed, just return the error. */
929 ssif_inc_stat(ssif_info
, send_errors
);
931 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
932 pr_info("Error from i2c_non_blocking_op(3)\n");
933 msg_done_handler(ssif_info
, -EIO
, NULL
, 0);
936 /* Ready to request the result. */
937 unsigned long oflags
, *flags
;
939 ssif_inc_stat(ssif_info
, sent_messages
);
940 ssif_inc_stat(ssif_info
, sent_messages_parts
);
942 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
943 if (ssif_info
->got_alert
) {
944 /* The result is already ready, just start it. */
945 ssif_info
->got_alert
= false;
946 ipmi_ssif_unlock_cond(ssif_info
, flags
);
947 start_get(ssif_info
);
949 /* Wait a jiffie then request the next message */
950 ssif_info
->waiting_alert
= true;
951 ssif_info
->retries_left
= SSIF_RECV_RETRIES
;
952 ssif_info
->rtc_us_timer
= SSIF_MSG_PART_USEC
;
953 mod_timer(&ssif_info
->retry_timer
,
954 jiffies
+ SSIF_MSG_PART_JIFFIES
);
955 ipmi_ssif_unlock_cond(ssif_info
, flags
);
960 static int start_resend(struct ssif_info
*ssif_info
)
965 ssif_info
->got_alert
= false;
967 if (ssif_info
->data_len
> 32) {
968 command
= SSIF_IPMI_MULTI_PART_REQUEST_START
;
969 ssif_info
->multi_data
= ssif_info
->data
;
970 ssif_info
->multi_len
= ssif_info
->data_len
;
972 * Subtle thing, this is 32, not 33, because we will
973 * overwrite the thing at position 32 (which was just
974 * transmitted) with the new length.
976 ssif_info
->multi_pos
= 32;
977 ssif_info
->data
[0] = 32;
979 ssif_info
->multi_data
= NULL
;
980 command
= SSIF_IPMI_REQUEST
;
981 ssif_info
->data
[0] = ssif_info
->data_len
;
984 rv
= ssif_i2c_send(ssif_info
, msg_written_handler
, I2C_SMBUS_WRITE
,
985 command
, ssif_info
->data
, I2C_SMBUS_BLOCK_DATA
);
986 if (rv
&& (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
))
987 pr_info("Error from i2c_non_blocking_op(4)\n");
991 static int start_send(struct ssif_info
*ssif_info
,
995 if (len
> IPMI_MAX_MSG_LENGTH
)
997 if (len
> ssif_info
->max_xmit_msg_size
)
1000 ssif_info
->retries_left
= SSIF_SEND_RETRIES
;
1001 memcpy(ssif_info
->data
+ 1, data
, len
);
1002 ssif_info
->data_len
= len
;
1003 return start_resend(ssif_info
);
1006 /* Must be called with the message lock held. */
1007 static void start_next_msg(struct ssif_info
*ssif_info
, unsigned long *flags
)
1009 struct ipmi_smi_msg
*msg
;
1010 unsigned long oflags
;
1013 if (!SSIF_IDLE(ssif_info
)) {
1014 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1018 if (!ssif_info
->waiting_msg
) {
1019 ssif_info
->curr_msg
= NULL
;
1020 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1024 ssif_info
->curr_msg
= ssif_info
->waiting_msg
;
1025 ssif_info
->waiting_msg
= NULL
;
1026 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1027 rv
= start_send(ssif_info
,
1028 ssif_info
->curr_msg
->data
,
1029 ssif_info
->curr_msg
->data_size
);
1031 msg
= ssif_info
->curr_msg
;
1032 ssif_info
->curr_msg
= NULL
;
1033 return_hosed_msg(ssif_info
, msg
);
1034 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1040 static void sender(void *send_info
,
1041 struct ipmi_smi_msg
*msg
)
1043 struct ssif_info
*ssif_info
= (struct ssif_info
*) send_info
;
1044 unsigned long oflags
, *flags
;
1046 BUG_ON(ssif_info
->waiting_msg
);
1047 ssif_info
->waiting_msg
= msg
;
1049 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1050 start_next_msg(ssif_info
, flags
);
1052 if (ssif_info
->ssif_debug
& SSIF_DEBUG_TIMING
) {
1053 struct timespec64 t
;
1055 ktime_get_real_ts64(&t
);
1056 pr_info("**Enqueue %02x %02x: %lld.%6.6ld\n",
1057 msg
->data
[0], msg
->data
[1],
1058 (long long) t
.tv_sec
, (long) t
.tv_nsec
/ NSEC_PER_USEC
);
1062 static int get_smi_info(void *send_info
, struct ipmi_smi_info
*data
)
1064 struct ssif_info
*ssif_info
= send_info
;
1066 data
->addr_src
= ssif_info
->addr_source
;
1067 data
->dev
= &ssif_info
->client
->dev
;
1068 data
->addr_info
= ssif_info
->addr_info
;
1069 get_device(data
->dev
);
1075 * Instead of having our own timer to periodically check the message
1076 * flags, we let the message handler drive us.
1078 static void request_events(void *send_info
)
1080 struct ssif_info
*ssif_info
= (struct ssif_info
*) send_info
;
1081 unsigned long oflags
, *flags
;
1083 if (!ssif_info
->has_event_buffer
)
1086 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1088 * Request flags first, not events, because the lower layer
1089 * doesn't have a way to send an attention. But make sure
1090 * event checking still happens.
1092 ssif_info
->req_events
= true;
1093 if (SSIF_IDLE(ssif_info
))
1094 start_flag_fetch(ssif_info
, flags
);
1096 ssif_info
->req_flags
= true;
1097 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1101 static int inc_usecount(void *send_info
)
1103 struct ssif_info
*ssif_info
= send_info
;
1105 if (!i2c_get_adapter(i2c_adapter_id(ssif_info
->client
->adapter
)))
1108 i2c_use_client(ssif_info
->client
);
1112 static void dec_usecount(void *send_info
)
1114 struct ssif_info
*ssif_info
= send_info
;
1116 i2c_release_client(ssif_info
->client
);
1117 i2c_put_adapter(ssif_info
->client
->adapter
);
1120 static int ssif_start_processing(void *send_info
,
1123 struct ssif_info
*ssif_info
= send_info
;
1125 ssif_info
->intf
= intf
;
1130 #define MAX_SSIF_BMCS 4
1132 static unsigned short addr
[MAX_SSIF_BMCS
];
1133 static int num_addrs
;
1134 module_param_array(addr
, ushort
, &num_addrs
, 0);
1135 MODULE_PARM_DESC(addr
, "The addresses to scan for IPMI BMCs on the SSIFs.");
1137 static char *adapter_name
[MAX_SSIF_BMCS
];
1138 static int num_adapter_names
;
1139 module_param_array(adapter_name
, charp
, &num_adapter_names
, 0);
1140 MODULE_PARM_DESC(adapter_name
, "The string name of the I2C device that has the BMC. By default all devices are scanned.");
1142 static int slave_addrs
[MAX_SSIF_BMCS
];
1143 static int num_slave_addrs
;
1144 module_param_array(slave_addrs
, int, &num_slave_addrs
, 0);
1145 MODULE_PARM_DESC(slave_addrs
,
1146 "The default IPMB slave address for the controller.");
1148 static bool alerts_broken
;
1149 module_param(alerts_broken
, bool, 0);
1150 MODULE_PARM_DESC(alerts_broken
, "Don't enable alerts for the controller.");
1153 * Bit 0 enables message debugging, bit 1 enables state debugging, and
1154 * bit 2 enables timing debugging. This is an array indexed by
1157 static int dbg
[MAX_SSIF_BMCS
];
1159 module_param_array(dbg
, int, &num_dbg
, 0);
1160 MODULE_PARM_DESC(dbg
, "Turn on debugging.");
1162 static bool ssif_dbg_probe
;
1163 module_param_named(dbg_probe
, ssif_dbg_probe
, bool, 0);
1164 MODULE_PARM_DESC(dbg_probe
, "Enable debugging of probing of adapters.");
1166 static bool ssif_tryacpi
= true;
1167 module_param_named(tryacpi
, ssif_tryacpi
, bool, 0);
1168 MODULE_PARM_DESC(tryacpi
, "Setting this to zero will disable the default scan of the interfaces identified via ACPI");
1170 static bool ssif_trydmi
= true;
1171 module_param_named(trydmi
, ssif_trydmi
, bool, 0);
1172 MODULE_PARM_DESC(trydmi
, "Setting this to zero will disable the default scan of the interfaces identified via DMI (SMBIOS)");
1174 static DEFINE_MUTEX(ssif_infos_mutex
);
1175 static LIST_HEAD(ssif_infos
);
1177 #define IPMI_SSIF_ATTR(name) \
1178 static ssize_t ipmi_##name##_show(struct device *dev, \
1179 struct device_attribute *attr, \
1182 struct ssif_info *ssif_info = dev_get_drvdata(dev); \
1184 return snprintf(buf, 10, "%u\n", ssif_get_stat(ssif_info, name));\
1186 static DEVICE_ATTR(name, S_IRUGO, ipmi_##name##_show, NULL)
1188 static ssize_t
ipmi_type_show(struct device
*dev
,
1189 struct device_attribute
*attr
,
1192 return snprintf(buf
, 10, "ssif\n");
1194 static DEVICE_ATTR(type
, S_IRUGO
, ipmi_type_show
, NULL
);
1196 IPMI_SSIF_ATTR(sent_messages
);
1197 IPMI_SSIF_ATTR(sent_messages_parts
);
1198 IPMI_SSIF_ATTR(send_retries
);
1199 IPMI_SSIF_ATTR(send_errors
);
1200 IPMI_SSIF_ATTR(received_messages
);
1201 IPMI_SSIF_ATTR(received_message_parts
);
1202 IPMI_SSIF_ATTR(receive_retries
);
1203 IPMI_SSIF_ATTR(receive_errors
);
1204 IPMI_SSIF_ATTR(flag_fetches
);
1205 IPMI_SSIF_ATTR(hosed
);
1206 IPMI_SSIF_ATTR(events
);
1207 IPMI_SSIF_ATTR(watchdog_pretimeouts
);
1208 IPMI_SSIF_ATTR(alerts
);
1210 static struct attribute
*ipmi_ssif_dev_attrs
[] = {
1211 &dev_attr_type
.attr
,
1212 &dev_attr_sent_messages
.attr
,
1213 &dev_attr_sent_messages_parts
.attr
,
1214 &dev_attr_send_retries
.attr
,
1215 &dev_attr_send_errors
.attr
,
1216 &dev_attr_received_messages
.attr
,
1217 &dev_attr_received_message_parts
.attr
,
1218 &dev_attr_receive_retries
.attr
,
1219 &dev_attr_receive_errors
.attr
,
1220 &dev_attr_flag_fetches
.attr
,
1221 &dev_attr_hosed
.attr
,
1222 &dev_attr_events
.attr
,
1223 &dev_attr_watchdog_pretimeouts
.attr
,
1224 &dev_attr_alerts
.attr
,
1228 static const struct attribute_group ipmi_ssif_dev_attr_group
= {
1229 .attrs
= ipmi_ssif_dev_attrs
,
1232 static int ssif_remove(struct i2c_client
*client
)
1234 struct ssif_info
*ssif_info
= i2c_get_clientdata(client
);
1235 struct ssif_addr_info
*addr_info
;
1242 * After this point, we won't deliver anything asychronously
1243 * to the message handler. We can unregister ourself.
1245 rv
= ipmi_unregister_smi(ssif_info
->intf
);
1247 pr_err(PFX
"Unable to unregister device: errno=%d\n", rv
);
1250 ssif_info
->intf
= NULL
;
1252 device_remove_group(&ssif_info
->client
->dev
, &ipmi_ssif_dev_attr_group
);
1253 dev_set_drvdata(&ssif_info
->client
->dev
, NULL
);
1255 /* make sure the driver is not looking for flags any more. */
1256 while (ssif_info
->ssif_state
!= SSIF_NORMAL
)
1257 schedule_timeout(1);
1259 ssif_info
->stopping
= true;
1260 del_timer_sync(&ssif_info
->retry_timer
);
1261 if (ssif_info
->thread
) {
1262 complete(&ssif_info
->wake_thread
);
1263 kthread_stop(ssif_info
->thread
);
1266 list_for_each_entry(addr_info
, &ssif_infos
, link
) {
1267 if (addr_info
->client
== client
) {
1268 addr_info
->client
= NULL
;
1274 * No message can be outstanding now, we have removed the
1275 * upper layer and it permitted us to do so.
1281 static int do_cmd(struct i2c_client
*client
, int len
, unsigned char *msg
,
1282 int *resp_len
, unsigned char *resp
)
1287 retry_cnt
= SSIF_SEND_RETRIES
;
1289 ret
= i2c_smbus_write_block_data(client
, SSIF_IPMI_REQUEST
, len
, msg
);
1298 retry_cnt
= SSIF_RECV_RETRIES
;
1299 while (retry_cnt
> 0) {
1300 ret
= i2c_smbus_read_block_data(client
, SSIF_IPMI_RESPONSE
,
1304 msleep(SSIF_MSG_MSEC
);
1311 /* Validate that the response is correct. */
1313 (resp
[0] != (msg
[0] | (1 << 2))) ||
1314 (resp
[1] != msg
[1]))
1325 static int ssif_detect(struct i2c_client
*client
, struct i2c_board_info
*info
)
1327 unsigned char *resp
;
1328 unsigned char msg
[3];
1332 resp
= kmalloc(IPMI_MAX_MSG_LENGTH
, GFP_KERNEL
);
1336 /* Do a Get Device ID command, since it is required. */
1337 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1338 msg
[1] = IPMI_GET_DEVICE_ID_CMD
;
1339 rv
= do_cmd(client
, 2, msg
, &len
, resp
);
1343 strlcpy(info
->type
, DEVICE_NAME
, I2C_NAME_SIZE
);
1348 #ifdef CONFIG_IPMI_PROC_INTERFACE
1349 static int smi_type_proc_show(struct seq_file
*m
, void *v
)
1351 seq_puts(m
, "ssif\n");
1356 static int smi_type_proc_open(struct inode
*inode
, struct file
*file
)
1358 return single_open(file
, smi_type_proc_show
, inode
->i_private
);
1361 static const struct file_operations smi_type_proc_ops
= {
1362 .open
= smi_type_proc_open
,
1364 .llseek
= seq_lseek
,
1365 .release
= single_release
,
1368 static int smi_stats_proc_show(struct seq_file
*m
, void *v
)
1370 struct ssif_info
*ssif_info
= m
->private;
1372 seq_printf(m
, "sent_messages: %u\n",
1373 ssif_get_stat(ssif_info
, sent_messages
));
1374 seq_printf(m
, "sent_messages_parts: %u\n",
1375 ssif_get_stat(ssif_info
, sent_messages_parts
));
1376 seq_printf(m
, "send_retries: %u\n",
1377 ssif_get_stat(ssif_info
, send_retries
));
1378 seq_printf(m
, "send_errors: %u\n",
1379 ssif_get_stat(ssif_info
, send_errors
));
1380 seq_printf(m
, "received_messages: %u\n",
1381 ssif_get_stat(ssif_info
, received_messages
));
1382 seq_printf(m
, "received_message_parts: %u\n",
1383 ssif_get_stat(ssif_info
, received_message_parts
));
1384 seq_printf(m
, "receive_retries: %u\n",
1385 ssif_get_stat(ssif_info
, receive_retries
));
1386 seq_printf(m
, "receive_errors: %u\n",
1387 ssif_get_stat(ssif_info
, receive_errors
));
1388 seq_printf(m
, "flag_fetches: %u\n",
1389 ssif_get_stat(ssif_info
, flag_fetches
));
1390 seq_printf(m
, "hosed: %u\n",
1391 ssif_get_stat(ssif_info
, hosed
));
1392 seq_printf(m
, "events: %u\n",
1393 ssif_get_stat(ssif_info
, events
));
1394 seq_printf(m
, "watchdog_pretimeouts: %u\n",
1395 ssif_get_stat(ssif_info
, watchdog_pretimeouts
));
1396 seq_printf(m
, "alerts: %u\n",
1397 ssif_get_stat(ssif_info
, alerts
));
1401 static int smi_stats_proc_open(struct inode
*inode
, struct file
*file
)
1403 return single_open(file
, smi_stats_proc_show
, PDE_DATA(inode
));
1406 static const struct file_operations smi_stats_proc_ops
= {
1407 .open
= smi_stats_proc_open
,
1409 .llseek
= seq_lseek
,
1410 .release
= single_release
,
1414 static int strcmp_nospace(char *s1
, char *s2
)
1416 while (*s1
&& *s2
) {
1417 while (isspace(*s1
))
1419 while (isspace(*s2
))
1431 static struct ssif_addr_info
*ssif_info_find(unsigned short addr
,
1433 bool match_null_name
)
1435 struct ssif_addr_info
*info
, *found
= NULL
;
1438 list_for_each_entry(info
, &ssif_infos
, link
) {
1439 if (info
->binfo
.addr
== addr
) {
1440 if (info
->adapter_name
|| adapter_name
) {
1441 if (!info
->adapter_name
!= !adapter_name
) {
1442 /* One is NULL and one is not */
1446 strcmp_nospace(info
->adapter_name
,
1448 /* Names do not match */
1456 if (!found
&& match_null_name
) {
1457 /* Try to get an exact match first, then try with a NULL name */
1458 adapter_name
= NULL
;
1459 match_null_name
= false;
1466 static bool check_acpi(struct ssif_info
*ssif_info
, struct device
*dev
)
1469 acpi_handle acpi_handle
;
1471 acpi_handle
= ACPI_HANDLE(dev
);
1473 ssif_info
->addr_source
= SI_ACPI
;
1474 ssif_info
->addr_info
.acpi_info
.acpi_handle
= acpi_handle
;
1481 static int find_slave_address(struct i2c_client
*client
, int slave_addr
)
1483 #ifdef CONFIG_IPMI_DMI_DECODE
1485 slave_addr
= ipmi_dmi_get_slave_addr(
1487 i2c_adapter_id(client
->adapter
),
1495 * Global enables we care about.
1497 #define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
1498 IPMI_BMC_EVT_MSG_INTR)
1500 static int ssif_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
1502 unsigned char msg
[3];
1503 unsigned char *resp
;
1504 struct ssif_info
*ssif_info
;
1509 struct ssif_addr_info
*addr_info
= NULL
;
1511 resp
= kmalloc(IPMI_MAX_MSG_LENGTH
, GFP_KERNEL
);
1515 ssif_info
= kzalloc(sizeof(*ssif_info
), GFP_KERNEL
);
1521 if (!check_acpi(ssif_info
, &client
->dev
)) {
1522 addr_info
= ssif_info_find(client
->addr
, client
->adapter
->name
,
1525 /* Must have come in through sysfs. */
1526 ssif_info
->addr_source
= SI_HOTMOD
;
1528 ssif_info
->addr_source
= addr_info
->addr_src
;
1529 ssif_info
->ssif_debug
= addr_info
->debug
;
1530 ssif_info
->addr_info
= addr_info
->addr_info
;
1531 addr_info
->client
= client
;
1532 slave_addr
= addr_info
->slave_addr
;
1536 slave_addr
= find_slave_address(client
, slave_addr
);
1538 pr_info(PFX
"Trying %s-specified SSIF interface at i2c address 0x%x, adapter %s, slave address 0x%x\n",
1539 ipmi_addr_src_to_str(ssif_info
->addr_source
),
1540 client
->addr
, client
->adapter
->name
, slave_addr
);
1542 ssif_info
->client
= client
;
1543 i2c_set_clientdata(client
, ssif_info
);
1545 /* Now check for system interface capabilities */
1546 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1547 msg
[1] = IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_CMD
;
1548 msg
[2] = 0; /* SSIF */
1549 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1550 if (!rv
&& (len
>= 3) && (resp
[2] == 0)) {
1553 pr_info(PFX
"SSIF info too short: %d\n", len
);
1557 /* Got a good SSIF response, handle it. */
1558 ssif_info
->max_xmit_msg_size
= resp
[5];
1559 ssif_info
->max_recv_msg_size
= resp
[6];
1560 ssif_info
->multi_support
= (resp
[4] >> 6) & 0x3;
1561 ssif_info
->supports_pec
= (resp
[4] >> 3) & 0x1;
1563 /* Sanitize the data */
1564 switch (ssif_info
->multi_support
) {
1566 if (ssif_info
->max_xmit_msg_size
> 32)
1567 ssif_info
->max_xmit_msg_size
= 32;
1568 if (ssif_info
->max_recv_msg_size
> 32)
1569 ssif_info
->max_recv_msg_size
= 32;
1572 case SSIF_MULTI_2_PART
:
1573 if (ssif_info
->max_xmit_msg_size
> 63)
1574 ssif_info
->max_xmit_msg_size
= 63;
1575 if (ssif_info
->max_recv_msg_size
> 62)
1576 ssif_info
->max_recv_msg_size
= 62;
1579 case SSIF_MULTI_n_PART
:
1581 * The specification is rather confusing at
1582 * this point, but I think I understand what
1583 * is meant. At least I have a workable
1584 * solution. With multi-part messages, you
1585 * cannot send a message that is a multiple of
1586 * 32-bytes in length, because the start and
1587 * middle messages are 32-bytes and the end
1588 * message must be at least one byte. You
1589 * can't fudge on an extra byte, that would
1590 * screw up things like fru data writes. So
1591 * we limit the length to 63 bytes. That way
1592 * a 32-byte message gets sent as a single
1593 * part. A larger message will be a 32-byte
1594 * start and the next message is always going
1595 * to be 1-31 bytes in length. Not ideal, but
1598 if (ssif_info
->max_xmit_msg_size
> 63)
1599 ssif_info
->max_xmit_msg_size
= 63;
1603 /* Data is not sane, just give up. */
1608 /* Assume no multi-part or PEC support */
1609 pr_info(PFX
"Error fetching SSIF: %d %d %2.2x, your system probably doesn't support this command so using defaults\n",
1612 ssif_info
->max_xmit_msg_size
= 32;
1613 ssif_info
->max_recv_msg_size
= 32;
1614 ssif_info
->multi_support
= SSIF_NO_MULTI
;
1615 ssif_info
->supports_pec
= 0;
1618 /* Make sure the NMI timeout is cleared. */
1619 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1620 msg
[1] = IPMI_CLEAR_MSG_FLAGS_CMD
;
1621 msg
[2] = WDT_PRE_TIMEOUT_INT
;
1622 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1623 if (rv
|| (len
< 3) || (resp
[2] != 0))
1624 pr_warn(PFX
"Unable to clear message flags: %d %d %2.2x\n",
1627 /* Attempt to enable the event buffer. */
1628 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1629 msg
[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD
;
1630 rv
= do_cmd(client
, 2, msg
, &len
, resp
);
1631 if (rv
|| (len
< 4) || (resp
[2] != 0)) {
1632 pr_warn(PFX
"Error getting global enables: %d %d %2.2x\n",
1634 rv
= 0; /* Not fatal */
1638 ssif_info
->global_enables
= resp
[3];
1640 if (resp
[3] & IPMI_BMC_EVT_MSG_BUFF
) {
1641 ssif_info
->has_event_buffer
= true;
1642 /* buffer is already enabled, nothing to do. */
1646 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1647 msg
[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD
;
1648 msg
[2] = ssif_info
->global_enables
| IPMI_BMC_EVT_MSG_BUFF
;
1649 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1650 if (rv
|| (len
< 2)) {
1651 pr_warn(PFX
"Error setting global enables: %d %d %2.2x\n",
1653 rv
= 0; /* Not fatal */
1658 /* A successful return means the event buffer is supported. */
1659 ssif_info
->has_event_buffer
= true;
1660 ssif_info
->global_enables
|= IPMI_BMC_EVT_MSG_BUFF
;
1663 /* Some systems don't behave well if you enable alerts. */
1667 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1668 msg
[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD
;
1669 msg
[2] = ssif_info
->global_enables
| IPMI_BMC_RCV_MSG_INTR
;
1670 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1671 if (rv
|| (len
< 2)) {
1672 pr_warn(PFX
"Error setting global enables: %d %d %2.2x\n",
1674 rv
= 0; /* Not fatal */
1679 /* A successful return means the alert is supported. */
1680 ssif_info
->supports_alert
= true;
1681 ssif_info
->global_enables
|= IPMI_BMC_RCV_MSG_INTR
;
1685 ssif_info
->intf_num
= atomic_inc_return(&next_intf
);
1687 if (ssif_dbg_probe
) {
1688 pr_info("ssif_probe: i2c_probe found device at i2c address %x\n",
1692 spin_lock_init(&ssif_info
->lock
);
1693 ssif_info
->ssif_state
= SSIF_NORMAL
;
1694 timer_setup(&ssif_info
->retry_timer
, retry_timeout
, 0);
1696 for (i
= 0; i
< SSIF_NUM_STATS
; i
++)
1697 atomic_set(&ssif_info
->stats
[i
], 0);
1699 if (ssif_info
->supports_pec
)
1700 ssif_info
->client
->flags
|= I2C_CLIENT_PEC
;
1702 ssif_info
->handlers
.owner
= THIS_MODULE
;
1703 ssif_info
->handlers
.start_processing
= ssif_start_processing
;
1704 ssif_info
->handlers
.get_smi_info
= get_smi_info
;
1705 ssif_info
->handlers
.sender
= sender
;
1706 ssif_info
->handlers
.request_events
= request_events
;
1707 ssif_info
->handlers
.inc_usecount
= inc_usecount
;
1708 ssif_info
->handlers
.dec_usecount
= dec_usecount
;
1711 unsigned int thread_num
;
1713 thread_num
= ((i2c_adapter_id(ssif_info
->client
->adapter
)
1715 ssif_info
->client
->addr
);
1716 init_completion(&ssif_info
->wake_thread
);
1717 ssif_info
->thread
= kthread_run(ipmi_ssif_thread
, ssif_info
,
1718 "kssif%4.4x", thread_num
);
1719 if (IS_ERR(ssif_info
->thread
)) {
1720 rv
= PTR_ERR(ssif_info
->thread
);
1721 dev_notice(&ssif_info
->client
->dev
,
1722 "Could not start kernel thread: error %d\n",
1728 dev_set_drvdata(&ssif_info
->client
->dev
, ssif_info
);
1729 rv
= device_add_group(&ssif_info
->client
->dev
,
1730 &ipmi_ssif_dev_attr_group
);
1732 dev_err(&ssif_info
->client
->dev
,
1733 "Unable to add device attributes: error %d\n",
1738 rv
= ipmi_register_smi(&ssif_info
->handlers
,
1740 &ssif_info
->client
->dev
,
1743 pr_err(PFX
"Unable to register device: error %d\n", rv
);
1744 goto out_remove_attr
;
1747 #ifdef CONFIG_IPMI_PROC_INTERFACE
1748 rv
= ipmi_smi_add_proc_entry(ssif_info
->intf
, "type",
1752 pr_err(PFX
"Unable to create proc entry: %d\n", rv
);
1756 rv
= ipmi_smi_add_proc_entry(ssif_info
->intf
, "ssif_stats",
1757 &smi_stats_proc_ops
,
1760 pr_err(PFX
"Unable to create proc entry: %d\n", rv
);
1768 * Note that if addr_info->client is assigned, we
1769 * leave it. The i2c client hangs around even if we
1770 * return a failure here, and the failure here is not
1771 * propagated back to the i2c code. This seems to be
1772 * design intent, strange as it may be. But if we
1773 * don't leave it, ssif_platform_remove will not remove
1774 * the client like it should.
1776 dev_err(&client
->dev
, "Unable to start IPMI SSIF: %d\n", rv
);
1782 #ifdef CONFIG_IPMI_PROC_INTERFACE
1784 ipmi_unregister_smi(ssif_info
->intf
);
1788 device_remove_group(&ssif_info
->client
->dev
, &ipmi_ssif_dev_attr_group
);
1789 dev_set_drvdata(&ssif_info
->client
->dev
, NULL
);
1793 static int ssif_adapter_handler(struct device
*adev
, void *opaque
)
1795 struct ssif_addr_info
*addr_info
= opaque
;
1797 if (adev
->type
!= &i2c_adapter_type
)
1800 i2c_new_device(to_i2c_adapter(adev
), &addr_info
->binfo
);
1802 if (!addr_info
->adapter_name
)
1803 return 1; /* Only try the first I2C adapter by default. */
1807 static int new_ssif_client(int addr
, char *adapter_name
,
1808 int debug
, int slave_addr
,
1809 enum ipmi_addr_src addr_src
,
1812 struct ssif_addr_info
*addr_info
;
1815 mutex_lock(&ssif_infos_mutex
);
1816 if (ssif_info_find(addr
, adapter_name
, false)) {
1821 addr_info
= kzalloc(sizeof(*addr_info
), GFP_KERNEL
);
1828 addr_info
->adapter_name
= kstrdup(adapter_name
, GFP_KERNEL
);
1829 if (!addr_info
->adapter_name
) {
1836 strncpy(addr_info
->binfo
.type
, DEVICE_NAME
,
1837 sizeof(addr_info
->binfo
.type
));
1838 addr_info
->binfo
.addr
= addr
;
1839 addr_info
->binfo
.platform_data
= addr_info
;
1840 addr_info
->debug
= debug
;
1841 addr_info
->slave_addr
= slave_addr
;
1842 addr_info
->addr_src
= addr_src
;
1843 addr_info
->dev
= dev
;
1846 dev_set_drvdata(dev
, addr_info
);
1848 list_add_tail(&addr_info
->link
, &ssif_infos
);
1851 i2c_for_each_dev(addr_info
, ssif_adapter_handler
);
1852 /* Otherwise address list will get it */
1855 mutex_unlock(&ssif_infos_mutex
);
1859 static void free_ssif_clients(void)
1861 struct ssif_addr_info
*info
, *tmp
;
1863 mutex_lock(&ssif_infos_mutex
);
1864 list_for_each_entry_safe(info
, tmp
, &ssif_infos
, link
) {
1865 list_del(&info
->link
);
1866 kfree(info
->adapter_name
);
1869 mutex_unlock(&ssif_infos_mutex
);
1872 static unsigned short *ssif_address_list(void)
1874 struct ssif_addr_info
*info
;
1875 unsigned int count
= 0, i
;
1876 unsigned short *address_list
;
1878 list_for_each_entry(info
, &ssif_infos
, link
)
1881 address_list
= kzalloc(sizeof(*address_list
) * (count
+ 1), GFP_KERNEL
);
1886 list_for_each_entry(info
, &ssif_infos
, link
) {
1887 unsigned short addr
= info
->binfo
.addr
;
1890 for (j
= 0; j
< i
; j
++) {
1891 if (address_list
[j
] == addr
)
1894 address_list
[i
] = addr
;
1898 address_list
[i
] = I2C_CLIENT_END
;
1900 return address_list
;
1904 static const struct acpi_device_id ssif_acpi_match
[] = {
1908 MODULE_DEVICE_TABLE(acpi
, ssif_acpi_match
);
1911 * Once we get an ACPI failure, we don't try any more, because we go
1912 * through the tables sequentially. Once we don't find a table, there
1915 static int acpi_failure
;
1918 * Defined in the IPMI 2.0 spec.
1929 s8 CreatorRevision
[4];
1932 s16 SpecificationRevision
;
1935 * Bit 0 - SCI interrupt supported
1936 * Bit 1 - I/O APIC/SAPIC
1941 * If bit 0 of InterruptType is set, then this is the SCI
1942 * interrupt in the GPEx_STS register.
1949 * If bit 1 of InterruptType is set, then this is the I/O
1950 * APIC/SAPIC interrupt.
1952 u32 GlobalSystemInterrupt
;
1954 /* The actual register address. */
1955 struct acpi_generic_address addr
;
1959 s8 spmi_id
[1]; /* A '\0' terminated array starts here. */
1962 static int try_init_spmi(struct SPMITable
*spmi
)
1964 unsigned short myaddr
;
1966 if (num_addrs
>= MAX_SSIF_BMCS
)
1969 if (spmi
->IPMIlegacy
!= 1) {
1970 pr_warn("IPMI: Bad SPMI legacy: %d\n", spmi
->IPMIlegacy
);
1974 if (spmi
->InterfaceType
!= 4)
1977 if (spmi
->addr
.space_id
!= ACPI_ADR_SPACE_SMBUS
) {
1978 pr_warn(PFX
"Invalid ACPI SSIF I/O Address type: %d\n",
1979 spmi
->addr
.space_id
);
1983 myaddr
= spmi
->addr
.address
& 0x7f;
1985 return new_ssif_client(myaddr
, NULL
, 0, 0, SI_SPMI
, NULL
);
1988 static void spmi_find_bmc(void)
1991 struct SPMITable
*spmi
;
2000 for (i
= 0; ; i
++) {
2001 status
= acpi_get_table(ACPI_SIG_SPMI
, i
+1,
2002 (struct acpi_table_header
**)&spmi
);
2003 if (status
!= AE_OK
)
2006 try_init_spmi(spmi
);
2010 static void spmi_find_bmc(void) { }
2014 static int dmi_ipmi_probe(struct platform_device
*pdev
)
2023 rv
= device_property_read_u16(&pdev
->dev
, "i2c-addr", &i2c_addr
);
2025 dev_warn(&pdev
->dev
, PFX
"No i2c-addr property\n");
2029 rv
= device_property_read_u8(&pdev
->dev
, "slave-addr", &slave_addr
);
2031 dev_warn(&pdev
->dev
, "device has no slave-addr property");
2033 return new_ssif_client(i2c_addr
, NULL
, 0,
2034 slave_addr
, SI_SMBIOS
, &pdev
->dev
);
2037 static int dmi_ipmi_probe(struct platform_device
*pdev
)
2043 static const struct i2c_device_id ssif_id
[] = {
2047 MODULE_DEVICE_TABLE(i2c
, ssif_id
);
2049 static struct i2c_driver ssif_i2c_driver
= {
2050 .class = I2C_CLASS_HWMON
,
2054 .probe
= ssif_probe
,
2055 .remove
= ssif_remove
,
2056 .alert
= ssif_alert
,
2057 .id_table
= ssif_id
,
2058 .detect
= ssif_detect
2061 static int ssif_platform_probe(struct platform_device
*dev
)
2063 return dmi_ipmi_probe(dev
);
2066 static int ssif_platform_remove(struct platform_device
*dev
)
2068 struct ssif_addr_info
*addr_info
= dev_get_drvdata(&dev
->dev
);
2073 mutex_lock(&ssif_infos_mutex
);
2074 i2c_unregister_device(addr_info
->client
);
2076 list_del(&addr_info
->link
);
2078 mutex_unlock(&ssif_infos_mutex
);
2082 static struct platform_driver ipmi_driver
= {
2084 .name
= DEVICE_NAME
,
2086 .probe
= ssif_platform_probe
,
2087 .remove
= ssif_platform_remove
,
2090 static int init_ipmi_ssif(void)
2098 pr_info("IPMI SSIF Interface driver\n");
2100 /* build list for i2c from addr list */
2101 for (i
= 0; i
< num_addrs
; i
++) {
2102 rv
= new_ssif_client(addr
[i
], adapter_name
[i
],
2103 dbg
[i
], slave_addrs
[i
],
2104 SI_HARDCODED
, NULL
);
2107 "Couldn't add hardcoded device at addr 0x%x\n",
2112 ssif_i2c_driver
.driver
.acpi_match_table
=
2113 ACPI_PTR(ssif_acpi_match
);
2119 rv
= platform_driver_register(&ipmi_driver
);
2121 pr_err(PFX
"Unable to register driver: %d\n", rv
);
2124 ssif_i2c_driver
.address_list
= ssif_address_list();
2126 rv
= i2c_add_driver(&ssif_i2c_driver
);
2132 module_init(init_ipmi_ssif
);
2134 static void cleanup_ipmi_ssif(void)
2139 initialized
= false;
2141 i2c_del_driver(&ssif_i2c_driver
);
2143 platform_driver_unregister(&ipmi_driver
);
2145 free_ssif_clients();
2147 module_exit(cleanup_ipmi_ssif
);
2149 MODULE_ALIAS("platform:dmi-ipmi-ssif");
2150 MODULE_AUTHOR("Todd C Davis <todd.c.davis@intel.com>, Corey Minyard <minyard@acm.org>");
2151 MODULE_DESCRIPTION("IPMI driver for management controllers on a SMBus");
2152 MODULE_LICENSE("GPL");