All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/9] hwmon: pmbus: adm1266: add support
@ 2020-07-27 16:19 alexandru.tachici
  2020-07-27 16:19 ` [PATCH v7 1/9] " alexandru.tachici
                   ` (8 more replies)
  0 siblings, 9 replies; 16+ messages in thread
From: alexandru.tachici @ 2020-07-27 16:19 UTC (permalink / raw)
  To: linux-hwmon, linux-kernel, devicetree; +Cc: robh+dt, linux, Alexandru Tachici

From: Alexandru Tachici <alexandru.tachici@analog.com>

Add PMBus probing driver for the adm1266 Cascadable
Super Sequencer with Margin Control and Fault Recording.
Driver is using the pmbus_core, creating sysfs files
under hwmon for inputs: vh1->vh4 and vp1->vp13.

1. Add PMBus probing driver for inputs vh1->vh4
and vp1->vp13.

2. Add Block Write-Read Process Call command.
A PMBus specific implementation was required because
block write with I2C_SMBUS_PROC_CALL flag allows a
maximum of 32 bytes to be received.

3. This makes adm1266 driver expose GPIOs
to user-space. Currently are read only. Future
developments on the firmware will allow
them to be writable.

4. Allow the current sate of the sequencer to be read
through debugfs.

5. Blackboxes are 64 bytes of chip state related data
that is generated on faults. Use the nvmem kernel api
to expose the blackbox chip functionality to userspace.

6. Add group command support. This will allow the driver
to stop/program all cascaded adm1266 devices at once.

7. Writing the firmware hex file with offset 0
to the nvmem of the master adm1266 will trigger
the firmware programming of all cascaded devices.
The master adm1266 of each device is specified in
the devicetree.

8. Writing the configuration hex file to 0x30000
byte address of the nvmem file will trigger the
programming of that device in particular.

9. DT bindings for ADM1266.

Alexandru Tachici (9):
  hwmon: pmbus: adm1266: add support
  hwmon: pmbus: adm1266: Add Block process call
  hwmon: pmbus: adm1266: Add support for GPIOs
  hwmon: pmbus: adm1266: add debugfs for states
  hwmon: pmbus: adm1266: read blackbox
  hwmon: pmbus: adm1266: Add group command support
  hwmon: pmbus: adm1266: program firmware
  hwmon: pmbus: adm1266: program configuration
  dt-bindings: hwmon: Add bindings for ADM1266

Changelog: v5 -> v6:
  - added adm1266 to index.rst
  - changed max lines length from 80 to 100
  - replaced i2c_get_dma_safe_msg_buf with the use of kzalloc and ____cacheline_aligned
  - removed #ifdef CONFIG_GPIOLIB
  - removed ioctl commands, the state of the device can be read through debugfs
  - use the device managed version of nvmem_register
  - on power-up, set the UNIX time to adm1266 (this value is reset
  to 0 on each power-cycle).
  - removed patch adm1266: debugfs for blackbox info, rtc in blackbox is enough
  to help identify the current index
  - added two new nvmem cells for firmware and configuration

Changelog: v6 -> v7:
  - fixed compilation warning: removed unused variable ,entry, in
adm1266_init_debugfs

 .../bindings/hwmon/adi,adm1266.yaml           |   56 +
 Documentation/hwmon/adm1266.rst               |   37 +
 Documentation/hwmon/index.rst                 |    1 +
 drivers/hwmon/pmbus/Kconfig                   |   10 +
 drivers/hwmon/pmbus/Makefile                  |    1 +
 drivers/hwmon/pmbus/adm1266.c                 | 1272 +++++++++++++++++
 6 files changed, 1377 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/hwmon/adi,adm1266.yaml
 create mode 100644 Documentation/hwmon/adm1266.rst
 create mode 100644 drivers/hwmon/pmbus/adm1266.c

-- 
2.20.1


^ permalink raw reply	[flat|nested] 16+ messages in thread
* Re: [PATCH v7 2/9] hwmon: pmbus: adm1266: Add Block process call
@ 2020-08-01  6:36 kernel test robot
  0 siblings, 0 replies; 16+ messages in thread
From: kernel test robot @ 2020-08-01  6:36 UTC (permalink / raw)
  To: kbuild

