044-0008-ARM-BCM53573-Specify-PMU-and-its-ILP-clock-in-the-DT.patch 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. From 547f23183d9d77b51754689a71e3e58d085ccaec Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
  3. Date: Sat, 17 Sep 2016 22:13:46 +0200
  4. Subject: [PATCH] ARM: BCM53573: Specify PMU and its ILP clock in the DT
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ILP clock (sometimes called a "slow clock") is a part of PMU (Power
  9. Management Unit). There has been recently added a driver for it, so add
  10. a proper entry in the DT as well.
  11. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
  12. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
  13. ---
  14. arch/arm/boot/dts/bcm53573.dtsi | 12 ++++++++++++
  15. 1 file changed, 12 insertions(+)
  16. --- a/arch/arm/boot/dts/bcm53573.dtsi
  17. +++ b/arch/arm/boot/dts/bcm53573.dtsi
  18. @@ -143,5 +143,17 @@
  19. gmac1: ethernet@b000 {
  20. reg = <0xb000 0x1000>;
  21. };
  22. +
  23. + pmu@12000 {
  24. + compatible = "simple-mfd", "syscon";
  25. + reg = <0x00012000 0x00001000>;
  26. +
  27. + ilp: ilp {
  28. + compatible = "brcm,bcm53573-ilp";
  29. + clocks = <&alp>;
  30. + #clock-cells = <0>;
  31. + clock-output-names = "ilp";
  32. + };
  33. + };
  34. };
  35. };