OSDN Git Service

4d61f4fe3f9938670e579f55cb22a86d3071516c
[android-x86/external-libdrm.git] / shared-core / nv04_fifo.c
1 /*
2  * Copyright (C) 2007 Ben Skeggs.
3  * All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice (including the
14  * next paragraph) shall be included in all copies or substantial
15  * portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE COPYRIGHT OWNER(S) AND/OR ITS SUPPLIERS BE
21  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  *
25  */
26
27 #include "drmP.h"
28 #include "drm.h"
29 #include "nouveau_drv.h"
30
31 #define RAMFC_WR(offset,val) INSTANCE_WR(chan->ramfc->gpuobj, \
32                                          NV04_RAMFC_##offset/4, (val))
33 #define RAMFC_RD(offset)     INSTANCE_RD(chan->ramfc->gpuobj, \
34                                          NV04_RAMFC_##offset/4)
35 #define NV04_RAMFC(c) (dev_priv->ramfc_offset + ((c) * NV04_RAMFC__SIZE))
36 #define NV04_RAMFC__SIZE 32
37
38 int
39 nv04_fifo_create_context(struct nouveau_channel *chan)
40 {
41         struct drm_device *dev = chan->dev;
42         struct drm_nouveau_private *dev_priv = dev->dev_private;
43         int ret;
44
45         if ((ret = nouveau_gpuobj_new_fake(dev, NV04_RAMFC(chan->id),
46                                                 NV04_RAMFC__SIZE,
47                                                 NVOBJ_FLAG_ZERO_ALLOC |
48                                                 NVOBJ_FLAG_ZERO_FREE,
49                                                 NULL, &chan->ramfc)))
50                 return ret;
51
52         /* Setup initial state */
53         RAMFC_WR(DMA_PUT, chan->pushbuf_base);
54         RAMFC_WR(DMA_GET, chan->pushbuf_base);
55         RAMFC_WR(DMA_INSTANCE, chan->pushbuf->instance >> 4);
56         RAMFC_WR(DMA_FETCH, (NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES |
57                              NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES |
58                              NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8 |
59 #ifdef __BIG_ENDIAN
60                              NV_PFIFO_CACHE1_BIG_ENDIAN |
61 #endif
62                              0));
63
64         /* enable the fifo dma operation */
65         NV_WRITE(NV04_PFIFO_MODE,NV_READ(NV04_PFIFO_MODE) | (1<<chan->id));
66         return 0;
67 }
68
69 void
70 nv04_fifo_destroy_context(struct nouveau_channel *chan)
71 {
72         struct drm_device *dev = chan->dev;
73         struct drm_nouveau_private *dev_priv = dev->dev_private;
74         
75         NV_WRITE(NV04_PFIFO_MODE, NV_READ(NV04_PFIFO_MODE)&~(1<<chan->id));
76
77         nouveau_gpuobj_ref_del(dev, &chan->ramfc);
78 }
79
80 int
81 nv04_fifo_load_context(struct nouveau_channel *chan)
82 {
83         struct drm_device *dev = chan->dev;
84         struct drm_nouveau_private *dev_priv = dev->dev_private;
85         uint32_t tmp;
86
87         NV_WRITE(NV03_PFIFO_CACHE1_PUSH1, (1<<8) | chan->id);
88
89         NV_WRITE(NV04_PFIFO_CACHE1_DMA_GET, RAMFC_RD(DMA_GET));
90         NV_WRITE(NV04_PFIFO_CACHE1_DMA_PUT, RAMFC_RD(DMA_PUT));
91         
92         tmp = RAMFC_RD(DMA_INSTANCE);
93         NV_WRITE(NV04_PFIFO_CACHE1_DMA_INSTANCE, tmp & 0xFFFF);
94         NV_WRITE(NV04_PFIFO_CACHE1_DMA_DCOUNT, tmp >> 16);
95         
96         NV_WRITE(NV04_PFIFO_CACHE1_DMA_STATE, RAMFC_RD(DMA_STATE));
97         NV_WRITE(NV04_PFIFO_CACHE1_DMA_FETCH, RAMFC_RD(DMA_FETCH));
98         NV_WRITE(NV04_PFIFO_CACHE1_ENGINE, RAMFC_RD(ENGINE));
99         NV_WRITE(NV04_PFIFO_CACHE1_PULL1, RAMFC_RD(PULL1_ENGINE));
100
101         /* Reset NV04_PFIFO_CACHE1_DMA_CTL_AT_INFO to INVALID */
102         tmp = NV_READ(NV04_PFIFO_CACHE1_DMA_CTL) & ~(1<<31);
103         NV_WRITE(NV04_PFIFO_CACHE1_DMA_CTL, tmp);
104
105         return 0;
106 }
107
108 int
109 nv04_fifo_save_context(struct nouveau_channel *chan)
110 {
111         struct drm_device *dev = chan->dev;
112         struct drm_nouveau_private *dev_priv = dev->dev_private;
113         uint32_t tmp;
114
115         RAMFC_WR(DMA_PUT, NV04_PFIFO_CACHE1_DMA_PUT);
116         RAMFC_WR(DMA_GET, NV04_PFIFO_CACHE1_DMA_GET);
117
118         tmp  = NV_READ(NV04_PFIFO_CACHE1_DMA_DCOUNT) << 16;
119         tmp |= NV_READ(NV04_PFIFO_CACHE1_DMA_INSTANCE);
120         RAMFC_WR(DMA_INSTANCE, tmp);
121
122         RAMFC_WR(DMA_STATE, NV_READ(NV04_PFIFO_CACHE1_DMA_STATE));
123         RAMFC_WR(DMA_FETCH, NV_READ(NV04_PFIFO_CACHE1_DMA_FETCH));
124         RAMFC_WR(ENGINE, NV_READ(NV04_PFIFO_CACHE1_ENGINE));
125         RAMFC_WR(PULL1_ENGINE, NV_READ(NV04_PFIFO_CACHE1_PULL1));
126         
127         return 0;
128 }
129