| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * cpufreq.h - definitions for libcpufreq |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2004-2009 Dominik Brodowski <linux@dominikbrodowski.de> |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 8 | | - * the Free Software Foundation, version 2 of the License. |
|---|
| 9 | | - * |
|---|
| 10 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 11 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 12 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 13 | | - * GNU General Public License for more details. |
|---|
| 14 | 6 | */ |
|---|
| 15 | 7 | |
|---|
| 16 | 8 | #ifndef __CPUPOWER_CPUFREQ_H__ |
|---|
| .. | .. |
|---|
| 129 | 121 | * |
|---|
| 130 | 122 | * Only present on _some_ ->target() cpufreq drivers. For information purposes |
|---|
| 131 | 123 | * only. Please free allocated memory by calling |
|---|
| 132 | | - * cpufreq_put_available_frequencies after use. |
|---|
| 124 | + * cpufreq_put_frequencies after use. |
|---|
| 133 | 125 | */ |
|---|
| 134 | 126 | |
|---|
| 135 | 127 | struct cpufreq_available_frequencies |
|---|
| .. | .. |
|---|
| 138 | 130 | void cpufreq_put_available_frequencies( |
|---|
| 139 | 131 | struct cpufreq_available_frequencies *first); |
|---|
| 140 | 132 | |
|---|
| 133 | +struct cpufreq_available_frequencies |
|---|
| 134 | +*cpufreq_get_boost_frequencies(unsigned int cpu); |
|---|
| 135 | + |
|---|
| 136 | +void cpufreq_put_boost_frequencies( |
|---|
| 137 | + struct cpufreq_available_frequencies *first); |
|---|
| 138 | + |
|---|
| 141 | 139 | |
|---|
| 142 | 140 | /* determine affected CPUs |
|---|
| 143 | 141 | * |
|---|