drm/nouveau/fifo: split user classes out from engine implementations
[linux-2.6-block.git] / drivers / gpu / drm / nouveau / nvkm / engine / fifo / nv10.c
CommitLineData
6ee73861 1/*
ebb945a9 2 * Copyright 2012 Red Hat Inc.
6ee73861 3 *
ebb945a9
BS
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:
6ee73861 10 *
ebb945a9
BS
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
6ee73861 13 *
ebb945a9
BS
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.
6ee73861 21 *
ebb945a9 22 * Authors: Ben Skeggs
6ee73861 23 */
05c7145d 24#include "nv04.h"
9a65a38c
BS
25#include "channv04.h"
26#include "regsnv04.h"
ebb945a9
BS
27
28static struct ramfc_desc
29nv10_ramfc[] = {
c420b2dc
BS
30 { 32, 0, 0x00, 0, NV04_PFIFO_CACHE1_DMA_PUT },
31 { 32, 0, 0x04, 0, NV04_PFIFO_CACHE1_DMA_GET },
32 { 32, 0, 0x08, 0, NV10_PFIFO_CACHE1_REF_CNT },
33 { 16, 0, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_INSTANCE },
34 { 16, 16, 0x0c, 0, NV04_PFIFO_CACHE1_DMA_DCOUNT },
35 { 32, 0, 0x10, 0, NV04_PFIFO_CACHE1_DMA_STATE },
36 { 32, 0, 0x14, 0, NV04_PFIFO_CACHE1_DMA_FETCH },
37 { 32, 0, 0x18, 0, NV04_PFIFO_CACHE1_ENGINE },
38 { 32, 0, 0x1c, 0, NV04_PFIFO_CACHE1_PULL1 },
39 {}
40};
41
05c7145d 42static struct nvkm_oclass
ebb945a9
BS
43nv10_fifo_cclass = {
44 .handle = NV_ENGCTX(FIFO, 0x10),
05c7145d 45 .ofuncs = &(struct nvkm_ofuncs) {
ebb945a9 46 .ctor = nv04_fifo_context_ctor,
05c7145d
BS
47 .dtor = _nvkm_fifo_context_dtor,
48 .init = _nvkm_fifo_context_init,
49 .fini = _nvkm_fifo_context_fini,
50 .rd32 = _nvkm_fifo_context_rd32,
51 .wr32 = _nvkm_fifo_context_wr32,
ebb945a9
BS
52 },
53};
54
ebb945a9 55static int
05c7145d
BS
56nv10_fifo_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
57 struct nvkm_oclass *oclass, void *data, u32 size,
58 struct nvkm_object **pobject)
6ee73861 59{
6189f1b0 60 struct nv04_fifo *fifo;
ebb945a9 61 int ret;
6ee73861 62
6189f1b0
BS
63 ret = nvkm_fifo_create(parent, engine, oclass, 0, 31, &fifo);
64 *pobject = nv_object(fifo);
ebb945a9
BS
65 if (ret)
66 return ret;
67
6189f1b0
BS
68 nv_subdev(fifo)->unit = 0x00000100;
69 nv_subdev(fifo)->intr = nv04_fifo_intr;
70 nv_engine(fifo)->cclass = &nv10_fifo_cclass;
71 nv_engine(fifo)->sclass = nv10_fifo_sclass;
72 fifo->base.pause = nv04_fifo_pause;
73 fifo->base.start = nv04_fifo_start;
74 fifo->ramfc_desc = nv10_ramfc;
6ee73861
BS
75 return 0;
76}
ebb945a9 77
05c7145d
BS
78struct nvkm_oclass *
79nv10_fifo_oclass = &(struct nvkm_oclass) {
ebb945a9 80 .handle = NV_ENGINE(FIFO, 0x10),
05c7145d 81 .ofuncs = &(struct nvkm_ofuncs) {
ebb945a9
BS
82 .ctor = nv10_fifo_ctor,
83 .dtor = nv04_fifo_dtor,
84 .init = nv04_fifo_init,
05c7145d 85 .fini = _nvkm_fifo_fini,
ebb945a9
BS
86 },
87};