mbox series

[v6,0/2] i2c: added driver for Mellanox BlueField SoC

Message ID cover.1571868492.git.kblaiech@mellanox.com
Headers show
Series i2c: added driver for Mellanox BlueField SoC | expand

Message

Khalil Blaiech Oct. 23, 2019, 10:14 p.m. UTC
Added I2C SMBus driver and device tree bindings documentation.

Changes since v5:

* Device bindings documentation:

  - Added description of an extra resource to be consistent
    with new BlueField-2 SoCs.
  - Added an additional example of device instance.

* Driver source code:

  - Fix generic Kernel coding issues.
  - Fix coding style issues detected through --strict flag.
  - Update SPDX identifier and module license.
  - Cleanup driver code.

Khalil Blaiech (2):
  i2c: i2c-mlx: I2C SMBus driver for Mellanox BlueField SoC
  dt-bindings: i2c: I2C binding for Mellanox BlueField SoC

 .../devicetree/bindings/i2c/mellanox,i2c-mlxbf.txt |   42 +
 drivers/i2c/busses/Kconfig                         |   13 +
 drivers/i2c/busses/Makefile                        |    1 +
 drivers/i2c/busses/i2c-mlx.c                       | 2568 ++++++++++++++++++++
 4 files changed, 2624 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.txt
 create mode 100644 drivers/i2c/busses/i2c-mlx.c