aboutsummaryrefslogtreecommitdiff
path: root/drivers/opp/core.c
AgeCommit message (Expand)AuthorFilesLines
2024-03-11OPP: Extend dev_pm_opp_data with turbo supportGravatar Sibi Sankar 1-0/+1
2024-01-05OPP: Rename 'rate_clk_single'Gravatar Viresh Kumar 1-2/+2
2024-01-05OPP: Pass rounded rate to _set_opp()Gravatar Viresh Kumar 1-3/+3
2024-01-05OPP: Relocate dev_pm_opp_sync_regulators()Gravatar Viresh Kumar 1-41/+41
2023-12-28OPP: Fix _set_required_opps when opp is NULLGravatar Bryan O'Donoghue 1-1/+4
2023-12-27OPP: The level field is always of unsigned int typeGravatar Viresh Kumar 1-2/+7
2023-11-28OPP: Check for invalid OPP in dev_pm_opp_find_level_ceil()Gravatar Viresh Kumar 1-0/+2
2023-11-28OPP: Don't set OPP recursively for a parent genpdGravatar Viresh Kumar 1-1/+15
2023-11-28OPP: Call dev_pm_opp_set_opp() for required OPPsGravatar Viresh Kumar 1-86/+82
2023-11-28OPP: Use _set_opp_level() for single genpd caseGravatar Viresh Kumar 1-2/+4
2023-11-28OPP: Level zero is validGravatar Viresh Kumar 1-4/+20
2023-10-17OPP: No need to defer probe from _opp_attach_genpd()Gravatar Viresh Kumar 1-8/+0
2023-10-17OPP: Remove genpd_virt_dev_lockGravatar Viresh Kumar 1-33/+6
2023-10-17OPP: Reorder code in _opp_set_required_opps_genpd()Gravatar Viresh Kumar 1-14/+18
2023-10-06OPP: Remove doc style comments for internal routinesGravatar Viresh Kumar 1-72/+7
2023-10-06OPP: Add dev_pm_opp_find_level_floor()Gravatar Krishna chaitanya chundru 1-0/+25
2023-10-06OPP: Extend support for the opp-level beyond required-oppsGravatar Ulf Hansson 1-0/+35
2023-10-06OPP: Switch to use dev_pm_domain_set_performance_state()Gravatar Ulf Hansson 1-1/+1
2023-10-06OPP: Extend dev_pm_opp_data with a levelGravatar Ulf Hansson 1-0/+1
2023-10-06OPP: Add dev_pm_opp_add_dynamic() to allow more flexibilityGravatar Ulf Hansson 1-12/+10
2023-07-24OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd()Gravatar Manivannan Sadhasivam 1-1/+1
2023-07-24OPP: Fix potential null ptr dereference in dev_pm_opp_get_required_pstate()Gravatar Manivannan Sadhasivam 1-5/+3
2023-07-24OPP: Reuse dev_pm_opp_get_freq_indexed()Gravatar Viresh Kumar 1-21/+0
2023-07-24OPP: Update _read_freq() to return the correct frequencyGravatar Viresh Kumar 1-1/+1
2023-07-24OPP: Add dev_pm_opp_find_freq_exact_indexed()Gravatar Viresh Kumar 1-0/+28
2023-07-24OPP: Introduce dev_pm_opp_get_freq_indexed() APIGravatar Manivannan Sadhasivam 1-0/+20
2023-07-21OPP: Introduce dev_pm_opp_find_freq_{ceil/floor}_indexed() APIsGravatar Manivannan Sadhasivam 1-0/+56
2023-06-19OPP: Simplify the over-designed pstate <-> level danceGravatar Viresh Kumar 1-4/+4
2023-06-19OPP: pstate is only valid for genpd OPP tablesGravatar Viresh Kumar 1-2/+16
2023-06-14OPP: don't drop performance constraint on OPP table removalGravatar Viresh Kumar 1-9/+1
2023-06-08OPP: Staticize `lazy_opp_tables` in of.cGravatar Viresh Kumar 1-3/+0
2023-05-31opp: Fix use-after-free in lazy_opp_tables after probe deferralGravatar Stephan Gerhold 1-0/+3
2023-05-22OPP: rate-limit debug messages when no change in OPP is requiredGravatar Adrián Larumbe 1-1/+1
2023-04-03OPP: Move required opps configuration to specialized callbackGravatar Viresh Kumar 1-27/+42
2023-04-03OPP: Handle all genpd cases together in _set_required_opps()Gravatar Viresh Kumar 1-7/+2
2022-08-16OPP: Fix an un-initialized variable usageGravatar Christophe JAILLET 1-1/+1
2022-07-19OPP: Don't drop opp->np reference while it is still in useGravatar Liang He 1-1/+1
2022-07-12OPP: Allow config_clks helper for single clk caseGravatar Viresh Kumar 1-4/+4
2022-07-12OPP: Provide a simple implementation to configure multiple clocksGravatar Viresh Kumar 1-0/+34
2022-07-12OPP: Assert clk_count == 1 for single clk helpersGravatar Viresh Kumar 1-6/+39
2022-07-12OPP: Add key specific assert() method to key finding helpersGravatar Viresh Kumar 1-19/+33
2022-07-12OPP: Compare bandwidths for all paths in _opp_compare_key()Gravatar Viresh Kumar 1-3/+17
2022-07-12OPP: Allow multiple clocks for a deviceGravatar Viresh Kumar 1-58/+155
2022-07-08OPP: Make dev_pm_opp_set_opp() independent of frequencyGravatar Viresh Kumar 1-14/+38
2022-07-08OPP: Reuse _opp_compare_key() in _opp_add_static_v2()Gravatar Viresh Kumar 1-0/+6
2022-07-08OPP: Remove rate_not_available parameter to _opp_add()Gravatar Viresh Kumar 1-2/+2
2022-07-08OPP: Use consistent names for OPP table instancesGravatar Viresh Kumar 1-3/+4
2022-07-08OPP: Use generic key finding helpers for bandwidth keyGravatar Viresh Kumar 1-68/+15
2022-07-08OPP: Use generic key finding helpers for level keyGravatar Viresh Kumar 1-53/+10
2022-07-08OPP: Add generic key finding helpers and use them for freq APIsGravatar Viresh Kumar 1-99/+130