1. 22 10月, 2013 2 次提交
  2. 17 10月, 2013 1 次提交
  3. 16 10月, 2013 1 次提交
  4. 02 10月, 2013 1 次提交
  5. 11 9月, 2013 1 次提交
  6. 10 8月, 2013 1 次提交
  7. 23 7月, 2013 1 次提交
  8. 15 7月, 2013 1 次提交
    • P
      cpufreq: delete __cpuinit usage from all cpufreq files · 2760984f
      Paul Gortmaker 提交于
      The __cpuinit type of throwaway sections might have made sense
      some time ago when RAM was more constrained, but now the savings
      do not offset the cost and complications.  For example, the fix in
      commit 5e427ec2 ("x86: Fix bit corruption at CPU resume time")
      is a good example of the nasty type of bugs that can be created
      with improper use of the various __init prefixes.
      
      After a discussion on LKML[1] it was decided that cpuinit should go
      the way of devinit and be phased out.  Once all the users are gone,
      we can then finally remove the macros themselves from linux/init.h.
      
      This removes all the drivers/cpufreq uses of the __cpuinit macros
      from all C files.
      
      [1] https://lkml.org/lkml/2013/5/20/589
      
      [v2: leave 2nd lines of args misaligned as requested by Viresh]
      Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
      Cc: Viresh Kumar <viresh.kumar@linaro.org>
      Cc: cpufreq@vger.kernel.org
      Cc: linux-pm@vger.kernel.org
      Acked-by: NDirk Brandewie <dirk.j.brandewie@intel.com>
      Acked-by: NViresh Kumar <viresh.kumar@linaro.org>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      2760984f
  9. 22 5月, 2013 1 次提交
  10. 14 5月, 2013 1 次提交
  11. 12 5月, 2013 5 次提交
  12. 10 4月, 2013 1 次提交
  13. 09 4月, 2013 1 次提交
  14. 25 3月, 2013 3 次提交
  15. 07 3月, 2013 2 次提交
  16. 16 2月, 2013 1 次提交
  17. 12 2月, 2013 1 次提交
  18. 09 2月, 2013 1 次提交
    • D
      cpufreq/x86: Add P-state driver for sandy bridge. · 93f0822d
      Dirk Brandewie 提交于
      Add a P-state driver for the Intel Sandy bridge processor. In cpufreq
      terminology this driver implements a  scaling driver with an internal
      governor.
      
      When built into the the kernel this driver will be the preferred
      scaling driver for Sandy bridge processors.
      
      In addition to the interfaces provided by the cpufreq subsystem for
      controlling scaling drivers. The user may control the behavior of the
      driver via three sysfs files located in
      "/sys/devices/system/cpu/intel_pstate".
      
        max_perf_pct: limits the maximum P state that will be requested by
        the driver stated as a percentage of the avail performance.
      
        min_perf_pct: limits the minimum P state that will be  requested by
        the driver stated as a percentage of the avail performance.
      
        no_turbo: limits the driver to selecting P states below the turbo
        frequency range.
      Signed-off-by: NDirk Brandewie <dirk.j.brandewie@intel.com>
      Acked-by: NViresh Kumar <viresh.kumar@linaro.org>
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      93f0822d