blob: 65614627b24e0229fffe75fcf37e78ca22b547be [file] [log] [blame]
Dave Airliefef9b302006-08-27 08:55:02 +10001
2
3#define NV03_BOOT_0 0x00100000
4# define NV03_BOOT_0_RAM_AMOUNT 0x00000003
5# define NV03_BOOT_0_RAM_AMOUNT_8MB 0x00000000
6# define NV03_BOOT_0_RAM_AMOUNT_2MB 0x00000001
7# define NV03_BOOT_0_RAM_AMOUNT_4MB 0x00000002
8# define NV03_BOOT_0_RAM_AMOUNT_8MB_SDRAM 0x00000003
9# define NV04_BOOT_0_RAM_AMOUNT_32MB 0x00000000
10# define NV04_BOOT_0_RAM_AMOUNT_4MB 0x00000001
11# define NV04_BOOT_0_RAM_AMOUNT_8MB 0x00000002
12# define NV04_BOOT_0_RAM_AMOUNT_16MB 0x00000003
13
14#define NV04_FIFO_DATA 0x0010020c
15# define NV10_FIFO_DATA_RAM_AMOUNT_MB_MASK 0xfff00000
16# define NV10_FIFO_DATA_RAM_AMOUNT_MB_SHIFT 20
17
Stephane Marchesindd473412006-10-11 00:28:15 +020018#define NV03_PGRAPH_STATUS 0x004006b0
19#define NV04_PGRAPH_STATUS 0x00400700
Dave Airliefef9b302006-08-27 08:55:02 +100020
21#define NV_RAMIN 0x00700000
22
23#define NV_RAMHT_HANDLE_OFFSET 0
24#define NV_RAMHT_CONTEXT_OFFSET 4
25# define NV_RAMHT_CONTEXT_VALID (1<<31)
26# define NV_RAMHT_CONTEXT_CHANNEL_SHIFT 24
27# define NV_RAMHT_CONTEXT_ENGINE_SHIFT 16
28# define NV_RAMHT_CONTEXT_ENGINE_SOFTWARE 0
29# define NV_RAMHT_CONTEXT_ENGINE_GRAPHICS 1
30# define NV_RAMHT_CONTEXT_INSTANCE_SHIFT 0
31# define NV40_RAMHT_CONTEXT_CHANNEL_SHIFT 23
32# define NV40_RAMHT_CONTEXT_ENGINE_SHIFT 20
33# define NV40_RAMHT_CONTEXT_INSTANCE_SHIFT 0
34
Ben Skeggs72caa482007-02-28 15:14:08 +110035/* DMA object defines */
Dave Airliefef9b302006-08-27 08:55:02 +100036#define NV_DMA_ACCESS_RW 0
37#define NV_DMA_ACCESS_RO 1
38#define NV_DMA_ACCESS_WO 2
39#define NV_DMA_TARGET_VIDMEM 0
Ben Skeggs72caa482007-02-28 15:14:08 +110040#define NV_DMA_TARGET_PCI 2
Dave Airliefef9b302006-08-27 08:55:02 +100041#define NV_DMA_TARGET_AGP 3
Arthur Huillet694e1c52007-07-11 02:35:10 +020042/*The following is not a real value used by nvidia cards, it's changed by nouveau_object_dma_create*/
43#define NV_DMA_TARGET_PCI_NONLINEAR 8
Dave Airliefef9b302006-08-27 08:55:02 +100044
Ben Skeggs72caa482007-02-28 15:14:08 +110045/* Some object classes we care about in the drm */
46#define NV_CLASS_DMA_FROM_MEMORY 0x00000002
47#define NV_CLASS_DMA_TO_MEMORY 0x00000003
48#define NV_CLASS_NULL 0x00000030
49#define NV_CLASS_DMA_IN_MEMORY 0x0000003D
50
Dave Airlie2dd3c032006-11-06 11:42:15 +110051#define NV03_FIFO_SIZE 0x8000UL
Ben Skeggsc806bba2007-07-05 00:12:33 +100052#define NV_MAX_FIFO_NUMBER 128
Dave Airliefef9b302006-08-27 08:55:02 +100053#define NV03_FIFO_REGS_SIZE 0x10000
54#define NV03_FIFO_REGS(i) (0x00800000+i*NV03_FIFO_REGS_SIZE)
55# define NV03_FIFO_REGS_DMAPUT(i) (NV03_FIFO_REGS(i)+0x40)
56# define NV03_FIFO_REGS_DMAGET(i) (NV03_FIFO_REGS(i)+0x44)
Ben Skeggsc806bba2007-07-05 00:12:33 +100057#define NV50_FIFO_REGS_SIZE 0x2000
58#define NV50_FIFO_REGS(i) (0x00c00000+i*NV50_FIFO_REGS_SIZE)
59# define NV50_FIFO_REGS_DMAPUT(i) (NV50_FIFO_REGS(i)+0x40)
60# define NV50_FIFO_REGS_DMAGET(i) (NV50_FIFO_REGS(i)+0x44)
Dave Airliefef9b302006-08-27 08:55:02 +100061
Stephane Marchesin5a072f32007-02-03 04:57:06 +010062#define NV03_PMC_BOOT_0 0x00000000
63#define NV03_PMC_INTR_0 0x00000100
64# define NV_PMC_INTR_0_PFIFO_PENDING (1<< 8)
65# define NV_PMC_INTR_0_PGRAPH_PENDING (1<<12)
66# define NV_PMC_INTR_0_CRTC0_PENDING (1<<24)
67# define NV_PMC_INTR_0_CRTC1_PENDING (1<<25)
68# define NV_PMC_INTR_0_CRTCn_PENDING (3<<24)
69#define NV03_PMC_INTR_EN_0 0x00000140
70# define NV_PMC_INTR_EN_0_MASTER_ENABLE (1<< 0)
Ben Skeggs674cefd2007-03-26 19:43:48 +100071#define NV03_PMC_ENABLE 0x00000200
72# define NV_PMC_ENABLE_PFIFO (1<< 8)
73# define NV_PMC_ENABLE_PGRAPH (1<<12)
Ben Skeggs78034c02007-04-06 03:24:39 +100074/* Disabling the below bit breaks newer (G7X only?) mobile chipsets,
75 * the card will hang early on in the X init process.
76 */
77# define NV_PMC_ENABLE_UNK13 (1<<13)
Ben Skeggs674cefd2007-03-26 19:43:48 +100078#define NV40_PMC_1700 0x00001700
79#define NV40_PMC_1704 0x00001704
80#define NV40_PMC_1708 0x00001708
81#define NV40_PMC_170C 0x0000170C
Dave Airliefef9b302006-08-27 08:55:02 +100082
Ben Skeggsa4610462007-08-10 13:54:26 +100083/* probably PMC ? */
84#define NV50_PUNK_BAR0_PRAMIN 0x00001700
85#define NV50_PUNK_BAR_CFG_BASE 0x00001704
86#define NV50_PUNK_BAR_CFG_BASE_VALID (1<<30)
87#define NV50_PUNK_BAR1_CTXDMA 0x00001708
88#define NV50_PUNK_BAR1_CTXDMA_VALID (1<<31)
89#define NV50_PUNK_BAR3_CTXDMA 0x0000170C
90#define NV50_PUNK_BAR3_CTXDMA_VALID (1<<31)
91#define NV50_PUNK_UNK1710 0x00001710
92
Ben Skeggs674cefd2007-03-26 19:43:48 +100093#define NV04_PTIMER_INTR_0 0x00009100
94#define NV04_PTIMER_INTR_EN_0 0x00009140
95#define NV04_PTIMER_NUMERATOR 0x00009200
96#define NV04_PTIMER_DENOMINATOR 0x00009210
97#define NV04_PTIMER_TIME_0 0x00009400
98#define NV04_PTIMER_TIME_1 0x00009410
99#define NV04_PTIMER_ALARM_0 0x00009420
100
101#define NV04_PFB_CFG0 0x00100200
102#define NV04_PFB_CFG1 0x00100204
103#define NV40_PFB_020C 0x0010020C
104#define NV10_PFB_TILE(i) (0x00100240 + (i*16))
105#define NV10_PFB_TILE__SIZE 8
106#define NV10_PFB_TLIMIT(i) (0x00100244 + (i*16))
107#define NV10_PFB_TSIZE(i) (0x00100248 + (i*16))
108#define NV10_PFB_TSTATUS(i) (0x0010024C + (i*16))
109#define NV10_PFB_CLOSE_PAGE2 0x0010033C
110#define NV40_PFB_TILE(i) (0x00100600 + (i*16))
111#define NV40_PFB_TILE__SIZE_0 12
112#define NV40_PFB_TILE__SIZE_1 15
113#define NV40_PFB_TLIMIT(i) (0x00100604 + (i*16))
114#define NV40_PFB_TSIZE(i) (0x00100608 + (i*16))
115#define NV40_PFB_TSTATUS(i) (0x0010060C + (i*16))
116
117#define NV04_PGRAPH_DEBUG_0 0x00400080
118#define NV04_PGRAPH_DEBUG_1 0x00400084
119#define NV04_PGRAPH_DEBUG_2 0x00400088
120#define NV04_PGRAPH_DEBUG_3 0x0040008c
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100121#define NV10_PGRAPH_DEBUG_4 0x00400090
122#define NV03_PGRAPH_INTR 0x00400100
Pekka Paalanen14ecf8d2007-07-06 12:47:53 +0300123#define NV03_PGRAPH_NSTATUS 0x00400104
Pekka Paalanen0c77f5a2007-07-06 13:57:31 +0300124# define NV03_PGRAPH_NSTATUS_STATE_IN_USE (1<<23)
125# define NV03_PGRAPH_NSTATUS_INVALID_STATE (1<<24)
126# define NV03_PGRAPH_NSTATUS_BAD_ARGUMENT (1<<25)
127# define NV03_PGRAPH_NSTATUS_PROTECTION_FAULT (1<<26)
Pekka Paalanen14ecf8d2007-07-06 12:47:53 +0300128#define NV03_PGRAPH_NSOURCE 0x00400108
Pekka Paalanen0c77f5a2007-07-06 13:57:31 +0300129# define NV03_PGRAPH_NSOURCE_NOTIFICATION (1<< 0)
130# define NV03_PGRAPH_NSOURCE_DATA_ERROR (1<< 1)
131# define NV03_PGRAPH_NSOURCE_PROTECTION_ERROR (1<< 2)
132# define NV03_PGRAPH_NSOURCE_RANGE_EXCEPTION (1<< 3)
133# define NV03_PGRAPH_NSOURCE_LIMIT_COLOR (1<< 4)
134# define NV03_PGRAPH_NSOURCE_LIMIT_ZETA (1<< 5)
135# define NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD (1<< 6)
136# define NV03_PGRAPH_NSOURCE_DMA_R_PROTECTION (1<< 7)
137# define NV03_PGRAPH_NSOURCE_DMA_W_PROTECTION (1<< 8)
138# define NV03_PGRAPH_NSOURCE_FORMAT_EXCEPTION (1<< 9)
139# define NV03_PGRAPH_NSOURCE_PATCH_EXCEPTION (1<<10)
140# define NV03_PGRAPH_NSOURCE_STATE_INVALID (1<<11)
141# define NV03_PGRAPH_NSOURCE_DOUBLE_NOTIFY (1<<12)
142# define NV03_PGRAPH_NSOURCE_NOTIFY_IN_USE (1<<13)
143# define NV03_PGRAPH_NSOURCE_METHOD_CNT (1<<14)
144# define NV03_PGRAPH_NSOURCE_BFR_NOTIFICATION (1<<15)
145# define NV03_PGRAPH_NSOURCE_DMA_VTX_PROTECTION (1<<16)
146# define NV03_PGRAPH_NSOURCE_DMA_WIDTH_A (1<<17)
147# define NV03_PGRAPH_NSOURCE_DMA_WIDTH_B (1<<18)
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100148#define NV03_PGRAPH_INTR_EN 0x00400140
149#define NV40_PGRAPH_INTR_EN 0x0040013C
Dave Airliefef9b302006-08-27 08:55:02 +1000150# define NV_PGRAPH_INTR_NOTIFY (1<< 0)
151# define NV_PGRAPH_INTR_MISSING_HW (1<< 4)
Stephane Marchesindd473412006-10-11 00:28:15 +0200152# define NV_PGRAPH_INTR_CONTEXT_SWITCH (1<<12)
Dave Airliefef9b302006-08-27 08:55:02 +1000153# define NV_PGRAPH_INTR_BUFFER_NOTIFY (1<<16)
154# define NV_PGRAPH_INTR_ERROR (1<<20)
Stephane Marchesin17985f02007-02-06 01:17:32 +0100155#define NV10_PGRAPH_CTX_CONTROL 0x00400144
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100156#define NV10_PGRAPH_CTX_USER 0x00400148
157#define NV10_PGRAPH_CTX_SWITCH1 0x0040014C
158#define NV10_PGRAPH_CTX_SWITCH2 0x00400150
159#define NV10_PGRAPH_CTX_SWITCH3 0x00400154
160#define NV10_PGRAPH_CTX_SWITCH4 0x00400158
161#define NV10_PGRAPH_CTX_SWITCH5 0x0040015C
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100162#define NV04_PGRAPH_CTX_SWITCH1 0x00400160
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100163#define NV10_PGRAPH_CTX_CACHE1 0x00400160
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100164#define NV04_PGRAPH_CTX_SWITCH2 0x00400164
165#define NV04_PGRAPH_CTX_SWITCH3 0x00400168
166#define NV04_PGRAPH_CTX_SWITCH4 0x0040016C
Stephane Marchesin17985f02007-02-06 01:17:32 +0100167#define NV04_PGRAPH_CTX_CONTROL 0x00400170
168#define NV04_PGRAPH_CTX_USER 0x00400174
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100169#define NV04_PGRAPH_CTX_CACHE1 0x00400180
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100170#define NV10_PGRAPH_CTX_CACHE2 0x00400180
Stephane Marchesin17985f02007-02-06 01:17:32 +0100171#define NV03_PGRAPH_CTX_CONTROL 0x00400190
172#define NV03_PGRAPH_CTX_USER 0x00400194
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100173#define NV04_PGRAPH_CTX_CACHE2 0x004001A0
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100174#define NV10_PGRAPH_CTX_CACHE3 0x004001A0
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100175#define NV04_PGRAPH_CTX_CACHE3 0x004001C0
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100176#define NV10_PGRAPH_CTX_CACHE4 0x004001C0
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100177#define NV04_PGRAPH_CTX_CACHE4 0x004001E0
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100178#define NV10_PGRAPH_CTX_CACHE5 0x004001E0
Ben Skeggs38617b62007-06-25 03:52:06 +1000179#define NV40_PGRAPH_CTXCTL_0304 0x00400304
180#define NV40_PGRAPH_CTXCTL_0304_XFER_CTX 0x00000001
181#define NV40_PGRAPH_CTXCTL_0310 0x00400310
182#define NV40_PGRAPH_CTXCTL_0310_XFER_SAVE 0x00000020
183#define NV40_PGRAPH_CTXCTL_0310_XFER_LOAD 0x00000040
184#define NV40_PGRAPH_CTXCTL_030C 0x0040030c
185#define NV40_PGRAPH_CTXCTL_UCODE_INDEX 0x00400324
186#define NV40_PGRAPH_CTXCTL_UCODE_DATA 0x00400328
187#define NV40_PGRAPH_CTXCTL_CUR 0x0040032c
188#define NV40_PGRAPH_CTXCTL_CUR_LOADED 0x01000000
189#define NV40_PGRAPH_CTXCTL_CUR_INST_MASK 0x000FFFFF
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100190#define NV03_PGRAPH_ABS_X_RAM 0x00400400
191#define NV03_PGRAPH_ABS_Y_RAM 0x00400480
192#define NV03_PGRAPH_X_MISC 0x00400500
193#define NV03_PGRAPH_Y_MISC 0x00400504
194#define NV04_PGRAPH_VALID1 0x00400508
195#define NV04_PGRAPH_SOURCE_COLOR 0x0040050C
196#define NV04_PGRAPH_MISC24_0 0x00400510
197#define NV03_PGRAPH_XY_LOGIC_MISC0 0x00400514
198#define NV03_PGRAPH_XY_LOGIC_MISC1 0x00400518
199#define NV03_PGRAPH_XY_LOGIC_MISC2 0x0040051C
200#define NV03_PGRAPH_XY_LOGIC_MISC3 0x00400520
201#define NV03_PGRAPH_CLIPX_0 0x00400524
202#define NV03_PGRAPH_CLIPX_1 0x00400528
203#define NV03_PGRAPH_CLIPY_0 0x0040052C
204#define NV03_PGRAPH_CLIPY_1 0x00400530
205#define NV03_PGRAPH_ABS_ICLIP_XMAX 0x00400534
206#define NV03_PGRAPH_ABS_ICLIP_YMAX 0x00400538
207#define NV03_PGRAPH_ABS_UCLIP_XMIN 0x0040053C
208#define NV03_PGRAPH_ABS_UCLIP_YMIN 0x00400540
209#define NV03_PGRAPH_ABS_UCLIP_XMAX 0x00400544
210#define NV03_PGRAPH_ABS_UCLIP_YMAX 0x00400548
211#define NV03_PGRAPH_ABS_UCLIPA_XMIN 0x00400560
212#define NV03_PGRAPH_ABS_UCLIPA_YMIN 0x00400564
213#define NV03_PGRAPH_ABS_UCLIPA_XMAX 0x00400568
214#define NV03_PGRAPH_ABS_UCLIPA_YMAX 0x0040056C
215#define NV04_PGRAPH_MISC24_1 0x00400570
216#define NV04_PGRAPH_MISC24_2 0x00400574
217#define NV04_PGRAPH_VALID2 0x00400578
218#define NV04_PGRAPH_PASSTHRU_0 0x0040057C
219#define NV04_PGRAPH_PASSTHRU_1 0x00400580
220#define NV04_PGRAPH_PASSTHRU_2 0x00400584
221#define NV10_PGRAPH_DIMX_TEXTURE 0x00400588
222#define NV10_PGRAPH_WDIMX_TEXTURE 0x0040058C
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100223#define NV04_PGRAPH_COMBINE_0_ALPHA 0x00400590
224#define NV04_PGRAPH_COMBINE_0_COLOR 0x00400594
225#define NV04_PGRAPH_COMBINE_1_ALPHA 0x00400598
226#define NV04_PGRAPH_COMBINE_1_COLOR 0x0040059C
227#define NV04_PGRAPH_FORMAT_0 0x004005A8
228#define NV04_PGRAPH_FORMAT_1 0x004005AC
229#define NV04_PGRAPH_FILTER_0 0x004005B0
230#define NV04_PGRAPH_FILTER_1 0x004005B4
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100231#define NV03_PGRAPH_MONO_COLOR0 0x00400600
232#define NV04_PGRAPH_ROP3 0x00400604
233#define NV04_PGRAPH_BETA_AND 0x00400608
234#define NV04_PGRAPH_BETA_PREMULT 0x0040060C
Ben Skeggs674cefd2007-03-26 19:43:48 +1000235#define NV04_PGRAPH_LIMIT_VIOL_PIX 0x00400610
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100236#define NV04_PGRAPH_FORMATS 0x00400618
Ben Skeggs674cefd2007-03-26 19:43:48 +1000237#define NV10_PGRAPH_DEBUG_2 0x00400620
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100238#define NV04_PGRAPH_BOFFSET0 0x00400640
239#define NV04_PGRAPH_BOFFSET1 0x00400644
240#define NV04_PGRAPH_BOFFSET2 0x00400648
241#define NV04_PGRAPH_BOFFSET3 0x0040064C
242#define NV04_PGRAPH_BOFFSET4 0x00400650
243#define NV04_PGRAPH_BOFFSET5 0x00400654
244#define NV04_PGRAPH_BBASE0 0x00400658
245#define NV04_PGRAPH_BBASE1 0x0040065C
246#define NV04_PGRAPH_BBASE2 0x00400660
247#define NV04_PGRAPH_BBASE3 0x00400664
248#define NV04_PGRAPH_BBASE4 0x00400668
249#define NV04_PGRAPH_BBASE5 0x0040066C
250#define NV04_PGRAPH_BPITCH0 0x00400670
251#define NV04_PGRAPH_BPITCH1 0x00400674
252#define NV04_PGRAPH_BPITCH2 0x00400678
253#define NV04_PGRAPH_BPITCH3 0x0040067C
254#define NV04_PGRAPH_BPITCH4 0x00400680
255#define NV04_PGRAPH_BLIMIT0 0x00400684
256#define NV04_PGRAPH_BLIMIT1 0x00400688
257#define NV04_PGRAPH_BLIMIT2 0x0040068C
258#define NV04_PGRAPH_BLIMIT3 0x00400690
259#define NV04_PGRAPH_BLIMIT4 0x00400694
260#define NV04_PGRAPH_BLIMIT5 0x00400698
261#define NV04_PGRAPH_BSWIZZLE2 0x0040069C
262#define NV04_PGRAPH_BSWIZZLE5 0x004006A0
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100263#define NV04_PGRAPH_SURFACE 0x0040070C
264#define NV04_PGRAPH_STATE 0x00400710
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100265#define NV10_PGRAPH_SURFACE 0x00400710
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100266#define NV04_PGRAPH_NOTIFY 0x00400714
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100267#define NV10_PGRAPH_STATE 0x00400714
268#define NV10_PGRAPH_NOTIFY 0x00400718
Matthieu Castet4ae64a12007-01-13 21:41:33 +0100269
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100270#define NV04_PGRAPH_FIFO 0x00400720
Matthieu Castet4ae64a12007-01-13 21:41:33 +0100271
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100272#define NV04_PGRAPH_BPIXEL 0x00400724
273#define NV10_PGRAPH_RDI_INDEX 0x00400750
Stephane Marchesin7ab9e7f2007-02-03 05:56:42 +0100274#define NV04_PGRAPH_FFINTFC_ST2 0x00400754
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100275#define NV10_PGRAPH_RDI_DATA 0x00400754
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100276#define NV04_PGRAPH_DMA_PITCH 0x00400760
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100277#define NV10_PGRAPH_FFINTFC_ST2 0x00400764
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100278#define NV04_PGRAPH_DVD_COLORFMT 0x00400764
279#define NV04_PGRAPH_SCALED_FORMAT 0x00400768
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100280#define NV10_PGRAPH_DMA_PITCH 0x00400770
281#define NV10_PGRAPH_DVD_COLORFMT 0x00400774
282#define NV10_PGRAPH_SCALED_FORMAT 0x00400778
283#define NV10_PGRAPH_CHANNEL_CTX_TABLE 0x00400780
284#define NV10_PGRAPH_CHANNEL_CTX_SIZE 0x00400784
Ben Skeggs38617b62007-06-25 03:52:06 +1000285#define NV20_PGRAPH_CHANNEL_CTX_POINTER 0x00400784
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100286#define NV10_PGRAPH_CHANNEL_CTX_POINTER 0x00400788
Ben Skeggs38617b62007-06-25 03:52:06 +1000287#define NV20_PGRAPH_CHANNEL_CTX_XFER 0x00400788
288#define NV20_PGRAPH_CHANNEL_CTX_XFER_LOAD 0x00000001
289#define NV20_PGRAPH_CHANNEL_CTX_XFER_SAVE 0x00000002
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100290#define NV04_PGRAPH_PATT_COLOR0 0x00400800
291#define NV04_PGRAPH_PATT_COLOR1 0x00400804
292#define NV04_PGRAPH_PATTERN 0x00400808
293#define NV04_PGRAPH_PATTERN_SHAPE 0x00400810
294#define NV04_PGRAPH_CHROMA 0x00400814
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100295#define NV04_PGRAPH_CONTROL0 0x00400818
296#define NV04_PGRAPH_CONTROL1 0x0040081C
297#define NV04_PGRAPH_CONTROL2 0x00400820
298#define NV04_PGRAPH_BLEND 0x00400824
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100299#define NV04_PGRAPH_STORED_FMT 0x00400830
300#define NV04_PGRAPH_PATT_COLORRAM 0x00400900
Ben Skeggs674cefd2007-03-26 19:43:48 +1000301#define NV40_PGRAPH_TILE0(i) 0x00400900
302#define NV40_PGRAPH_TLIMIT0(i) 0x00400904
303#define NV40_PGRAPH_TSIZE0(i) 0x00400908
304#define NV40_PGRAPH_TSTATUS0(i) 0x0040090C
305#define NV10_PGRAPH_TILE(i) (0x00400B00 + (i*16))
306#define NV10_PGRAPH_TLIMIT(i) (0x00400B04 + (i*16))
307#define NV10_PGRAPH_TSIZE(i) (0x00400B08 + (i*16))
308#define NV10_PGRAPH_TSTATUS(i) (0x00400B0C + (i*16))
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100309#define NV04_PGRAPH_U_RAM 0x00400D00
Ben Skeggs674cefd2007-03-26 19:43:48 +1000310#define NV47_PGRAPH_TILE0(i) 0x00400D00
311#define NV47_PGRAPH_TLIMIT0(i) 0x00400D04
312#define NV47_PGRAPH_TSIZE0(i) 0x00400D08
313#define NV47_PGRAPH_TSTATUS0(i) 0x00400D0C
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100314#define NV04_PGRAPH_V_RAM 0x00400D40
315#define NV04_PGRAPH_W_RAM 0x00400D80
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100316#define NV10_PGRAPH_WINDOWCLIP_HORIZONTAL 0x00400F00
317#define NV10_PGRAPH_WINDOWCLIP_VERTICAL 0x00400F20
318#define NV10_PGRAPH_XFMODE0 0x00400F40
319#define NV10_PGRAPH_XFMODE1 0x00400F44
320#define NV10_PGRAPH_GLOBALSTATE0 0x00400F48
321#define NV10_PGRAPH_GLOBALSTATE1 0x00400F4C
322#define NV10_PGRAPH_PIPE_ADDRESS 0x00400F50
323#define NV10_PGRAPH_PIPE_DATA 0x00400F54
324#define NV04_PGRAPH_DMA_START_0 0x00401000
325#define NV04_PGRAPH_DMA_START_1 0x00401004
326#define NV04_PGRAPH_DMA_LENGTH 0x00401008
327#define NV04_PGRAPH_DMA_MISC 0x0040100C
328#define NV04_PGRAPH_DMA_DATA_0 0x00401020
329#define NV04_PGRAPH_DMA_DATA_1 0x00401024
330#define NV04_PGRAPH_DMA_RM 0x00401030
331#define NV04_PGRAPH_DMA_A_XLATE_INST 0x00401040
332#define NV04_PGRAPH_DMA_A_CONTROL 0x00401044
333#define NV04_PGRAPH_DMA_A_LIMIT 0x00401048
334#define NV04_PGRAPH_DMA_A_TLB_PTE 0x0040104C
335#define NV04_PGRAPH_DMA_A_TLB_TAG 0x00401050
336#define NV04_PGRAPH_DMA_A_ADJ_OFFSET 0x00401054
337#define NV04_PGRAPH_DMA_A_OFFSET 0x00401058
338#define NV04_PGRAPH_DMA_A_SIZE 0x0040105C
339#define NV04_PGRAPH_DMA_A_Y_SIZE 0x00401060
340#define NV04_PGRAPH_DMA_B_XLATE_INST 0x00401080
341#define NV04_PGRAPH_DMA_B_CONTROL 0x00401084
342#define NV04_PGRAPH_DMA_B_LIMIT 0x00401088
343#define NV04_PGRAPH_DMA_B_TLB_PTE 0x0040108C
344#define NV04_PGRAPH_DMA_B_TLB_TAG 0x00401090
345#define NV04_PGRAPH_DMA_B_ADJ_OFFSET 0x00401094
346#define NV04_PGRAPH_DMA_B_OFFSET 0x00401098
347#define NV04_PGRAPH_DMA_B_SIZE 0x0040109C
348#define NV04_PGRAPH_DMA_B_Y_SIZE 0x004010A0
Ben Skeggs674cefd2007-03-26 19:43:48 +1000349#define NV40_PGRAPH_TILE1(i) 0x00406900
350#define NV40_PGRAPH_TLIMIT1(i) 0x00406904
351#define NV40_PGRAPH_TSIZE1(i) 0x00406908
352#define NV40_PGRAPH_TSTATUS1(i) 0x0040690C
Stephane Marchesine64dbef2007-01-29 04:03:59 +0100353
Jeremy Kolb4297a832007-01-12 00:13:05 -0500354
Dave Airliefef9b302006-08-27 08:55:02 +1000355/* It's a guess that this works on NV03. Confirmed on NV04, though */
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100356#define NV04_PFIFO_DELAY_0 0x00002040
357#define NV04_PFIFO_DMA_TIMESLICE 0x00002044
358#define NV04_PFIFO_NEXT_CHANNEL 0x00002050
359#define NV03_PFIFO_INTR_0 0x00002100
360#define NV03_PFIFO_INTR_EN_0 0x00002140
Stephane Marchesin7ef44b22006-10-12 17:31:49 +0200361# define NV_PFIFO_INTR_CACHE_ERROR (1<< 0)
362# define NV_PFIFO_INTR_RUNOUT (1<< 4)
363# define NV_PFIFO_INTR_RUNOUT_OVERFLOW (1<< 8)
364# define NV_PFIFO_INTR_DMA_PUSHER (1<<12)
365# define NV_PFIFO_INTR_DMA_PT (1<<16)
366# define NV_PFIFO_INTR_SEMAPHORE (1<<20)
367# define NV_PFIFO_INTR_ACQUIRE_TIMEOUT (1<<24)
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100368#define NV03_PFIFO_RAMHT 0x00002210
369#define NV03_PFIFO_RAMFC 0x00002214
370#define NV03_PFIFO_RAMRO 0x00002218
Ben Skeggs70020822006-11-14 08:11:49 +1100371#define NV40_PFIFO_RAMFC 0x00002220
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100372#define NV03_PFIFO_CACHES 0x00002500
373#define NV04_PFIFO_MODE 0x00002504
374#define NV04_PFIFO_DMA 0x00002508
375#define NV04_PFIFO_SIZE 0x0000250c
Ben Skeggsc806bba2007-07-05 00:12:33 +1000376#define NV50_PFIFO_CTX_TABLE(c) (0x2600+(c)*4)
377#define NV50_PFIFO_CTX_TABLE__SIZE 128
378#define NV50_PFIFO_CTX_TABLE_CHANNEL_ENABLED (1<<31)
379#define NV50_PFIFO_CTX_TABLE_UNK30_BAD (1<<30)
380#define NV50_PFIFO_CTX_TABLE_INSTANCE_MASK_G80 0x0FFFFFFF
381#define NV50_PFIFO_CTX_TABLE_INSTANCE_MASK_G84 0x00FFFFFF
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100382#define NV03_PFIFO_CACHE0_PUSH0 0x00003000
383#define NV03_PFIFO_CACHE0_PULL0 0x00003040
384#define NV04_PFIFO_CACHE0_PULL0 0x00003050
385#define NV04_PFIFO_CACHE0_PULL1 0x00003054
386#define NV03_PFIFO_CACHE1_PUSH0 0x00003200
387#define NV03_PFIFO_CACHE1_PUSH1 0x00003204
388#define NV04_PFIFO_CACHE1_DMA_PUSH 0x00003220
389#define NV04_PFIFO_CACHE1_DMA_FETCH 0x00003224
390# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_8_BYTES 0x00000000
391# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_16_BYTES 0x00000008
392# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_24_BYTES 0x00000010
393# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_32_BYTES 0x00000018
394# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_40_BYTES 0x00000020
395# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_48_BYTES 0x00000028
396# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_56_BYTES 0x00000030
397# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_64_BYTES 0x00000038
398# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_72_BYTES 0x00000040
399# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_80_BYTES 0x00000048
400# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_88_BYTES 0x00000050
401# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_96_BYTES 0x00000058
402# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_104_BYTES 0x00000060
403# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_112_BYTES 0x00000068
404# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_120_BYTES 0x00000070
405# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_128_BYTES 0x00000078
406# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_136_BYTES 0x00000080
407# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_144_BYTES 0x00000088
408# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_152_BYTES 0x00000090
409# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_160_BYTES 0x00000098
410# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_168_BYTES 0x000000A0
411# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_176_BYTES 0x000000A8
412# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_184_BYTES 0x000000B0
413# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_192_BYTES 0x000000B8
414# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_200_BYTES 0x000000C0
415# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_208_BYTES 0x000000C8
416# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_216_BYTES 0x000000D0
417# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_224_BYTES 0x000000D8
418# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_232_BYTES 0x000000E0
419# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_240_BYTES 0x000000E8
420# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_248_BYTES 0x000000F0
421# define NV_PFIFO_CACHE1_DMA_FETCH_TRIG_256_BYTES 0x000000F8
422# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE 0x0000E000
423# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_32_BYTES 0x00000000
424# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_64_BYTES 0x00002000
425# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_96_BYTES 0x00004000
426# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_128_BYTES 0x00006000
427# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_160_BYTES 0x00008000
428# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_192_BYTES 0x0000A000
429# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_224_BYTES 0x0000C000
430# define NV_PFIFO_CACHE1_DMA_FETCH_SIZE_256_BYTES 0x0000E000
431# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS 0x001F0000
432# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_0 0x00000000
433# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_1 0x00010000
434# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_2 0x00020000
435# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_3 0x00030000
436# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_4 0x00040000
437# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_5 0x00050000
438# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_6 0x00060000
439# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_7 0x00070000
440# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_8 0x00080000
441# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_9 0x00090000
442# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_10 0x000A0000
443# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_11 0x000B0000
444# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_12 0x000C0000
445# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_13 0x000D0000
446# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_14 0x000E0000
447# define NV_PFIFO_CACHE1_DMA_FETCH_MAX_REQS_15 0x000F0000
448# define NV_PFIFO_CACHE1_ENDIAN 0x80000000
449# define NV_PFIFO_CACHE1_LITTLE_ENDIAN 0x7FFFFFFF
450# define NV_PFIFO_CACHE1_BIG_ENDIAN 0x80000000
451#define NV04_PFIFO_CACHE1_DMA_STATE 0x00003228
452#define NV04_PFIFO_CACHE1_DMA_INSTANCE 0x0000322c
453#define NV04_PFIFO_CACHE1_DMA_CTL 0x00003230
454#define NV04_PFIFO_CACHE1_DMA_PUT 0x00003240
455#define NV04_PFIFO_CACHE1_DMA_GET 0x00003244
456#define NV10_PFIFO_CACHE1_REF_CNT 0x00003248
457#define NV10_PFIFO_CACHE1_DMA_SUBROUTINE 0x0000324C
458#define NV03_PFIFO_CACHE1_PULL0 0x00003240
459#define NV04_PFIFO_CACHE1_PULL0 0x00003250
460#define NV03_PFIFO_CACHE1_PULL1 0x00003250
461#define NV04_PFIFO_CACHE1_PULL1 0x00003254
462#define NV04_PFIFO_CACHE1_HASH 0x00003258
463#define NV10_PFIFO_CACHE1_ACQUIRE_TIMEOUT 0x00003260
464#define NV10_PFIFO_CACHE1_ACQUIRE_TIMESTAMP 0x00003264
465#define NV10_PFIFO_CACHE1_ACQUIRE_VALUE 0x00003268
466#define NV10_PFIFO_CACHE1_SEMAPHORE 0x0000326C
467#define NV03_PFIFO_CACHE1_GET 0x00003270
468#define NV04_PFIFO_CACHE1_ENGINE 0x00003280
Ben Skeggs05d86d92007-06-24 18:57:09 +1000469#define NV04_PFIFO_CACHE1_DMA_DCOUNT 0x000032A0
Ben Skeggsb5cf0d62006-10-18 02:37:19 +1100470#define NV40_PFIFO_GRCTX_INSTANCE 0x000032E0
471#define NV40_PFIFO_UNK32E4 0x000032E4
Stephane Marchesin5a072f32007-02-03 04:57:06 +0100472#define NV04_PFIFO_CACHE1_METHOD(i) (0x00003800+(i*8))
473#define NV04_PFIFO_CACHE1_DATA(i) (0x00003804+(i*8))
474#define NV40_PFIFO_CACHE1_METHOD(i) (0x00090000+(i*8))
475#define NV40_PFIFO_CACHE1_DATA(i) (0x00090004+(i*8))
Dave Airliefef9b302006-08-27 08:55:02 +1000476
477#define NV_CRTC0_INTSTAT 0x00600100
478#define NV_CRTC0_INTEN 0x00600140
479#define NV_CRTC1_INTSTAT 0x00602100
480#define NV_CRTC1_INTEN 0x00602140
481# define NV_CRTC_INTR_VBLANK (1<<0)
482
483/* Fifo commands. These are not regs, neither masks */
484#define NV03_FIFO_CMD_JUMP 0x20000000
485#define NV03_FIFO_CMD_JUMP_OFFSET_MASK 0x1ffffffc
486#define NV03_FIFO_CMD_REWIND (NV03_FIFO_CMD_JUMP | (0 & NV03_FIFO_CMD_JUMP_OFFSET_MASK))
487
Ben Skeggs95486bb2006-10-17 06:12:18 +1100488/* RAMFC offsets */
Stephane Marchesinf80659b2007-01-05 19:37:06 +0100489#define NV04_RAMFC_DMA_PUT 0x00
490#define NV04_RAMFC_DMA_GET 0x04
491#define NV04_RAMFC_DMA_INSTANCE 0x08
Ben Skeggs05d86d92007-06-24 18:57:09 +1000492#define NV04_RAMFC_DMA_STATE 0x0C
Stephane Marchesin1967aa82007-01-13 12:32:45 +0100493#define NV04_RAMFC_DMA_FETCH 0x10
Ben Skeggs05d86d92007-06-24 18:57:09 +1000494#define NV04_RAMFC_ENGINE 0x14
495#define NV04_RAMFC_PULL1_ENGINE 0x18
Stephane Marchesinf80659b2007-01-05 19:37:06 +0100496
Ben Skeggs2fd812f2006-11-14 09:00:31 +1100497#define NV10_RAMFC_DMA_PUT 0x00
498#define NV10_RAMFC_DMA_GET 0x04
499#define NV10_RAMFC_REF_CNT 0x08
500#define NV10_RAMFC_DMA_INSTANCE 0x0C
501#define NV10_RAMFC_DMA_STATE 0x10
502#define NV10_RAMFC_DMA_FETCH 0x14
503#define NV10_RAMFC_ENGINE 0x18
504#define NV10_RAMFC_PULL1_ENGINE 0x1C
505#define NV10_RAMFC_ACQUIRE_VALUE 0x20
506#define NV10_RAMFC_ACQUIRE_TIMESTAMP 0x24
507#define NV10_RAMFC_ACQUIRE_TIMEOUT 0x28
508#define NV10_RAMFC_SEMAPHORE 0x2C
509#define NV10_RAMFC_DMA_SUBROUTINE 0x30
510
Ben Skeggs95486bb2006-10-17 06:12:18 +1100511#define NV40_RAMFC_DMA_PUT 0x00
512#define NV40_RAMFC_DMA_GET 0x04
513#define NV40_RAMFC_REF_CNT 0x08
514#define NV40_RAMFC_DMA_INSTANCE 0x0C
515#define NV40_RAMFC_DMA_DCOUNT /* ? */ 0x10
516#define NV40_RAMFC_DMA_STATE 0x14
517#define NV40_RAMFC_DMA_FETCH 0x18
518#define NV40_RAMFC_ENGINE 0x1C
519#define NV40_RAMFC_PULL1_ENGINE 0x20
520#define NV40_RAMFC_ACQUIRE_VALUE 0x24
521#define NV40_RAMFC_ACQUIRE_TIMESTAMP 0x28
522#define NV40_RAMFC_ACQUIRE_TIMEOUT 0x2C
523#define NV40_RAMFC_SEMAPHORE 0x30
524#define NV40_RAMFC_DMA_SUBROUTINE 0x34
Ben Skeggs1943f392006-10-17 06:37:40 +1100525#define NV40_RAMFC_GRCTX_INSTANCE /* guess */ 0x38
Ben Skeggs95486bb2006-10-17 06:12:18 +1100526#define NV40_RAMFC_DMA_TIMESLICE 0x3C
527#define NV40_RAMFC_UNK_40 0x40
528#define NV40_RAMFC_UNK_44 0x44
529#define NV40_RAMFC_UNK_48 0x48
Ben Skeggsf2e64d52007-06-24 18:56:01 +1000530#define NV40_RAMFC_UNK_4C 0x4C
531#define NV40_RAMFC_UNK_50 0x50
Stephane Marchesindd473412006-10-11 00:28:15 +0200532