2 * Copyright 2018 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
24 #include <core/device.h>
30 gk104_clkgate_enable(struct nvkm_therm
*base
)
32 struct gk104_therm
*therm
= gk104_therm(base
);
33 struct nvkm_device
*dev
= therm
->base
.subdev
.device
;
34 const struct gk104_clkgate_engine_info
*order
= therm
->clkgate_order
;
37 /* Program ENG_MANT, ENG_FILTER */
38 for (i
= 0; order
[i
].engine
!= NVKM_SUBDEV_NR
; i
++) {
39 if (!nvkm_device_subdev(dev
, order
[i
].engine
))
42 nvkm_mask(dev
, 0x20200 + order
[i
].offset
, 0xff00, 0x4500);
46 nvkm_wr32(dev
, 0x020288, therm
->idle_filter
->fecs
);
47 nvkm_wr32(dev
, 0x02028c, therm
->idle_filter
->hubmmu
);
49 /* Enable clockgating (ENG_CLK = RUN->AUTO) */
50 for (i
= 0; order
[i
].engine
!= NVKM_SUBDEV_NR
; i
++) {
51 if (!nvkm_device_subdev(dev
, order
[i
].engine
))
54 nvkm_mask(dev
, 0x20200 + order
[i
].offset
, 0x00ff, 0x0045);
59 gk104_clkgate_fini(struct nvkm_therm
*base
, bool suspend
)
61 struct gk104_therm
*therm
= gk104_therm(base
);
62 struct nvkm_device
*dev
= therm
->base
.subdev
.device
;
63 const struct gk104_clkgate_engine_info
*order
= therm
->clkgate_order
;
66 /* ENG_CLK = AUTO->RUN, ENG_PWR = RUN->AUTO */
67 for (i
= 0; order
[i
].engine
!= NVKM_SUBDEV_NR
; i
++) {
68 if (!nvkm_device_subdev(dev
, order
[i
].engine
))
71 nvkm_mask(dev
, 0x20200 + order
[i
].offset
, 0xff, 0x54);
75 const struct gk104_clkgate_engine_info gk104_clkgate_engine_info
[] = {
76 { NVKM_ENGINE_GR
, 0x00 },
77 { NVKM_ENGINE_MSPDEC
, 0x04 },
78 { NVKM_ENGINE_MSPPP
, 0x08 },
79 { NVKM_ENGINE_MSVLD
, 0x0c },
80 { NVKM_ENGINE_CE0
, 0x10 },
81 { NVKM_ENGINE_CE1
, 0x14 },
82 { NVKM_ENGINE_MSENC
, 0x18 },
83 { NVKM_ENGINE_CE2
, 0x1c },
84 { NVKM_SUBDEV_NR
, 0 },
87 const struct gf100_idle_filter gk104_idle_filter
= {
92 static const struct nvkm_therm_func
94 .init
= gf119_therm_init
,
95 .fini
= g84_therm_fini
,
96 .pwm_ctrl
= gf119_fan_pwm_ctrl
,
97 .pwm_get
= gf119_fan_pwm_get
,
98 .pwm_set
= gf119_fan_pwm_set
,
99 .pwm_clock
= gf119_fan_pwm_clock
,
100 .temp_get
= g84_temp_get
,
101 .fan_sense
= gt215_therm_fan_sense
,
102 .program_alarms
= nvkm_therm_program_alarms_polling
,
103 .clkgate_init
= gf100_clkgate_init
,
104 .clkgate_enable
= gk104_clkgate_enable
,
105 .clkgate_fini
= gk104_clkgate_fini
,
109 gk104_therm_new_(const struct nvkm_therm_func
*func
,
110 struct nvkm_device
*device
,
112 const struct gk104_clkgate_engine_info
*clkgate_order
,
113 const struct gf100_idle_filter
*idle_filter
,
114 struct nvkm_therm
**ptherm
)
116 struct gk104_therm
*therm
= kzalloc(sizeof(*therm
), GFP_KERNEL
);
121 nvkm_therm_ctor(&therm
->base
, device
, index
, func
);
122 *ptherm
= &therm
->base
;
123 therm
->clkgate_order
= clkgate_order
;
124 therm
->idle_filter
= idle_filter
;
130 gk104_therm_new(struct nvkm_device
*device
,
131 int index
, struct nvkm_therm
**ptherm
)
133 return gk104_therm_new_(&gk104_therm_func
, device
, index
,
134 gk104_clkgate_engine_info
, &gk104_idle_filter
,