mbox series

[v2,0/4] dt-bindings: mfd: Add bindings for the Mediatek MT6360

Message ID 1592567631-20363-1-git-send-email-gene.chen.richtek@gmail.com (mailing list archive)
Headers show
Series dt-bindings: mfd: Add bindings for the Mediatek MT6360 | expand

Message

Gene Chen June 19, 2020, 11:53 a.m. UTC
This patch series add mt6360 sub-device adc/regulator and
fix mfd architecture and add dt-binding document

changelogs between v1 & v2
- adjust binding document schema include mfd/adc/regulator
- adc: use IIO_CHAN_INFO_PROCESSED only
- adc: use devm_iio_triggered_buffer_setup
- adc: use use s64 to record timestamp
- regulator: merge regmap to mfd driver for r/w with crc

Gene Chen (4)
  dt-bindings: mfd: Add bindings for the Mediatek MT6360
  mfd: mt6360: implement i2c R/W with CRC
  iio: adc: mt6360: Add ADC driver for MT6360
  regulator: mt6360: Add support for MT6360 regulator

 Documentation/devicetree/bindings/mfd/mt6360.txt |  122 +++++
 drivers/iio/adc/Kconfig                          |   11 
 drivers/iio/adc/Makefile                         |    1 
 drivers/iio/adc/mt6360-adc.c                     |  388 ++++++++++++++++
 drivers/mfd/Kconfig                              |    1 
 drivers/mfd/mt6360-core.c                        |  541 +++++++++++++++--------
 drivers/regulator/Kconfig                        |    9 
 drivers/regulator/Makefile                       |    1 
 drivers/regulator/mt6360-regulator.c             |  485 ++++++++++++++++++++
 include/dt-bindings/mfd/mt6360.h                 |   15 
 include/linux/mfd/mt6360.h                       |  240 ----------
 11 files changed, 1389 insertions(+), 425 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/mt6360.txt
 create mode 100644 include/dt-bindings/mfd/mt6360.h
 delete mode 100644 include/linux/mfd/mt6360.h
 create mode 100644 drivers/iio/adc/mt6360-adc.c
 create mode 100644 drivers/regulator/mt6360-regulator.c

Comments

Jonathan Cameron June 20, 2020, 4:55 p.m. UTC | #1
On Fri, 19 Jun 2020 19:53:47 +0800
Gene Chen <gene.chen.richtek@gmail.com> wrote:

> This patch series add mt6360 sub-device adc/regulator and
> fix mfd architecture and add dt-binding document

Hi Gene

Please make sure you include linux-iio@vger.kernel.org in the cc list
for any iio related series.  For now I'll take a quick look at the
ADC driver patch (and +cc the list for my reply)

Thanks,

Jonathan

> 
> changelogs between v1 & v2
> - adjust binding document schema include mfd/adc/regulator
> - adc: use IIO_CHAN_INFO_PROCESSED only
> - adc: use devm_iio_triggered_buffer_setup
> - adc: use use s64 to record timestamp
> - regulator: merge regmap to mfd driver for r/w with crc
> 
> Gene Chen (4)
>   dt-bindings: mfd: Add bindings for the Mediatek MT6360
>   mfd: mt6360: implement i2c R/W with CRC
>   iio: adc: mt6360: Add ADC driver for MT6360
>   regulator: mt6360: Add support for MT6360 regulator
> 
>  Documentation/devicetree/bindings/mfd/mt6360.txt |  122 +++++
>  drivers/iio/adc/Kconfig                          |   11 
>  drivers/iio/adc/Makefile                         |    1 
>  drivers/iio/adc/mt6360-adc.c                     |  388 ++++++++++++++++
>  drivers/mfd/Kconfig                              |    1 
>  drivers/mfd/mt6360-core.c                        |  541 +++++++++++++++--------
>  drivers/regulator/Kconfig                        |    9 
>  drivers/regulator/Makefile                       |    1 
>  drivers/regulator/mt6360-regulator.c             |  485 ++++++++++++++++++++
>  include/dt-bindings/mfd/mt6360.h                 |   15 
>  include/linux/mfd/mt6360.h                       |  240 ----------
>  11 files changed, 1389 insertions(+), 425 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/mfd/mt6360.txt
>  create mode 100644 include/dt-bindings/mfd/mt6360.h
>  delete mode 100644 include/linux/mfd/mt6360.h
>  create mode 100644 drivers/iio/adc/mt6360-adc.c
>  create mode 100644 drivers/regulator/mt6360-regulator.c