drm/nouveau/bar: convert to new-style nvkm_subdev
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / clk / gt215.c
CommitLineData
8aceb7de
BS
1/*
2 * Copyright 2012 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
3d896d34 23 * Roy Spliet
8aceb7de 24 */
7632b30e
BS
25#include "gt215.h"
26#include "pll.h"
8aceb7de 27
2fe7eaa0 28#include <engine/fifo.h>
70790f4f
BS
29#include <subdev/bios.h>
30#include <subdev/bios/pll.h>
7c856522 31#include <subdev/timer.h>
70790f4f 32
3eca809b 33struct gt215_clk {
7632b30e
BS
34 struct nvkm_clk base;
35 struct gt215_clk_info eng[nv_clk_src_max];
8aceb7de
BS
36};
37
3eca809b
BS
38static u32 read_clk(struct gt215_clk *, int, bool);
39static u32 read_pll(struct gt215_clk *, int, u32);
7c856522
BS
40
41static u32
3eca809b 42read_vco(struct gt215_clk *clk, int idx)
7c856522 43{
822ad79f
BS
44 struct nvkm_device *device = clk->base.subdev.device;
45 u32 sctl = nvkm_rd32(device, 0x4120 + (idx * 4));
3d896d34
RS
46
47 switch (sctl & 0x00000030) {
48 case 0x00000000:
822ad79f 49 return device->crystal;
3d896d34 50 case 0x00000020:
3eca809b 51 return read_pll(clk, 0x41, 0x00e820);
3d896d34 52 case 0x00000030:
3eca809b 53 return read_pll(clk, 0x42, 0x00e8a0);
3d896d34
RS
54 default:
55 return 0;
56 }
7c856522
BS
57}
58
59static u32
3eca809b 60read_clk(struct gt215_clk *clk, int idx, bool ignore_en)
7c856522 61{
822ad79f 62 struct nvkm_device *device = clk->base.subdev.device;
7c856522
BS
63 u32 sctl, sdiv, sclk;
64
65 /* refclk for the 0xe8xx plls is a fixed frequency */
3eca809b 66 if (idx >= 0x40) {
822ad79f 67 if (device->chipset == 0xaf) {
7c856522 68 /* no joke.. seriously.. sigh.. */
822ad79f 69 return nvkm_rd32(device, 0x00471c) * 1000;
7c856522
BS
70 }
71
822ad79f 72 return device->crystal;
7c856522
BS
73 }
74
822ad79f 75 sctl = nvkm_rd32(device, 0x4120 + (idx * 4));
7c856522
BS
76 if (!ignore_en && !(sctl & 0x00000100))
77 return 0;
78
3d896d34
RS
79 /* out_alt */
80 if (sctl & 0x00000400)
81 return 108000;
82
83 /* vco_out */
7c856522
BS
84 switch (sctl & 0x00003000) {
85 case 0x00000000:
3d896d34 86 if (!(sctl & 0x00000200))
822ad79f 87 return device->crystal;
3d896d34 88 return 0;
7c856522
BS
89 case 0x00002000:
90 if (sctl & 0x00000040)
91 return 108000;
92 return 100000;
93 case 0x00003000:
3d896d34
RS
94 /* vco_enable */
95 if (!(sctl & 0x00000001))
96 return 0;
97
3eca809b 98 sclk = read_vco(clk, idx);
7c856522
BS
99 sdiv = ((sctl & 0x003f0000) >> 16) + 2;
100 return (sclk * 2) / sdiv;
101 default:
102 return 0;
103 }
104}
105
106static u32
3eca809b 107read_pll(struct gt215_clk *clk, int idx, u32 pll)
7c856522 108{
822ad79f
BS
109 struct nvkm_device *device = clk->base.subdev.device;
110 u32 ctrl = nvkm_rd32(device, pll + 0);
7c856522
BS
111 u32 sclk = 0, P = 1, N = 1, M = 1;
112
113 if (!(ctrl & 0x00000008)) {
114 if (ctrl & 0x00000001) {
822ad79f 115 u32 coef = nvkm_rd32(device, pll + 4);
7c856522
BS
116 M = (coef & 0x000000ff) >> 0;
117 N = (coef & 0x0000ff00) >> 8;
118 P = (coef & 0x003f0000) >> 16;
119
3d896d34
RS
120 /* no post-divider on these..
121 * XXX: it looks more like two post-"dividers" that
122 * cross each other out in the default RPLL config */
7c856522
BS
123 if ((pll & 0x00ff00) == 0x00e800)
124 P = 1;
125
3eca809b 126 sclk = read_clk(clk, 0x00 + idx, false);
7c856522
BS
127 }
128 } else {
3eca809b 129 sclk = read_clk(clk, 0x10 + idx, false);
7c856522
BS
130 }
131
132 if (M * P)
133 return sclk * N / (M * P);
7632b30e 134
7c856522
BS
135 return 0;
136}
137
138static int
3eca809b 139gt215_clk_read(struct nvkm_clk *obj, enum nv_clk_src src)
7c856522 140{
3eca809b 141 struct gt215_clk *clk = container_of(obj, typeof(*clk), base);
b907649e
BS
142 struct nvkm_subdev *subdev = &clk->base.subdev;
143 struct nvkm_device *device = subdev->device;
70c7995d 144 u32 hsrc;
7c856522
BS
145
146 switch (src) {
147 case nv_clk_src_crystal:
822ad79f 148 return device->crystal;
7c856522 149 case nv_clk_src_core:
3d40a717 150 case nv_clk_src_core_intm:
3eca809b 151 return read_pll(clk, 0x00, 0x4200);
7c856522 152 case nv_clk_src_shader:
3eca809b 153 return read_pll(clk, 0x01, 0x4220);
7c856522 154 case nv_clk_src_mem:
3eca809b 155 return read_pll(clk, 0x02, 0x4000);
7c856522 156 case nv_clk_src_disp:
3eca809b 157 return read_clk(clk, 0x20, false);
7c856522 158 case nv_clk_src_vdec:
3eca809b 159 return read_clk(clk, 0x21, false);
7c856522 160 case nv_clk_src_daemon:
3eca809b 161 return read_clk(clk, 0x25, false);
70c7995d 162 case nv_clk_src_host:
822ad79f 163 hsrc = (nvkm_rd32(device, 0xc040) & 0x30000000) >> 28;
70c7995d
RS
164 switch (hsrc) {
165 case 0:
3eca809b 166 return read_clk(clk, 0x1d, false);
70c7995d
RS
167 case 2:
168 case 3:
169 return 277000;
170 default:
b907649e 171 nvkm_error(subdev, "unknown HOST clock source %d\n", hsrc);
70c7995d
RS
172 return -EINVAL;
173 }
7c856522 174 default:
b907649e 175 nvkm_error(subdev, "invalid clock source %d\n", src);
7c856522
BS
176 return -EINVAL;
177 }
3d896d34
RS
178
179 return 0;
7c856522
BS
180}
181
d9c39056 182int
3eca809b 183gt215_clk_info(struct nvkm_clk *obj, int idx, u32 khz,
7632b30e 184 struct gt215_clk_info *info)
d9c39056 185{
3eca809b 186 struct gt215_clk *clk = container_of(obj, typeof(*clk), base);
96945546
RS
187 u32 oclk, sclk, sdiv;
188 s32 diff;
7c856522 189
7c856522
BS
190 info->clk = 0;
191
192 switch (khz) {
193 case 27000:
194 info->clk = 0x00000100;
195 return khz;
196 case 100000:
197 info->clk = 0x00002100;
198 return khz;
199 case 108000:
200 info->clk = 0x00002140;
201 return khz;
202 default:
3eca809b 203 sclk = read_vco(clk, idx);
6a4a47cf
RS
204 sdiv = min((sclk * 2) / khz, (u32)65);
205 oclk = (sclk * 2) / sdiv;
206 diff = ((khz + 3000) - oclk);
207
208 /* When imprecise, play it safe and aim for a clock lower than
209 * desired rather than higher */
210 if (diff < 0) {
211 sdiv++;
212 oclk = (sclk * 2) / sdiv;
213 }
214
215 /* divider can go as low as 2, limited here because NVIDIA
7c856522
BS
216 * and the VBIOS on my NVA8 seem to prefer using the PLL
217 * for 810MHz - is there a good reason?
6a4a47cf 218 * XXX: PLLs with refclk 810MHz? */
7c856522 219 if (sdiv > 4) {
6a4a47cf
RS
220 info->clk = (((sdiv - 2) << 16) | 0x00003100);
221 return oclk;
7c856522
BS
222 }
223
7c856522
BS
224 break;
225 }
d9c39056 226
6a4a47cf
RS
227 return -ERANGE;
228}
229
230int
3eca809b 231gt215_pll_info(struct nvkm_clk *clock, int idx, u32 pll, u32 khz,
7632b30e 232 struct gt215_clk_info *info)
6a4a47cf 233{
7632b30e 234 struct nvkm_bios *bios = nvkm_bios(clock);
3eca809b 235 struct gt215_clk *clk = (void *)clock;
6a4a47cf
RS
236 struct nvbios_pll limits;
237 int P, N, M, diff;
238 int ret;
239
240 info->pll = 0;
241
242 /* If we can get a within [-2, 3) MHz of a divider, we'll disable the
243 * PLL and use the divider instead. */
3eca809b 244 ret = gt215_clk_info(clock, idx, khz, info);
3d40a717 245 diff = khz - ret;
6a4a47cf 246 if (!pll || (diff >= -2000 && diff < 3000)) {
3d40a717 247 goto out;
6a4a47cf
RS
248 }
249
250 /* Try with PLL */
7c856522
BS
251 ret = nvbios_pll_parse(bios, pll, &limits);
252 if (ret)
253 return ret;
254
3eca809b 255 ret = gt215_clk_info(clock, idx - 0x10, limits.refclk, info);
3d40a717 256 if (ret != limits.refclk)
7c856522 257 return -EINVAL;
d9c39056 258
3eca809b 259 ret = gt215_pll_calc(nv_subdev(clk), &limits, khz, &N, NULL, &M, &P);
7c856522 260 if (ret >= 0) {
7c856522 261 info->pll = (P << 16) | (N << 8) | M;
d9c39056 262 }
7c856522 263
3d40a717
RS
264out:
265 info->fb_delay = max(((khz + 7566) / 15133), (u32) 18);
7c856522
BS
266 return ret ? ret : -ERANGE;
267}
268
269static int
3eca809b
BS
270calc_clk(struct gt215_clk *clk, struct nvkm_cstate *cstate,
271 int idx, u32 pll, int dom)
7c856522 272{
3eca809b
BS
273 int ret = gt215_pll_info(&clk->base, idx, pll, cstate->domain[dom],
274 &clk->eng[dom]);
7c856522
BS
275 if (ret >= 0)
276 return 0;
d9c39056
ML
277 return ret;
278}
279
70c7995d 280static int
3eca809b 281calc_host(struct gt215_clk *clk, struct nvkm_cstate *cstate)
70c7995d
RS
282{
283 int ret = 0;
284 u32 kHz = cstate->domain[nv_clk_src_host];
3eca809b 285 struct gt215_clk_info *info = &clk->eng[nv_clk_src_host];
70c7995d
RS
286
287 if (kHz == 277000) {
288 info->clk = 0;
289 info->host_out = NVA3_HOST_277;
290 return 0;
291 }
292
293 info->host_out = NVA3_HOST_CLK;
294
3eca809b 295 ret = gt215_clk_info(&clk->base, 0x1d, kHz, info);
70c7995d
RS
296 if (ret >= 0)
297 return 0;
7632b30e 298
70c7995d
RS
299 return ret;
300}
301
2fe7eaa0 302int
7632b30e 303gt215_clk_pre(struct nvkm_clk *clk, unsigned long *flags)
2fe7eaa0 304{
822ad79f 305 struct nvkm_device *device = clk->subdev.device;
6979c630 306 struct nvkm_fifo *fifo = device->fifo;
2fe7eaa0
RS
307
308 /* halt and idle execution engines */
822ad79f
BS
309 nvkm_mask(device, 0x020060, 0x00070000, 0x00000000);
310 nvkm_mask(device, 0x002504, 0x00000001, 0x00000001);
2fe7eaa0 311 /* Wait until the interrupt handler is finished */
6979c630
BS
312 if (nvkm_msec(device, 2000,
313 if (!nvkm_rd32(device, 0x000100))
314 break;
315 ) < 0)
2fe7eaa0
RS
316 return -EBUSY;
317
6189f1b0
BS
318 if (fifo)
319 fifo->pause(fifo, flags);
2fe7eaa0 320
6979c630
BS
321 if (nvkm_msec(device, 2000,
322 if (nvkm_rd32(device, 0x002504) & 0x00000010)
323 break;
324 ) < 0)
2fe7eaa0 325 return -EIO;
6979c630
BS
326
327 if (nvkm_msec(device, 2000,
328 u32 tmp = nvkm_rd32(device, 0x002504) & 0x0000003f;
329 if (tmp == 0x0000003f)
330 break;
331 ) < 0)
2fe7eaa0
RS
332 return -EIO;
333
334 return 0;
335}
336
337void
7632b30e 338gt215_clk_post(struct nvkm_clk *clk, unsigned long *flags)
2fe7eaa0 339{
822ad79f 340 struct nvkm_device *device = clk->subdev.device;
8f0649b5 341 struct nvkm_fifo *fifo = device->fifo;
2fe7eaa0 342
6189f1b0
BS
343 if (fifo && flags)
344 fifo->start(fifo, flags);
2fe7eaa0 345
822ad79f
BS
346 nvkm_mask(device, 0x002504, 0x00000001, 0x00000000);
347 nvkm_mask(device, 0x020060, 0x00070000, 0x00040000);
2fe7eaa0
RS
348}
349
70c7995d 350static void
3eca809b 351disable_clk_src(struct gt215_clk *clk, u32 src)
70c7995d 352{
822ad79f
BS
353 struct nvkm_device *device = clk->base.subdev.device;
354 nvkm_mask(device, src, 0x00000100, 0x00000000);
355 nvkm_mask(device, src, 0x00000001, 0x00000000);
70c7995d
RS
356}
357
7c856522 358static void
3eca809b 359prog_pll(struct gt215_clk *clk, int idx, u32 pll, int dom)
7c856522 360{
3eca809b 361 struct gt215_clk_info *info = &clk->eng[dom];
822ad79f 362 struct nvkm_device *device = clk->base.subdev.device;
3eca809b
BS
363 const u32 src0 = 0x004120 + (idx * 4);
364 const u32 src1 = 0x004160 + (idx * 4);
7c856522
BS
365 const u32 ctrl = pll + 0;
366 const u32 coef = pll + 4;
a749a1fb 367 u32 bypass;
7c856522
BS
368
369 if (info->pll) {
a749a1fb 370 /* Always start from a non-PLL clock */
822ad79f 371 bypass = nvkm_rd32(device, ctrl) & 0x00000008;
a749a1fb 372 if (!bypass) {
822ad79f
BS
373 nvkm_mask(device, src1, 0x00000101, 0x00000101);
374 nvkm_mask(device, ctrl, 0x00000008, 0x00000008);
a749a1fb
RS
375 udelay(20);
376 }
377
822ad79f
BS
378 nvkm_mask(device, src0, 0x003f3141, 0x00000101 | info->clk);
379 nvkm_wr32(device, coef, info->pll);
380 nvkm_mask(device, ctrl, 0x00000015, 0x00000015);
381 nvkm_mask(device, ctrl, 0x00000010, 0x00000000);
6979c630
BS
382 if (nvkm_msec(device, 2000,
383 if (nvkm_rd32(device, ctrl) & 0x00020000)
384 break;
385 ) < 0) {
822ad79f
BS
386 nvkm_mask(device, ctrl, 0x00000010, 0x00000010);
387 nvkm_mask(device, src0, 0x00000101, 0x00000000);
275dd6f4
RS
388 return;
389 }
822ad79f
BS
390 nvkm_mask(device, ctrl, 0x00000010, 0x00000010);
391 nvkm_mask(device, ctrl, 0x00000008, 0x00000000);
3eca809b 392 disable_clk_src(clk, src1);
7c856522 393 } else {
822ad79f
BS
394 nvkm_mask(device, src1, 0x003f3141, 0x00000101 | info->clk);
395 nvkm_mask(device, ctrl, 0x00000018, 0x00000018);
7c856522 396 udelay(20);
822ad79f 397 nvkm_mask(device, ctrl, 0x00000001, 0x00000000);
3eca809b 398 disable_clk_src(clk, src0);
7c856522
BS
399 }
400}
401
402static void
3eca809b 403prog_clk(struct gt215_clk *clk, int idx, int dom)
7c856522 404{
3eca809b 405 struct gt215_clk_info *info = &clk->eng[dom];
822ad79f
BS
406 struct nvkm_device *device = clk->base.subdev.device;
407 nvkm_mask(device, 0x004120 + (idx * 4), 0x003f3141, 0x00000101 | info->clk);
7c856522
BS
408}
409
70c7995d 410static void
3eca809b 411prog_host(struct gt215_clk *clk)
70c7995d 412{
3eca809b 413 struct gt215_clk_info *info = &clk->eng[nv_clk_src_host];
822ad79f
BS
414 struct nvkm_device *device = clk->base.subdev.device;
415 u32 hsrc = (nvkm_rd32(device, 0xc040));
70c7995d
RS
416
417 switch (info->host_out) {
418 case NVA3_HOST_277:
419 if ((hsrc & 0x30000000) == 0) {
822ad79f 420 nvkm_wr32(device, 0xc040, hsrc | 0x20000000);
3eca809b 421 disable_clk_src(clk, 0x4194);
70c7995d
RS
422 }
423 break;
424 case NVA3_HOST_CLK:
3eca809b 425 prog_clk(clk, 0x1d, nv_clk_src_host);
70c7995d 426 if ((hsrc & 0x30000000) >= 0x20000000) {
822ad79f 427 nvkm_wr32(device, 0xc040, hsrc & ~0x30000000);
70c7995d
RS
428 }
429 break;
430 default:
431 break;
432 }
433
434 /* This seems to be a clock gating factor on idle, always set to 64 */
822ad79f 435 nvkm_wr32(device, 0xc044, 0x3e);
70c7995d
RS
436}
437
3d40a717 438static void
3eca809b 439prog_core(struct gt215_clk *clk, int dom)
3d40a717 440{
3eca809b 441 struct gt215_clk_info *info = &clk->eng[dom];
822ad79f
BS
442 struct nvkm_device *device = clk->base.subdev.device;
443 u32 fb_delay = nvkm_rd32(device, 0x10002c);
3d40a717
RS
444
445 if (fb_delay < info->fb_delay)
822ad79f 446 nvkm_wr32(device, 0x10002c, info->fb_delay);
3d40a717 447
3eca809b 448 prog_pll(clk, 0x00, 0x004200, dom);
3d40a717
RS
449
450 if (fb_delay > info->fb_delay)
822ad79f 451 nvkm_wr32(device, 0x10002c, info->fb_delay);
3d40a717
RS
452}
453
7c856522 454static int
3eca809b 455gt215_clk_calc(struct nvkm_clk *obj, struct nvkm_cstate *cstate)
7c856522 456{
3eca809b
BS
457 struct gt215_clk *clk = container_of(obj, typeof(*clk), base);
458 struct gt215_clk_info *core = &clk->eng[nv_clk_src_core];
7c856522
BS
459 int ret;
460
3eca809b
BS
461 if ((ret = calc_clk(clk, cstate, 0x10, 0x4200, nv_clk_src_core)) ||
462 (ret = calc_clk(clk, cstate, 0x11, 0x4220, nv_clk_src_shader)) ||
463 (ret = calc_clk(clk, cstate, 0x20, 0x0000, nv_clk_src_disp)) ||
464 (ret = calc_clk(clk, cstate, 0x21, 0x0000, nv_clk_src_vdec)) ||
465 (ret = calc_host(clk, cstate)))
7c856522
BS
466 return ret;
467
3d40a717
RS
468 /* XXX: Should be reading the highest bit in the VBIOS clock to decide
469 * whether to use a PLL or not... but using a PLL defeats the purpose */
470 if (core->pll) {
3eca809b 471 ret = gt215_clk_info(&clk->base, 0x10,
7632b30e 472 cstate->domain[nv_clk_src_core_intm],
3eca809b 473 &clk->eng[nv_clk_src_core_intm]);
3d40a717
RS
474 if (ret < 0)
475 return ret;
476 }
477
7c856522
BS
478 return 0;
479}
480
481static int
3eca809b 482gt215_clk_prog(struct nvkm_clk *obj)
7c856522 483{
3eca809b
BS
484 struct gt215_clk *clk = container_of(obj, typeof(*clk), base);
485 struct gt215_clk_info *core = &clk->eng[nv_clk_src_core];
2fe7eaa0
RS
486 int ret = 0;
487 unsigned long flags;
488 unsigned long *f = &flags;
489
3eca809b 490 ret = gt215_clk_pre(&clk->base, f);
2fe7eaa0
RS
491 if (ret)
492 goto out;
3d40a717
RS
493
494 if (core->pll)
3eca809b 495 prog_core(clk, nv_clk_src_core_intm);
3d40a717 496
3eca809b
BS
497 prog_core(clk, nv_clk_src_core);
498 prog_pll(clk, 0x01, 0x004220, nv_clk_src_shader);
499 prog_clk(clk, 0x20, nv_clk_src_disp);
500 prog_clk(clk, 0x21, nv_clk_src_vdec);
501 prog_host(clk);
2fe7eaa0
RS
502
503out:
504 if (ret == -EBUSY)
505 f = NULL;
506
3eca809b 507 gt215_clk_post(&clk->base, f);
2fe7eaa0 508 return ret;
7c856522
BS
509}
510
511static void
3eca809b 512gt215_clk_tidy(struct nvkm_clk *obj)
7c856522
BS
513{
514}
515
7632b30e
BS
516static struct nvkm_domain
517gt215_domain[] = {
3d40a717
RS
518 { nv_clk_src_crystal , 0xff },
519 { nv_clk_src_core , 0x00, 0, "core", 1000 },
520 { nv_clk_src_shader , 0x01, 0, "shader", 1000 },
521 { nv_clk_src_mem , 0x02, 0, "memory", 1000 },
522 { nv_clk_src_vdec , 0x03 },
523 { nv_clk_src_disp , 0x04 },
524 { nv_clk_src_host , 0x05 },
525 { nv_clk_src_core_intm, 0x06 },
7c856522
BS
526 { nv_clk_src_max }
527};
d9c39056 528
8aceb7de 529static int
7632b30e
BS
530gt215_clk_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
531 struct nvkm_oclass *oclass, void *data, u32 size,
532 struct nvkm_object **pobject)
8aceb7de 533{
3eca809b 534 struct gt215_clk *clk;
8aceb7de
BS
535 int ret;
536
7632b30e 537 ret = nvkm_clk_create(parent, engine, oclass, gt215_domain,
3eca809b
BS
538 NULL, 0, true, &clk);
539 *pobject = nv_object(clk);
8aceb7de
BS
540 if (ret)
541 return ret;
542
3eca809b
BS
543 clk->base.read = gt215_clk_read;
544 clk->base.calc = gt215_clk_calc;
545 clk->base.prog = gt215_clk_prog;
546 clk->base.tidy = gt215_clk_tidy;
8aceb7de
BS
547 return 0;
548}
549
7632b30e
BS
550struct nvkm_oclass
551gt215_clk_oclass = {
f3867f43 552 .handle = NV_SUBDEV(CLK, 0xa3),
7632b30e
BS
553 .ofuncs = &(struct nvkm_ofuncs) {
554 .ctor = gt215_clk_ctor,
555 .dtor = _nvkm_clk_dtor,
556 .init = _nvkm_clk_init,
557 .fini = _nvkm_clk_fini,
8aceb7de
BS
558 },
559};
This page took 0.209074 seconds and 5 git commands to generate.