From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754967AbbICU2X (ORCPT ); Thu, 3 Sep 2015 16:28:23 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:33644 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750708AbbICU2W (ORCPT ); Thu, 3 Sep 2015 16:28:22 -0400 Message-ID: <55E8AD64.3020001@mvista.com> Date: Thu, 03 Sep 2015 15:28:20 -0500 From: Corey Minyard User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Linus Torvalds , linux-kernel Subject: IPMI updates for 4.3 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit dd5cdb48edfd34401799056a9acf61078d773f90: Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next (2015-09-03 08:08:17 -0700) are available in the git repository at: git://git.code.sf.net/p/openipmi/linux-ipmi tags/for-linus-4.3 for you to fetch changes up to bf2d087749d91e1fa2826edde1e2fd650d3053ca: ipmi:ssif: Add a module parm to specify that SMBus alerts don't work (2015-09-03 15:02:31 -0500) ---------------------------------------------------------------- IPMI updates for 4.3 Most of these have been sitting in linux-next for more than a release, particularly ipmi: Convert the IPMI SI ACPI handling to a platform device which is probably the most complex patch. That is also the one that changes drivers/acpi/acpi_pnp.c. The change in that file is only removing IPMI from a "special platform devices" list, since I convert it to the standard PNP interface. I posted this one to the ACPI list twice and got no response, and it seems to work well in my testing, so I'm hoping it's good. Hidehiro Kawai posted a set of changes that improves the panic time handling in the IPMI driver. The rest of the changes are minor bug fixes or cleanups and some documentation. ---------------------------------------------------------------- Brijesh Singh (1): ipmi: add of_device_id in MODULE_DEVICE_TABLE Corey Minyard (6): ipmi: Add device tree bindings information ipmi: Convert the IPMI SI ACPI handling to a platform device ipmi: Add a comment in how messages are delivered from the lower layer ipmi: Make some data const that was only read ipmi: Compensate for BMCs that wont set the irq enable bit ipmi:ssif: Add a module parm to specify that SMBus alerts don't work Hidehiro Kawai (5): ipmi: Remove unneeded set_run_to_completion call ipmi: Factor out message flushing procedure ipmi: Don't flush messages in sender() in run-to-completion mode ipmi: Avoid touching possible corrupted lists in the panic context ipmi: Don't call receive handler in the panic context Markus Elfring (1): ipmi: Delete an unnecessary check before the function call "cleanup_one_si" Mathias Krause (1): ipmi: constify SSIF ACPI device ids Neelesh Gupta (1): ipmi/powernv: Fix potential invalid pointer dereference Nicholas Krause (1): impi:Remove unneeded setting of module owner to THIS_MODULE in the platform structure, powernv_ipmi_driver Shailendra Verma (1): char:ipmi - Change 1 to true for bool type variables during initialization. Documentation/devicetree/bindings/ipmi.txt | 25 ++ drivers/acpi/acpi_pnp.c | 2 - drivers/char/ipmi/ipmi_bt_sm.c | 2 +- drivers/char/ipmi/ipmi_kcs_sm.c | 2 +- drivers/char/ipmi/ipmi_msghandler.c | 46 ++- drivers/char/ipmi/ipmi_powernv.c | 10 +- drivers/char/ipmi/ipmi_si_intf.c | 597 +++++++++++++++++------------ drivers/char/ipmi/ipmi_si_sm.h | 10 +- drivers/char/ipmi/ipmi_smic_sm.c | 2 +- drivers/char/ipmi/ipmi_ssif.c | 14 +- include/linux/ipmi_smi.h | 7 +- 11 files changed, 437 insertions(+), 280 deletions(-) create mode 100644 Documentation/devicetree/bindings/ipmi.txt