Message ID | 20200609105244.4014823-1-noltari@gmail.com (mailing list archive) |
---|---|
Headers | show |
Series | bmips: add BCM63xx power domain controller | expand |
BCM6318, BCM6328, BCM6362 and BCM63268 SoCs have a power domain controller to enable/disable certain components in order to save power. v2: Introduce changes suggested by Florian: - Add separate YAML file for dt-bindings. - Add bcm63xx folder in drivers/soc/bcm. - Update MAINTAINERS. - Add dt-bindings header files. - Also add BCM63268 support. Álvaro Fernández Rojas (6): dt-bindings: soc: brcm: add BCM63xx power domain binding soc: bcm: add BCM63xx power domain driver mips: bmips: dts: add BCM6328 power domain support mips: bmips: dts: add BCM6362 power domain support mips: bmips: dts: add BCM63268 power domain support mips: bmips: add BCM6318 power domain definitions .../bindings/soc/bcm/brcm,bcm63xx-power.yaml | 44 +++ MAINTAINERS | 1 + arch/mips/boot/dts/brcm/bcm63268.dtsi | 6 + arch/mips/boot/dts/brcm/bcm6328.dtsi | 6 + arch/mips/boot/dts/brcm/bcm6362.dtsi | 6 + drivers/soc/bcm/Kconfig | 10 + drivers/soc/bcm/Makefile | 1 + drivers/soc/bcm/bcm63xx/Kconfig | 12 + drivers/soc/bcm/bcm63xx/Makefile | 2 + drivers/soc/bcm/bcm63xx/bcm63xx-power.c | 374 ++++++++++++++++++ include/dt-bindings/soc/bcm6318-pm.h | 17 + include/dt-bindings/soc/bcm63268-pm.h | 21 + include/dt-bindings/soc/bcm6328-pm.h | 17 + include/dt-bindings/soc/bcm6362-pm.h | 21 + 14 files changed, 538 insertions(+) create mode 100644 Documentation/devicetree/bindings/soc/bcm/brcm,bcm63xx-power.yaml create mode 100644 drivers/soc/bcm/bcm63xx/Kconfig create mode 100644 drivers/soc/bcm/bcm63xx/Makefile create mode 100644 drivers/soc/bcm/bcm63xx/bcm63xx-power.c create mode 100644 include/dt-bindings/soc/bcm6318-pm.h create mode 100644 include/dt-bindings/soc/bcm63268-pm.h create mode 100644 include/dt-bindings/soc/bcm6328-pm.h create mode 100644 include/dt-bindings/soc/bcm6362-pm.h
On 6/10/2020 9:32 AM, Álvaro Fernández Rojas wrote: > BCM6318, BCM6328, BCM6362 and BCM63268 SoCs have a power domain controller > to enable/disable certain components in order to save power. > > v2: Introduce changes suggested by Florian: > - Add separate YAML file for dt-bindings. > - Add bcm63xx folder in drivers/soc/bcm. > - Update MAINTAINERS. > - Add dt-bindings header files. > - Also add BCM63268 support. Thomas, since I typically send pull requests to soc@kernel.org for drivers/soc/bcm/, do you want me to take the full series and updatse to drivers/soc/bcm/bcm63xx/ in the future as well?