Merge tag 'mmc-v4.5-rc1' of git://git.linaro.org/people/ulf.hansson/mmc
[deliverable/linux.git] / drivers / gpu / drm / nouveau / nvkm / subdev / clk / nv40.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
23 */
6625f55c
BS
24#define nv40_clk(p) container_of((p), struct nv40_clk, base)
25#include "priv.h"
7632b30e
BS
26#include "pll.h"
27
7c856522
BS
28#include <subdev/bios.h>
29#include <subdev/bios/pll.h>
30
3eca809b 31struct nv40_clk {
7632b30e 32 struct nvkm_clk base;
7c856522
BS
33 u32 ctrl;
34 u32 npll_ctrl;
35 u32 npll_coef;
36 u32 spll;
37};
38
7c856522 39static u32
3eca809b 40read_pll_1(struct nv40_clk *clk, u32 reg)
7c856522 41{
822ad79f
BS
42 struct nvkm_device *device = clk->base.subdev.device;
43 u32 ctrl = nvkm_rd32(device, reg + 0x00);
7c856522
BS
44 int P = (ctrl & 0x00070000) >> 16;
45 int N = (ctrl & 0x0000ff00) >> 8;
46 int M = (ctrl & 0x000000ff) >> 0;
3eca809b 47 u32 ref = 27000, khz = 0;
7c856522
BS
48
49 if (ctrl & 0x80000000)
3eca809b 50 khz = ref * N / M;
7c856522 51
3eca809b 52 return khz >> P;
7c856522
BS
53}
54
55static u32
3eca809b 56read_pll_2(struct nv40_clk *clk, u32 reg)
7c856522 57{
822ad79f
BS
58 struct nvkm_device *device = clk->base.subdev.device;
59 u32 ctrl = nvkm_rd32(device, reg + 0x00);
60 u32 coef = nvkm_rd32(device, reg + 0x04);
7c856522
BS
61 int N2 = (coef & 0xff000000) >> 24;
62 int M2 = (coef & 0x00ff0000) >> 16;
63 int N1 = (coef & 0x0000ff00) >> 8;
64 int M1 = (coef & 0x000000ff) >> 0;
65 int P = (ctrl & 0x00070000) >> 16;
3eca809b 66 u32 ref = 27000, khz = 0;
7c856522
BS
67
68 if ((ctrl & 0x80000000) && M1) {
3eca809b 69 khz = ref * N1 / M1;
7c856522
BS
70 if ((ctrl & 0x40000100) == 0x40000000) {
71 if (M2)
3eca809b 72 khz = khz * N2 / M2;
7c856522 73 else
3eca809b 74 khz = 0;
7c856522
BS
75 }
76 }
77
3eca809b 78 return khz >> P;
7c856522
BS
79}
80
81static u32
3eca809b 82read_clk(struct nv40_clk *clk, u32 src)
7c856522
BS
83{
84 switch (src) {
85 case 3:
3eca809b 86 return read_pll_2(clk, 0x004000);
7c856522 87 case 2:
3eca809b 88 return read_pll_1(clk, 0x004008);
7c856522
BS
89 default:
90 break;
91 }
92
93 return 0;
94}
95
96static int
6625f55c 97nv40_clk_read(struct nvkm_clk *base, enum nv_clk_src src)
7c856522 98{
6625f55c 99 struct nv40_clk *clk = nv40_clk(base);
b907649e
BS
100 struct nvkm_subdev *subdev = &clk->base.subdev;
101 struct nvkm_device *device = subdev->device;
822ad79f 102 u32 mast = nvkm_rd32(device, 0x00c040);
7c856522
BS
103
104 switch (src) {
105 case nv_clk_src_crystal:
822ad79f 106 return device->crystal;
7c856522
BS
107 case nv_clk_src_href:
108 return 100000; /*XXX: PCIE/AGP differ*/
109 case nv_clk_src_core:
3eca809b 110 return read_clk(clk, (mast & 0x00000003) >> 0);
7c856522 111 case nv_clk_src_shader:
3eca809b 112 return read_clk(clk, (mast & 0x00000030) >> 4);
7c856522 113 case nv_clk_src_mem:
3eca809b 114 return read_pll_2(clk, 0x4020);
7c856522
BS
115 default:
116 break;
117 }
118
b907649e 119 nvkm_debug(subdev, "unknown clock source %d %08x\n", src, mast);
7c856522
BS
120 return -EINVAL;
121}
122
123static int
3eca809b 124nv40_clk_calc_pll(struct nv40_clk *clk, u32 reg, u32 khz,
7632b30e 125 int *N1, int *M1, int *N2, int *M2, int *log2P)
7c856522 126{
46484438 127 struct nvkm_subdev *subdev = &clk->base.subdev;
7c856522
BS
128 struct nvbios_pll pll;
129 int ret;
130
46484438 131 ret = nvbios_pll_parse(subdev->device->bios, reg, &pll);
7c856522
BS
132 if (ret)
133 return ret;
134
3eca809b 135 if (khz < pll.vco1.max_freq)
7c856522
BS
136 pll.vco2.max_freq = 0;
137
46484438 138 ret = nv04_pll_calc(subdev, &pll, khz, N1, M1, N2, M2, log2P);
7c856522
BS
139 if (ret == 0)
140 return -ERANGE;
7632b30e 141
7c856522
BS
142 return ret;
143}
144
145static int
6625f55c 146nv40_clk_calc(struct nvkm_clk *base, struct nvkm_cstate *cstate)
7c856522 147{
6625f55c 148 struct nv40_clk *clk = nv40_clk(base);
7c856522
BS
149 int gclk = cstate->domain[nv_clk_src_core];
150 int sclk = cstate->domain[nv_clk_src_shader];
151 int N1, M1, N2, M2, log2P;
152 int ret;
153
154 /* core/geometric clock */
3eca809b 155 ret = nv40_clk_calc_pll(clk, 0x004000, gclk,
7632b30e 156 &N1, &M1, &N2, &M2, &log2P);
7c856522
BS
157 if (ret < 0)
158 return ret;
159
160 if (N2 == M2) {
3eca809b
BS
161 clk->npll_ctrl = 0x80000100 | (log2P << 16);
162 clk->npll_coef = (N1 << 8) | M1;
7c856522 163 } else {
3eca809b
BS
164 clk->npll_ctrl = 0xc0000000 | (log2P << 16);
165 clk->npll_coef = (N2 << 24) | (M2 << 16) | (N1 << 8) | M1;
7c856522
BS
166 }
167
168 /* use the second pll for shader/rop clock, if it differs from core */
169 if (sclk && sclk != gclk) {
3eca809b 170 ret = nv40_clk_calc_pll(clk, 0x004008, sclk,
7632b30e 171 &N1, &M1, NULL, NULL, &log2P);
7c856522
BS
172 if (ret < 0)
173 return ret;
174
3eca809b
BS
175 clk->spll = 0xc0000000 | (log2P << 16) | (N1 << 8) | M1;
176 clk->ctrl = 0x00000223;
7c856522 177 } else {
3eca809b
BS
178 clk->spll = 0x00000000;
179 clk->ctrl = 0x00000333;
7c856522
BS
180 }
181
182 return 0;
183}
184
185static int
6625f55c 186nv40_clk_prog(struct nvkm_clk *base)
7c856522 187{
6625f55c 188 struct nv40_clk *clk = nv40_clk(base);
822ad79f
BS
189 struct nvkm_device *device = clk->base.subdev.device;
190 nvkm_mask(device, 0x00c040, 0x00000333, 0x00000000);
191 nvkm_wr32(device, 0x004004, clk->npll_coef);
192 nvkm_mask(device, 0x004000, 0xc0070100, clk->npll_ctrl);
193 nvkm_mask(device, 0x004008, 0xc007ffff, clk->spll);
7c856522 194 mdelay(5);
822ad79f 195 nvkm_mask(device, 0x00c040, 0x00000333, clk->ctrl);
7c856522
BS
196 return 0;
197}
198
199static void
3eca809b 200nv40_clk_tidy(struct nvkm_clk *obj)
7c856522
BS
201{
202}
203
6625f55c
BS
204static const struct nvkm_clk_func
205nv40_clk = {
206 .read = nv40_clk_read,
207 .calc = nv40_clk_calc,
208 .prog = nv40_clk_prog,
209 .tidy = nv40_clk_tidy,
210 .domains = {
211 { nv_clk_src_crystal, 0xff },
212 { nv_clk_src_href , 0xff },
213 { nv_clk_src_core , 0xff, 0, "core", 1000 },
214 { nv_clk_src_shader , 0xff, 0, "shader", 1000 },
215 { nv_clk_src_mem , 0xff, 0, "memory", 1000 },
216 { nv_clk_src_max }
217 }
218};
219
220int
221nv40_clk_new(struct nvkm_device *device, int index, struct nvkm_clk **pclk)
8aceb7de 222{
3eca809b 223 struct nv40_clk *clk;
8aceb7de 224
6625f55c
BS
225 if (!(clk = kzalloc(sizeof(*clk), GFP_KERNEL)))
226 return -ENOMEM;
3eca809b
BS
227 clk->base.pll_calc = nv04_clk_pll_calc;
228 clk->base.pll_prog = nv04_clk_pll_prog;
6625f55c 229 *pclk = &clk->base;
8aceb7de 230
6625f55c
BS
231 return nvkm_clk_ctor(&nv40_clk, device, index, true, &clk->base);
232}
This page took 0.236906 seconds and 5 git commands to generate.