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>
57 #define PFX "ipmi_ssif: "
58 #define DEVICE_NAME "ipmi_ssif"
60 #define IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_CMD 0x57
62 #define SSIF_IPMI_REQUEST 2
63 #define SSIF_IPMI_MULTI_PART_REQUEST_START 6
64 #define SSIF_IPMI_MULTI_PART_REQUEST_MIDDLE 7
65 #define SSIF_IPMI_RESPONSE 3
66 #define SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE 9
68 /* ssif_debug is a bit-field
69 * SSIF_DEBUG_MSG - commands and their responses
70 * SSIF_DEBUG_STATES - message states
71 * SSIF_DEBUG_TIMING - Measure times between events in the driver
73 #define SSIF_DEBUG_TIMING 4
74 #define SSIF_DEBUG_STATE 2
75 #define SSIF_DEBUG_MSG 1
76 #define SSIF_NODEBUG 0
77 #define SSIF_DEFAULT_DEBUG (SSIF_NODEBUG)
82 #define SSIF_MSG_USEC 20000 /* 20ms between message tries. */
83 #define SSIF_MSG_PART_USEC 5000 /* 5ms for a message part */
85 /* How many times to we retry sending/receiving the message. */
86 #define SSIF_SEND_RETRIES 5
87 #define SSIF_RECV_RETRIES 250
89 #define SSIF_MSG_MSEC (SSIF_MSG_USEC / 1000)
90 #define SSIF_MSG_JIFFIES ((SSIF_MSG_USEC * 1000) / TICK_NSEC)
91 #define SSIF_MSG_PART_JIFFIES ((SSIF_MSG_PART_USEC * 1000) / TICK_NSEC)
93 enum ssif_intf_state
{
98 SSIF_GETTING_MESSAGES
,
99 /* FIXME - add watchdog stuff. */
102 #define SSIF_IDLE(ssif) ((ssif)->ssif_state == SSIF_NORMAL \
103 && (ssif)->curr_msg == NULL)
106 * Indexes into stats[] in ssif_info below.
108 enum ssif_stat_indexes
{
109 /* Number of total messages sent. */
110 SSIF_STAT_sent_messages
= 0,
113 * Number of message parts sent. Messages may be broken into
114 * parts if they are long.
116 SSIF_STAT_sent_messages_parts
,
119 * Number of time a message was retried.
121 SSIF_STAT_send_retries
,
124 * Number of times the send of a message failed.
126 SSIF_STAT_send_errors
,
129 * Number of message responses received.
131 SSIF_STAT_received_messages
,
134 * Number of message fragments received.
136 SSIF_STAT_received_message_parts
,
139 * Number of times the receive of a message was retried.
141 SSIF_STAT_receive_retries
,
144 * Number of errors receiving messages.
146 SSIF_STAT_receive_errors
,
149 * Number of times a flag fetch was requested.
151 SSIF_STAT_flag_fetches
,
154 * Number of times the hardware didn't follow the state machine.
159 * Number of received events.
163 /* Number of asyncronous messages received. */
164 SSIF_STAT_incoming_messages
,
166 /* Number of watchdog pretimeouts. */
167 SSIF_STAT_watchdog_pretimeouts
,
169 /* Number of alers received. */
172 /* Always add statistics before this value, it must be last. */
176 struct ssif_addr_info
{
178 struct i2c_board_info binfo
;
182 enum ipmi_addr_src addr_src
;
183 union ipmi_smi_info_union addr_info
;
185 struct mutex clients_mutex
;
186 struct list_head clients
;
188 struct list_head link
;
193 typedef void (*ssif_i2c_done
)(struct ssif_info
*ssif_info
, int result
,
194 unsigned char *data
, unsigned int len
);
200 struct ipmi_smi_msg
*waiting_msg
;
201 struct ipmi_smi_msg
*curr_msg
;
202 enum ssif_intf_state ssif_state
;
203 unsigned long ssif_debug
;
205 struct ipmi_smi_handlers handlers
;
207 enum ipmi_addr_src addr_source
; /* ACPI, PCI, SMBIOS, hardcode, etc. */
208 union ipmi_smi_info_union addr_info
;
211 * Flags from the last GET_MSG_FLAGS command, used when an ATTN
212 * is set to hold the flags until we are done handling everything
215 #define RECEIVE_MSG_AVAIL 0x01
216 #define EVENT_MSG_BUFFER_FULL 0x02
217 #define WDT_PRE_TIMEOUT_INT 0x08
218 unsigned char msg_flags
;
221 bool has_event_buffer
;
225 * Used to tell what we should do with alerts. If we are
226 * waiting on a response, read the data immediately.
232 * If set to true, this will request events the next time the
233 * state machine is idle.
238 * If set to true, this will request flags the next time the
239 * state machine is idle.
244 * Used to perform timer operations when run-to-completion
245 * mode is on. This is a countdown timer.
249 /* Used for sending/receiving data. +1 for the length. */
250 unsigned char data
[IPMI_MAX_MSG_LENGTH
+ 1];
251 unsigned int data_len
;
253 /* Temp receive buffer, gets copied into data. */
254 unsigned char recv
[I2C_SMBUS_BLOCK_MAX
];
256 struct i2c_client
*client
;
257 ssif_i2c_done done_handler
;
259 /* Thread interface handling */
260 struct task_struct
*thread
;
261 struct completion wake_thread
;
265 unsigned char *i2c_data
;
266 unsigned int i2c_size
;
268 /* From the device id response. */
269 struct ipmi_device_id device_id
;
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(unsigned long data
)
556 struct ssif_info
*ssif_info
= (void *) data
;
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 if (!ssif_info
->stopping
)
621 mod_timer(&ssif_info
->retry_timer
,
622 jiffies
+ SSIF_MSG_JIFFIES
);
623 ipmi_ssif_unlock_cond(ssif_info
, flags
);
627 ssif_inc_stat(ssif_info
, receive_errors
);
629 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
630 pr_info("Error in msg_done_handler: %d\n", result
);
635 if ((len
> 1) && (ssif_info
->multi_pos
== 0)
636 && (data
[0] == 0x00) && (data
[1] == 0x01)) {
637 /* Start of multi-part read. Start the next transaction. */
640 ssif_inc_stat(ssif_info
, received_message_parts
);
642 /* Remove the multi-part read marker. */
644 for (i
= 0; i
< len
; i
++)
645 ssif_info
->data
[i
] = data
[i
+2];
646 ssif_info
->multi_len
= len
;
647 ssif_info
->multi_pos
= 1;
649 rv
= ssif_i2c_send(ssif_info
, msg_done_handler
, I2C_SMBUS_READ
,
650 SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE
,
651 ssif_info
->recv
, I2C_SMBUS_BLOCK_DATA
);
653 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
654 pr_info("Error from i2c_non_blocking_op(1)\n");
659 } else if (ssif_info
->multi_pos
) {
660 /* Middle of multi-part read. Start the next transaction. */
662 unsigned char blocknum
;
666 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
667 pr_info(PFX
"Middle message with no data\n");
674 if (ssif_info
->multi_len
+ len
- 1 > IPMI_MAX_MSG_LENGTH
) {
675 /* Received message too big, abort the operation. */
677 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
678 pr_info("Received message too big\n");
683 /* Remove the blocknum from the data. */
685 for (i
= 0; i
< len
; i
++)
686 ssif_info
->data
[i
+ ssif_info
->multi_len
] = data
[i
+ 1];
687 ssif_info
->multi_len
+= len
;
688 if (blocknum
== 0xff) {
690 len
= ssif_info
->multi_len
;
691 data
= ssif_info
->data
;
692 } else if (blocknum
+ 1 != ssif_info
->multi_pos
) {
694 * Out of sequence block, just abort. Block
695 * numbers start at zero for the second block,
696 * but multi_pos starts at one, so the +1.
700 ssif_inc_stat(ssif_info
, received_message_parts
);
702 ssif_info
->multi_pos
++;
704 rv
= ssif_i2c_send(ssif_info
, msg_done_handler
,
706 SSIF_IPMI_MULTI_PART_RESPONSE_MIDDLE
,
708 I2C_SMBUS_BLOCK_DATA
);
710 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
712 "Error from ssif_i2c_send\n");
721 ssif_inc_stat(ssif_info
, receive_errors
);
723 ssif_inc_stat(ssif_info
, received_messages
);
724 ssif_inc_stat(ssif_info
, received_message_parts
);
729 if (ssif_info
->ssif_debug
& SSIF_DEBUG_STATE
)
730 pr_info(PFX
"DONE 1: state = %d, result=%d.\n",
731 ssif_info
->ssif_state
, result
);
733 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
734 msg
= ssif_info
->curr_msg
;
737 if (msg
->rsp_size
> IPMI_MAX_MSG_LENGTH
)
738 msg
->rsp_size
= IPMI_MAX_MSG_LENGTH
;
739 memcpy(msg
->rsp
, data
, msg
->rsp_size
);
740 ssif_info
->curr_msg
= NULL
;
743 switch (ssif_info
->ssif_state
) {
745 ipmi_ssif_unlock_cond(ssif_info
, flags
);
750 return_hosed_msg(ssif_info
, msg
);
752 deliver_recv_msg(ssif_info
, msg
);
755 case SSIF_GETTING_FLAGS
:
756 /* We got the flags from the SSIF, now handle them. */
757 if ((result
< 0) || (len
< 4) || (data
[2] != 0)) {
759 * Error fetching flags, or invalid length,
760 * just give up for now.
762 ssif_info
->ssif_state
= SSIF_NORMAL
;
763 ipmi_ssif_unlock_cond(ssif_info
, flags
);
764 pr_warn(PFX
"Error getting flags: %d %d, %x\n",
765 result
, len
, (len
>= 3) ? data
[2] : 0);
766 } else if (data
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
767 || data
[1] != IPMI_GET_MSG_FLAGS_CMD
) {
769 * Don't abort here, maybe it was a queued
770 * response to a previous command.
772 ipmi_ssif_unlock_cond(ssif_info
, flags
);
773 pr_warn(PFX
"Invalid response getting flags: %x %x\n",
776 ssif_inc_stat(ssif_info
, flag_fetches
);
777 ssif_info
->msg_flags
= data
[3];
778 handle_flags(ssif_info
, flags
);
782 case SSIF_CLEARING_FLAGS
:
783 /* We cleared the flags. */
784 if ((result
< 0) || (len
< 3) || (data
[2] != 0)) {
785 /* Error clearing flags */
786 pr_warn(PFX
"Error clearing flags: %d %d, %x\n",
787 result
, len
, (len
>= 3) ? data
[2] : 0);
788 } else if (data
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
789 || data
[1] != IPMI_CLEAR_MSG_FLAGS_CMD
) {
790 pr_warn(PFX
"Invalid response clearing flags: %x %x\n",
793 ssif_info
->ssif_state
= SSIF_NORMAL
;
794 ipmi_ssif_unlock_cond(ssif_info
, flags
);
797 case SSIF_GETTING_EVENTS
:
798 if ((result
< 0) || (len
< 3) || (msg
->rsp
[2] != 0)) {
799 /* Error getting event, probably done. */
802 /* Take off the event flag. */
803 ssif_info
->msg_flags
&= ~EVENT_MSG_BUFFER_FULL
;
804 handle_flags(ssif_info
, flags
);
805 } else if (msg
->rsp
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
806 || msg
->rsp
[1] != IPMI_READ_EVENT_MSG_BUFFER_CMD
) {
807 pr_warn(PFX
"Invalid response getting events: %x %x\n",
808 msg
->rsp
[0], msg
->rsp
[1]);
810 /* Take off the event flag. */
811 ssif_info
->msg_flags
&= ~EVENT_MSG_BUFFER_FULL
;
812 handle_flags(ssif_info
, flags
);
814 handle_flags(ssif_info
, flags
);
815 ssif_inc_stat(ssif_info
, events
);
816 deliver_recv_msg(ssif_info
, msg
);
820 case SSIF_GETTING_MESSAGES
:
821 if ((result
< 0) || (len
< 3) || (msg
->rsp
[2] != 0)) {
822 /* Error getting event, probably done. */
825 /* Take off the msg flag. */
826 ssif_info
->msg_flags
&= ~RECEIVE_MSG_AVAIL
;
827 handle_flags(ssif_info
, flags
);
828 } else if (msg
->rsp
[0] != (IPMI_NETFN_APP_REQUEST
| 1) << 2
829 || msg
->rsp
[1] != IPMI_GET_MSG_CMD
) {
830 pr_warn(PFX
"Invalid response clearing flags: %x %x\n",
831 msg
->rsp
[0], msg
->rsp
[1]);
834 /* Take off the msg flag. */
835 ssif_info
->msg_flags
&= ~RECEIVE_MSG_AVAIL
;
836 handle_flags(ssif_info
, flags
);
838 ssif_inc_stat(ssif_info
, incoming_messages
);
839 handle_flags(ssif_info
, flags
);
840 deliver_recv_msg(ssif_info
, msg
);
845 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
846 if (SSIF_IDLE(ssif_info
) && !ssif_info
->stopping
) {
847 if (ssif_info
->req_events
)
848 start_event_fetch(ssif_info
, flags
);
849 else if (ssif_info
->req_flags
)
850 start_flag_fetch(ssif_info
, flags
);
852 start_next_msg(ssif_info
, flags
);
854 ipmi_ssif_unlock_cond(ssif_info
, flags
);
856 if (ssif_info
->ssif_debug
& SSIF_DEBUG_STATE
)
857 pr_info(PFX
"DONE 2: state = %d.\n", ssif_info
->ssif_state
);
860 static void msg_written_handler(struct ssif_info
*ssif_info
, int result
,
861 unsigned char *data
, unsigned int len
)
865 /* We are single-threaded here, so no need for a lock. */
867 ssif_info
->retries_left
--;
868 if (ssif_info
->retries_left
> 0) {
869 if (!start_resend(ssif_info
)) {
870 ssif_inc_stat(ssif_info
, send_retries
);
873 /* request failed, just return the error. */
874 ssif_inc_stat(ssif_info
, send_errors
);
876 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
878 "Out of retries in msg_written_handler\n");
879 msg_done_handler(ssif_info
, -EIO
, NULL
, 0);
883 ssif_inc_stat(ssif_info
, send_errors
);
886 * Got an error on transmit, let the done routine
889 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
890 pr_info("Error in msg_written_handler: %d\n", result
);
892 msg_done_handler(ssif_info
, result
, NULL
, 0);
896 if (ssif_info
->multi_data
) {
898 * In the middle of a multi-data write. See the comment
899 * in the SSIF_MULTI_n_PART case in the probe function
900 * for details on the intricacies of this.
903 unsigned char *data_to_send
;
905 ssif_inc_stat(ssif_info
, sent_messages_parts
);
907 left
= ssif_info
->multi_len
- ssif_info
->multi_pos
;
911 ssif_info
->multi_data
[ssif_info
->multi_pos
] = left
;
912 data_to_send
= ssif_info
->multi_data
+ ssif_info
->multi_pos
;
913 ssif_info
->multi_pos
+= left
;
916 * Write is finished. Note that we must end
917 * with a write of less than 32 bytes to
918 * complete the transaction, even if it is
921 ssif_info
->multi_data
= NULL
;
923 rv
= ssif_i2c_send(ssif_info
, msg_written_handler
,
925 SSIF_IPMI_MULTI_PART_REQUEST_MIDDLE
,
927 I2C_SMBUS_BLOCK_DATA
);
929 /* request failed, just return the error. */
930 ssif_inc_stat(ssif_info
, send_errors
);
932 if (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
)
933 pr_info("Error from i2c_non_blocking_op(3)\n");
934 msg_done_handler(ssif_info
, -EIO
, NULL
, 0);
937 /* Ready to request the result. */
938 unsigned long oflags
, *flags
;
940 ssif_inc_stat(ssif_info
, sent_messages
);
941 ssif_inc_stat(ssif_info
, sent_messages_parts
);
943 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
944 if (ssif_info
->got_alert
) {
945 /* The result is already ready, just start it. */
946 ssif_info
->got_alert
= false;
947 ipmi_ssif_unlock_cond(ssif_info
, flags
);
948 start_get(ssif_info
);
950 /* Wait a jiffie then request the next message */
951 ssif_info
->waiting_alert
= true;
952 ssif_info
->retries_left
= SSIF_RECV_RETRIES
;
953 ssif_info
->rtc_us_timer
= SSIF_MSG_PART_USEC
;
954 if (!ssif_info
->stopping
)
955 mod_timer(&ssif_info
->retry_timer
,
956 jiffies
+ SSIF_MSG_PART_JIFFIES
);
957 ipmi_ssif_unlock_cond(ssif_info
, flags
);
962 static int start_resend(struct ssif_info
*ssif_info
)
967 ssif_info
->got_alert
= false;
969 if (ssif_info
->data_len
> 32) {
970 command
= SSIF_IPMI_MULTI_PART_REQUEST_START
;
971 ssif_info
->multi_data
= ssif_info
->data
;
972 ssif_info
->multi_len
= ssif_info
->data_len
;
974 * Subtle thing, this is 32, not 33, because we will
975 * overwrite the thing at position 32 (which was just
976 * transmitted) with the new length.
978 ssif_info
->multi_pos
= 32;
979 ssif_info
->data
[0] = 32;
981 ssif_info
->multi_data
= NULL
;
982 command
= SSIF_IPMI_REQUEST
;
983 ssif_info
->data
[0] = ssif_info
->data_len
;
986 rv
= ssif_i2c_send(ssif_info
, msg_written_handler
, I2C_SMBUS_WRITE
,
987 command
, ssif_info
->data
, I2C_SMBUS_BLOCK_DATA
);
988 if (rv
&& (ssif_info
->ssif_debug
& SSIF_DEBUG_MSG
))
989 pr_info("Error from i2c_non_blocking_op(4)\n");
993 static int start_send(struct ssif_info
*ssif_info
,
997 if (len
> IPMI_MAX_MSG_LENGTH
)
999 if (len
> ssif_info
->max_xmit_msg_size
)
1002 ssif_info
->retries_left
= SSIF_SEND_RETRIES
;
1003 memcpy(ssif_info
->data
+ 1, data
, len
);
1004 ssif_info
->data_len
= len
;
1005 return start_resend(ssif_info
);
1008 /* Must be called with the message lock held. */
1009 static void start_next_msg(struct ssif_info
*ssif_info
, unsigned long *flags
)
1011 struct ipmi_smi_msg
*msg
;
1012 unsigned long oflags
;
1015 if (!SSIF_IDLE(ssif_info
)) {
1016 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1020 if (!ssif_info
->waiting_msg
) {
1021 ssif_info
->curr_msg
= NULL
;
1022 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1026 ssif_info
->curr_msg
= ssif_info
->waiting_msg
;
1027 ssif_info
->waiting_msg
= NULL
;
1028 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1029 rv
= start_send(ssif_info
,
1030 ssif_info
->curr_msg
->data
,
1031 ssif_info
->curr_msg
->data_size
);
1033 msg
= ssif_info
->curr_msg
;
1034 ssif_info
->curr_msg
= NULL
;
1035 return_hosed_msg(ssif_info
, msg
);
1036 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1042 static void sender(void *send_info
,
1043 struct ipmi_smi_msg
*msg
)
1045 struct ssif_info
*ssif_info
= (struct ssif_info
*) send_info
;
1046 unsigned long oflags
, *flags
;
1048 BUG_ON(ssif_info
->waiting_msg
);
1049 ssif_info
->waiting_msg
= msg
;
1051 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1052 start_next_msg(ssif_info
, flags
);
1054 if (ssif_info
->ssif_debug
& SSIF_DEBUG_TIMING
) {
1055 struct timespec64 t
;
1057 ktime_get_real_ts64(&t
);
1058 pr_info("**Enqueue %02x %02x: %lld.%6.6ld\n",
1059 msg
->data
[0], msg
->data
[1],
1060 (long long) t
.tv_sec
, (long) t
.tv_nsec
/ NSEC_PER_USEC
);
1064 static int get_smi_info(void *send_info
, struct ipmi_smi_info
*data
)
1066 struct ssif_info
*ssif_info
= send_info
;
1068 data
->addr_src
= ssif_info
->addr_source
;
1069 data
->dev
= &ssif_info
->client
->dev
;
1070 data
->addr_info
= ssif_info
->addr_info
;
1071 get_device(data
->dev
);
1077 * Instead of having our own timer to periodically check the message
1078 * flags, we let the message handler drive us.
1080 static void request_events(void *send_info
)
1082 struct ssif_info
*ssif_info
= (struct ssif_info
*) send_info
;
1083 unsigned long oflags
, *flags
;
1085 if (!ssif_info
->has_event_buffer
)
1088 flags
= ipmi_ssif_lock_cond(ssif_info
, &oflags
);
1090 * Request flags first, not events, because the lower layer
1091 * doesn't have a way to send an attention. But make sure
1092 * event checking still happens.
1094 ssif_info
->req_events
= true;
1095 if (SSIF_IDLE(ssif_info
))
1096 start_flag_fetch(ssif_info
, flags
);
1098 ssif_info
->req_flags
= true;
1099 ipmi_ssif_unlock_cond(ssif_info
, flags
);
1103 static int inc_usecount(void *send_info
)
1105 struct ssif_info
*ssif_info
= send_info
;
1107 if (!i2c_get_adapter(ssif_info
->client
->adapter
->nr
))
1110 i2c_use_client(ssif_info
->client
);
1114 static void dec_usecount(void *send_info
)
1116 struct ssif_info
*ssif_info
= send_info
;
1118 i2c_release_client(ssif_info
->client
);
1119 i2c_put_adapter(ssif_info
->client
->adapter
);
1122 static int ssif_start_processing(void *send_info
,
1125 struct ssif_info
*ssif_info
= send_info
;
1127 ssif_info
->intf
= intf
;
1132 #define MAX_SSIF_BMCS 4
1134 static unsigned short addr
[MAX_SSIF_BMCS
];
1135 static int num_addrs
;
1136 module_param_array(addr
, ushort
, &num_addrs
, 0);
1137 MODULE_PARM_DESC(addr
, "The addresses to scan for IPMI BMCs on the SSIFs.");
1139 static char *adapter_name
[MAX_SSIF_BMCS
];
1140 static int num_adapter_names
;
1141 module_param_array(adapter_name
, charp
, &num_adapter_names
, 0);
1142 MODULE_PARM_DESC(adapter_name
, "The string name of the I2C device that has the BMC. By default all devices are scanned.");
1144 static int slave_addrs
[MAX_SSIF_BMCS
];
1145 static int num_slave_addrs
;
1146 module_param_array(slave_addrs
, int, &num_slave_addrs
, 0);
1147 MODULE_PARM_DESC(slave_addrs
,
1148 "The default IPMB slave address for the controller.");
1150 static bool alerts_broken
;
1151 module_param(alerts_broken
, bool, 0);
1152 MODULE_PARM_DESC(alerts_broken
, "Don't enable alerts for the controller.");
1155 * Bit 0 enables message debugging, bit 1 enables state debugging, and
1156 * bit 2 enables timing debugging. This is an array indexed by
1159 static int dbg
[MAX_SSIF_BMCS
];
1161 module_param_array(dbg
, int, &num_dbg
, 0);
1162 MODULE_PARM_DESC(dbg
, "Turn on debugging.");
1164 static bool ssif_dbg_probe
;
1165 module_param_named(dbg_probe
, ssif_dbg_probe
, bool, 0);
1166 MODULE_PARM_DESC(dbg_probe
, "Enable debugging of probing of adapters.");
1168 static int use_thread
;
1169 module_param(use_thread
, int, 0);
1170 MODULE_PARM_DESC(use_thread
, "Use the thread interface.");
1172 static bool ssif_tryacpi
= true;
1173 module_param_named(tryacpi
, ssif_tryacpi
, bool, 0);
1174 MODULE_PARM_DESC(tryacpi
, "Setting this to zero will disable the default scan of the interfaces identified via ACPI");
1176 static bool ssif_trydmi
= true;
1177 module_param_named(trydmi
, ssif_trydmi
, bool, 0);
1178 MODULE_PARM_DESC(trydmi
, "Setting this to zero will disable the default scan of the interfaces identified via DMI (SMBIOS)");
1180 static DEFINE_MUTEX(ssif_infos_mutex
);
1181 static LIST_HEAD(ssif_infos
);
1183 static int ssif_remove(struct i2c_client
*client
)
1185 struct ssif_info
*ssif_info
= i2c_get_clientdata(client
);
1192 * After this point, we won't deliver anything asychronously
1193 * to the message handler. We can unregister ourself.
1195 rv
= ipmi_unregister_smi(ssif_info
->intf
);
1197 pr_err(PFX
"Unable to unregister device: errno=%d\n", rv
);
1200 ssif_info
->intf
= NULL
;
1202 /* make sure the driver is not looking for flags any more. */
1203 while (ssif_info
->ssif_state
!= SSIF_NORMAL
)
1204 schedule_timeout(1);
1206 ssif_info
->stopping
= true;
1207 del_timer_sync(&ssif_info
->retry_timer
);
1208 if (ssif_info
->thread
) {
1209 complete(&ssif_info
->wake_thread
);
1210 kthread_stop(ssif_info
->thread
);
1214 * No message can be outstanding now, we have removed the
1215 * upper layer and it permitted us to do so.
1221 static int do_cmd(struct i2c_client
*client
, int len
, unsigned char *msg
,
1222 int *resp_len
, unsigned char *resp
)
1227 retry_cnt
= SSIF_SEND_RETRIES
;
1229 ret
= i2c_smbus_write_block_data(client
, SSIF_IPMI_REQUEST
, len
, msg
);
1238 retry_cnt
= SSIF_RECV_RETRIES
;
1239 while (retry_cnt
> 0) {
1240 ret
= i2c_smbus_read_block_data(client
, SSIF_IPMI_RESPONSE
,
1244 msleep(SSIF_MSG_MSEC
);
1251 /* Validate that the response is correct. */
1253 (resp
[0] != (msg
[0] | (1 << 2))) ||
1254 (resp
[1] != msg
[1]))
1265 static int ssif_detect(struct i2c_client
*client
, struct i2c_board_info
*info
)
1267 unsigned char *resp
;
1268 unsigned char msg
[3];
1272 resp
= kmalloc(IPMI_MAX_MSG_LENGTH
, GFP_KERNEL
);
1276 /* Do a Get Device ID command, since it is required. */
1277 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1278 msg
[1] = IPMI_GET_DEVICE_ID_CMD
;
1279 rv
= do_cmd(client
, 2, msg
, &len
, resp
);
1283 strlcpy(info
->type
, DEVICE_NAME
, I2C_NAME_SIZE
);
1288 static int smi_type_proc_show(struct seq_file
*m
, void *v
)
1290 seq_puts(m
, "ssif\n");
1295 static int smi_type_proc_open(struct inode
*inode
, struct file
*file
)
1297 return single_open(file
, smi_type_proc_show
, inode
->i_private
);
1300 static const struct file_operations smi_type_proc_ops
= {
1301 .open
= smi_type_proc_open
,
1303 .llseek
= seq_lseek
,
1304 .release
= single_release
,
1307 static int smi_stats_proc_show(struct seq_file
*m
, void *v
)
1309 struct ssif_info
*ssif_info
= m
->private;
1311 seq_printf(m
, "sent_messages: %u\n",
1312 ssif_get_stat(ssif_info
, sent_messages
));
1313 seq_printf(m
, "sent_messages_parts: %u\n",
1314 ssif_get_stat(ssif_info
, sent_messages_parts
));
1315 seq_printf(m
, "send_retries: %u\n",
1316 ssif_get_stat(ssif_info
, send_retries
));
1317 seq_printf(m
, "send_errors: %u\n",
1318 ssif_get_stat(ssif_info
, send_errors
));
1319 seq_printf(m
, "received_messages: %u\n",
1320 ssif_get_stat(ssif_info
, received_messages
));
1321 seq_printf(m
, "received_message_parts: %u\n",
1322 ssif_get_stat(ssif_info
, received_message_parts
));
1323 seq_printf(m
, "receive_retries: %u\n",
1324 ssif_get_stat(ssif_info
, receive_retries
));
1325 seq_printf(m
, "receive_errors: %u\n",
1326 ssif_get_stat(ssif_info
, receive_errors
));
1327 seq_printf(m
, "flag_fetches: %u\n",
1328 ssif_get_stat(ssif_info
, flag_fetches
));
1329 seq_printf(m
, "hosed: %u\n",
1330 ssif_get_stat(ssif_info
, hosed
));
1331 seq_printf(m
, "events: %u\n",
1332 ssif_get_stat(ssif_info
, events
));
1333 seq_printf(m
, "watchdog_pretimeouts: %u\n",
1334 ssif_get_stat(ssif_info
, watchdog_pretimeouts
));
1335 seq_printf(m
, "alerts: %u\n",
1336 ssif_get_stat(ssif_info
, alerts
));
1340 static int smi_stats_proc_open(struct inode
*inode
, struct file
*file
)
1342 return single_open(file
, smi_stats_proc_show
, PDE_DATA(inode
));
1345 static const struct file_operations smi_stats_proc_ops
= {
1346 .open
= smi_stats_proc_open
,
1348 .llseek
= seq_lseek
,
1349 .release
= single_release
,
1352 static int strcmp_nospace(char *s1
, char *s2
)
1354 while (*s1
&& *s2
) {
1355 while (isspace(*s1
))
1357 while (isspace(*s2
))
1369 static struct ssif_addr_info
*ssif_info_find(unsigned short addr
,
1371 bool match_null_name
)
1373 struct ssif_addr_info
*info
, *found
= NULL
;
1376 list_for_each_entry(info
, &ssif_infos
, link
) {
1377 if (info
->binfo
.addr
== addr
) {
1378 if (info
->adapter_name
|| adapter_name
) {
1379 if (!info
->adapter_name
!= !adapter_name
) {
1380 /* One is NULL and one is not */
1384 strcmp_nospace(info
->adapter_name
,
1386 /* Names do not match */
1394 if (!found
&& match_null_name
) {
1395 /* Try to get an exact match first, then try with a NULL name */
1396 adapter_name
= NULL
;
1397 match_null_name
= false;
1404 static bool check_acpi(struct ssif_info
*ssif_info
, struct device
*dev
)
1407 acpi_handle acpi_handle
;
1409 acpi_handle
= ACPI_HANDLE(dev
);
1411 ssif_info
->addr_source
= SI_ACPI
;
1412 ssif_info
->addr_info
.acpi_info
.acpi_handle
= acpi_handle
;
1420 * Global enables we care about.
1422 #define GLOBAL_ENABLES_MASK (IPMI_BMC_EVT_MSG_BUFF | IPMI_BMC_RCV_MSG_INTR | \
1423 IPMI_BMC_EVT_MSG_INTR)
1425 static int ssif_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
1427 unsigned char msg
[3];
1428 unsigned char *resp
;
1429 struct ssif_info
*ssif_info
;
1434 struct ssif_addr_info
*addr_info
= NULL
;
1437 resp
= kmalloc(IPMI_MAX_MSG_LENGTH
, GFP_KERNEL
);
1441 ssif_info
= kzalloc(sizeof(*ssif_info
), GFP_KERNEL
);
1447 if (!check_acpi(ssif_info
, &client
->dev
)) {
1448 addr_info
= ssif_info_find(client
->addr
, client
->adapter
->name
,
1451 /* Must have come in through sysfs. */
1452 ssif_info
->addr_source
= SI_HOTMOD
;
1454 ssif_info
->addr_source
= addr_info
->addr_src
;
1455 ssif_info
->ssif_debug
= addr_info
->debug
;
1456 ssif_info
->addr_info
= addr_info
->addr_info
;
1457 slave_addr
= addr_info
->slave_addr
;
1461 pr_info(PFX
"Trying %s-specified SSIF interface at i2c address 0x%x, adapter %s, slave address 0x%x\n",
1462 ipmi_addr_src_to_str(ssif_info
->addr_source
),
1463 client
->addr
, client
->adapter
->name
, slave_addr
);
1466 * Do a Get Device ID command, since it comes back with some
1469 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1470 msg
[1] = IPMI_GET_DEVICE_ID_CMD
;
1471 rv
= do_cmd(client
, 2, msg
, &len
, resp
);
1475 rv
= ipmi_demangle_device_id(resp
, len
, &ssif_info
->device_id
);
1479 ssif_info
->client
= client
;
1480 i2c_set_clientdata(client
, ssif_info
);
1482 /* Now check for system interface capabilities */
1483 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1484 msg
[1] = IPMI_GET_SYSTEM_INTERFACE_CAPABILITIES_CMD
;
1485 msg
[2] = 0; /* SSIF */
1486 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1487 if (!rv
&& (len
>= 3) && (resp
[2] == 0)) {
1490 pr_info(PFX
"SSIF info too short: %d\n", len
);
1494 /* Got a good SSIF response, handle it. */
1495 ssif_info
->max_xmit_msg_size
= resp
[5];
1496 ssif_info
->max_recv_msg_size
= resp
[6];
1497 ssif_info
->multi_support
= (resp
[4] >> 6) & 0x3;
1498 ssif_info
->supports_pec
= (resp
[4] >> 3) & 0x1;
1500 /* Sanitize the data */
1501 switch (ssif_info
->multi_support
) {
1503 if (ssif_info
->max_xmit_msg_size
> 32)
1504 ssif_info
->max_xmit_msg_size
= 32;
1505 if (ssif_info
->max_recv_msg_size
> 32)
1506 ssif_info
->max_recv_msg_size
= 32;
1509 case SSIF_MULTI_2_PART
:
1510 if (ssif_info
->max_xmit_msg_size
> 63)
1511 ssif_info
->max_xmit_msg_size
= 63;
1512 if (ssif_info
->max_recv_msg_size
> 62)
1513 ssif_info
->max_recv_msg_size
= 62;
1516 case SSIF_MULTI_n_PART
:
1518 * The specification is rather confusing at
1519 * this point, but I think I understand what
1520 * is meant. At least I have a workable
1521 * solution. With multi-part messages, you
1522 * cannot send a message that is a multiple of
1523 * 32-bytes in length, because the start and
1524 * middle messages are 32-bytes and the end
1525 * message must be at least one byte. You
1526 * can't fudge on an extra byte, that would
1527 * screw up things like fru data writes. So
1528 * we limit the length to 63 bytes. That way
1529 * a 32-byte message gets sent as a single
1530 * part. A larger message will be a 32-byte
1531 * start and the next message is always going
1532 * to be 1-31 bytes in length. Not ideal, but
1535 if (ssif_info
->max_xmit_msg_size
> 63)
1536 ssif_info
->max_xmit_msg_size
= 63;
1540 /* Data is not sane, just give up. */
1545 /* Assume no multi-part or PEC support */
1546 pr_info(PFX
"Error fetching SSIF: %d %d %2.2x, your system probably doesn't support this command so using defaults\n",
1549 ssif_info
->max_xmit_msg_size
= 32;
1550 ssif_info
->max_recv_msg_size
= 32;
1551 ssif_info
->multi_support
= SSIF_NO_MULTI
;
1552 ssif_info
->supports_pec
= 0;
1555 /* Make sure the NMI timeout is cleared. */
1556 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1557 msg
[1] = IPMI_CLEAR_MSG_FLAGS_CMD
;
1558 msg
[2] = WDT_PRE_TIMEOUT_INT
;
1559 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1560 if (rv
|| (len
< 3) || (resp
[2] != 0))
1561 pr_warn(PFX
"Unable to clear message flags: %d %d %2.2x\n",
1564 /* Attempt to enable the event buffer. */
1565 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1566 msg
[1] = IPMI_GET_BMC_GLOBAL_ENABLES_CMD
;
1567 rv
= do_cmd(client
, 2, msg
, &len
, resp
);
1568 if (rv
|| (len
< 4) || (resp
[2] != 0)) {
1569 pr_warn(PFX
"Error getting global enables: %d %d %2.2x\n",
1571 rv
= 0; /* Not fatal */
1575 ssif_info
->global_enables
= resp
[3];
1577 if (resp
[3] & IPMI_BMC_EVT_MSG_BUFF
) {
1578 ssif_info
->has_event_buffer
= true;
1579 /* buffer is already enabled, nothing to do. */
1583 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1584 msg
[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD
;
1585 msg
[2] = ssif_info
->global_enables
| IPMI_BMC_EVT_MSG_BUFF
;
1586 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1587 if (rv
|| (len
< 2)) {
1588 pr_warn(PFX
"Error setting global enables: %d %d %2.2x\n",
1590 rv
= 0; /* Not fatal */
1595 /* A successful return means the event buffer is supported. */
1596 ssif_info
->has_event_buffer
= true;
1597 ssif_info
->global_enables
|= IPMI_BMC_EVT_MSG_BUFF
;
1600 /* Some systems don't behave well if you enable alerts. */
1604 msg
[0] = IPMI_NETFN_APP_REQUEST
<< 2;
1605 msg
[1] = IPMI_SET_BMC_GLOBAL_ENABLES_CMD
;
1606 msg
[2] = ssif_info
->global_enables
| IPMI_BMC_RCV_MSG_INTR
;
1607 rv
= do_cmd(client
, 3, msg
, &len
, resp
);
1608 if (rv
|| (len
< 2)) {
1609 pr_warn(PFX
"Error setting global enables: %d %d %2.2x\n",
1611 rv
= 0; /* Not fatal */
1616 /* A successful return means the alert is supported. */
1617 ssif_info
->supports_alert
= true;
1618 ssif_info
->global_enables
|= IPMI_BMC_RCV_MSG_INTR
;
1622 ssif_info
->intf_num
= atomic_inc_return(&next_intf
);
1624 if (ssif_dbg_probe
) {
1625 pr_info("ssif_probe: i2c_probe found device at i2c address %x\n",
1629 spin_lock_init(&ssif_info
->lock
);
1630 ssif_info
->ssif_state
= SSIF_NORMAL
;
1631 init_timer(&ssif_info
->retry_timer
);
1632 ssif_info
->retry_timer
.data
= (unsigned long) ssif_info
;
1633 ssif_info
->retry_timer
.function
= retry_timeout
;
1635 for (i
= 0; i
< SSIF_NUM_STATS
; i
++)
1636 atomic_set(&ssif_info
->stats
[i
], 0);
1638 if (ssif_info
->supports_pec
)
1639 ssif_info
->client
->flags
|= I2C_CLIENT_PEC
;
1641 ssif_info
->handlers
.owner
= THIS_MODULE
;
1642 ssif_info
->handlers
.start_processing
= ssif_start_processing
;
1643 ssif_info
->handlers
.get_smi_info
= get_smi_info
;
1644 ssif_info
->handlers
.sender
= sender
;
1645 ssif_info
->handlers
.request_events
= request_events
;
1646 ssif_info
->handlers
.inc_usecount
= inc_usecount
;
1647 ssif_info
->handlers
.dec_usecount
= dec_usecount
;
1650 unsigned int thread_num
;
1652 thread_num
= ((ssif_info
->client
->adapter
->nr
<< 8) |
1653 ssif_info
->client
->addr
);
1654 init_completion(&ssif_info
->wake_thread
);
1655 ssif_info
->thread
= kthread_run(ipmi_ssif_thread
, ssif_info
,
1656 "kssif%4.4x", thread_num
);
1657 if (IS_ERR(ssif_info
->thread
)) {
1658 rv
= PTR_ERR(ssif_info
->thread
);
1659 dev_notice(&ssif_info
->client
->dev
,
1660 "Could not start kernel thread: error %d\n",
1666 rv
= ipmi_register_smi(&ssif_info
->handlers
,
1668 &ssif_info
->device_id
,
1669 &ssif_info
->client
->dev
,
1672 pr_err(PFX
"Unable to register device: error %d\n", rv
);
1676 rv
= ipmi_smi_add_proc_entry(ssif_info
->intf
, "type",
1680 pr_err(PFX
"Unable to create proc entry: %d\n", rv
);
1684 rv
= ipmi_smi_add_proc_entry(ssif_info
->intf
, "ssif_stats",
1685 &smi_stats_proc_ops
,
1688 pr_err(PFX
"Unable to create proc entry: %d\n", rv
);
1699 ipmi_unregister_smi(ssif_info
->intf
);
1703 static int ssif_adapter_handler(struct device
*adev
, void *opaque
)
1705 struct ssif_addr_info
*addr_info
= opaque
;
1707 if (adev
->type
!= &i2c_adapter_type
)
1710 i2c_new_device(to_i2c_adapter(adev
), &addr_info
->binfo
);
1712 if (!addr_info
->adapter_name
)
1713 return 1; /* Only try the first I2C adapter by default. */
1717 static int new_ssif_client(int addr
, char *adapter_name
,
1718 int debug
, int slave_addr
,
1719 enum ipmi_addr_src addr_src
)
1721 struct ssif_addr_info
*addr_info
;
1724 mutex_lock(&ssif_infos_mutex
);
1725 if (ssif_info_find(addr
, adapter_name
, false)) {
1730 addr_info
= kzalloc(sizeof(*addr_info
), GFP_KERNEL
);
1737 addr_info
->adapter_name
= kstrdup(adapter_name
, GFP_KERNEL
);
1738 if (!addr_info
->adapter_name
) {
1745 strncpy(addr_info
->binfo
.type
, DEVICE_NAME
,
1746 sizeof(addr_info
->binfo
.type
));
1747 addr_info
->binfo
.addr
= addr
;
1748 addr_info
->binfo
.platform_data
= addr_info
;
1749 addr_info
->debug
= debug
;
1750 addr_info
->slave_addr
= slave_addr
;
1751 addr_info
->addr_src
= addr_src
;
1753 list_add_tail(&addr_info
->link
, &ssif_infos
);
1756 i2c_for_each_dev(addr_info
, ssif_adapter_handler
);
1757 /* Otherwise address list will get it */
1760 mutex_unlock(&ssif_infos_mutex
);
1764 static void free_ssif_clients(void)
1766 struct ssif_addr_info
*info
, *tmp
;
1768 mutex_lock(&ssif_infos_mutex
);
1769 list_for_each_entry_safe(info
, tmp
, &ssif_infos
, link
) {
1770 list_del(&info
->link
);
1771 kfree(info
->adapter_name
);
1774 mutex_unlock(&ssif_infos_mutex
);
1777 static unsigned short *ssif_address_list(void)
1779 struct ssif_addr_info
*info
;
1780 unsigned int count
= 0, i
;
1781 unsigned short *address_list
;
1783 list_for_each_entry(info
, &ssif_infos
, link
)
1786 address_list
= kzalloc(sizeof(*address_list
) * (count
+ 1), GFP_KERNEL
);
1791 list_for_each_entry(info
, &ssif_infos
, link
) {
1792 unsigned short addr
= info
->binfo
.addr
;
1795 for (j
= 0; j
< i
; j
++) {
1796 if (address_list
[j
] == addr
)
1799 address_list
[i
] = addr
;
1803 address_list
[i
] = I2C_CLIENT_END
;
1805 return address_list
;
1809 static const struct acpi_device_id ssif_acpi_match
[] = {
1813 MODULE_DEVICE_TABLE(acpi
, ssif_acpi_match
);
1816 * Once we get an ACPI failure, we don't try any more, because we go
1817 * through the tables sequentially. Once we don't find a table, there
1820 static int acpi_failure
;
1823 * Defined in the IPMI 2.0 spec.
1834 s8 CreatorRevision
[4];
1837 s16 SpecificationRevision
;
1840 * Bit 0 - SCI interrupt supported
1841 * Bit 1 - I/O APIC/SAPIC
1846 * If bit 0 of InterruptType is set, then this is the SCI
1847 * interrupt in the GPEx_STS register.
1854 * If bit 1 of InterruptType is set, then this is the I/O
1855 * APIC/SAPIC interrupt.
1857 u32 GlobalSystemInterrupt
;
1859 /* The actual register address. */
1860 struct acpi_generic_address addr
;
1864 s8 spmi_id
[1]; /* A '\0' terminated array starts here. */
1867 static int try_init_spmi(struct SPMITable
*spmi
)
1869 unsigned short myaddr
;
1871 if (num_addrs
>= MAX_SSIF_BMCS
)
1874 if (spmi
->IPMIlegacy
!= 1) {
1875 pr_warn("IPMI: Bad SPMI legacy: %d\n", spmi
->IPMIlegacy
);
1879 if (spmi
->InterfaceType
!= 4)
1882 if (spmi
->addr
.space_id
!= ACPI_ADR_SPACE_SMBUS
) {
1883 pr_warn(PFX
"Invalid ACPI SSIF I/O Address type: %d\n",
1884 spmi
->addr
.space_id
);
1888 myaddr
= spmi
->addr
.address
& 0x7f;
1890 return new_ssif_client(myaddr
, NULL
, 0, 0, SI_SPMI
);
1893 static void spmi_find_bmc(void)
1896 struct SPMITable
*spmi
;
1905 for (i
= 0; ; i
++) {
1906 status
= acpi_get_table(ACPI_SIG_SPMI
, i
+1,
1907 (struct acpi_table_header
**)&spmi
);
1908 if (status
!= AE_OK
)
1911 try_init_spmi(spmi
);
1915 static void spmi_find_bmc(void) { }
1919 static int decode_dmi(const struct dmi_device
*dmi_dev
)
1921 struct dmi_header
*dm
= dmi_dev
->device_data
;
1922 u8
*data
= (u8
*) dm
;
1923 u8 len
= dm
->length
;
1924 unsigned short myaddr
;
1927 if (num_addrs
>= MAX_SSIF_BMCS
)
1933 if (data
[0x04] != 4) /* Not SSIF */
1936 if ((data
[8] >> 1) == 0) {
1938 * Some broken systems put the I2C address in
1939 * the slave address field. We try to
1940 * accommodate them here.
1942 myaddr
= data
[6] >> 1;
1945 myaddr
= data
[8] >> 1;
1946 slave_addr
= data
[6];
1949 return new_ssif_client(myaddr
, NULL
, 0, 0, SI_SMBIOS
);
1952 static void dmi_iterator(void)
1954 const struct dmi_device
*dev
= NULL
;
1956 while ((dev
= dmi_find_device(DMI_DEV_TYPE_IPMI
, NULL
, dev
)))
1960 static void dmi_iterator(void) { }
1963 static const struct i2c_device_id ssif_id
[] = {
1967 MODULE_DEVICE_TABLE(i2c
, ssif_id
);
1969 static struct i2c_driver ssif_i2c_driver
= {
1970 .class = I2C_CLASS_HWMON
,
1974 .probe
= ssif_probe
,
1975 .remove
= ssif_remove
,
1976 .alert
= ssif_alert
,
1977 .id_table
= ssif_id
,
1978 .detect
= ssif_detect
1981 static int init_ipmi_ssif(void)
1989 pr_info("IPMI SSIF Interface driver\n");
1991 /* build list for i2c from addr list */
1992 for (i
= 0; i
< num_addrs
; i
++) {
1993 rv
= new_ssif_client(addr
[i
], adapter_name
[i
],
1994 dbg
[i
], slave_addrs
[i
],
1998 "Couldn't add hardcoded device at addr 0x%x\n",
2003 ssif_i2c_driver
.driver
.acpi_match_table
=
2004 ACPI_PTR(ssif_acpi_match
);
2010 ssif_i2c_driver
.address_list
= ssif_address_list();
2012 rv
= i2c_add_driver(&ssif_i2c_driver
);
2018 module_init(init_ipmi_ssif
);
2020 static void cleanup_ipmi_ssif(void)
2025 initialized
= false;
2027 i2c_del_driver(&ssif_i2c_driver
);
2029 free_ssif_clients();
2031 module_exit(cleanup_ipmi_ssif
);
2033 MODULE_AUTHOR("Todd C Davis <todd.c.davis@intel.com>, Corey Minyard <minyard@acm.org>");
2034 MODULE_DESCRIPTION("IPMI driver for management controllers on a SMBus");
2035 MODULE_LICENSE("GPL");