drm/nouveau/clk: rename from clock (no binary change)
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / drm / nouveau / nvkm / subdev / clk / nv04.c
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
23  */
24
25 #include <subdev/bios.h>
26 #include <subdev/bios/pll.h>
27 #include <subdev/clk.h>
28 #include <subdev/devinit/nv04.h>
29
30 #include "pll.h"
31
32 struct nv04_clk_priv {
33         struct nouveau_clk base;
34 };
35
36 int
37 nv04_clk_pll_calc(struct nouveau_clk *clock, struct nvbios_pll *info,
38                     int clk, struct nouveau_pll_vals *pv)
39 {
40         int N1, M1, N2, M2, P;
41         int ret = nv04_pll_calc(nv_subdev(clock), info, clk, &N1, &M1, &N2, &M2, &P);
42         if (ret) {
43                 pv->refclk = info->refclk;
44                 pv->N1 = N1;
45                 pv->M1 = M1;
46                 pv->N2 = N2;
47                 pv->M2 = M2;
48                 pv->log2P = P;
49         }
50         return ret;
51 }
52
53 int
54 nv04_clk_pll_prog(struct nouveau_clk *clk, u32 reg1,
55                     struct nouveau_pll_vals *pv)
56 {
57         struct nouveau_devinit *devinit = nouveau_devinit(clk);
58         int cv = nouveau_bios(clk)->version.chip;
59
60         if (cv == 0x30 || cv == 0x31 || cv == 0x35 || cv == 0x36 ||
61             cv >= 0x40) {
62                 if (reg1 > 0x405c)
63                         setPLL_double_highregs(devinit, reg1, pv);
64                 else
65                         setPLL_double_lowregs(devinit, reg1, pv);
66         } else
67                 setPLL_single(devinit, reg1, pv);
68
69         return 0;
70 }
71
72 static struct nouveau_domain
73 nv04_domain[] = {
74         { nv_clk_src_max }
75 };
76
77 static int
78 nv04_clk_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
79                 struct nouveau_oclass *oclass, void *data, u32 size,
80                 struct nouveau_object **pobject)
81 {
82         struct nv04_clk_priv *priv;
83         int ret;
84
85         ret = nouveau_clk_create(parent, engine, oclass, nv04_domain, NULL, 0,
86                                    false, &priv);
87         *pobject = nv_object(priv);
88         if (ret)
89                 return ret;
90
91         priv->base.pll_calc = nv04_clk_pll_calc;
92         priv->base.pll_prog = nv04_clk_pll_prog;
93         return 0;
94 }
95
96 struct nouveau_oclass
97 nv04_clk_oclass = {
98         .handle = NV_SUBDEV(CLK, 0x04),
99         .ofuncs = &(struct nouveau_ofuncs) {
100                 .ctor = nv04_clk_ctor,
101                 .dtor = _nouveau_clk_dtor,
102                 .init = _nouveau_clk_init,
103                 .fini = _nouveau_clk_fini,
104         },
105 };