1. 19 Oct, 2020 1 commit
  2. 05 Oct, 2020 5 commits
  3. 01 Oct, 2020 9 commits
  4. 30 Sep, 2020 2 commits
  5. 28 Sep, 2020 6 commits
  6. 21 Sep, 2020 4 commits
  7. 17 Sep, 2020 3 commits
    • Mark Brown's avatar
      Merge series "Support ROHM BD9576MUF and BD9573MUF PMICs" from Matti Vaittinen... · 0199f866
      Mark Brown authored
      Merge series "Support ROHM BD9576MUF and BD9573MUF PMICs" from Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>:
      
      Initial support for ROHM BD9576MUF and BD9573MUF PMICs.
      
      These PMICs are primarily intended to be used to power the R-Car family
      processors. BD9576MUF includes some additional safety features the
      BD9573MUF does not have. This initial version of drivers does not
      utilize these features and for now the SW behaviour is identical.
      
      Please note that this version of drivers is only tested on BD9576MUF
      but according to the data-sheets the relevant parts of registers should
      be same so drivers should also work on BD9573MUF.
      
      This patch series includes MFD, watchdog and regulator drivers with
      basic functionality such as:
      
      - Enabling and pinging the watchdog
      - configuring watchog timeout / window from device-tree
      - reading regulator states/voltages
      - enabling/disabling VOUT1 (VD50) when control mode B is used.
      
      This patch series does not bring interrupt support. BD9576MUF and BD9573MUF
      are designed to keep the IRQ line low for whole duration of error
      condition. IRQ can't be 'acked'. So proper IRQ support would require
      some IRQ limiter implementation (delayed unmask?) in order to not hog
      the CPU.
      
      ---
      
      Matti Vaittinen (6):
        dt_bindings: mfd: Add ROHM BD9576MUF and BD9573MUF PMICs
        dt_bindings: regulator: Add ROHM BD9576MUF and BD9573MUF PMICs
        mfd: Support ROHM BD9576MUF and BD9573MUF
        wdt: Support wdt on ROHM BD9576MUF and BD9573MUF
        regulator: Support ROHM BD9576MUF and BD9573MUF
        MAINTAINERS: Add ROHM BD9576MUF and BD9573MUF drivers
      
       .../bindings/mfd/rohm,bd9576-pmic.yaml        | 129 +++++++
       .../regulator/rohm,bd9576-regulator.yaml      |  33 ++
       MAINTAINERS                                   |   4 +
       drivers/mfd/Kconfig                           |  11 +
       drivers/mfd/Makefile                          |   1 +
       drivers/mfd/rohm-bd9576.c                     | 130 +++++++
       drivers/regulator/Kconfig                     |  10 +
       drivers/regulator/Makefile                    |   1 +
       drivers/regulator/bd9576-regulator.c          | 337 ++++++++++++++++++
       drivers/watchdog/Kconfig                      |  13 +
       drivers/watchdog/Makefile                     |   1 +
       drivers/watchdog/bd9576_wdt.c                 | 295 +++++++++++++++
       include/linux/mfd/rohm-bd957x.h               |  61 ++++
       include/linux/mfd/rohm-generic.h              |   2 +
       14 files changed, 1028 insertions(+)
       create mode 100644 Documentation/devicetree/bindings/mfd/rohm,bd9576-pmic.yaml
       create mode 100644 Documentation/devicetree/bindings/regulator/rohm,bd9576-regulator.yaml
       create mode 100644 drivers/mfd/rohm-bd9576.c
       create mode 100644 drivers/regulator/bd9576-regulator.c
       create mode 100644 drivers/watchdog/bd9576_wdt.c
       create mode 100644 include/linux/mfd/rohm-bd957x.h
      
      base-commit: f4d51dff
      --
      2.21.0
      
      --
      Matti Vaittinen, Linux device drivers
      ROHM Semiconductors, Finland SWDC
      Kiviharjunlenkki 1E
      90220 OULU
      FINLAND
      
      ~~~ "I don't think so," said Rene Descartes. Just then he vanished ~~~
      Simon says - in Latin please.
      ~~~ "non cogito me" dixit Rene Descarte, deinde evanescavit ~~~
      Thanks to Simon Glass for the translation =]
      0199f866
    • Matti Vaittinen's avatar
      regulator: Support ROHM BD9576MUF and BD9573MUF · b014e9fa
      Matti Vaittinen authored
      Add initial support for ROHM BD9576MUF and BD9573MUF PMICs regulators.
      These PMICs are mainly used to power the R-Car series processors.
      
      The BD9576 includes some functional-safety features which are not
      present on BD9573.
      Signed-off-by: default avatarMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
      Link: https://lore.kernel.org/r/78baea1d7922506827ca717e277e4e6b391bbb78.1600329307.git.matti.vaittinen@fi.rohmeurope.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      b014e9fa
    • Matti Vaittinen's avatar
  8. 14 Sep, 2020 5 commits
  9. 10 Sep, 2020 2 commits
  10. 07 Sep, 2020 3 commits