clock36xx.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/io.h>
  23. #include <plat/clock.h>
  24. #include "clock.h"
  25. #include "clock36xx.h"
  26. /**
  27. * omap36xx_pwrdn_clk_enable_with_hsdiv_restore - enable clocks suffering
  28. * from HSDivider PWRDN problem Implements Errata ID: i556.
  29. * @clk: DPLL output struct clk
  30. *
  31. * 3630 only: dpll3_m3_ck, dpll4_m2_ck, dpll4_m3_ck, dpll4_m4_ck,
  32. * dpll4_m5_ck & dpll4_m6_ck dividers gets loaded with reset
  33. * valueafter their respective PWRDN bits are set. Any dummy write
  34. * (Any other value different from the Read value) to the
  35. * corresponding CM_CLKSEL register will refresh the dividers.
  36. */
  37. static int omap36xx_pwrdn_clk_enable_with_hsdiv_restore(struct clk *clk)
  38. {
  39. u32 dummy_v, orig_v, clksel_shift;
  40. int ret;
  41. /* Clear PWRDN bit of HSDIVIDER */
  42. ret = omap2_dflt_clk_enable(clk);
  43. /* Restore the dividers */
  44. if (!ret) {
  45. clksel_shift = __ffs(clk->parent->clksel_mask);
  46. orig_v = __raw_readl(clk->parent->clksel_reg);
  47. dummy_v = orig_v;
  48. /* Write any other value different from the Read value */
  49. dummy_v ^= (1 << clksel_shift);
  50. __raw_writel(dummy_v, clk->parent->clksel_reg);
  51. /* Write the original divider */
  52. __raw_writel(orig_v, clk->parent->clksel_reg);
  53. }
  54. return ret;
  55. }
  56. const struct clkops clkops_omap36xx_pwrdn_with_hsdiv_wait_restore = {
  57. .enable = omap36xx_pwrdn_clk_enable_with_hsdiv_restore,
  58. .disable = omap2_dflt_clk_disable,
  59. .find_companion = omap2_clk_dflt_find_companion,
  60. .find_idlest = omap2_clk_dflt_find_idlest,
  61. };