Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
nvc0.h
Go to the documentation of this file.
1 /*
2  * Copyright 2010 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 #ifndef __NVC0_GRAPH_H__
26 #define __NVC0_GRAPH_H__
27 
28 #include <core/client.h>
29 #include <core/handle.h>
30 #include <core/gpuobj.h>
31 #include <core/option.h>
32 
33 #include <subdev/fb.h>
34 #include <subdev/vm.h>
35 #include <subdev/bar.h>
36 #include <subdev/timer.h>
37 
38 #include <engine/fifo.h>
39 #include <engine/graph.h>
40 
41 #define GPC_MAX 4
42 #define TPC_MAX 32
43 
44 #define ROP_BCAST(r) (0x408800 + (r))
45 #define ROP_UNIT(u, r) (0x410000 + (u) * 0x400 + (r))
46 #define GPC_BCAST(r) (0x418000 + (r))
47 #define GPC_UNIT(t, r) (0x500000 + (t) * 0x8000 + (r))
48 #define TPC_UNIT(t, m, r) (0x504000 + (t) * 0x8000 + (m) * 0x800 + (r))
49 
54 };
55 
61 };
62 
66 };
67 
70 
75  bool firmware;
76 
81 
84 
86  struct nvc0_graph_mmio mmio_list[4096/8];
89 
91 };
92 
95 
98  int mmio_nr;
99  struct {
101  struct nouveau_vma vma;
102  } data[4];
103 };
104 
105 static inline u32
106 nvc0_graph_class(void *obj)
107 {
108  struct nouveau_device *device = nv_device(obj);
109 
110  switch (device->chipset) {
111  case 0xc0:
112  case 0xc3:
113  case 0xc4:
114  case 0xce: /* guess, mmio trace shows only 0x9097 state */
115  case 0xcf: /* guess, mmio trace shows only 0x9097 state */
116  return 0x9097;
117  case 0xc1:
118  return 0x9197;
119  case 0xc8:
120  case 0xd9:
121  return 0x9297;
122  case 0xe4:
123  case 0xe7:
124  return 0xa097;
125  default:
126  return 0;
127  }
128 }
129 
130 void nv_icmd(struct nvc0_graph_priv *priv, u32 icmd, u32 data);
131 
132 static inline void
133 nv_mthd(struct nvc0_graph_priv *priv, u32 class, u32 mthd, u32 data)
134 {
135  nv_wr32(priv, 0x40448c, data);
136  nv_wr32(priv, 0x404488, 0x80000000 | (mthd << 14) | class);
137 }
138 
139 struct nvc0_grctx {
147 };
148 
150 int nvc0_grctx_init(struct nvc0_graph_priv *, struct nvc0_grctx *);
151 void nvc0_grctx_data(struct nvc0_grctx *, u32, u32, u32);
152 void nvc0_grctx_mmio(struct nvc0_grctx *, u32, u32, u32, u32);
153 int nvc0_grctx_fini(struct nvc0_grctx *);
154 
156 
157 #define mmio_data(s,a,p) nvc0_grctx_data(&info, (s), (a), (p))
158 #define mmio_list(r,d,s,b) nvc0_grctx_mmio(&info, (r), (d), (s), (b))
159 
161 int nvc0_graph_ctor_fw(struct nvc0_graph_priv *, const char *,
162  struct nvc0_graph_fuc *);
163 void nvc0_graph_dtor(struct nouveau_object *);
165  struct nvc0_graph_fuc *, struct nvc0_graph_fuc *);
167  struct nouveau_oclass *, void *, u32,
168  struct nouveau_object **);
170 
171 #endif