clock.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * TI DaVinci clock definitions
  3. *
  4. * Copyright (C) 2006-2007 Texas Instruments.
  5. * Copyright (C) 2008-2009 Deep Root Systems, LLC
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef __ARCH_ARM_DAVINCI_CLOCK_H
  12. #define __ARCH_ARM_DAVINCI_CLOCK_H
  13. /* PLL/Reset register offsets */
  14. #define PLLCTL 0x100
  15. #define PLLCTL_PLLEN BIT(0)
  16. #define PLLCTL_PLLPWRDN BIT(1)
  17. #define PLLCTL_PLLRST BIT(3)
  18. #define PLLCTL_PLLDIS BIT(4)
  19. #define PLLCTL_PLLENSRC BIT(5)
  20. #define PLLCTL_CLKMODE BIT(8)
  21. #define PLLM 0x110
  22. #define PLLM_PLLM_MASK 0xff
  23. #define PREDIV 0x114
  24. #define PLLDIV1 0x118
  25. #define PLLDIV2 0x11c
  26. #define PLLDIV3 0x120
  27. #define POSTDIV 0x128
  28. #define BPDIV 0x12c
  29. #define PLLCMD 0x138
  30. #define PLLSTAT 0x13c
  31. #define PLLALNCTL 0x140
  32. #define PLLDCHANGE 0x144
  33. #define PLLCKEN 0x148
  34. #define PLLCKSTAT 0x14c
  35. #define PLLSYSTAT 0x150
  36. #define PLLDIV4 0x160
  37. #define PLLDIV5 0x164
  38. #define PLLDIV6 0x168
  39. #define PLLDIV7 0x16c
  40. #define PLLDIV8 0x170
  41. #define PLLDIV9 0x174
  42. #define PLLDIV_EN BIT(15)
  43. #define PLLDIV_RATIO_MASK 0x1f
  44. /*
  45. * OMAP-L138 system reference guide recommends a wait for 4 OSCIN/CLKIN
  46. * cycles to ensure that the PLLC has switched to bypass mode. Delay of 1us
  47. * ensures we are good for all > 4MHz OSCIN/CLKIN inputs. Typically the input
  48. * is ~25MHz. Units are micro seconds.
  49. */
  50. #define PLL_BYPASS_TIME 1
  51. /* From OMAP-L138 datasheet table 6-4. Units are micro seconds */
  52. #define PLL_RESET_TIME 1
  53. /*
  54. * From OMAP-L138 datasheet table 6-4; assuming prediv = 1, sqrt(pllm) = 4
  55. * Units are micro seconds.
  56. */
  57. #define PLL_LOCK_TIME 20
  58. #endif