clock2430.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * clock2430.c - OMAP2430-specific clock integration code
  3. *
  4. * Copyright (C) 2005-2008 Texas Instruments, Inc.
  5. * Copyright (C) 2004-2010 Nokia Corporation
  6. *
  7. * Contacts:
  8. * Richard Woodruff <r-woodruff2@ti.com>
  9. * Paul Walmsley
  10. *
  11. * Based on earlier work by Tuukka Tikkanen, Tony Lindgren,
  12. * Gordon McNutt and RidgeRun, Inc.
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License version 2 as
  16. * published by the Free Software Foundation.
  17. */
  18. #undef DEBUG
  19. #include <linux/kernel.h>
  20. #include <linux/clk.h>
  21. #include <linux/io.h>
  22. #include "soc.h"
  23. #include "iomap.h"
  24. #include "clock.h"
  25. #include "clock2xxx.h"
  26. #include "cm2xxx.h"
  27. #include "cm-regbits-24xx.h"
  28. /**
  29. * omap2430_clk_i2chs_find_idlest - return CM_IDLEST info for 2430 I2CHS
  30. * @clk: struct clk * being enabled
  31. * @idlest_reg: void __iomem ** to store CM_IDLEST reg address into
  32. * @idlest_bit: pointer to a u8 to store the CM_IDLEST bit shift into
  33. * @idlest_val: pointer to a u8 to store the CM_IDLEST indicator
  34. *
  35. * OMAP2430 I2CHS CM_IDLEST bits are in CM_IDLEST1_CORE, but the
  36. * CM_*CLKEN bits are in CM_{I,F}CLKEN2_CORE. This custom function
  37. * passes back the correct CM_IDLEST register address for I2CHS
  38. * modules. No return value.
  39. */
  40. #ifdef CONFIG_COMMON_CLK
  41. static void omap2430_clk_i2chs_find_idlest(struct clk_hw_omap *clk,
  42. #else
  43. static void omap2430_clk_i2chs_find_idlest(struct clk *clk,
  44. #endif
  45. void __iomem **idlest_reg,
  46. u8 *idlest_bit,
  47. u8 *idlest_val)
  48. {
  49. *idlest_reg = OMAP2430_CM_REGADDR(CORE_MOD, CM_IDLEST);
  50. *idlest_bit = clk->enable_bit;
  51. *idlest_val = OMAP24XX_CM_IDLEST_VAL;
  52. }
  53. /* 2430 I2CHS has non-standard IDLEST register */
  54. #ifdef CONFIG_COMMON_CLK
  55. const struct clk_hw_omap_ops clkhwops_omap2430_i2chs_wait = {
  56. .find_idlest = omap2430_clk_i2chs_find_idlest,
  57. .find_companion = omap2_clk_dflt_find_companion,
  58. };
  59. #else
  60. const struct clkops clkops_omap2430_i2chs_wait = {
  61. .enable = omap2_dflt_clk_enable,
  62. .disable = omap2_dflt_clk_disable,
  63. .find_idlest = omap2430_clk_i2chs_find_idlest,
  64. .find_companion = omap2_clk_dflt_find_companion,
  65. };
  66. #endif