printf: Remove unused 'bprintf'
[drm/drm-misc.git] / include / linux / intel_tcc.h
blobfa788817acfc5ea79b06c34d5a7fb07eecd1edd0
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * header for Intel TCC (thermal control circuitry) library
5 * Copyright (C) 2022 Intel Corporation.
6 */
8 #ifndef __INTEL_TCC_H__
9 #define __INTEL_TCC_H__
11 #include <linux/types.h>
13 int intel_tcc_get_tjmax(int cpu);
14 int intel_tcc_get_offset(int cpu);
15 int intel_tcc_set_offset(int cpu, int offset);
16 int intel_tcc_get_temp(int cpu, int *temp, bool pkg);
17 u32 intel_tcc_get_offset_mask(void);
19 #endif /* __INTEL_TCC_H__ */