icst.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. * arch/arm/include/asm/hardware/icst.h
  3. *
  4. * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Support functions for calculating clocks/divisors for the ICST
  11. * clock generators. See http://www.idt.com/ for more information
  12. * on these devices.
  13. */
  14. #ifndef ASMARM_HARDWARE_ICST_H
  15. #define ASMARM_HARDWARE_ICST_H
  16. struct icst_params {
  17. unsigned long ref;
  18. unsigned long vco_max; /* inclusive */
  19. unsigned long vco_min; /* exclusive */
  20. unsigned short vd_min; /* inclusive */
  21. unsigned short vd_max; /* inclusive */
  22. unsigned char rd_min; /* inclusive */
  23. unsigned char rd_max; /* inclusive */
  24. const unsigned char *s2div; /* chip specific s2div array */
  25. const unsigned char *idx2s; /* chip specific idx2s array */
  26. };
  27. struct icst_vco {
  28. unsigned short v;
  29. unsigned char r;
  30. unsigned char s;
  31. };
  32. unsigned long icst_hz(const struct icst_params *p, struct icst_vco vco);
  33. struct icst_vco icst_hz_to_vco(const struct icst_params *p, unsigned long freq);
  34. /*
  35. * ICST307 VCO frequency must be between 6MHz and 200MHz (3.3 or 5V).
  36. * This frequency is pre-output divider.
  37. */
  38. #define ICST307_VCO_MIN 6000000
  39. #define ICST307_VCO_MAX 200000000
  40. extern const unsigned char icst307_s2div[];
  41. extern const unsigned char icst307_idx2s[];
  42. /*
  43. * ICST525 VCO frequency must be between 10MHz and 200MHz (3V) or 320MHz (5V).
  44. * This frequency is pre-output divider.
  45. */
  46. #define ICST525_VCO_MIN 10000000
  47. #define ICST525_VCO_MAX_3V 200000000
  48. #define ICST525_VCO_MAX_5V 320000000
  49. extern const unsigned char icst525_s2div[];
  50. extern const unsigned char icst525_idx2s[];
  51. #endif