]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/gpu/drm/nouveau/nouveau_state.c
Merge branch 'ebt_config_compat_v4' of git://git.breakpoint.cc/fw/nf-next-2.6
[net-next-2.6.git] / drivers / gpu / drm / nouveau / nouveau_state.c
CommitLineData
6ee73861
BS
1/*
2 * Copyright 2005 Stephane Marchesin
3 * Copyright 2008 Stuart Bennett
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
21 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
22 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
24 */
25
26#include <linux/swab.h>
27#include "drmP.h"
28#include "drm.h"
29#include "drm_sarea.h"
30#include "drm_crtc_helper.h"
31#include <linux/vgaarb.h>
32
33#include "nouveau_drv.h"
34#include "nouveau_drm.h"
35#include "nv50_display.h"
36
37static int nouveau_stub_init(struct drm_device *dev) { return 0; }
38static void nouveau_stub_takedown(struct drm_device *dev) {}
39
40static int nouveau_init_engine_ptrs(struct drm_device *dev)
41{
42 struct drm_nouveau_private *dev_priv = dev->dev_private;
43 struct nouveau_engine *engine = &dev_priv->engine;
44
45 switch (dev_priv->chipset & 0xf0) {
46 case 0x00:
47 engine->instmem.init = nv04_instmem_init;
48 engine->instmem.takedown = nv04_instmem_takedown;
49 engine->instmem.suspend = nv04_instmem_suspend;
50 engine->instmem.resume = nv04_instmem_resume;
51 engine->instmem.populate = nv04_instmem_populate;
52 engine->instmem.clear = nv04_instmem_clear;
53 engine->instmem.bind = nv04_instmem_bind;
54 engine->instmem.unbind = nv04_instmem_unbind;
55 engine->instmem.prepare_access = nv04_instmem_prepare_access;
56 engine->instmem.finish_access = nv04_instmem_finish_access;
57 engine->mc.init = nv04_mc_init;
58 engine->mc.takedown = nv04_mc_takedown;
59 engine->timer.init = nv04_timer_init;
60 engine->timer.read = nv04_timer_read;
61 engine->timer.takedown = nv04_timer_takedown;
62 engine->fb.init = nv04_fb_init;
63 engine->fb.takedown = nv04_fb_takedown;
64 engine->graph.grclass = nv04_graph_grclass;
65 engine->graph.init = nv04_graph_init;
66 engine->graph.takedown = nv04_graph_takedown;
67 engine->graph.fifo_access = nv04_graph_fifo_access;
68 engine->graph.channel = nv04_graph_channel;
69 engine->graph.create_context = nv04_graph_create_context;
70 engine->graph.destroy_context = nv04_graph_destroy_context;
71 engine->graph.load_context = nv04_graph_load_context;
72 engine->graph.unload_context = nv04_graph_unload_context;
73 engine->fifo.channels = 16;
74 engine->fifo.init = nv04_fifo_init;
75 engine->fifo.takedown = nouveau_stub_takedown;
76 engine->fifo.disable = nv04_fifo_disable;
77 engine->fifo.enable = nv04_fifo_enable;
78 engine->fifo.reassign = nv04_fifo_reassign;
588d7d12
FJ
79 engine->fifo.cache_flush = nv04_fifo_cache_flush;
80 engine->fifo.cache_pull = nv04_fifo_cache_pull;
6ee73861
BS
81 engine->fifo.channel_id = nv04_fifo_channel_id;
82 engine->fifo.create_context = nv04_fifo_create_context;
83 engine->fifo.destroy_context = nv04_fifo_destroy_context;
84 engine->fifo.load_context = nv04_fifo_load_context;
85 engine->fifo.unload_context = nv04_fifo_unload_context;
86 break;
87 case 0x10:
88 engine->instmem.init = nv04_instmem_init;
89 engine->instmem.takedown = nv04_instmem_takedown;
90 engine->instmem.suspend = nv04_instmem_suspend;
91 engine->instmem.resume = nv04_instmem_resume;
92 engine->instmem.populate = nv04_instmem_populate;
93 engine->instmem.clear = nv04_instmem_clear;
94 engine->instmem.bind = nv04_instmem_bind;
95 engine->instmem.unbind = nv04_instmem_unbind;
96 engine->instmem.prepare_access = nv04_instmem_prepare_access;
97 engine->instmem.finish_access = nv04_instmem_finish_access;
98 engine->mc.init = nv04_mc_init;
99 engine->mc.takedown = nv04_mc_takedown;
100 engine->timer.init = nv04_timer_init;
101 engine->timer.read = nv04_timer_read;
102 engine->timer.takedown = nv04_timer_takedown;
103 engine->fb.init = nv10_fb_init;
104 engine->fb.takedown = nv10_fb_takedown;
cb00f7c1 105 engine->fb.set_region_tiling = nv10_fb_set_region_tiling;
6ee73861
BS
106 engine->graph.grclass = nv10_graph_grclass;
107 engine->graph.init = nv10_graph_init;
108 engine->graph.takedown = nv10_graph_takedown;
109 engine->graph.channel = nv10_graph_channel;
110 engine->graph.create_context = nv10_graph_create_context;
111 engine->graph.destroy_context = nv10_graph_destroy_context;
112 engine->graph.fifo_access = nv04_graph_fifo_access;
113 engine->graph.load_context = nv10_graph_load_context;
114 engine->graph.unload_context = nv10_graph_unload_context;
cb00f7c1 115 engine->graph.set_region_tiling = nv10_graph_set_region_tiling;
6ee73861
BS
116 engine->fifo.channels = 32;
117 engine->fifo.init = nv10_fifo_init;
118 engine->fifo.takedown = nouveau_stub_takedown;
119 engine->fifo.disable = nv04_fifo_disable;
120 engine->fifo.enable = nv04_fifo_enable;
121 engine->fifo.reassign = nv04_fifo_reassign;
588d7d12
FJ
122 engine->fifo.cache_flush = nv04_fifo_cache_flush;
123 engine->fifo.cache_pull = nv04_fifo_cache_pull;
6ee73861
BS
124 engine->fifo.channel_id = nv10_fifo_channel_id;
125 engine->fifo.create_context = nv10_fifo_create_context;
126 engine->fifo.destroy_context = nv10_fifo_destroy_context;
127 engine->fifo.load_context = nv10_fifo_load_context;
128 engine->fifo.unload_context = nv10_fifo_unload_context;
129 break;
130 case 0x20:
131 engine->instmem.init = nv04_instmem_init;
132 engine->instmem.takedown = nv04_instmem_takedown;
133 engine->instmem.suspend = nv04_instmem_suspend;
134 engine->instmem.resume = nv04_instmem_resume;
135 engine->instmem.populate = nv04_instmem_populate;
136 engine->instmem.clear = nv04_instmem_clear;
137 engine->instmem.bind = nv04_instmem_bind;
138 engine->instmem.unbind = nv04_instmem_unbind;
139 engine->instmem.prepare_access = nv04_instmem_prepare_access;
140 engine->instmem.finish_access = nv04_instmem_finish_access;
141 engine->mc.init = nv04_mc_init;
142 engine->mc.takedown = nv04_mc_takedown;
143 engine->timer.init = nv04_timer_init;
144 engine->timer.read = nv04_timer_read;
145 engine->timer.takedown = nv04_timer_takedown;
146 engine->fb.init = nv10_fb_init;
147 engine->fb.takedown = nv10_fb_takedown;
cb00f7c1 148 engine->fb.set_region_tiling = nv10_fb_set_region_tiling;
6ee73861
BS
149 engine->graph.grclass = nv20_graph_grclass;
150 engine->graph.init = nv20_graph_init;
151 engine->graph.takedown = nv20_graph_takedown;
152 engine->graph.channel = nv10_graph_channel;
153 engine->graph.create_context = nv20_graph_create_context;
154 engine->graph.destroy_context = nv20_graph_destroy_context;
155 engine->graph.fifo_access = nv04_graph_fifo_access;
156 engine->graph.load_context = nv20_graph_load_context;
157 engine->graph.unload_context = nv20_graph_unload_context;
cb00f7c1 158 engine->graph.set_region_tiling = nv20_graph_set_region_tiling;
6ee73861
BS
159 engine->fifo.channels = 32;
160 engine->fifo.init = nv10_fifo_init;
161 engine->fifo.takedown = nouveau_stub_takedown;
162 engine->fifo.disable = nv04_fifo_disable;
163 engine->fifo.enable = nv04_fifo_enable;
164 engine->fifo.reassign = nv04_fifo_reassign;
588d7d12
FJ
165 engine->fifo.cache_flush = nv04_fifo_cache_flush;
166 engine->fifo.cache_pull = nv04_fifo_cache_pull;
6ee73861
BS
167 engine->fifo.channel_id = nv10_fifo_channel_id;
168 engine->fifo.create_context = nv10_fifo_create_context;
169 engine->fifo.destroy_context = nv10_fifo_destroy_context;
170 engine->fifo.load_context = nv10_fifo_load_context;
171 engine->fifo.unload_context = nv10_fifo_unload_context;
172 break;
173 case 0x30:
174 engine->instmem.init = nv04_instmem_init;
175 engine->instmem.takedown = nv04_instmem_takedown;
176 engine->instmem.suspend = nv04_instmem_suspend;
177 engine->instmem.resume = nv04_instmem_resume;
178 engine->instmem.populate = nv04_instmem_populate;
179 engine->instmem.clear = nv04_instmem_clear;
180 engine->instmem.bind = nv04_instmem_bind;
181 engine->instmem.unbind = nv04_instmem_unbind;
182 engine->instmem.prepare_access = nv04_instmem_prepare_access;
183 engine->instmem.finish_access = nv04_instmem_finish_access;
184 engine->mc.init = nv04_mc_init;
185 engine->mc.takedown = nv04_mc_takedown;
186 engine->timer.init = nv04_timer_init;
187 engine->timer.read = nv04_timer_read;
188 engine->timer.takedown = nv04_timer_takedown;
189 engine->fb.init = nv10_fb_init;
190 engine->fb.takedown = nv10_fb_takedown;
cb00f7c1 191 engine->fb.set_region_tiling = nv10_fb_set_region_tiling;
6ee73861
BS
192 engine->graph.grclass = nv30_graph_grclass;
193 engine->graph.init = nv30_graph_init;
194 engine->graph.takedown = nv20_graph_takedown;
195 engine->graph.fifo_access = nv04_graph_fifo_access;
196 engine->graph.channel = nv10_graph_channel;
197 engine->graph.create_context = nv20_graph_create_context;
198 engine->graph.destroy_context = nv20_graph_destroy_context;
199 engine->graph.load_context = nv20_graph_load_context;
200 engine->graph.unload_context = nv20_graph_unload_context;
cb00f7c1 201 engine->graph.set_region_tiling = nv20_graph_set_region_tiling;
6ee73861
BS
202 engine->fifo.channels = 32;
203 engine->fifo.init = nv10_fifo_init;
204 engine->fifo.takedown = nouveau_stub_takedown;
205 engine->fifo.disable = nv04_fifo_disable;
206 engine->fifo.enable = nv04_fifo_enable;
207 engine->fifo.reassign = nv04_fifo_reassign;
588d7d12
FJ
208 engine->fifo.cache_flush = nv04_fifo_cache_flush;
209 engine->fifo.cache_pull = nv04_fifo_cache_pull;
6ee73861
BS
210 engine->fifo.channel_id = nv10_fifo_channel_id;
211 engine->fifo.create_context = nv10_fifo_create_context;
212 engine->fifo.destroy_context = nv10_fifo_destroy_context;
213 engine->fifo.load_context = nv10_fifo_load_context;
214 engine->fifo.unload_context = nv10_fifo_unload_context;
215 break;
216 case 0x40:
217 case 0x60:
218 engine->instmem.init = nv04_instmem_init;
219 engine->instmem.takedown = nv04_instmem_takedown;
220 engine->instmem.suspend = nv04_instmem_suspend;
221 engine->instmem.resume = nv04_instmem_resume;
222 engine->instmem.populate = nv04_instmem_populate;
223 engine->instmem.clear = nv04_instmem_clear;
224 engine->instmem.bind = nv04_instmem_bind;
225 engine->instmem.unbind = nv04_instmem_unbind;
226 engine->instmem.prepare_access = nv04_instmem_prepare_access;
227 engine->instmem.finish_access = nv04_instmem_finish_access;
228 engine->mc.init = nv40_mc_init;
229 engine->mc.takedown = nv40_mc_takedown;
230 engine->timer.init = nv04_timer_init;
231 engine->timer.read = nv04_timer_read;
232 engine->timer.takedown = nv04_timer_takedown;
233 engine->fb.init = nv40_fb_init;
234 engine->fb.takedown = nv40_fb_takedown;
cb00f7c1 235 engine->fb.set_region_tiling = nv40_fb_set_region_tiling;
6ee73861
BS
236 engine->graph.grclass = nv40_graph_grclass;
237 engine->graph.init = nv40_graph_init;
238 engine->graph.takedown = nv40_graph_takedown;
239 engine->graph.fifo_access = nv04_graph_fifo_access;
240 engine->graph.channel = nv40_graph_channel;
241 engine->graph.create_context = nv40_graph_create_context;
242 engine->graph.destroy_context = nv40_graph_destroy_context;
243 engine->graph.load_context = nv40_graph_load_context;
244 engine->graph.unload_context = nv40_graph_unload_context;
cb00f7c1 245 engine->graph.set_region_tiling = nv40_graph_set_region_tiling;
6ee73861
BS
246 engine->fifo.channels = 32;
247 engine->fifo.init = nv40_fifo_init;
248 engine->fifo.takedown = nouveau_stub_takedown;
249 engine->fifo.disable = nv04_fifo_disable;
250 engine->fifo.enable = nv04_fifo_enable;
251 engine->fifo.reassign = nv04_fifo_reassign;
588d7d12
FJ
252 engine->fifo.cache_flush = nv04_fifo_cache_flush;
253 engine->fifo.cache_pull = nv04_fifo_cache_pull;
6ee73861
BS
254 engine->fifo.channel_id = nv10_fifo_channel_id;
255 engine->fifo.create_context = nv40_fifo_create_context;
256 engine->fifo.destroy_context = nv40_fifo_destroy_context;
257 engine->fifo.load_context = nv40_fifo_load_context;
258 engine->fifo.unload_context = nv40_fifo_unload_context;
259 break;
260 case 0x50:
261 case 0x80: /* gotta love NVIDIA's consistency.. */
262 case 0x90:
263 case 0xA0:
264 engine->instmem.init = nv50_instmem_init;
265 engine->instmem.takedown = nv50_instmem_takedown;
266 engine->instmem.suspend = nv50_instmem_suspend;
267 engine->instmem.resume = nv50_instmem_resume;
268 engine->instmem.populate = nv50_instmem_populate;
269 engine->instmem.clear = nv50_instmem_clear;
270 engine->instmem.bind = nv50_instmem_bind;
271 engine->instmem.unbind = nv50_instmem_unbind;
272 engine->instmem.prepare_access = nv50_instmem_prepare_access;
273 engine->instmem.finish_access = nv50_instmem_finish_access;
274 engine->mc.init = nv50_mc_init;
275 engine->mc.takedown = nv50_mc_takedown;
276 engine->timer.init = nv04_timer_init;
277 engine->timer.read = nv04_timer_read;
278 engine->timer.takedown = nv04_timer_takedown;
279 engine->fb.init = nouveau_stub_init;
280 engine->fb.takedown = nouveau_stub_takedown;
281 engine->graph.grclass = nv50_graph_grclass;
282 engine->graph.init = nv50_graph_init;
283 engine->graph.takedown = nv50_graph_takedown;
284 engine->graph.fifo_access = nv50_graph_fifo_access;
285 engine->graph.channel = nv50_graph_channel;
286 engine->graph.create_context = nv50_graph_create_context;
287 engine->graph.destroy_context = nv50_graph_destroy_context;
288 engine->graph.load_context = nv50_graph_load_context;
289 engine->graph.unload_context = nv50_graph_unload_context;
290 engine->fifo.channels = 128;
291 engine->fifo.init = nv50_fifo_init;
292 engine->fifo.takedown = nv50_fifo_takedown;
293 engine->fifo.disable = nv04_fifo_disable;
294 engine->fifo.enable = nv04_fifo_enable;
295 engine->fifo.reassign = nv04_fifo_reassign;
296 engine->fifo.channel_id = nv50_fifo_channel_id;
297 engine->fifo.create_context = nv50_fifo_create_context;
298 engine->fifo.destroy_context = nv50_fifo_destroy_context;
299 engine->fifo.load_context = nv50_fifo_load_context;
300 engine->fifo.unload_context = nv50_fifo_unload_context;
301 break;
302 default:
303 NV_ERROR(dev, "NV%02x unsupported\n", dev_priv->chipset);
304 return 1;
305 }
306
307 return 0;
308}
309
310static unsigned int
311nouveau_vga_set_decode(void *priv, bool state)
312{
9967b948
MK
313 struct drm_device *dev = priv;
314 struct drm_nouveau_private *dev_priv = dev->dev_private;
315
316 if (dev_priv->chipset >= 0x40)
317 nv_wr32(dev, 0x88054, state);
318 else
319 nv_wr32(dev, 0x1854, state);
320
6ee73861
BS
321 if (state)
322 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
323 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
324 else
325 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
326}
327
0735f62e
BS
328static int
329nouveau_card_init_channel(struct drm_device *dev)
330{
331 struct drm_nouveau_private *dev_priv = dev->dev_private;
332 struct nouveau_gpuobj *gpuobj;
333 int ret;
334
335 ret = nouveau_channel_alloc(dev, &dev_priv->channel,
336 (struct drm_file *)-2,
337 NvDmaFB, NvDmaTT);
338 if (ret)
339 return ret;
340
341 gpuobj = NULL;
342 ret = nouveau_gpuobj_dma_new(dev_priv->channel, NV_CLASS_DMA_IN_MEMORY,
343 0, nouveau_mem_fb_amount(dev),
344 NV_DMA_ACCESS_RW, NV_DMA_TARGET_VIDMEM,
345 &gpuobj);
346 if (ret)
347 goto out_err;
348
349 ret = nouveau_gpuobj_ref_add(dev, dev_priv->channel, NvDmaVRAM,
350 gpuobj, NULL);
351 if (ret)
352 goto out_err;
353
354 gpuobj = NULL;
355 ret = nouveau_gpuobj_gart_dma_new(dev_priv->channel, 0,
356 dev_priv->gart_info.aper_size,
357 NV_DMA_ACCESS_RW, &gpuobj, NULL);
358 if (ret)
359 goto out_err;
360
361 ret = nouveau_gpuobj_ref_add(dev, dev_priv->channel, NvDmaGART,
362 gpuobj, NULL);
363 if (ret)
364 goto out_err;
365
366 return 0;
367out_err:
368 nouveau_gpuobj_del(dev, &gpuobj);
369 nouveau_channel_free(dev_priv->channel);
370 dev_priv->channel = NULL;
371 return ret;
372}
373
6ee73861
BS
374int
375nouveau_card_init(struct drm_device *dev)
376{
377 struct drm_nouveau_private *dev_priv = dev->dev_private;
378 struct nouveau_engine *engine;
6ee73861
BS
379 int ret;
380
381 NV_DEBUG(dev, "prev state = %d\n", dev_priv->init_state);
382
383 if (dev_priv->init_state == NOUVEAU_CARD_INIT_DONE)
384 return 0;
385
386 vga_client_register(dev->pdev, dev, NULL, nouveau_vga_set_decode);
387
388 /* Initialise internal driver API hooks */
389 ret = nouveau_init_engine_ptrs(dev);
390 if (ret)
c5804be0 391 goto out;
6ee73861
BS
392 engine = &dev_priv->engine;
393 dev_priv->init_state = NOUVEAU_CARD_INIT_FAILED;
394
395 /* Parse BIOS tables / Run init tables if card not POSTed */
396 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
397 ret = nouveau_bios_init(dev);
398 if (ret)
c5804be0 399 goto out;
6ee73861
BS
400 }
401
402 ret = nouveau_gpuobj_early_init(dev);
403 if (ret)
c5804be0 404 goto out_bios;
6ee73861
BS
405
406 /* Initialise instance memory, must happen before mem_init so we
407 * know exactly how much VRAM we're able to use for "normal"
408 * purposes.
409 */
410 ret = engine->instmem.init(dev);
411 if (ret)
c5804be0 412 goto out_gpuobj_early;
6ee73861
BS
413
414 /* Setup the memory manager */
415 ret = nouveau_mem_init(dev);
416 if (ret)
c5804be0 417 goto out_instmem;
6ee73861
BS
418
419 ret = nouveau_gpuobj_init(dev);
420 if (ret)
c5804be0 421 goto out_mem;
6ee73861
BS
422
423 /* PMC */
424 ret = engine->mc.init(dev);
425 if (ret)
c5804be0 426 goto out_gpuobj;
6ee73861
BS
427
428 /* PTIMER */
429 ret = engine->timer.init(dev);
430 if (ret)
c5804be0 431 goto out_mc;
6ee73861
BS
432
433 /* PFB */
434 ret = engine->fb.init(dev);
435 if (ret)
c5804be0 436 goto out_timer;
6ee73861 437
a32ed69d
MK
438 if (nouveau_noaccel)
439 engine->graph.accel_blocked = true;
440 else {
441 /* PGRAPH */
442 ret = engine->graph.init(dev);
443 if (ret)
444 goto out_fb;
6ee73861 445
a32ed69d
MK
446 /* PFIFO */
447 ret = engine->fifo.init(dev);
448 if (ret)
449 goto out_graph;
450 }
6ee73861
BS
451
452 /* this call irq_preinstall, register irq handler and
453 * call irq_postinstall
454 */
455 ret = drm_irq_install(dev);
456 if (ret)
c5804be0 457 goto out_fifo;
6ee73861
BS
458
459 ret = drm_vblank_init(dev, 0);
460 if (ret)
c5804be0 461 goto out_irq;
6ee73861
BS
462
463 /* what about PVIDEO/PCRTC/PRAMDAC etc? */
464
0735f62e
BS
465 if (!engine->graph.accel_blocked) {
466 ret = nouveau_card_init_channel(dev);
467 if (ret)
468 goto out_irq;
6ee73861
BS
469 }
470
471 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
c5804be0 472 if (dev_priv->card_type >= NV_50)
6ee73861 473 ret = nv50_display_create(dev);
c5804be0 474 else
6ee73861 475 ret = nv04_display_create(dev);
c5804be0
MK
476 if (ret)
477 goto out_irq;
6ee73861
BS
478 }
479
480 ret = nouveau_backlight_init(dev);
481 if (ret)
482 NV_ERROR(dev, "Error %d registering backlight\n", ret);
483
484 dev_priv->init_state = NOUVEAU_CARD_INIT_DONE;
485
486 if (drm_core_check_feature(dev, DRIVER_MODESET))
487 drm_helper_initial_config(dev);
488
489 return 0;
c5804be0
MK
490
491out_irq:
492 drm_irq_uninstall(dev);
493out_fifo:
a32ed69d
MK
494 if (!nouveau_noaccel)
495 engine->fifo.takedown(dev);
c5804be0 496out_graph:
a32ed69d
MK
497 if (!nouveau_noaccel)
498 engine->graph.takedown(dev);
c5804be0
MK
499out_fb:
500 engine->fb.takedown(dev);
501out_timer:
502 engine->timer.takedown(dev);
503out_mc:
504 engine->mc.takedown(dev);
505out_gpuobj:
506 nouveau_gpuobj_takedown(dev);
507out_mem:
508 nouveau_mem_close(dev);
509out_instmem:
510 engine->instmem.takedown(dev);
511out_gpuobj_early:
512 nouveau_gpuobj_late_takedown(dev);
513out_bios:
514 nouveau_bios_takedown(dev);
515out:
516 vga_client_register(dev->pdev, NULL, NULL, NULL);
517 return ret;
6ee73861
BS
518}
519
520static void nouveau_card_takedown(struct drm_device *dev)
521{
522 struct drm_nouveau_private *dev_priv = dev->dev_private;
523 struct nouveau_engine *engine = &dev_priv->engine;
524
525 NV_DEBUG(dev, "prev state = %d\n", dev_priv->init_state);
526
527 if (dev_priv->init_state != NOUVEAU_CARD_INIT_DOWN) {
528 nouveau_backlight_exit(dev);
529
530 if (dev_priv->channel) {
531 nouveau_channel_free(dev_priv->channel);
532 dev_priv->channel = NULL;
533 }
534
a32ed69d
MK
535 if (!nouveau_noaccel) {
536 engine->fifo.takedown(dev);
537 engine->graph.takedown(dev);
538 }
6ee73861
BS
539 engine->fb.takedown(dev);
540 engine->timer.takedown(dev);
541 engine->mc.takedown(dev);
542
543 mutex_lock(&dev->struct_mutex);
71666475 544 ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_VRAM);
6ee73861
BS
545 ttm_bo_clean_mm(&dev_priv->ttm.bdev, TTM_PL_TT);
546 mutex_unlock(&dev->struct_mutex);
547 nouveau_sgdma_takedown(dev);
548
549 nouveau_gpuobj_takedown(dev);
550 nouveau_mem_close(dev);
551 engine->instmem.takedown(dev);
552
553 if (drm_core_check_feature(dev, DRIVER_MODESET))
554 drm_irq_uninstall(dev);
555
556 nouveau_gpuobj_late_takedown(dev);
557 nouveau_bios_takedown(dev);
558
559 vga_client_register(dev->pdev, NULL, NULL, NULL);
560
561 dev_priv->init_state = NOUVEAU_CARD_INIT_DOWN;
562 }
563}
564
565/* here a client dies, release the stuff that was allocated for its
566 * file_priv */
567void nouveau_preclose(struct drm_device *dev, struct drm_file *file_priv)
568{
569 nouveau_channel_cleanup(dev, file_priv);
570}
571
572/* first module load, setup the mmio/fb mapping */
573/* KMS: we need mmio at load time, not when the first drm client opens. */
574int nouveau_firstopen(struct drm_device *dev)
575{
576 return 0;
577}
578
579/* if we have an OF card, copy vbios to RAMIN */
580static void nouveau_OF_copy_vbios_to_ramin(struct drm_device *dev)
581{
582#if defined(__powerpc__)
583 int size, i;
584 const uint32_t *bios;
585 struct device_node *dn = pci_device_to_OF_node(dev->pdev);
586 if (!dn) {
587 NV_INFO(dev, "Unable to get the OF node\n");
588 return;
589 }
590
591 bios = of_get_property(dn, "NVDA,BMP", &size);
592 if (bios) {
593 for (i = 0; i < size; i += 4)
594 nv_wi32(dev, i, bios[i/4]);
595 NV_INFO(dev, "OF bios successfully copied (%d bytes)\n", size);
596 } else {
597 NV_INFO(dev, "Unable to get the OF bios\n");
598 }
599#endif
600}
601
602int nouveau_load(struct drm_device *dev, unsigned long flags)
603{
604 struct drm_nouveau_private *dev_priv;
605 uint32_t reg0;
606 resource_size_t mmio_start_offs;
607
608 dev_priv = kzalloc(sizeof(*dev_priv), GFP_KERNEL);
609 if (!dev_priv)
610 return -ENOMEM;
611 dev->dev_private = dev_priv;
612 dev_priv->dev = dev;
613
614 dev_priv->flags = flags & NOUVEAU_FLAGS;
615 dev_priv->init_state = NOUVEAU_CARD_INIT_DOWN;
616
617 NV_DEBUG(dev, "vendor: 0x%X device: 0x%X class: 0x%X\n",
618 dev->pci_vendor, dev->pci_device, dev->pdev->class);
619
620 dev_priv->acpi_dsm = nouveau_dsm_probe(dev);
621
622 if (dev_priv->acpi_dsm)
623 nouveau_hybrid_setup(dev);
624
625 dev_priv->wq = create_workqueue("nouveau");
626 if (!dev_priv->wq)
627 return -EINVAL;
628
629 /* resource 0 is mmio regs */
630 /* resource 1 is linear FB */
631 /* resource 2 is RAMIN (mmio regs + 0x1000000) */
632 /* resource 6 is bios */
633
634 /* map the mmio regs */
635 mmio_start_offs = pci_resource_start(dev->pdev, 0);
636 dev_priv->mmio = ioremap(mmio_start_offs, 0x00800000);
637 if (!dev_priv->mmio) {
638 NV_ERROR(dev, "Unable to initialize the mmio mapping. "
639 "Please report your setup to " DRIVER_EMAIL "\n");
640 return -EINVAL;
641 }
642 NV_DEBUG(dev, "regs mapped ok at 0x%llx\n",
643 (unsigned long long)mmio_start_offs);
644
645#ifdef __BIG_ENDIAN
646 /* Put the card in BE mode if it's not */
647 if (nv_rd32(dev, NV03_PMC_BOOT_1))
648 nv_wr32(dev, NV03_PMC_BOOT_1, 0x00000001);
649
650 DRM_MEMORYBARRIER();
651#endif
652
653 /* Time to determine the card architecture */
654 reg0 = nv_rd32(dev, NV03_PMC_BOOT_0);
655
656 /* We're dealing with >=NV10 */
657 if ((reg0 & 0x0f000000) > 0) {
658 /* Bit 27-20 contain the architecture in hex */
659 dev_priv->chipset = (reg0 & 0xff00000) >> 20;
660 /* NV04 or NV05 */
661 } else if ((reg0 & 0xff00fff0) == 0x20004000) {
1dee7a93
BS
662 if (reg0 & 0x00f00000)
663 dev_priv->chipset = 0x05;
664 else
665 dev_priv->chipset = 0x04;
6ee73861
BS
666 } else
667 dev_priv->chipset = 0xff;
668
669 switch (dev_priv->chipset & 0xf0) {
670 case 0x00:
671 case 0x10:
672 case 0x20:
673 case 0x30:
674 dev_priv->card_type = dev_priv->chipset & 0xf0;
675 break;
676 case 0x40:
677 case 0x60:
678 dev_priv->card_type = NV_40;
679 break;
680 case 0x50:
681 case 0x80:
682 case 0x90:
683 case 0xa0:
684 dev_priv->card_type = NV_50;
685 break;
686 default:
687 NV_INFO(dev, "Unsupported chipset 0x%08x\n", reg0);
688 return -EINVAL;
689 }
690
691 NV_INFO(dev, "Detected an NV%2x generation card (0x%08x)\n",
692 dev_priv->card_type, reg0);
693
694 /* map larger RAMIN aperture on NV40 cards */
695 dev_priv->ramin = NULL;
696 if (dev_priv->card_type >= NV_40) {
697 int ramin_bar = 2;
698 if (pci_resource_len(dev->pdev, ramin_bar) == 0)
699 ramin_bar = 3;
700
701 dev_priv->ramin_size = pci_resource_len(dev->pdev, ramin_bar);
702 dev_priv->ramin = ioremap(
703 pci_resource_start(dev->pdev, ramin_bar),
704 dev_priv->ramin_size);
705 if (!dev_priv->ramin) {
706 NV_ERROR(dev, "Failed to init RAMIN mapping, "
707 "limited instance memory available\n");
708 }
709 }
710
711 /* On older cards (or if the above failed), create a map covering
712 * the BAR0 PRAMIN aperture */
713 if (!dev_priv->ramin) {
714 dev_priv->ramin_size = 1 * 1024 * 1024;
715 dev_priv->ramin = ioremap(mmio_start_offs + NV_RAMIN,
716 dev_priv->ramin_size);
717 if (!dev_priv->ramin) {
718 NV_ERROR(dev, "Failed to map BAR0 PRAMIN.\n");
719 return -ENOMEM;
720 }
721 }
722
723 nouveau_OF_copy_vbios_to_ramin(dev);
724
725 /* Special flags */
726 if (dev->pci_device == 0x01a0)
727 dev_priv->flags |= NV_NFORCE;
728 else if (dev->pci_device == 0x01f0)
729 dev_priv->flags |= NV_NFORCE2;
730
731 /* For kernel modesetting, init card now and bring up fbcon */
732 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
733 int ret = nouveau_card_init(dev);
734 if (ret)
735 return ret;
736 }
737
738 return 0;
739}
740
741static void nouveau_close(struct drm_device *dev)
742{
743 struct drm_nouveau_private *dev_priv = dev->dev_private;
744
111b459a
FJ
745 /* In the case of an error dev_priv may not be allocated yet */
746 if (dev_priv)
6ee73861
BS
747 nouveau_card_takedown(dev);
748}
749
750/* KMS: we need mmio at load time, not when the first drm client opens. */
751void nouveau_lastclose(struct drm_device *dev)
752{
753 if (drm_core_check_feature(dev, DRIVER_MODESET))
754 return;
755
756 nouveau_close(dev);
757}
758
759int nouveau_unload(struct drm_device *dev)
760{
761 struct drm_nouveau_private *dev_priv = dev->dev_private;
762
763 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
764 if (dev_priv->card_type >= NV_50)
765 nv50_display_destroy(dev);
766 else
767 nv04_display_destroy(dev);
768 nouveau_close(dev);
769 }
770
771 iounmap(dev_priv->mmio);
772 iounmap(dev_priv->ramin);
773
774 kfree(dev_priv);
775 dev->dev_private = NULL;
776 return 0;
777}
778
779int
780nouveau_ioctl_card_init(struct drm_device *dev, void *data,
781 struct drm_file *file_priv)
782{
783 return nouveau_card_init(dev);
784}
785
786int nouveau_ioctl_getparam(struct drm_device *dev, void *data,
787 struct drm_file *file_priv)
788{
789 struct drm_nouveau_private *dev_priv = dev->dev_private;
790 struct drm_nouveau_getparam *getparam = data;
791
792 NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
793
794 switch (getparam->param) {
795 case NOUVEAU_GETPARAM_CHIPSET_ID:
796 getparam->value = dev_priv->chipset;
797 break;
798 case NOUVEAU_GETPARAM_PCI_VENDOR:
799 getparam->value = dev->pci_vendor;
800 break;
801 case NOUVEAU_GETPARAM_PCI_DEVICE:
802 getparam->value = dev->pci_device;
803 break;
804 case NOUVEAU_GETPARAM_BUS_TYPE:
805 if (drm_device_is_agp(dev))
806 getparam->value = NV_AGP;
807 else if (drm_device_is_pcie(dev))
808 getparam->value = NV_PCIE;
809 else
810 getparam->value = NV_PCI;
811 break;
812 case NOUVEAU_GETPARAM_FB_PHYSICAL:
813 getparam->value = dev_priv->fb_phys;
814 break;
815 case NOUVEAU_GETPARAM_AGP_PHYSICAL:
816 getparam->value = dev_priv->gart_info.aper_base;
817 break;
818 case NOUVEAU_GETPARAM_PCI_PHYSICAL:
819 if (dev->sg) {
820 getparam->value = (unsigned long)dev->sg->virtual;
821 } else {
822 NV_ERROR(dev, "Requested PCIGART address, "
823 "while no PCIGART was created\n");
824 return -EINVAL;
825 }
826 break;
827 case NOUVEAU_GETPARAM_FB_SIZE:
828 getparam->value = dev_priv->fb_available_size;
829 break;
830 case NOUVEAU_GETPARAM_AGP_SIZE:
831 getparam->value = dev_priv->gart_info.aper_size;
832 break;
833 case NOUVEAU_GETPARAM_VM_VRAM_BASE:
834 getparam->value = dev_priv->vm_vram_base;
835 break;
69c9700b
MK
836 case NOUVEAU_GETPARAM_GRAPH_UNITS:
837 /* NV40 and NV50 versions are quite different, but register
838 * address is the same. User is supposed to know the card
839 * family anyway... */
840 if (dev_priv->chipset >= 0x40) {
841 getparam->value = nv_rd32(dev, NV40_PMC_GRAPH_UNITS);
842 break;
843 }
844 /* FALLTHRU */
6ee73861
BS
845 default:
846 NV_ERROR(dev, "unknown parameter %lld\n", getparam->param);
847 return -EINVAL;
848 }
849
850 return 0;
851}
852
853int
854nouveau_ioctl_setparam(struct drm_device *dev, void *data,
855 struct drm_file *file_priv)
856{
857 struct drm_nouveau_setparam *setparam = data;
858
859 NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
860
861 switch (setparam->param) {
862 default:
863 NV_ERROR(dev, "unknown parameter %lld\n", setparam->param);
864 return -EINVAL;
865 }
866
867 return 0;
868}
869
870/* Wait until (value(reg) & mask) == val, up until timeout has hit */
871bool nouveau_wait_until(struct drm_device *dev, uint64_t timeout,
872 uint32_t reg, uint32_t mask, uint32_t val)
873{
874 struct drm_nouveau_private *dev_priv = dev->dev_private;
875 struct nouveau_timer_engine *ptimer = &dev_priv->engine.timer;
876 uint64_t start = ptimer->read(dev);
877
878 do {
879 if ((nv_rd32(dev, reg) & mask) == val)
880 return true;
881 } while (ptimer->read(dev) - start < timeout);
882
883 return false;
884}
885
886/* Waits for PGRAPH to go completely idle */
887bool nouveau_wait_for_idle(struct drm_device *dev)
888{
889 if (!nv_wait(NV04_PGRAPH_STATUS, 0xffffffff, 0x00000000)) {
890 NV_ERROR(dev, "PGRAPH idle timed out with status 0x%08x\n",
891 nv_rd32(dev, NV04_PGRAPH_STATUS));
892 return false;
893 }
894
895 return true;
896}
897