tadpole.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* tadpole.c: Probing for the tadpole clock stopping h/w at boot time.
  2.  *
  3.  * Copyright (C) 1996 David Redman (djhr@tadpole.co.uk)
  4.  */
  5. #include <linux/string.h>
  6. #include <linux/kernel.h>
  7. #include <linux/sched.h>
  8. #include <linux/init.h>
  9. #include <asm/asi.h>
  10. #include <asm/oplib.h>
  11. #include <asm/io.h>
  12. #define MACIO_SCSI_CSR_ADDR 0x78400000
  13. #define MACIO_EN_DMA 0x00000200
  14. #define CLOCK_INIT_DONE 1
  15. static int clk_state;
  16. static volatile unsigned char *clk_ctrl;
  17. void (*cpu_pwr_save)(void);
  18. static inline unsigned int ldphys(unsigned int addr)
  19. {
  20. unsigned long data;
  21.     
  22. __asm__ __volatile__("ntlda [%1] %2, %0nt" : 
  23.      "=r" (data) :
  24.      "r" (addr), "i" (ASI_M_BYPASS));
  25. return data;
  26. }
  27. static void clk_init(void)
  28. {
  29. __asm__ __volatile__("mov 0x6c, %%g1nt"
  30.      "mov 0x4c, %%g2nt"
  31.      "mov 0xdf, %%g3nt"
  32.      "stb %%g1, [%0+3]nt"
  33.      "stb %%g2, [%0+3]nt"
  34.      "stb %%g3, [%0+3]nt" : :
  35.      "r" (clk_ctrl) :
  36.      "g1", "g2", "g3");
  37. }
  38. static void clk_slow(void)
  39. {
  40. __asm__ __volatile__("mov 0xcc, %%g2nt"
  41.      "mov 0x4c, %%g3nt"
  42.      "mov 0xcf, %%g4nt"
  43.      "mov 0xdf, %%g5nt"
  44.      "stb %%g2, [%0+3]nt"
  45.      "stb %%g3, [%0+3]nt"
  46.      "stb %%g4, [%0+3]nt"
  47.      "stb %%g5, [%0+3]nt" : :
  48.      "r" (clk_ctrl) :
  49.      "g2", "g3", "g4", "g5");
  50. }
  51. static void tsu_clockstop(void)
  52. {
  53. unsigned int mcsr;
  54. unsigned long flags;
  55. if (!clk_ctrl)
  56. return;
  57. if (!(clk_state & CLOCK_INIT_DONE)) {
  58. save_and_cli(flags);
  59. clk_init();
  60. clk_state |= CLOCK_INIT_DONE;       /* all done */
  61. restore_flags(flags);
  62. return;
  63. }
  64. if (!(clk_ctrl[2] & 1))
  65. return;               /* no speed up yet */
  66. save_and_cli(flags);
  67. /* if SCSI DMA in progress, don't slow clock */
  68. mcsr = ldphys(MACIO_SCSI_CSR_ADDR);
  69. if ((mcsr&MACIO_EN_DMA) != 0) {
  70. restore_flags(flags);
  71. return;
  72. }
  73. /* TODO... the minimum clock setting ought to increase the
  74.  * memory refresh interval..
  75.  */
  76. clk_slow();
  77. restore_flags(flags);
  78. }
  79. static void swift_clockstop(void)
  80. {
  81. if (!clk_ctrl)
  82. return;
  83. clk_ctrl[0] = 0;
  84. }
  85. void __init clock_stop_probe(void)
  86. {
  87. unsigned int node, clk_nd;
  88. char name[20];
  89.     
  90. prom_getstring(prom_root_node, "name", name, sizeof(name));
  91. if (strncmp(name, "Tadpole", 7))
  92. return;
  93. node = prom_getchild(prom_root_node);
  94. node = prom_searchsiblings(node, "obio");
  95. node = prom_getchild(node);
  96. clk_nd = prom_searchsiblings(node, "clk-ctrl");
  97. if (!clk_nd)
  98. return;
  99. printk("Clock Stopping h/w detected... ");
  100. clk_ctrl = (char *) prom_getint(clk_nd, "address");
  101. clk_state = 0;
  102. if (name[10] == '') {
  103. cpu_pwr_save = tsu_clockstop;
  104. printk("enabled (S3)n");
  105. } else if ((name[10] == 'X') || (name[10] == 'G')) {
  106. cpu_pwr_save = swift_clockstop;
  107. printk("enabled (%s)n",name+7);
  108. } else
  109. printk("disabled %sn",name+7);
  110. }