lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Thu, 23 Feb 2017 18:42:41 -0800
From:   Guenter Roeck <linux@...ck-us.net>
To:     Edward James <eajames@...ibm.com>
Cc:     andrew@...id.au, benh@...nel.crashing.org, corbet@....net,
        devicetree@...r.kernel.org, jdelvare@...e.com, joel@....id.a,
        linux-doc@...r.kernel.org, linux-hwmon@...r.kernel.org,
        linux-kernel@...r.kernel.org, mark.rutland@....com,
        robh+dt@...nel.org, wsa@...-dreams.de,
        Eddie James <eajames@...ux.vnet.ibm.com>
Subject: Re: [PATCH linux v8 0/6] drivers: hwmon: Add On-Chip Controller
 driver

On Thu, Feb 23, 2017 at 04:43:20PM -0600, Edward James wrote:
> Hi Guenter,
> 
> Any thoughts on this patch set? Others welcome to chime in too.
> 
Sorry, I have been busy. Weekend or next week, hopefully.

Guenter

> Thanks,
> Eddie
> 
> Eddie James <eajames@...ux.vnet.ibm.com> wrote on 02/14/2017 02:34:17 PM:
> 
> > From: Eddie James <eajames@...ux.vnet.ibm.com>
> > To: linux@...ck-us.net
> > Cc: devicetree@...r.kernel.org, linux-kernel@...r.kernel.org, linux-
> > hwmon@...r.kernel.org, linux-doc@...r.kernel.org, jdelvare@...e.com,
> > corbet@....net, mark.rutland@....com, robh+dt@...nel.org, wsa@...-
> > dreams.de, andrew@...id.au, benh@...nel.crashing.org,
> > joel@....id.au, Edward James/Austin/IBM@...US
> > Date: 02/14/2017 02:34 PM
> > Subject: [PATCH linux v8 0/6] drivers: hwmon: Add On-Chip Controller
> driver
> >
> > From: "Edward A. James" <eajames@...ibm.com>
> >
> > This patchset adds a hwmon driver to support the OCC (On-Chip Controller)
> > on the IBM POWER8 and POWER9 processors, from a BMC (Baseboard Management
> > Controller). The OCC is an embedded processor that provides real time
> > power and thermal monitoring.
> >
> > The driver provides an interface on a BMC to poll OCC sensor data, set
> > user power caps, and perform some basic OCC error handling. It interfaces
> > with userspace through hwmon.
> >
> > The driver is currently functional only for the OCC on POWER8 chips.
> > Communicating with the POWER9 OCC requries FSI support.
> >
> > Since v7:
> >  * change Makefile and Kconfig to build a single module for the driver
> >  * include p9 file in build
> >  * change Kconfig from "PPC" to "IBM"
> >  * remove EXPORT_SYMBOL
> >  * bundle occ_config and occ_ops structures into occ_init_data structure
> >  * few style tweaks suggested by Joel
> >
> > Edward A. James (6):
> >   hwmon: Add core On-Chip Controller support for POWER CPUs
> >   hwmon: occ: Add sysfs interface
> >   hwmon: occ: Add I2C transport implementation for SCOM operations
> >   hwmon: occ: Add callbacks for parsing P8 OCC datastructures
> >   hwmon: occ: Add hwmon implementation for the P8 OCC
> >   hwmon: occ: Add callbacks for parsing P9 OCC datastructures
> >
> >  Documentation/devicetree/bindings/hwmon/occ.txt |  13 +
> >  Documentation/hwmon/occ                         | 116 +++++++
> >  MAINTAINERS                                     |   7 +
> >  drivers/hwmon/Kconfig                           |   2 +
> >  drivers/hwmon/Makefile                          |   1 +
> >  drivers/hwmon/occ/Kconfig                       |  39 +++
> >  drivers/hwmon/occ/Makefile                      |   5 +
> >  drivers/hwmon/occ/occ.c                         | 440 +++++++++++++
> > +++++++++++
> >  drivers/hwmon/occ/occ.h                         |  77 +++++
> >  drivers/hwmon/occ/occ_p8.c                      | 256 ++++++++++++++
> >  drivers/hwmon/occ/occ_p8.h                      |  25 ++
> >  drivers/hwmon/occ/occ_p8_i2c.c                  |  99 ++++++
> >  drivers/hwmon/occ/occ_p9.c                      | 320 +++++++++++++++++
> >  drivers/hwmon/occ/occ_p9.h                      |  25 ++
> >  drivers/hwmon/occ/occ_scom_i2c.c                |  69 ++++
> >  drivers/hwmon/occ/occ_scom_i2c.h                |  21 ++
> >  drivers/hwmon/occ/occ_sysfs.c                   | 245 +++++++++++++
> >  drivers/hwmon/occ/occ_sysfs.h                   |  25 ++
> >  drivers/hwmon/occ/scom.h                        |  42 +++
> >  19 files changed, 1827 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/hwmon/occ.txt
> >  create mode 100644 Documentation/hwmon/occ
> >  create mode 100644 drivers/hwmon/occ/Kconfig
> >  create mode 100644 drivers/hwmon/occ/Makefile
> >  create mode 100644 drivers/hwmon/occ/occ.c
> >  create mode 100644 drivers/hwmon/occ/occ.h
> >  create mode 100644 drivers/hwmon/occ/occ_p8.c
> >  create mode 100644 drivers/hwmon/occ/occ_p8.h
> >  create mode 100644 drivers/hwmon/occ/occ_p8_i2c.c
> >  create mode 100644 drivers/hwmon/occ/occ_p9.c
> >  create mode 100644 drivers/hwmon/occ/occ_p9.h
> >  create mode 100644 drivers/hwmon/occ/occ_scom_i2c.c
> >  create mode 100644 drivers/hwmon/occ/occ_scom_i2c.h
> >  create mode 100644 drivers/hwmon/occ/occ_sysfs.c
> >  create mode 100644 drivers/hwmon/occ/occ_sysfs.h
> >  create mode 100644 drivers/hwmon/occ/scom.h
> >
> > --
> > 1.8.3.1
> >

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