pll-s3c2440-12000000.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2006-2007 Simtec Electronics
  3. * http://armlinux.simtec.co.uk/
  4. * Ben Dooks <ben@simtec.co.uk>
  5. * Vincent Sanders <vince@arm.linux.org.uk>
  6. *
  7. * S3C2440/S3C2442 CPU PLL tables (12MHz Crystal)
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/types.h>
  14. #include <linux/kernel.h>
  15. #include <linux/device.h>
  16. #include <linux/clk.h>
  17. #include <linux/err.h>
  18. #include <plat/cpu.h>
  19. #include <plat/cpu-freq-core.h>
  20. /* This array should be sorted in ascending order of the frequencies */
  21. static struct cpufreq_frequency_table s3c2440_plls_12[] = {
  22. { .frequency = 75000000, .driver_data = PLLVAL(0x75, 3, 3), }, /* FVco 600.000000 */
  23. { .frequency = 80000000, .driver_data = PLLVAL(0x98, 4, 3), }, /* FVco 640.000000 */
  24. { .frequency = 90000000, .driver_data = PLLVAL(0x70, 2, 3), }, /* FVco 720.000000 */
  25. { .frequency = 100000000, .driver_data = PLLVAL(0x5c, 1, 3), }, /* FVco 800.000000 */
  26. { .frequency = 110000000, .driver_data = PLLVAL(0x66, 1, 3), }, /* FVco 880.000000 */
  27. { .frequency = 120000000, .driver_data = PLLVAL(0x70, 1, 3), }, /* FVco 960.000000 */
  28. { .frequency = 150000000, .driver_data = PLLVAL(0x75, 3, 2), }, /* FVco 600.000000 */
  29. { .frequency = 160000000, .driver_data = PLLVAL(0x98, 4, 2), }, /* FVco 640.000000 */
  30. { .frequency = 170000000, .driver_data = PLLVAL(0x4d, 1, 2), }, /* FVco 680.000000 */
  31. { .frequency = 180000000, .driver_data = PLLVAL(0x70, 2, 2), }, /* FVco 720.000000 */
  32. { .frequency = 190000000, .driver_data = PLLVAL(0x57, 1, 2), }, /* FVco 760.000000 */
  33. { .frequency = 200000000, .driver_data = PLLVAL(0x5c, 1, 2), }, /* FVco 800.000000 */
  34. { .frequency = 210000000, .driver_data = PLLVAL(0x84, 2, 2), }, /* FVco 840.000000 */
  35. { .frequency = 220000000, .driver_data = PLLVAL(0x66, 1, 2), }, /* FVco 880.000000 */
  36. { .frequency = 230000000, .driver_data = PLLVAL(0x6b, 1, 2), }, /* FVco 920.000000 */
  37. { .frequency = 240000000, .driver_data = PLLVAL(0x70, 1, 2), }, /* FVco 960.000000 */
  38. { .frequency = 300000000, .driver_data = PLLVAL(0x75, 3, 1), }, /* FVco 600.000000 */
  39. { .frequency = 310000000, .driver_data = PLLVAL(0x93, 4, 1), }, /* FVco 620.000000 */
  40. { .frequency = 320000000, .driver_data = PLLVAL(0x98, 4, 1), }, /* FVco 640.000000 */
  41. { .frequency = 330000000, .driver_data = PLLVAL(0x66, 2, 1), }, /* FVco 660.000000 */
  42. { .frequency = 340000000, .driver_data = PLLVAL(0x4d, 1, 1), }, /* FVco 680.000000 */
  43. { .frequency = 350000000, .driver_data = PLLVAL(0xa7, 4, 1), }, /* FVco 700.000000 */
  44. { .frequency = 360000000, .driver_data = PLLVAL(0x70, 2, 1), }, /* FVco 720.000000 */
  45. { .frequency = 370000000, .driver_data = PLLVAL(0xb1, 4, 1), }, /* FVco 740.000000 */
  46. { .frequency = 380000000, .driver_data = PLLVAL(0x57, 1, 1), }, /* FVco 760.000000 */
  47. { .frequency = 390000000, .driver_data = PLLVAL(0x7a, 2, 1), }, /* FVco 780.000000 */
  48. { .frequency = 400000000, .driver_data = PLLVAL(0x5c, 1, 1), }, /* FVco 800.000000 */
  49. };
  50. static int s3c2440_plls12_add(struct device *dev, struct subsys_interface *sif)
  51. {
  52. struct clk *xtal_clk;
  53. unsigned long xtal;
  54. xtal_clk = clk_get(NULL, "xtal");
  55. if (IS_ERR(xtal_clk))
  56. return PTR_ERR(xtal_clk);
  57. xtal = clk_get_rate(xtal_clk);
  58. clk_put(xtal_clk);
  59. if (xtal == 12000000) {
  60. printk(KERN_INFO "Using PLL table for 12MHz crystal\n");
  61. return s3c_plltab_register(s3c2440_plls_12,
  62. ARRAY_SIZE(s3c2440_plls_12));
  63. }
  64. return 0;
  65. }
  66. static struct subsys_interface s3c2440_plls12_interface = {
  67. .name = "s3c2440_plls12",
  68. .subsys = &s3c2440_subsys,
  69. .add_dev = s3c2440_plls12_add,
  70. };
  71. static int __init s3c2440_pll_12mhz(void)
  72. {
  73. return subsys_interface_register(&s3c2440_plls12_interface);
  74. }
  75. arch_initcall(s3c2440_pll_12mhz);
  76. static struct subsys_interface s3c2442_plls12_interface = {
  77. .name = "s3c2442_plls12",
  78. .subsys = &s3c2442_subsys,
  79. .add_dev = s3c2440_plls12_add,
  80. };
  81. static int __init s3c2442_pll_12mhz(void)
  82. {
  83. return subsys_interface_register(&s3c2442_plls12_interface);
  84. }
  85. arch_initcall(s3c2442_pll_12mhz);