Home
last modified time | relevance | path

Searched +full:opp +full:- +full:microvolt +full:- +full:slow (Results 1 – 2 of 2) sorted by relevance

/linux/Documentation/devicetree/bindings/opp/
H A Dopp-v2.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/opp/opp-v2.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Generic OPP (Operating Performance Points)
10 - Viresh Kumar <viresh.kumar@linaro.org>
13 - $ref: opp-v2-base.yaml#
17 const: operating-points-v2
22 - |
24 * Example 1: Single cluster Dual-core ARM cortex A9, switch DVFS states
[all …]
/linux/rust/kernel/
H A Dopp.rs1 // SPDX-License-Identifier: GPL-2.0
5 //! This module provides rust abstractions for interacting with the OPP subsystem.
9 //! Reference: <https://docs.kernel.org/power/opp.html>
29 /// OPP frequency table.
39 pub(crate) fn new(table: &Table) -> Result<Self> { in new()
56 fn table(&self) -> &cpufreq::Table { in table()
66 fn deref(&self) -> &Self::Target { in deref()
89 /// Creates a null-terminated slice of pointers to [`Cstring`]s.
90 fn to_c_str_array(names: &[CString]) -> Result<KVec<*const u8>> { in to_c_str_array()
91 // Allocated a null-terminated vector of pointers. in to_c_str_array()
[all …]