[-- Attachment #1: Type: text/plain, Size: 6604 bytes --]

CC: kbuild-all(a)lists.01.org
In-Reply-To: <20200727161928.14122-3-alexandru.tachici@analog.com>
References: <20200727161928.14122-3-alexandru.tachici@analog.com>
TO: alexandru.tachici(a)analog.com
TO: linux-hwmon(a)vger.kernel.org
TO: linux-kernel(a)vger.kernel.org
TO: devicetree(a)vger.kernel.org
CC: robh+dt(a)kernel.org
CC: linux(a)roeck-us.net
CC: Alexandru Tachici <alexandru.tachici@analog.com>

Hi,

I love your patch! Perhaps something to improve:

[auto build test WARNING on hwmon/hwmon-next]
[also build test WARNING on linux/master robh/for-next linus/master v5.8-rc7 next-20200731]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]

url:    https://github.com/0day-ci/linux/commits/alexandru-tachici-analog-com/hwmon-pmbus-adm1266-add-support/20200728-002155
base:   https://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git hwmon-next
:::::: branch date: 5 days ago
:::::: commit date: 5 days ago
config: x86_64-randconfig-m001-20200731 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-14) 9.3.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>

smatch warnings:
drivers/hwmon/pmbus/adm1266.c:88 adm1266_pmbus_block_xfer() warn: inconsistent returns 'data->buf_mutex'.

# https://github.com/0day-ci/linux/commit/878684621a66ce0c9e2bdd10f9232b07e48ede96
git remote add linux-review https://github.com/0day-ci/linux
git remote update linux-review
git checkout 878684621a66ce0c9e2bdd10f9232b07e48ede96
vim +88 drivers/hwmon/pmbus/adm1266.c

