diff options
author | Maarten Lankhorst <maarten.lankhorst@canonical.com> | 2012-11-22 20:13:36 -0500 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-11-28 18:58:08 -0500 |
commit | 4a7950140b960694326489ba6c2429fd7830c93b (patch) | |
tree | 699b7621ac71680f9ebeb095b9f06c622a230a7c /drivers/gpu/drm/nouveau | |
parent | 7d8bd91bf43a220f506ebf01abdee487e7117469 (diff) |
nvc0/ppp: initial implementation of engine
Will allow use of the engine if firmware (nvXX_fuc086) provided.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau')
-rw-r--r-- | drivers/gpu/drm/nouveau/Makefile | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/engine/ppp/nvc0.c | 110 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/include/engine/ppp.h | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c | 16 |
4 files changed, 120 insertions, 8 deletions
diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile index e84e5cd9de37..ab25752a0b1e 100644 --- a/drivers/gpu/drm/nouveau/Makefile +++ b/drivers/gpu/drm/nouveau/Makefile | |||
@@ -180,6 +180,7 @@ nouveau-y += core/engine/mpeg/nv40.o | |||
180 | nouveau-y += core/engine/mpeg/nv50.o | 180 | nouveau-y += core/engine/mpeg/nv50.o |
181 | nouveau-y += core/engine/mpeg/nv84.o | 181 | nouveau-y += core/engine/mpeg/nv84.o |
182 | nouveau-y += core/engine/ppp/nv98.o | 182 | nouveau-y += core/engine/ppp/nv98.o |
183 | nouveau-y += core/engine/ppp/nvc0.o | ||
183 | nouveau-y += core/engine/software/nv04.o | 184 | nouveau-y += core/engine/software/nv04.o |
184 | nouveau-y += core/engine/software/nv10.o | 185 | nouveau-y += core/engine/software/nv10.o |
185 | nouveau-y += core/engine/software/nv50.o | 186 | nouveau-y += core/engine/software/nv50.o |
diff --git a/drivers/gpu/drm/nouveau/core/engine/ppp/nvc0.c b/drivers/gpu/drm/nouveau/core/engine/ppp/nvc0.c new file mode 100644 index 000000000000..ebf0d860e2dd --- /dev/null +++ b/drivers/gpu/drm/nouveau/core/engine/ppp/nvc0.c | |||
@@ -0,0 +1,110 @@ | |||
1 | /* | ||
2 | * Copyright 2012 Maarten Lankhorst | ||
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: Maarten Lankhorst | ||
23 | */ | ||
24 | |||
25 | #include <core/falcon.h> | ||
26 | |||
27 | #include <engine/ppp.h> | ||
28 | |||
29 | struct nvc0_ppp_priv { | ||
30 | struct nouveau_falcon base; | ||
31 | }; | ||
32 | |||
33 | /******************************************************************************* | ||
34 | * PPP object classes | ||
35 | ******************************************************************************/ | ||
36 | |||
37 | static struct nouveau_oclass | ||
38 | nvc0_ppp_sclass[] = { | ||
39 | { 0x90b3, &nouveau_object_ofuncs }, | ||
40 | {}, | ||
41 | }; | ||
42 | |||
43 | /******************************************************************************* | ||
44 | * PPPP context | ||
45 | ******************************************************************************/ | ||
46 | |||
47 | static struct nouveau_oclass | ||
48 | nvc0_ppp_cclass = { | ||
49 | .handle = NV_ENGCTX(PPP, 0xc0), | ||
50 | .ofuncs = &(struct nouveau_ofuncs) { | ||
51 | .ctor = _nouveau_falcon_context_ctor, | ||
52 | .dtor = _nouveau_falcon_context_dtor, | ||
53 | .init = _nouveau_falcon_context_init, | ||
54 | .fini = _nouveau_falcon_context_fini, | ||
55 | .rd32 = _nouveau_falcon_context_rd32, | ||
56 | .wr32 = _nouveau_falcon_context_wr32, | ||
57 | }, | ||
58 | }; | ||
59 | |||
60 | /******************************************************************************* | ||
61 | * PPPP engine/subdev functions | ||
62 | ******************************************************************************/ | ||
63 | |||
64 | static int | ||
65 | nvc0_ppp_init(struct nouveau_object *object) | ||
66 | { | ||
67 | struct nvc0_ppp_priv *priv = (void *)object; | ||
68 | int ret; | ||
69 | |||
70 | ret = nouveau_falcon_init(&priv->base); | ||
71 | if (ret) | ||
72 | return ret; | ||
73 | |||
74 | nv_wr32(priv, 0x086010, 0x0000fff2); | ||
75 | nv_wr32(priv, 0x08601c, 0x0000fff2); | ||
76 | return 0; | ||
77 | } | ||
78 | |||
79 | static int | ||
80 | nvc0_ppp_ctor(struct nouveau_object *parent, struct nouveau_object *engine, | ||
81 | struct nouveau_oclass *oclass, void *data, u32 size, | ||
82 | struct nouveau_object **pobject) | ||
83 | { | ||
84 | struct nvc0_ppp_priv *priv; | ||
85 | int ret; | ||
86 | |||
87 | ret = nouveau_falcon_create(parent, engine, oclass, 0x086000, true, | ||
88 | "PPPP", "ppp", &priv); | ||
89 | *pobject = nv_object(priv); | ||
90 | if (ret) | ||
91 | return ret; | ||
92 | |||
93 | nv_subdev(priv)->unit = 0x00000002; | ||
94 | nv_engine(priv)->cclass = &nvc0_ppp_cclass; | ||
95 | nv_engine(priv)->sclass = nvc0_ppp_sclass; | ||
96 | return 0; | ||
97 | } | ||
98 | |||
99 | struct nouveau_oclass | ||
100 | nvc0_ppp_oclass = { | ||
101 | .handle = NV_ENGINE(PPP, 0xc0), | ||
102 | .ofuncs = &(struct nouveau_ofuncs) { | ||
103 | .ctor = nvc0_ppp_ctor, | ||
104 | .dtor = _nouveau_falcon_dtor, | ||
105 | .init = nvc0_ppp_init, | ||
106 | .fini = _nouveau_falcon_fini, | ||
107 | .rd32 = _nouveau_falcon_rd32, | ||
108 | .wr32 = _nouveau_falcon_wr32, | ||
109 | }, | ||
110 | }; | ||
diff --git a/drivers/gpu/drm/nouveau/core/include/engine/ppp.h b/drivers/gpu/drm/nouveau/core/include/engine/ppp.h index 74d554fb3281..517bedc8279b 100644 --- a/drivers/gpu/drm/nouveau/core/include/engine/ppp.h +++ b/drivers/gpu/drm/nouveau/core/include/engine/ppp.h | |||
@@ -41,5 +41,6 @@ struct nouveau_ppp { | |||
41 | #define _nouveau_ppp_fini _nouveau_engine_fini | 41 | #define _nouveau_ppp_fini _nouveau_engine_fini |
42 | 42 | ||
43 | extern struct nouveau_oclass nv98_ppp_oclass; | 43 | extern struct nouveau_oclass nv98_ppp_oclass; |
44 | extern struct nouveau_oclass nvc0_ppp_oclass; | ||
44 | 45 | ||
45 | #endif | 46 | #endif |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c b/drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c index 1e20021b6144..f0461685a422 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c +++ b/drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c | |||
@@ -76,7 +76,7 @@ nvc0_identify(struct nouveau_device *device) | |||
76 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 76 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
77 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 77 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
78 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 78 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
79 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 79 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
80 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 80 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
81 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 81 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
82 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 82 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -104,7 +104,7 @@ nvc0_identify(struct nouveau_device *device) | |||
104 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 104 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
105 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 105 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
106 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 106 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
107 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 107 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
108 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 108 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
109 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 109 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
110 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 110 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -132,7 +132,7 @@ nvc0_identify(struct nouveau_device *device) | |||
132 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 132 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
133 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 133 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
134 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 134 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
135 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 135 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
136 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 136 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
137 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 137 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
138 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 138 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -160,7 +160,7 @@ nvc0_identify(struct nouveau_device *device) | |||
160 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 160 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
161 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 161 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
162 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 162 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
163 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 163 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
164 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 164 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
165 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 165 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
166 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 166 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -188,7 +188,7 @@ nvc0_identify(struct nouveau_device *device) | |||
188 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 188 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
189 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 189 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
190 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 190 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
191 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 191 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
192 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 192 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
193 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 193 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
194 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 194 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -216,7 +216,7 @@ nvc0_identify(struct nouveau_device *device) | |||
216 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 216 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
217 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 217 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
218 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 218 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
219 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 219 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
220 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 220 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
221 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 221 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
222 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 222 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -244,7 +244,7 @@ nvc0_identify(struct nouveau_device *device) | |||
244 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 244 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
245 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 245 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
246 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 246 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
247 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 247 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
248 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 248 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
249 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; | 249 | device->oclass[NVDEV_ENGINE_COPY1 ] = &nvc0_copy1_oclass; |
250 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; | 250 | device->oclass[NVDEV_ENGINE_DISP ] = &nva3_disp_oclass; |
@@ -272,7 +272,7 @@ nvc0_identify(struct nouveau_device *device) | |||
272 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; | 272 | device->oclass[NVDEV_ENGINE_GR ] = &nvc0_graph_oclass; |
273 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; | 273 | device->oclass[NVDEV_ENGINE_VP ] = &nvc0_vp_oclass; |
274 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; | 274 | device->oclass[NVDEV_ENGINE_BSP ] = &nvc0_bsp_oclass; |
275 | device->oclass[NVDEV_ENGINE_PPP ] = &nv98_ppp_oclass; | 275 | device->oclass[NVDEV_ENGINE_PPP ] = &nvc0_ppp_oclass; |
276 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; | 276 | device->oclass[NVDEV_ENGINE_COPY0 ] = &nvc0_copy0_oclass; |
277 | device->oclass[NVDEV_ENGINE_DISP ] = &nvd0_disp_oclass; | 277 | device->oclass[NVDEV_ENGINE_DISP ] = &nvd0_disp_oclass; |
278 | break; | 278 | break; |