blob: 27e47230e3e3d21d073b6bca26d48aac388831ca [file] [log] [blame]
Ben Skeggsebb945a2012-07-20 08:17:34 +10001/*
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 <core/os.h>
26#include <core/class.h>
27#include <core/engctx.h>
Ben Skeggs1d7c71a2013-01-31 09:23:34 +100028#include <core/event.h>
29
30#include <subdev/bar.h>
Ben Skeggsebb945a2012-07-20 08:17:34 +100031
32#include <engine/software.h>
33#include <engine/disp.h>
34
Ben Skeggs3bfcec32013-10-03 07:17:02 +100035#include "nv50.h"
Ben Skeggsebb945a2012-07-20 08:17:34 +100036
37/*******************************************************************************
38 * software object classes
39 ******************************************************************************/
40
41static int
42nvc0_software_mthd_vblsem_offset(struct nouveau_object *object, u32 mthd,
43 void *args, u32 size)
44{
Ben Skeggs3bfcec32013-10-03 07:17:02 +100045 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
Ben Skeggsebb945a2012-07-20 08:17:34 +100046 u64 data = *(u32 *)args;
47 if (mthd == 0x0400) {
Ben Skeggsef8d4782013-10-03 07:21:34 +100048 chan->vblank.offset &= 0x00ffffffffULL;
49 chan->vblank.offset |= data << 32;
Ben Skeggsebb945a2012-07-20 08:17:34 +100050 } else {
Ben Skeggsef8d4782013-10-03 07:21:34 +100051 chan->vblank.offset &= 0xff00000000ULL;
52 chan->vblank.offset |= data;
Ben Skeggsebb945a2012-07-20 08:17:34 +100053 }
54 return 0;
55}
56
57static int
58nvc0_software_mthd_vblsem_value(struct nouveau_object *object, u32 mthd,
59 void *args, u32 size)
60{
Ben Skeggs3bfcec32013-10-03 07:17:02 +100061 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
Ben Skeggsef8d4782013-10-03 07:21:34 +100062 chan->vblank.value = *(u32 *)args;
Ben Skeggsebb945a2012-07-20 08:17:34 +100063 return 0;
64}
65
66static int
67nvc0_software_mthd_vblsem_release(struct nouveau_object *object, u32 mthd,
68 void *args, u32 size)
69{
Ben Skeggs3bfcec32013-10-03 07:17:02 +100070 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
Ben Skeggsebb945a2012-07-20 08:17:34 +100071 struct nouveau_disp *disp = nouveau_disp(object);
Ben Skeggsebb945a2012-07-20 08:17:34 +100072 u32 crtc = *(u32 *)args;
73
74 if ((nv_device(object)->card_type < NV_E0 && crtc > 1) || crtc > 3)
75 return -EINVAL;
76
Ben Skeggsef8d4782013-10-03 07:21:34 +100077 nouveau_event_get(disp->vblank, crtc, &chan->vblank.event);
Ben Skeggsebb945a2012-07-20 08:17:34 +100078 return 0;
79}
80
81static int
82nvc0_software_mthd_flip(struct nouveau_object *object, u32 mthd,
83 void *args, u32 size)
84{
Ben Skeggs3bfcec32013-10-03 07:17:02 +100085 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
Ben Skeggsebb945a2012-07-20 08:17:34 +100086 if (chan->base.flip)
87 return chan->base.flip(chan->base.flip_data);
88 return -EINVAL;
89}
90
Christoph Bumiller96854822013-03-27 22:16:55 +010091static int
92nvc0_software_mthd_mp_control(struct nouveau_object *object, u32 mthd,
93 void *args, u32 size)
94{
Ben Skeggs3bfcec32013-10-03 07:17:02 +100095 struct nv50_software_chan *chan = (void *)nv_engctx(object->parent);
96 struct nv50_software_priv *priv = (void *)nv_object(chan)->engine;
Christoph Bumiller96854822013-03-27 22:16:55 +010097 u32 data = *(u32 *)args;
98
99 switch (mthd) {
100 case 0x600:
101 nv_wr32(priv, 0x419e00, data); /* MP.PM_UNK000 */
102 break;
103 case 0x644:
104 if (data & ~0x1ffffe)
105 return -EINVAL;
106 nv_wr32(priv, 0x419e44, data); /* MP.TRAP_WARP_ERROR_EN */
107 break;
108 case 0x6ac:
109 nv_wr32(priv, 0x419eac, data); /* MP.PM_UNK0AC */
110 break;
111 default:
112 return -EINVAL;
113 }
114 return 0;
115}
116
Ben Skeggsebb945a2012-07-20 08:17:34 +1000117static struct nouveau_omthds
118nvc0_software_omthds[] = {
Ben Skeggsfb445b3c22012-11-07 16:28:35 +1000119 { 0x0400, 0x0400, nvc0_software_mthd_vblsem_offset },
120 { 0x0404, 0x0404, nvc0_software_mthd_vblsem_offset },
121 { 0x0408, 0x0408, nvc0_software_mthd_vblsem_value },
122 { 0x040c, 0x040c, nvc0_software_mthd_vblsem_release },
123 { 0x0500, 0x0500, nvc0_software_mthd_flip },
Christoph Bumiller96854822013-03-27 22:16:55 +0100124 { 0x0600, 0x0600, nvc0_software_mthd_mp_control },
125 { 0x0644, 0x0644, nvc0_software_mthd_mp_control },
126 { 0x06ac, 0x06ac, nvc0_software_mthd_mp_control },
Ben Skeggsebb945a2012-07-20 08:17:34 +1000127 {}
128};
129
130static struct nouveau_oclass
131nvc0_software_sclass[] = {
132 { 0x906e, &nouveau_object_ofuncs, nvc0_software_omthds },
133 {}
134};
135
136/*******************************************************************************
137 * software context
138 ******************************************************************************/
139
140static int
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000141nvc0_software_vblsem_release(struct nouveau_eventh *event, int head)
142{
Ben Skeggsef8d4782013-10-03 07:21:34 +1000143 struct nv50_software_chan *chan =
144 container_of(event, typeof(*chan), vblank.event);
Ben Skeggs3bfcec32013-10-03 07:17:02 +1000145 struct nv50_software_priv *priv = (void *)nv_object(chan)->engine;
Ben Skeggs1d7c71a2013-01-31 09:23:34 +1000146 struct nouveau_bar *bar = nouveau_bar(priv);
147
148 nv_wr32(priv, 0x001718, 0x80000000 | chan->vblank.channel);
149 bar->flush(bar);
150 nv_wr32(priv, 0x06000c, upper_32_bits(chan->vblank.offset));
151 nv_wr32(priv, 0x060010, lower_32_bits(chan->vblank.offset));
152 nv_wr32(priv, 0x060014, chan->vblank.value);
153
154 return NVKM_EVENT_DROP;
155}
156
Ben Skeggs75895632013-10-03 07:42:41 +1000157static struct nv50_software_cclass
Ben Skeggsebb945a2012-07-20 08:17:34 +1000158nvc0_software_cclass = {
Ben Skeggs75895632013-10-03 07:42:41 +1000159 .base.handle = NV_ENGCTX(SW, 0xc0),
160 .base.ofuncs = &(struct nouveau_ofuncs) {
161 .ctor = nv50_software_context_ctor,
Ben Skeggsebb945a2012-07-20 08:17:34 +1000162 .dtor = _nouveau_software_context_dtor,
163 .init = _nouveau_software_context_init,
164 .fini = _nouveau_software_context_fini,
165 },
Ben Skeggs75895632013-10-03 07:42:41 +1000166 .vblank = nvc0_software_vblsem_release,
Ben Skeggsebb945a2012-07-20 08:17:34 +1000167};
168
169/*******************************************************************************
170 * software engine/subdev functions
171 ******************************************************************************/
172
Ben Skeggsc46c3dd2013-10-03 07:30:11 +1000173struct nouveau_oclass *
174nvc0_software_oclass = &(struct nv50_software_oclass) {
175 .base.handle = NV_ENGINE(SW, 0xc0),
176 .base.ofuncs = &(struct nouveau_ofuncs) {
Ben Skeggs75895632013-10-03 07:42:41 +1000177 .ctor = nv50_software_ctor,
Ben Skeggsebb945a2012-07-20 08:17:34 +1000178 .dtor = _nouveau_software_dtor,
179 .init = _nouveau_software_init,
180 .fini = _nouveau_software_fini,
181 },
Ben Skeggs75895632013-10-03 07:42:41 +1000182 .cclass = &nvc0_software_cclass.base,
183 .sclass = nvc0_software_sclass,
Ben Skeggsc46c3dd2013-10-03 07:30:11 +1000184}.base;