Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Grarak/android_kernel_oneplus_msm8994
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: cm-14.0
Choose a base ref
...
head repository: dustb1n/android_kernel_oneplus_msm8994-1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cm-14.0
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 7 files changed
  • 3 contributors

Commits on Oct 24, 2016

  1. Copy the full SHA
    0ce369a View commit details
  2. Copy the full SHA
    f392af9 View commit details
  3. Copy the full SHA
    b25c759 View commit details
  4. Copy the full SHA
    394ce42 View commit details
  5. Copy the full SHA
    4f4e2a4 View commit details
  6. Copy the full SHA
    8e5fc84 View commit details
  7. Copy the full SHA
    92ebece View commit details
  8. cpufreq_alucard: optimized code!

    Alucard24 authored and lindwurm committed Oct 24, 2016
    Copy the full SHA
    2982f88 View commit details
  9. Copy the full SHA
    66fd4e3 View commit details
  10. Copy the full SHA
    e81cd5f View commit details
  11. Copy the full SHA
    f5554ef View commit details
  12. defconfig: Enable alucard

    lindwurm committed Oct 24, 2016
    Copy the full SHA
    56594e4 View commit details
3 changes: 2 additions & 1 deletion arch/arm64/configs/cm_oneplus2_defconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CONFIG_LOCALVERSION="-perf"
CONFIG_LOCALVERSION="-mordiford"
CONFIG_SYSVIPC=y
CONFIG_AUDIT=y
CONFIG_NO_HZ=y
@@ -63,6 +63,7 @@ CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_INTERACTIVE=y
CONFIG_CPU_FREQ_GOV_ALUCARD=y
CONFIG_CPU_BOOST=y
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y
10 changes: 10 additions & 0 deletions drivers/cpufreq/Kconfig
Original file line number Diff line number Diff line change
@@ -118,6 +118,11 @@ config CPU_FREQ_DEFAULT_GOV_INTERACTIVE
loading your cpufreq low-level hardware driver, using the
'interactive' governor for latency-sensitive workloads.

config CPU_FREQ_DEFAULT_GOV_ALUCARD
bool "alucard"
select CPU_FREQ_GOV_ALUCARD
help

endchoice

config CPU_FREQ_GOV_PERFORMANCE
@@ -216,6 +221,11 @@ config CPU_FREQ_GOV_CONSERVATIVE

If in doubt, say N.

config CPU_FREQ_GOV_ALUCARD
tristate "'alucard' cpufreq governor"
depends on CPU_FREQ
select CPU_FREQ_GOV_COMMON

config CPU_BOOST
tristate "Event base short term CPU freq boost"
depends on CPU_FREQ
1 change: 1 addition & 0 deletions drivers/cpufreq/Makefile
Original file line number Diff line number Diff line change
@@ -10,6 +10,7 @@ obj-$(CONFIG_CPU_FREQ_GOV_USERSPACE) += cpufreq_userspace.o
obj-$(CONFIG_CPU_FREQ_GOV_ONDEMAND) += cpufreq_ondemand.o
obj-$(CONFIG_CPU_FREQ_GOV_CONSERVATIVE) += cpufreq_conservative.o
obj-$(CONFIG_CPU_FREQ_GOV_INTERACTIVE) += cpufreq_interactive.o
obj-$(CONFIG_CPU_FREQ_GOV_ALUCARD) += cpufreq_alucard.o
obj-$(CONFIG_CPU_FREQ_GOV_COMMON) += cpufreq_governor.o
obj-$(CONFIG_CPU_BOOST) += cpu-boost.o

Loading