blob: c61102f708055ecf739077e1a1436dcd12ff70cb [file] [log] [blame]
Ben Skeggs88524bc2013-03-05 10:53:54 +10001/*
2 * Copyright 2013 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 */
Ben Skeggscf336012014-01-14 15:55:38 +100024#include "nv50.h"
Ben Skeggs88524bc2013-03-05 10:53:54 +100025
Ben Skeggsa8c43622015-01-14 14:48:16 +100026#include <subdev/bios.h>
27#include <subdev/bios/init.h>
28#include <subdev/bios/pll.h>
29#include <subdev/clk/pll.h>
30
Ben Skeggs4bf23ea2014-02-24 12:28:37 +100031int
Ben Skeggsa8c43622015-01-14 14:48:16 +100032gf100_devinit_pll_set(struct nvkm_devinit *devinit, u32 type, u32 freq)
Ben Skeggs88524bc2013-03-05 10:53:54 +100033{
Ben Skeggscf336012014-01-14 15:55:38 +100034 struct nv50_devinit_priv *priv = (void *)devinit;
Ben Skeggsa8c43622015-01-14 14:48:16 +100035 struct nvkm_bios *bios = nvkm_bios(priv);
Ben Skeggs88524bc2013-03-05 10:53:54 +100036 struct nvbios_pll info;
37 int N, fN, M, P;
38 int ret;
39
40 ret = nvbios_pll_parse(bios, type, &info);
41 if (ret)
42 return ret;
43
Ben Skeggsa8c43622015-01-14 14:48:16 +100044 ret = gt215_pll_calc(nv_subdev(devinit), &info, freq, &N, &fN, &M, &P);
Ben Skeggs88524bc2013-03-05 10:53:54 +100045 if (ret < 0)
46 return ret;
47
48 switch (info.type) {
49 case PLL_VPLL0:
50 case PLL_VPLL1:
51 case PLL_VPLL2:
52 case PLL_VPLL3:
53 nv_mask(priv, info.reg + 0x0c, 0x00000000, 0x00000100);
54 nv_wr32(priv, info.reg + 0x04, (P << 16) | (N << 8) | M);
55 nv_wr32(priv, info.reg + 0x10, fN << 16);
56 break;
57 default:
58 nv_warn(priv, "0x%08x/%dKhz unimplemented\n", type, freq);
59 ret = -EINVAL;
60 break;
61 }
62
63 return ret;
64}
65
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100066static u64
Ben Skeggsa8c43622015-01-14 14:48:16 +100067gf100_devinit_disable(struct nvkm_devinit *devinit)
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100068{
69 struct nv50_devinit_priv *priv = (void *)devinit;
70 u32 r022500 = nv_rd32(priv, 0x022500);
71 u64 disable = 0ULL;
72
73 if (r022500 & 0x00000001)
74 disable |= (1ULL << NVDEV_ENGINE_DISP);
75
76 if (r022500 & 0x00000002) {
Ben Skeggs37a5d022015-01-14 12:50:04 +100077 disable |= (1ULL << NVDEV_ENGINE_MSPDEC);
Ben Skeggsfd8666f2015-01-14 12:26:28 +100078 disable |= (1ULL << NVDEV_ENGINE_MSPPP);
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100079 }
80
81 if (r022500 & 0x00000004)
Ben Skeggseccf7e8a2015-01-14 10:09:24 +100082 disable |= (1ULL << NVDEV_ENGINE_MSVLD);
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100083 if (r022500 & 0x00000008)
Ben Skeggsbd8369e2015-01-14 12:37:00 +100084 disable |= (1ULL << NVDEV_ENGINE_MSENC);
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100085 if (r022500 & 0x00000100)
Ben Skeggsaedf24f2015-01-14 11:50:20 +100086 disable |= (1ULL << NVDEV_ENGINE_CE0);
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100087 if (r022500 & 0x00000200)
Ben Skeggsaedf24f2015-01-14 11:50:20 +100088 disable |= (1ULL << NVDEV_ENGINE_CE1);
Ilia Mirkin4019aaa2014-01-14 16:29:06 +100089
90 return disable;
91}
92
Ben Skeggs4d4d6f72015-05-21 15:47:16 +100093int
Ben Skeggsa8c43622015-01-14 14:48:16 +100094gf100_devinit_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
95 struct nvkm_oclass *oclass, void *data, u32 size,
96 struct nvkm_object **pobject)
Ben Skeggs88524bc2013-03-05 10:53:54 +100097{
Ben Skeggsc9ab50d2015-05-21 15:44:15 +100098 struct nvkm_devinit_impl *impl = (void *)oclass;
Ben Skeggs88524bc2013-03-05 10:53:54 +100099 struct nv50_devinit_priv *priv;
Ben Skeggsc9ab50d2015-05-21 15:44:15 +1000100 u64 disable;
Ben Skeggs88524bc2013-03-05 10:53:54 +1000101 int ret;
102
Ben Skeggsa8c43622015-01-14 14:48:16 +1000103 ret = nvkm_devinit_create(parent, engine, oclass, &priv);
Ben Skeggs88524bc2013-03-05 10:53:54 +1000104 *pobject = nv_object(priv);
105 if (ret)
106 return ret;
107
Ben Skeggsc9ab50d2015-05-21 15:44:15 +1000108 disable = impl->disable(&priv->base);
109 if (disable & (1ULL << NVDEV_ENGINE_DISP))
Maarten Lankhorst791dc1432013-06-27 17:35:53 +1000110 priv->base.post = true;
Ben Skeggsa8c43622015-01-14 14:48:16 +1000111
Ben Skeggs88524bc2013-03-05 10:53:54 +1000112 return 0;
113}
114
Ben Skeggsa8c43622015-01-14 14:48:16 +1000115struct nvkm_oclass *
116gf100_devinit_oclass = &(struct nvkm_devinit_impl) {
Ben Skeggscf336012014-01-14 15:55:38 +1000117 .base.handle = NV_SUBDEV(DEVINIT, 0xc0),
Ben Skeggsa8c43622015-01-14 14:48:16 +1000118 .base.ofuncs = &(struct nvkm_ofuncs) {
119 .ctor = gf100_devinit_ctor,
120 .dtor = _nvkm_devinit_dtor,
Ben Skeggs88524bc2013-03-05 10:53:54 +1000121 .init = nv50_devinit_init,
Ben Skeggsa8c43622015-01-14 14:48:16 +1000122 .fini = _nvkm_devinit_fini,
Ben Skeggs88524bc2013-03-05 10:53:54 +1000123 },
Ben Skeggsa8c43622015-01-14 14:48:16 +1000124 .pll_set = gf100_devinit_pll_set,
125 .disable = gf100_devinit_disable,
Ben Skeggse21fd7c2014-09-23 15:39:26 +1000126 .post = nvbios_init,
Ben Skeggscf336012014-01-14 15:55:38 +1000127}.base;