Merge branch 'late/fixes' into fixes
[linux-2.6-microblaze.git] / drivers / gpu / drm / nouveau / core / engine / dmaobj / nvc0.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 <core/gpuobj.h>
26
27 #include <subdev/fb.h>
28 #include <engine/dmaobj.h>
29
30 struct nvc0_dmaeng_priv {
31         struct nouveau_dmaeng base;
32 };
33
34 struct nvc0_dmaobj_priv {
35         struct nouveau_dmaobj base;
36 };
37
38 static int
39 nvc0_dmaobj_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
40                  struct nouveau_oclass *oclass, void *data, u32 size,
41                  struct nouveau_object **pobject)
42 {
43         struct nvc0_dmaobj_priv *dmaobj;
44         int ret;
45
46         ret = nouveau_dmaobj_create(parent, engine, oclass, data, size, &dmaobj);
47         *pobject = nv_object(dmaobj);
48         if (ret)
49                 return ret;
50
51         if (dmaobj->base.target != NV_MEM_TARGET_VM || dmaobj->base.start)
52                 return -EINVAL;
53
54         return 0;
55 }
56
57 static struct nouveau_ofuncs
58 nvc0_dmaobj_ofuncs = {
59         .ctor = nvc0_dmaobj_ctor,
60         .dtor = _nouveau_dmaobj_dtor,
61         .init = _nouveau_dmaobj_init,
62         .fini = _nouveau_dmaobj_fini,
63 };
64
65 static struct nouveau_oclass
66 nvc0_dmaobj_sclass[] = {
67         { 0x0002, &nvc0_dmaobj_ofuncs },
68         { 0x0003, &nvc0_dmaobj_ofuncs },
69         { 0x003d, &nvc0_dmaobj_ofuncs },
70         {}
71 };
72
73 static int
74 nvc0_dmaeng_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
75                  struct nouveau_oclass *oclass, void *data, u32 size,
76                  struct nouveau_object **pobject)
77 {
78         struct nvc0_dmaeng_priv *priv;
79         int ret;
80
81         ret = nouveau_dmaeng_create(parent, engine, oclass, &priv);
82         *pobject = nv_object(priv);
83         if (ret)
84                 return ret;
85
86         priv->base.base.sclass = nvc0_dmaobj_sclass;
87         return 0;
88 }
89
90 struct nouveau_oclass
91 nvc0_dmaeng_oclass = {
92         .handle = NV_ENGINE(DMAOBJ, 0xc0),
93         .ofuncs = &(struct nouveau_ofuncs) {
94                 .ctor = nvc0_dmaeng_ctor,
95                 .dtor = _nouveau_dmaeng_dtor,
96                 .init = _nouveau_dmaeng_init,
97                 .fini = _nouveau_dmaeng_fini,
98         },
99 };