clock36xx.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * OMAP36xx-specific clkops
  3. *
  4. * Copyright (C) 2010 Texas Instruments, Inc.
  5. * Copyright (C) 2010 Nokia Corporation
  6. *
  7. * Mike Turquette
  8. * Vijaykumar GN
  9. * Paul Walmsley
  10. *
  11. * Parts of this code are based on code written by
  12. * Richard Woodruff, Tony Lindgren, Tuukka Tikkanen, Karthik Dasu,
  13. * Russell King
  14. *
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License version 2 as
  17. * published by the Free Software Foundation.
  18. */
  19. #undef DEBUG
  20. #include <linux/kernel.h>
  21. #include <linux/clk.h>
  22. #include <linux/clk-provider.h>
  23. #include <linux/io.h>
  24. #include "clock.h"
  25. #include "clock36xx.h"
  26. #define to_clk_divider(_hw) container_of(_hw, struct clk_divider, hw)
  27. /**
  28. * omap36xx_pwrdn_clk_enable_with_hsdiv_restore - enable clocks suffering
  29. * from HSDivider PWRDN problem Implements Errata ID: i556.
  30. * @clk: DPLL output struct clk
  31. *
  32. * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
  33. * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
  34. * valueafter their respective PWRDN bits are set. Any dummy write
  35. * (Any other value different from the Read value) to the
  36. * corresponding CM_CLKSEL register will refresh the dividers.
  37. */
  38. int omap36xx_pwrdn_clk_enable_with_hsdiv_restore(struct clk_hw *clk)
  39. {
  40. struct clk_divider *parent;
  41. struct clk_hw *parent_hw;
  42. u32 dummy_v, orig_v;
  43. int ret;
  44. /* Clear PWRDN bit of HSDIVIDER */
  45. ret = omap2_dflt_clk_enable(clk);
  46. parent_hw = __clk_get_hw(__clk_get_parent(clk->clk));
  47. parent = to_clk_divider(parent_hw);
  48. /* Restore the dividers */
  49. if (!ret) {
  50. orig_v = __raw_readl(parent->reg);
  51. dummy_v = orig_v;
  52. /* Write any other value different from the Read value */
  53. dummy_v ^= (1 << parent->shift);
  54. __raw_writel(dummy_v, parent->reg);
  55. /* Write the original divider */
  56. __raw_writel(orig_v, parent->reg);
  57. }
  58. return ret;
  59. }