]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nouveau_pm.h
drm/nouveau: port remainder of drm code, and rip out compat layer
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nouveau_pm.h
1 /*
2  * Copyright 2010 Red Hat Inc.
3  *
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:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
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.
21  *
22  * Authors: Ben Skeggs
23  */
24
25 #ifndef __NOUVEAU_PM_H__
26 #define __NOUVEAU_PM_H__
27
28 #include <subdev/bios/pll.h>
29 #include <subdev/clock.h>
30
31 struct nouveau_pm_voltage_level {
32         u32 voltage; /* microvolts */
33         u8  vid;
34 };
35
36 struct nouveau_pm_voltage {
37         bool supported;
38         u8 version;
39         u8 vid_mask;
40
41         struct nouveau_pm_voltage_level *level;
42         int nr_level;
43 };
44
45 /* Exclusive upper limits */
46 #define NV_MEM_CL_DDR2_MAX 8
47 #define NV_MEM_WR_DDR2_MAX 9
48 #define NV_MEM_CL_DDR3_MAX 17
49 #define NV_MEM_WR_DDR3_MAX 17
50 #define NV_MEM_CL_GDDR3_MAX 16
51 #define NV_MEM_WR_GDDR3_MAX 18
52 #define NV_MEM_CL_GDDR5_MAX 21
53 #define NV_MEM_WR_GDDR5_MAX 20
54
55 struct nouveau_pm_memtiming {
56         int id;
57
58         u32 reg[9];
59         u32 mr[4];
60
61         u8 tCWL;
62
63         u8 odt;
64         u8 drive_strength;
65 };
66
67 struct nouveau_pm_tbl_header {
68         u8 version;
69         u8 header_len;
70         u8 entry_cnt;
71         u8 entry_len;
72 };
73
74 struct nouveau_pm_tbl_entry {
75         u8 tWR;
76         u8 tWTR;
77         u8 tCL;
78         u8 tRC;
79         u8 empty_4;
80         u8 tRFC;        /* Byte 5 */
81         u8 empty_6;
82         u8 tRAS;        /* Byte 7 */
83         u8 empty_8;
84         u8 tRP;         /* Byte 9 */
85         u8 tRCDRD;
86         u8 tRCDWR;
87         u8 tRRD;
88         u8 tUNK_13;
89         u8 RAM_FT1;             /* 14, a bitmask of random RAM features */
90         u8 empty_15;
91         u8 tUNK_16;
92         u8 empty_17;
93         u8 tUNK_18;
94         u8 tCWL;
95         u8 tUNK_20, tUNK_21;
96 };
97
98 struct nouveau_pm_profile;
99 struct nouveau_pm_profile_func {
100         void (*destroy)(struct nouveau_pm_profile *);
101         void (*init)(struct nouveau_pm_profile *);
102         void (*fini)(struct nouveau_pm_profile *);
103         struct nouveau_pm_level *(*select)(struct nouveau_pm_profile *);
104 };
105
106 struct nouveau_pm_profile {
107         const struct nouveau_pm_profile_func *func;
108         struct list_head head;
109         char name[8];
110 };
111
112 #define NOUVEAU_PM_MAX_LEVEL 8
113 struct nouveau_pm_level {
114         struct nouveau_pm_profile profile;
115         struct device_attribute dev_attr;
116         char name[32];
117         int id;
118
119         struct nouveau_pm_memtiming timing;
120         u32 memory;
121         u16 memscript;
122
123         u32 core;
124         u32 shader;
125         u32 rop;
126         u32 copy;
127         u32 daemon;
128         u32 vdec;
129         u32 dom6;
130         u32 unka0;      /* nva3:nvc0 */
131         u32 hub01;      /* nvc0- */
132         u32 hub06;      /* nvc0- */
133         u32 hub07;      /* nvc0- */
134
135         u32 volt_min; /* microvolts */
136         u32 volt_max;
137         u8  fanspeed;
138 };
139
140 struct nouveau_pm_temp_sensor_constants {
141         u16 offset_constant;
142         s16 offset_mult;
143         s16 offset_div;
144         s16 slope_mult;
145         s16 slope_div;
146 };
147
148 struct nouveau_pm_threshold_temp {
149         s16 critical;
150         s16 down_clock;
151         s16 fan_boost;
152 };
153
154 struct nouveau_pm_fan {
155         u32 percent;
156         u32 min_duty;
157         u32 max_duty;
158         u32 pwm_freq;
159         u32 pwm_divisor;
160 };
161
162 struct nouveau_pm {
163         struct drm_device *dev;
164
165         struct nouveau_pm_voltage voltage;
166         struct nouveau_pm_level perflvl[NOUVEAU_PM_MAX_LEVEL];
167         int nr_perflvl;
168         struct nouveau_pm_temp_sensor_constants sensor_constants;
169         struct nouveau_pm_threshold_temp threshold_temp;
170         struct nouveau_pm_fan fan;
171
172         struct nouveau_pm_profile *profile_ac;
173         struct nouveau_pm_profile *profile_dc;
174         struct nouveau_pm_profile *profile;
175         struct list_head profiles;
176
177         struct nouveau_pm_level boot;
178         struct nouveau_pm_level *cur;
179
180         struct device *hwmon;
181         struct notifier_block acpi_nb;
182
183         int  (*clocks_get)(struct drm_device *, struct nouveau_pm_level *);
184         void *(*clocks_pre)(struct drm_device *, struct nouveau_pm_level *);
185         int (*clocks_set)(struct drm_device *, void *);
186
187         int (*voltage_get)(struct drm_device *);
188         int (*voltage_set)(struct drm_device *, int voltage);
189         int (*pwm_get)(struct drm_device *, int line, u32*, u32*);
190         int (*pwm_set)(struct drm_device *, int line, u32, u32);
191         int (*temp_get)(struct drm_device *);
192 };
193
194 static inline struct nouveau_pm *
195 nouveau_pm(struct drm_device *dev)
196 {
197         return nouveau_drm(dev)->pm;
198 }
199
200 struct nouveau_mem_exec_func {
201         struct drm_device *dev;
202         void (*precharge)(struct nouveau_mem_exec_func *);
203         void (*refresh)(struct nouveau_mem_exec_func *);
204         void (*refresh_auto)(struct nouveau_mem_exec_func *, bool);
205         void (*refresh_self)(struct nouveau_mem_exec_func *, bool);
206         void (*wait)(struct nouveau_mem_exec_func *, u32 nsec);
207         u32  (*mrg)(struct nouveau_mem_exec_func *, int mr);
208         void (*mrs)(struct nouveau_mem_exec_func *, int mr, u32 data);
209         void (*clock_set)(struct nouveau_mem_exec_func *);
210         void (*timing_set)(struct nouveau_mem_exec_func *);
211         void *priv;
212 };
213
214 /* nouveau_mem.c */
215 int  nouveau_mem_exec(struct nouveau_mem_exec_func *,
216                       struct nouveau_pm_level *);
217
218 /* nouveau_pm.c */
219 int  nouveau_pm_init(struct drm_device *dev);
220 void nouveau_pm_fini(struct drm_device *dev);
221 void nouveau_pm_resume(struct drm_device *dev);
222 extern const struct nouveau_pm_profile_func nouveau_pm_static_profile_func;
223 void nouveau_pm_trigger(struct drm_device *dev);
224
225 /* nouveau_volt.c */
226 void nouveau_volt_init(struct drm_device *);
227 void nouveau_volt_fini(struct drm_device *);
228 int  nouveau_volt_vid_lookup(struct drm_device *, int voltage);
229 int  nouveau_volt_lvl_lookup(struct drm_device *, int vid);
230 int  nouveau_voltage_gpio_get(struct drm_device *);
231 int  nouveau_voltage_gpio_set(struct drm_device *, int voltage);
232
233 /* nouveau_perf.c */
234 void nouveau_perf_init(struct drm_device *);
235 void nouveau_perf_fini(struct drm_device *);
236 u8 *nouveau_perf_rammap(struct drm_device *, u32 freq, u8 *ver,
237                         u8 *hdr, u8 *cnt, u8 *len);
238 u8 *nouveau_perf_ramcfg(struct drm_device *, u32 freq, u8 *ver, u8 *len);
239 u8 *nouveau_perf_timing(struct drm_device *, u32 freq, u8 *ver, u8 *len);
240
241 /* nouveau_mem.c */
242 void nouveau_mem_timing_init(struct drm_device *);
243 void nouveau_mem_timing_fini(struct drm_device *);
244
245 /* nv04_pm.c */
246 int nv04_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
247 void *nv04_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
248 int nv04_pm_clocks_set(struct drm_device *, void *);
249
250 /* nv40_pm.c */
251 int nv40_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
252 void *nv40_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
253 int nv40_pm_clocks_set(struct drm_device *, void *);
254 int nv40_pm_pwm_get(struct drm_device *, int, u32 *, u32 *);
255 int nv40_pm_pwm_set(struct drm_device *, int, u32, u32);
256
257 /* nv50_pm.c */
258 int nv50_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
259 void *nv50_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
260 int nv50_pm_clocks_set(struct drm_device *, void *);
261 int nv50_pm_pwm_get(struct drm_device *, int, u32 *, u32 *);
262 int nv50_pm_pwm_set(struct drm_device *, int, u32, u32);
263
264 /* nva3_pm.c */
265 int nva3_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
266 void *nva3_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
267 int nva3_pm_clocks_set(struct drm_device *, void *);
268
269 /* nvc0_pm.c */
270 int nvc0_pm_clocks_get(struct drm_device *, struct nouveau_pm_level *);
271 void *nvc0_pm_clocks_pre(struct drm_device *, struct nouveau_pm_level *);
272 int nvc0_pm_clocks_set(struct drm_device *, void *);
273
274 /* nouveau_temp.c */
275 void nouveau_temp_init(struct drm_device *dev);
276 void nouveau_temp_fini(struct drm_device *dev);
277 void nouveau_temp_safety_checks(struct drm_device *dev);
278 int nv40_temp_get(struct drm_device *dev);
279 int nv84_temp_get(struct drm_device *dev);
280
281 /* nouveau_mem.c */
282 int  nouveau_mem_timing_calc(struct drm_device *, u32 freq,
283                              struct nouveau_pm_memtiming *);
284 void nouveau_mem_timing_read(struct drm_device *,
285                              struct nouveau_pm_memtiming *);
286
287 static inline int
288 nva3_calc_pll(struct drm_device *dev, struct nvbios_pll *pll, u32 freq,
289               int *N, int *fN, int *M, int *P)
290 {
291         struct nouveau_device *device = nouveau_dev(dev);
292         struct nouveau_clock *clk = nouveau_clock(device);
293         struct nouveau_pll_vals pv;
294         int ret;
295
296         ret = clk->pll_calc(clk, pll, freq, &pv);
297         *N = pv.N1;
298         *M = pv.M1;
299         *P = pv.log2P;
300         return ret;
301 }
302
303 #endif