Advertisement
Ikem

pi_overclock.txt

Dec 18th, 2016
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. Stock profile:
  2. self.normal_profile = self.oc_profile(700, 400, 250, 0, 0, 0, 0)
  3.  
  4. Normal profile:
  5. self.normal_profile = self.oc_profile(850, 400, 375, 0, 0, 0, 0)
  6.  
  7. Medium profile: mild overclock settings.
  8. self.medium_profile = self.oc_profile(900, 400, 375, 0, 0, 0, 0)
  9.  
  10. High profile: higher overclock settings.
  11. self.higher_profile = self.oc_profile(950, 450, 450, 0, 6, 0, 0)
  12.  
  13. Custom profile:
  14. self.custom_profile = self.oc_profile(arm_freq, sdram_freq, core_freq, initial_turbo, over_voltage, over_voltage_sdram, force_turbo)
  15.  
  16. arm_freq
  17.  
  18. Frequency of ARM (cpu) in MHz.
  19.  
  20. sdram_freq
  21.  
  22. Frequency of SDRAM in MHz.
  23.  
  24. core_freq
  25.  
  26. Frequency of GPU processor core in MHz.
  27. It has an impact on ARM performance since it drives L2 cache.
  28. Also, note that SD card issues are usually affected by the core_freq, rather than the arm_freq.
  29.  
  30. initial_turbo
  31.  
  32. Enables turbo mode from boot for the given value in seconds (up to 60) or until cpu_freq sets a frequency.
  33.  
  34. over_voltage
  35.  
  36. ARM/GPU core voltage adjust. [-16,8] equates to [0.8 V,1.4 V] with 0.025 V steps.
  37. Values above 6 are only allowed when force_turbo or current_limit_override are specified (which voids the warranty).
  38.  
  39. over_voltage_sdram
  40.  
  41. Sets over_voltage_sdram_c, over_voltage_sdram_i, over_voltage_sdram_p together.
  42.  
  43. force_turbo
  44.  
  45. Disables dynamic cpufreq driver and minimum settings below.
  46. Enables H.264/V3D/ISP overclock options.
  47. May void the warranty.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement