idle.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * Idle daemon for PowerPC.  Idle daemon will handle any action
  6.  * that needs to be taken when the system becomes idle.
  7.  *
  8.  * Written by Cort Dougan (cort@cs.nmt.edu)
  9.  *
  10.  * This program is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU General Public License
  12.  * as published by the Free Software Foundation; either version
  13.  * 2 of the License, or (at your option) any later version.
  14.  */
  15. #include <linux/config.h>
  16. #include <linux/errno.h>
  17. #include <linux/sched.h>
  18. #include <linux/kernel.h>
  19. #include <linux/mm.h>
  20. #include <linux/smp.h>
  21. #include <linux/smp_lock.h>
  22. #include <linux/stddef.h>
  23. #include <linux/unistd.h>
  24. #include <linux/ptrace.h>
  25. #include <linux/slab.h>
  26. #include <asm/pgtable.h>
  27. #include <asm/uaccess.h>
  28. #include <asm/system.h>
  29. #include <asm/io.h>
  30. #include <asm/processor.h>
  31. #include <asm/mmu.h>
  32. #include <asm/cache.h>
  33. #include <asm/cputable.h>
  34. unsigned long zero_paged_on;
  35. unsigned long powersave_nap;
  36. unsigned long powersave_lowspeed;
  37. #ifdef CONFIG_6xx
  38. extern void power_save_6xx(void);
  39. #endif
  40. int idled(void)
  41. {
  42. int do_power_save = 0;
  43. /* Check if CPU can powersave (get rid of that soon!) */
  44. if (cur_cpu_spec[smp_processor_id()]->cpu_features &
  45. (CPU_FTR_CAN_DOZE | CPU_FTR_CAN_NAP))
  46. do_power_save = 1;
  47. /* endless loop with no priority at all */
  48. current->nice = 20;
  49. current->counter = -100;
  50. init_idle();
  51. for (;;) {
  52. #ifdef CONFIG_SMP
  53. if (!do_power_save) {
  54. /*
  55.  * Deal with another CPU just having chosen a thread to
  56.  * run here:
  57.  */
  58. int oldval = xchg(&current->need_resched, -1);
  59. if (!oldval) {
  60. while(current->need_resched == -1)
  61. ; /* Do Nothing */
  62. }
  63. }
  64. #endif
  65. #ifdef CONFIG_6xx
  66. if (do_power_save && !current->need_resched)
  67. power_save_6xx();
  68. #endif /* CONFIG_6xx */
  69. if (current->need_resched) {
  70. schedule();
  71. check_pgt_cache();
  72. }
  73. }
  74. return 0;
  75. }
  76. /*
  77.  * SMP entry into the idle task - calls the same thing as the
  78.  * non-smp versions. -- Cort
  79.  */
  80. int cpu_idle(void)
  81. {
  82. idled();
  83. return 0; 
  84. }