xref: /aosp_15_r20/external/coreboot/src/soc/amd/common/block/include/amdblocks/cppc.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_BLOCK_CPPC_H
4 #define AMD_BLOCK_CPPC_H
5 
6 #include <types.h>
7 #include <acpi/acpigen.h>
8 
9 void generate_cppc_entries(unsigned int core_id);
10 enum cb_err get_ccx_cppc_min_frequency(uint32_t *freq);
11 enum cb_err get_ccx_cppc_nom_frequency(uint32_t *freq);
12 
13 #endif /* AMD_BLOCK_CPPC_H */
14