1321369Sdim/*
2193323Sed * Copyright 2018 Advanced Micro Devices, Inc.
3353358Sdim *
4353358Sdim * Permission is hereby granted, free of charge, to any person obtaining a
5353358Sdim * copy of this software and associated documentation files (the "Software"),
6193323Sed * to deal in the Software without restriction, including without limitation
7193323Sed * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8193323Sed * and/or sell copies of the Software, and to permit persons to whom the
9193323Sed * Software is furnished to do so, subject to the following conditions:
10193323Sed *
11193323Sed * The above copyright notice and this permission notice shall be included in
12193323Sed * all copies or substantial portions of the Software.
13249423Sdim *
14321369Sdim * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15321369Sdim * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16321369Sdim * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17249423Sdim * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18234353Sdim * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19321369Sdim * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20321369Sdim * OTHER DEALINGS IN THE SOFTWARE.
21321369Sdim *
22261991Sdim */
23218893Sdim#ifndef PP_THERMAL_H
24321369Sdim#define PP_THERMAL_H
25321369Sdim
26321369Sdim#include "power_state.h"
27321369Sdim
28321369Sdimstatic const struct PP_TemperatureRange __maybe_unused SMU7ThermalWithDelayPolicy[] = {
29321369Sdim	{-273150,  99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000},
30193323Sed	{ 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000},
31193323Sed};
32234353Sdim
33234353Sdimstatic const struct PP_TemperatureRange __maybe_unused SMU7ThermalPolicy[] = {
34234353Sdim	{-273150,  99000, 99000, -273150, 99000, 99000, -273150, 99000, 99000},
35198090Srdivacky	{ 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000, 120000},
36198090Srdivacky};
37198090Srdivacky
38198090Srdivacky#define CTF_OFFSET_EDGE			5
39198090Srdivacky#define CTF_OFFSET_HOTSPOT		5
40198090Srdivacky#define CTF_OFFSET_HBM			5
41198090Srdivacky
42198090Srdivacky#endif
43198090Srdivacky