2 * Copyright 2010 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.
27 #include "nouveau_drv.h"
28 #include "nouveau_pm.h"
31 legacy_perf_init(struct drm_device
*dev
)
33 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
34 struct nvbios
*bios
= &dev_priv
->vbios
;
35 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
36 char *perf
, *entry
, *bmp
= &bios
->data
[bios
->offset
];
37 int headerlen
, use_straps
;
39 if (bmp
[5] < 0x5 || bmp
[6] < 0x14) {
40 NV_DEBUG(dev
, "BMP version too old for perf\n");
44 perf
= ROMPTR(bios
, bmp
[0x73]);
46 NV_DEBUG(dev
, "No memclock table pointer found.\n");
58 use_straps
= perf
[1] & 1;
59 headerlen
= (use_straps
? 8 : 2);
62 NV_WARN(dev
, "Unknown memclock table version %x.\n", perf
[0]);
66 entry
= perf
+ headerlen
;
68 entry
+= (nv_rd32(dev
, NV_PEXTDEV_BOOT_0
) & 0x3c) >> 1;
70 sprintf(pm
->perflvl
[0].name
, "performance_level_0");
71 pm
->perflvl
[0].memory
= ROM16(entry
[0]) * 20;
76 nouveau_perf_init(struct drm_device
*dev
)
78 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
79 struct nouveau_pm_engine
*pm
= &dev_priv
->engine
.pm
;
80 struct nvbios
*bios
= &dev_priv
->vbios
;
82 u8 version
, headerlen
, recordlen
, entries
;
86 if (bios
->type
== NVBIOS_BIT
) {
87 if (bit_table(dev
, 'P', &P
))
90 if (P
.version
!= 1 && P
.version
!= 2) {
91 NV_WARN(dev
, "unknown perf for BIT P %d\n", P
.version
);
95 perf
= ROMPTR(bios
, P
.data
[0]);
99 recordlen
= perf
[3] + (perf
[4] * perf
[5]);
102 recordlen
= perf
[2] + (perf
[3] * perf
[4]);
106 if (bios
->data
[bios
->offset
+ 6] < 0x25) {
107 legacy_perf_init(dev
);
111 perf
= ROMPTR(bios
, bios
->data
[bios
->offset
+ 0x94]);
113 NV_DEBUG(dev
, "perf table pointer invalid\n");
123 entry
= perf
+ headerlen
;
124 for (i
= 0; i
< entries
; i
++) {
125 struct nouveau_pm_level
*perflvl
= &pm
->perflvl
[pm
->nr_perflvl
];
127 if (entry
[0] == 0xff) {
136 perflvl
->fanspeed
= entry
[55];
137 perflvl
->voltage
= entry
[56];
138 perflvl
->core
= ROM32(entry
[1]) * 10;
139 perflvl
->memory
= ROM32(entry
[5]) * 20;
144 perflvl
->fanspeed
= entry
[4];
145 perflvl
->voltage
= entry
[5];
146 perflvl
->core
= ROM16(entry
[6]) * 1000;
148 if (dev_priv
->chipset
== 0x49 ||
149 dev_priv
->chipset
== 0x4b)
150 perflvl
->memory
= ROM16(entry
[11]) * 1000;
152 perflvl
->memory
= ROM16(entry
[11]) * 2000;
156 perflvl
->fanspeed
= entry
[4];
157 perflvl
->voltage
= entry
[5];
158 perflvl
->core
= ROM16(entry
[6]) * 1000;
159 perflvl
->shader
= ROM16(entry
[10]) * 1000;
160 perflvl
->memory
= ROM16(entry
[12]) * 1000;
163 perflvl
->memscript
= ROM16(entry
[2]);
165 perflvl
->fanspeed
= entry
[6];
166 perflvl
->voltage
= entry
[7];
167 perflvl
->core
= ROM16(entry
[8]) * 1000;
168 perflvl
->shader
= ROM16(entry
[10]) * 1000;
169 perflvl
->memory
= ROM16(entry
[12]) * 1000;
170 /*XXX: confirm on 0x35 */
171 perflvl
->unk05
= ROM16(entry
[16]) * 1000;
174 #define subent(n) entry[perf[2] + ((n) * perf[3])]
175 perflvl
->fanspeed
= 0; /*XXX*/
176 perflvl
->voltage
= entry
[2];
177 perflvl
->core
= (ROM16(subent(0)) & 0xfff) * 1000;
178 perflvl
->shader
= (ROM16(subent(1)) & 0xfff) * 1000;
179 perflvl
->memory
= (ROM16(subent(2)) & 0xfff) * 1000;
183 /* make sure vid is valid */
184 if (pm
->voltage
.supported
&& perflvl
->voltage
) {
185 vid
= nouveau_volt_vid_lookup(dev
, perflvl
->voltage
);
187 NV_DEBUG(dev
, "drop perflvl %d, bad vid\n", i
);
193 snprintf(perflvl
->name
, sizeof(perflvl
->name
),
194 "performance_level_%d", i
);
203 nouveau_perf_fini(struct drm_device
*dev
)