0346-clk-bcm2835-Mark-GPIO-clocks-enabled-at-boot-as-crit.patch 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. From 3ee855d8520adaba936bccf377433468fb1c3ab0 Mon Sep 17 00:00:00 2001
  2. From: Eric Anholt <eric@anholt.net>
  3. Date: Mon, 9 May 2016 17:28:18 -0700
  4. Subject: [PATCH] clk: bcm2835: Mark GPIO clocks enabled at boot as critical.
  5. These divide off of PLLD_PER and are used for the ethernet and wifi
  6. PHYs source PLLs. Neither of them is currently represented by a phy
  7. device that would grab the clock for us.
  8. This keeps other drivers from killing the networking PHYs when they
  9. disable their own clocks and trigger PLLD_PER's refcount going to 0.
  10. v2: Skip marking as critical if they aren't on at boot.
  11. Signed-off-by: Eric Anholt <eric@anholt.net>
  12. ---
  13. drivers/clk/bcm/clk-bcm2835.c | 13 ++++++++++++-
  14. 1 file changed, 12 insertions(+), 1 deletion(-)
  15. --- a/drivers/clk/bcm/clk-bcm2835.c
  16. +++ b/drivers/clk/bcm/clk-bcm2835.c
  17. @@ -1254,6 +1254,15 @@ static struct clk *bcm2835_register_cloc
  18. init.name = data->name;
  19. init.flags = data->flags | CLK_IGNORE_UNUSED;
  20. + /*
  21. + * Some GPIO clocks for ethernet/wifi PLLs are marked as
  22. + * critical (since some platforms use them), but if the
  23. + * firmware didn't have them turned on then they clearly
  24. + * aren't actually critical.
  25. + */
  26. + if ((cprman_read(cprman, data->ctl_reg) & CM_ENABLE) == 0)
  27. + init.flags &= ~CLK_IS_CRITICAL;
  28. +
  29. if (data->is_vpu_clock) {
  30. init.ops = &bcm2835_vpu_clock_clk_ops;
  31. } else {
  32. @@ -1728,13 +1737,15 @@ static const struct bcm2835_clk_desc clk
  33. .div_reg = CM_GP1DIV,
  34. .int_bits = 12,
  35. .frac_bits = 12,
  36. + .flags = CLK_IS_CRITICAL,
  37. .is_mash_clock = true),
  38. [BCM2835_CLOCK_GP2] = REGISTER_PER_CLK(
  39. .name = "gp2",
  40. .ctl_reg = CM_GP2CTL,
  41. .div_reg = CM_GP2DIV,
  42. .int_bits = 12,
  43. - .frac_bits = 12),
  44. + .frac_bits = 12,
  45. + .flags = CLK_IS_CRITICAL),
  46. /* HDMI state machine */
  47. [BCM2835_CLOCK_HSM] = REGISTER_PER_CLK(