878684621a66ce0 Alexandru Tachici 2020-07-27  28  
878684621a66ce0 Alexandru Tachici 2020-07-27  29  /*
878684621a66ce0 Alexandru Tachici 2020-07-27  30   * Different from Block Read as it sends data and waits for the slave to
878684621a66ce0 Alexandru Tachici 2020-07-27  31   * return a value dependent on that data. The protocol is simply a Write Block
878684621a66ce0 Alexandru Tachici 2020-07-27  32   * followed by a Read Block without the Read-Block command field and the
878684621a66ce0 Alexandru Tachici 2020-07-27  33   * Write-Block STOP bit.
878684621a66ce0 Alexandru Tachici 2020-07-27  34   */
878684621a66ce0 Alexandru Tachici 2020-07-27  35  static int adm1266_pmbus_block_xfer(struct adm1266_data *data, u8 cmd, u8 w_len, u8 *data_w,
878684621a66ce0 Alexandru Tachici 2020-07-27  36  				    u8 *data_r)
878684621a66ce0 Alexandru Tachici 2020-07-27  37  {
878684621a66ce0 Alexandru Tachici 2020-07-27  38  	struct i2c_client *client = data->client;
878684621a66ce0 Alexandru Tachici 2020-07-27  39  	struct i2c_msg msgs[2] = {
878684621a66ce0 Alexandru Tachici 2020-07-27  40  		{
878684621a66ce0 Alexandru Tachici 2020-07-27  41  			.addr = client->addr,
878684621a66ce0 Alexandru Tachici 2020-07-27  42  			.flags = I2C_M_DMA_SAFE,
878684621a66ce0 Alexandru Tachici 2020-07-27  43  			.buf = data->write_buf,
878684621a66ce0 Alexandru Tachici 2020-07-27  44  			.len = w_len + 2,
878684621a66ce0 Alexandru Tachici 2020-07-27  45  		},
878684621a66ce0 Alexandru Tachici 2020-07-27  46  		{
878684621a66ce0 Alexandru Tachici 2020-07-27  47  			.addr = client->addr,
878684621a66ce0 Alexandru Tachici 2020-07-27  48  			.flags = I2C_M_RD | I2C_M_DMA_SAFE,
878684621a66ce0 Alexandru Tachici 2020-07-27  49  			.buf = data->read_buf,
878684621a66ce0 Alexandru Tachici 2020-07-27  50  			.len = ADM1266_PMBUS_BLOCK_MAX + 2,
878684621a66ce0 Alexandru Tachici 2020-07-27  51  		}
ac5fec412db3640 Alexandru Tachici 2020-07-27  52  	};
878684621a66ce0 Alexandru Tachici 2020-07-27  53  	u8 addr;
878684621a66ce0 Alexandru Tachici 2020-07-27  54  	u8 crc;
878684621a66ce0 Alexandru Tachici 2020-07-27  55  	int ret;
878684621a66ce0 Alexandru Tachici 2020-07-27  56  
878684621a66ce0 Alexandru Tachici 2020-07-27  57  	mutex_lock(&data->buf_mutex);
878684621a66ce0 Alexandru Tachici 2020-07-27  58  
878684621a66ce0 Alexandru Tachici 2020-07-27  59  	msgs[0].buf[0] = cmd;
878684621a66ce0 Alexandru Tachici 2020-07-27  60  	msgs[0].buf[1] = w_len;
878684621a66ce0 Alexandru Tachici 2020-07-27  61  	memcpy(&msgs[0].buf[2], data_w, w_len);
878684621a66ce0 Alexandru Tachici 2020-07-27  62  
878684621a66ce0 Alexandru Tachici 2020-07-27  63  	ret = i2c_transfer(client->adapter, msgs, 2);
878684621a66ce0 Alexandru Tachici 2020-07-27  64  	if (ret != 2) {
878684621a66ce0 Alexandru Tachici 2020-07-27  65  		if (ret >= 0)
878684621a66ce0 Alexandru Tachici 2020-07-27  66  			ret = -EPROTO;
878684621a66ce0 Alexandru Tachici 2020-07-27  67  		return ret;
878684621a66ce0 Alexandru Tachici 2020-07-27  68  	}
878684621a66ce0 Alexandru Tachici 2020-07-27  69  
878684621a66ce0 Alexandru Tachici 2020-07-27  70  	if (client->flags & I2C_CLIENT_PEC) {
878684621a66ce0 Alexandru Tachici 2020-07-27  71  		addr = i2c_8bit_addr_from_msg(&msgs[0]);
878684621a66ce0 Alexandru Tachici 2020-07-27  72  		crc = crc8(pmbus_crc_table, &addr, 1, 0);
878684621a66ce0 Alexandru Tachici 2020-07-27  73  		crc = crc8(pmbus_crc_table, msgs[0].buf,  msgs[0].len, crc);
878684621a66ce0 Alexandru Tachici 2020-07-27  74  
878684621a66ce0 Alexandru Tachici 2020-07-27  75  		addr = i2c_8bit_addr_from_msg(&msgs[1]);
878684621a66ce0 Alexandru Tachici 2020-07-27  76  		crc = crc8(pmbus_crc_table, &addr, 1, crc);
878684621a66ce0 Alexandru Tachici 2020-07-27  77  		crc = crc8(pmbus_crc_table, msgs[1].buf,  msgs[1].buf[0] + 1, crc);
878684621a66ce0 Alexandru Tachici 2020-07-27  78  
878684621a66ce0 Alexandru Tachici 2020-07-27  79  		if (crc != msgs[1].buf[msgs[1].buf[0] + 1])
878684621a66ce0 Alexandru Tachici 2020-07-27  80  			return -EBADMSG;
878684621a66ce0 Alexandru Tachici 2020-07-27  81  	}
878684621a66ce0 Alexandru Tachici 2020-07-27  82  
878684621a66ce0 Alexandru Tachici 2020-07-27  83  	memcpy(data_r, &msgs[1].buf[1], msgs[1].buf[0]);
878684621a66ce0 Alexandru Tachici 2020-07-27  84  
878684621a66ce0 Alexandru Tachici 2020-07-27  85  	ret = msgs[1].buf[0];
878684621a66ce0 Alexandru Tachici 2020-07-27  86  	mutex_unlock(&data->buf_mutex);
878684621a66ce0 Alexandru Tachici 2020-07-27  87  
878684621a66ce0 Alexandru Tachici 2020-07-27 @88  	return ret;
878684621a66ce0 Alexandru Tachici 2020-07-27  89  }
ac5fec412db3640 Alexandru Tachici 2020-07-27  90  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 36735 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PATCH v7 0/9] hwmon: pmbus: adm1266: add support
@ 2020-07-27 16:18 alexandru.tachici
  2020-07-27 16:18 ` [PATCH v7 2/9] hwmon: pmbus: adm1266: Add Block process call alexandru.tachici
  0 siblings, 1 reply; 16+ messages in thread
From: alexandru.tachici @ 2020-07-27 16:18 UTC (permalink / raw)
  To: linux-iio, linux-kernel, devicetree; +Cc: jic23, robh+dt

From: Alexandru Tachici <alexandru.tachici@analog.com>

Add PMBus probing driver for the adm1266 Cascadable
Super Sequencer with Margin Control and Fault Recording.
Driver is using the pmbus_core, creating sysfs files
under hwmon for inputs: vh1->vh4 and vp1->vp13.

1. Add PMBus probing driver for inputs vh1->vh4
and vp1->vp13.

2. Add Block Write-Read Process Call command.
A PMBus specific implementation was required because
block write with I2C_SMBUS_PROC_CALL flag allows a
maximum of 32 bytes to be received.

3. This makes adm1266 driver expose GPIOs
to user-space. Currently are read only. Future
developments on the firmware will allow
them to be writable.

4. Allow the current sate of the sequencer to be read
through debugfs.

5. Blackboxes are 64 bytes of chip state related data
that is generated on faults. Use the nvmem kernel api
to expose the blackbox chip functionality to userspace.

6. Add group command support. This will allow the driver
to stop/program all cascaded adm1266 devices at once.

7. Writing the firmware hex file with offset 0
to the nvmem of the master adm1266 will trigger
the firmware programming of all cascaded devices.
The master adm1266 of each device is specified in
the devicetree.

8. Writing the configuration hex file to 0x30000
byte address of the nvmem file will trigger the
programming of that device in particular.

9. DT bindings for ADM1266.

Alexandru Tachici (9):
  hwmon: pmbus: adm1266: add support
  hwmon: pmbus: adm1266: Add Block process call
  hwmon: pmbus: adm1266: Add support for GPIOs
  hwmon: pmbus: adm1266: add debugfs for states
  hwmon: pmbus: adm1266: read blackbox
  hwmon: pmbus: adm1266: Add group command support
  hwmon: pmbus: adm1266: program firmware
  hwmon: pmbus: adm1266: program configuration
  dt-bindings: hwmon: Add bindings for ADM1266

Changelog: v5 -> v6:
  - added adm1266 to index.rst
  - changed max lines length from 80 to 100
  - replaced i2c_get_dma_safe_msg_buf with the use of kzalloc and ____cacheline_aligned
  - removed #ifdef CONFIG_GPIOLIB
  - removed ioctl commands, the state of the device can be read through debugfs
  - use the device managed version of nvmem_register
  - on power-up, set the UNIX time to adm1266 (this value is reset
  to 0 on each power-cycle).
  - removed patch adm1266: debugfs for blackbox info, rtc in blackbox is enough
  to help identify the current index
  - added two new nvmem cells for firmware and configuration

Changelog: v6 -> v7:
  - fixed compilation warning: removed unused variable ,entry, in
adm1266_init_debugfs

 .../bindings/hwmon/adi,adm1266.yaml           |   56 +
 Documentation/hwmon/adm1266.rst               |   37 +
 Documentation/hwmon/index.rst                 |    1 +
 drivers/hwmon/pmbus/Kconfig                   |   10 +
 drivers/hwmon/pmbus/Makefile                  |    1 +
 drivers/hwmon/pmbus/adm1266.c                 | 1272 +++++++++++++++++
 6 files changed, 1377 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/hwmon/adi,adm1266.yaml
 create mode 100644 Documentation/hwmon/adm1266.rst
 create mode 100644 drivers/hwmon/pmbus/adm1266.c

-- 
2.20.1


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-08-07 16:05 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-27 16:19 [PATCH v7 0/9] hwmon: pmbus: adm1266: add support alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 1/9] " alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 2/9] hwmon: pmbus: adm1266: Add Block process call alexandru.tachici
2020-08-05 11:55   ` Dan Carpenter
2020-08-05 11:55     ` Dan Carpenter
2020-08-05 11:55     ` Dan Carpenter
2020-07-27 16:19 ` [PATCH v7 3/9] hwmon: pmbus: adm1266: Add support for GPIOs alexandru.tachici
2020-08-07 16:05   ` Guenter Roeck
2020-07-27 16:19 ` [PATCH v7 4/9] hwmon: pmbus: adm1266: add debugfs for states alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 5/9] hwmon: pmbus: adm1266: read blackbox alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 6/9] hwmon: pmbus: adm1266: Add group command support alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 7/9] hwmon: pmbus: adm1266: program firmware alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 8/9] hwmon: pmbus: adm1266: program configuration alexandru.tachici
2020-07-27 16:19 ` [PATCH v7 9/9] dt-bindings: hwmon: Add bindings for ADM1266 alexandru.tachici
  -- strict thread matches above, loose matches on Subject: below --
2020-08-01  6:36 [PATCH v7 2/9] hwmon: pmbus: adm1266: Add Block process call kernel test robot
2020-07-27 16:18 [PATCH v7 0/9] hwmon: pmbus: adm1266: add support alexandru.tachici
2020-07-27 16:18 ` [PATCH v7 2/9] hwmon: pmbus: adm1266: Add Block process call alexandru.tachici

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.