2006-08-26 16:55:02 -06:00
|
|
|
/*
|
|
|
|
* Copyright 2005 Stephane Marchesin
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "drmP.h"
|
|
|
|
#include "drm.h"
|
|
|
|
#include "drm_sarea.h"
|
|
|
|
#include "nouveau_drv.h"
|
2007-03-26 03:43:48 -06:00
|
|
|
#include "nouveau_drm.h"
|
2006-08-26 16:55:02 -06:00
|
|
|
|
2007-07-12 23:09:31 -06:00
|
|
|
static int nouveau_init_card_mappings(struct drm_device *dev)
|
2006-08-26 16:55:02 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2006-08-26 16:55:02 -06:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* resource 0 is mmio regs */
|
|
|
|
/* resource 1 is linear FB */
|
2007-01-05 12:49:34 -07:00
|
|
|
/* resource 2 is RAMIN (mmio regs + 0x1000000) */
|
2006-08-26 16:55:02 -06:00
|
|
|
/* resource 6 is bios */
|
|
|
|
|
|
|
|
/* map the mmio regs */
|
2007-03-26 03:43:48 -06:00
|
|
|
ret = drm_addmap(dev, drm_get_resource_start(dev, 0),
|
|
|
|
drm_get_resource_len(dev, 0),
|
|
|
|
_DRM_REGISTERS, _DRM_READ_ONLY, &dev_priv->mmio);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Unable to initialize the mmio mapping (%d). "
|
|
|
|
"Please report your setup to " DRIVER_EMAIL "\n",
|
|
|
|
ret);
|
|
|
|
return 1;
|
2006-08-26 16:55:02 -06:00
|
|
|
}
|
2007-03-26 03:43:48 -06:00
|
|
|
DRM_DEBUG("regs mapped ok at 0x%lx\n", dev_priv->mmio->offset);
|
2006-08-26 16:55:02 -06:00
|
|
|
|
2007-01-07 05:56:45 -07:00
|
|
|
/* map larger RAMIN aperture on NV40 cards */
|
2007-06-24 23:16:19 -06:00
|
|
|
dev_priv->ramin = NULL;
|
2007-01-07 05:56:45 -07:00
|
|
|
if (dev_priv->card_type >= NV_40) {
|
2007-01-08 19:38:36 -07:00
|
|
|
int ramin_resource = 2;
|
|
|
|
if (drm_get_resource_len(dev, ramin_resource) == 0)
|
|
|
|
ramin_resource = 3;
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
ret = drm_addmap(dev,
|
|
|
|
drm_get_resource_start(dev, ramin_resource),
|
|
|
|
drm_get_resource_len(dev, ramin_resource),
|
|
|
|
_DRM_REGISTERS, _DRM_READ_ONLY,
|
|
|
|
&dev_priv->ramin);
|
2007-01-07 05:56:45 -07:00
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Failed to init RAMIN mapping, "
|
|
|
|
"limited instance memory available\n");
|
|
|
|
dev_priv->ramin = NULL;
|
|
|
|
}
|
2007-06-24 23:16:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* On older cards (or if the above failed), create a map covering
|
|
|
|
* the BAR0 PRAMIN aperture */
|
|
|
|
if (!dev_priv->ramin) {
|
|
|
|
ret = drm_addmap(dev,
|
|
|
|
drm_get_resource_start(dev, 0) + NV_RAMIN,
|
|
|
|
(1*1024*1024),
|
|
|
|
_DRM_REGISTERS, _DRM_READ_ONLY,
|
|
|
|
&dev_priv->ramin);
|
|
|
|
if (ret) {
|
|
|
|
DRM_ERROR("Failed to map BAR0 PRAMIN: %d\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
2007-01-07 05:56:45 -07:00
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-12 23:09:31 -06:00
|
|
|
static int nouveau_stub_init(struct drm_device *dev) { return 0; }
|
|
|
|
static void nouveau_stub_takedown(struct drm_device *dev) {}
|
2007-07-06 10:34:15 -06:00
|
|
|
static uint64_t nouveau_stub_timer_read(struct drm_device *dev) { return 0; }
|
|
|
|
|
2007-07-12 23:09:31 -06:00
|
|
|
static int nouveau_init_engine_ptrs(struct drm_device *dev)
|
2007-03-26 03:43:48 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-08-05 11:40:43 -06:00
|
|
|
struct nouveau_engine *engine = &dev_priv->Engine;
|
2007-03-26 03:43:48 -06:00
|
|
|
|
|
|
|
switch (dev_priv->chipset & 0xf0) {
|
|
|
|
case 0x00:
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv04_instmem_init;
|
|
|
|
engine->instmem.takedown= nv04_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv04_instmem_populate;
|
|
|
|
engine->instmem.clear = nv04_instmem_clear;
|
|
|
|
engine->instmem.bind = nv04_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv04_instmem_unbind;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->mc.init = nv04_mc_init;
|
|
|
|
engine->mc.takedown = nv04_mc_takedown;
|
|
|
|
engine->timer.init = nv04_timer_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nv04_timer_read;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->timer.takedown = nv04_timer_takedown;
|
|
|
|
engine->fb.init = nv04_fb_init;
|
|
|
|
engine->fb.takedown = nv04_fb_takedown;
|
|
|
|
engine->graph.init = nv04_graph_init;
|
|
|
|
engine->graph.takedown = nv04_graph_takedown;
|
2007-06-24 03:00:26 -06:00
|
|
|
engine->graph.create_context = nv04_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv04_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv04_graph_load_context;
|
|
|
|
engine->graph.save_context = nv04_graph_save_context;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->fifo.init = nouveau_fifo_init;
|
|
|
|
engine->fifo.takedown = nouveau_stub_takedown;
|
2007-06-24 02:57:09 -06:00
|
|
|
engine->fifo.create_context = nv04_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv04_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv04_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv04_fifo_save_context;
|
2007-03-26 03:43:48 -06:00
|
|
|
break;
|
|
|
|
case 0x10:
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv04_instmem_init;
|
|
|
|
engine->instmem.takedown= nv04_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv04_instmem_populate;
|
|
|
|
engine->instmem.clear = nv04_instmem_clear;
|
|
|
|
engine->instmem.bind = nv04_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv04_instmem_unbind;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->mc.init = nv04_mc_init;
|
|
|
|
engine->mc.takedown = nv04_mc_takedown;
|
|
|
|
engine->timer.init = nv04_timer_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nv04_timer_read;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->timer.takedown = nv04_timer_takedown;
|
|
|
|
engine->fb.init = nv10_fb_init;
|
|
|
|
engine->fb.takedown = nv10_fb_takedown;
|
|
|
|
engine->graph.init = nv10_graph_init;
|
|
|
|
engine->graph.takedown = nv10_graph_takedown;
|
2007-06-24 03:00:26 -06:00
|
|
|
engine->graph.create_context = nv10_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv10_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv10_graph_load_context;
|
|
|
|
engine->graph.save_context = nv10_graph_save_context;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->fifo.init = nouveau_fifo_init;
|
|
|
|
engine->fifo.takedown = nouveau_stub_takedown;
|
2007-06-24 02:58:14 -06:00
|
|
|
engine->fifo.create_context = nv10_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv10_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv10_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv10_fifo_save_context;
|
2007-03-26 03:43:48 -06:00
|
|
|
break;
|
|
|
|
case 0x20:
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv04_instmem_init;
|
|
|
|
engine->instmem.takedown= nv04_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv04_instmem_populate;
|
|
|
|
engine->instmem.clear = nv04_instmem_clear;
|
|
|
|
engine->instmem.bind = nv04_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv04_instmem_unbind;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->mc.init = nv04_mc_init;
|
|
|
|
engine->mc.takedown = nv04_mc_takedown;
|
|
|
|
engine->timer.init = nv04_timer_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nv04_timer_read;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->timer.takedown = nv04_timer_takedown;
|
|
|
|
engine->fb.init = nv10_fb_init;
|
|
|
|
engine->fb.takedown = nv10_fb_takedown;
|
|
|
|
engine->graph.init = nv20_graph_init;
|
|
|
|
engine->graph.takedown = nv20_graph_takedown;
|
2007-06-24 03:00:26 -06:00
|
|
|
engine->graph.create_context = nv20_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv20_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv20_graph_load_context;
|
|
|
|
engine->graph.save_context = nv20_graph_save_context;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->fifo.init = nouveau_fifo_init;
|
|
|
|
engine->fifo.takedown = nouveau_stub_takedown;
|
2007-06-24 02:58:14 -06:00
|
|
|
engine->fifo.create_context = nv10_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv10_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv10_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv10_fifo_save_context;
|
2007-03-26 03:43:48 -06:00
|
|
|
break;
|
|
|
|
case 0x30:
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv04_instmem_init;
|
|
|
|
engine->instmem.takedown= nv04_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv04_instmem_populate;
|
|
|
|
engine->instmem.clear = nv04_instmem_clear;
|
|
|
|
engine->instmem.bind = nv04_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv04_instmem_unbind;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->mc.init = nv04_mc_init;
|
|
|
|
engine->mc.takedown = nv04_mc_takedown;
|
|
|
|
engine->timer.init = nv04_timer_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nv04_timer_read;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->timer.takedown = nv04_timer_takedown;
|
|
|
|
engine->fb.init = nv10_fb_init;
|
|
|
|
engine->fb.takedown = nv10_fb_takedown;
|
|
|
|
engine->graph.init = nv30_graph_init;
|
|
|
|
engine->graph.takedown = nv30_graph_takedown;
|
2007-06-24 02:58:38 -06:00
|
|
|
engine->graph.create_context = nv30_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv30_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv30_graph_load_context;
|
|
|
|
engine->graph.save_context = nv30_graph_save_context;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->fifo.init = nouveau_fifo_init;
|
|
|
|
engine->fifo.takedown = nouveau_stub_takedown;
|
2007-06-24 02:58:14 -06:00
|
|
|
engine->fifo.create_context = nv10_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv10_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv10_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv10_fifo_save_context;
|
2007-03-26 03:43:48 -06:00
|
|
|
break;
|
|
|
|
case 0x40:
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv04_instmem_init;
|
|
|
|
engine->instmem.takedown= nv04_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv04_instmem_populate;
|
|
|
|
engine->instmem.clear = nv04_instmem_clear;
|
|
|
|
engine->instmem.bind = nv04_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv04_instmem_unbind;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->mc.init = nv40_mc_init;
|
|
|
|
engine->mc.takedown = nv40_mc_takedown;
|
|
|
|
engine->timer.init = nv04_timer_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nv04_timer_read;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->timer.takedown = nv04_timer_takedown;
|
|
|
|
engine->fb.init = nv40_fb_init;
|
|
|
|
engine->fb.takedown = nv40_fb_takedown;
|
|
|
|
engine->graph.init = nv40_graph_init;
|
|
|
|
engine->graph.takedown = nv40_graph_takedown;
|
2007-06-24 02:56:40 -06:00
|
|
|
engine->graph.create_context = nv40_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv40_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv40_graph_load_context;
|
|
|
|
engine->graph.save_context = nv40_graph_save_context;
|
2007-06-24 02:54:36 -06:00
|
|
|
engine->fifo.init = nouveau_fifo_init;
|
|
|
|
engine->fifo.takedown = nouveau_stub_takedown;
|
2007-06-24 02:56:01 -06:00
|
|
|
engine->fifo.create_context = nv40_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv40_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv40_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv40_fifo_save_context;
|
2007-03-26 03:43:48 -06:00
|
|
|
break;
|
|
|
|
case 0x50:
|
2007-06-24 04:49:19 -06:00
|
|
|
case 0x80: /* gotta love NVIDIA's consistency.. */
|
2007-07-04 08:12:33 -06:00
|
|
|
engine->instmem.init = nv50_instmem_init;
|
|
|
|
engine->instmem.takedown= nv50_instmem_takedown;
|
|
|
|
engine->instmem.populate = nv50_instmem_populate;
|
|
|
|
engine->instmem.clear = nv50_instmem_clear;
|
|
|
|
engine->instmem.bind = nv50_instmem_bind;
|
|
|
|
engine->instmem.unbind = nv50_instmem_unbind;
|
2007-06-24 04:49:19 -06:00
|
|
|
engine->mc.init = nv50_mc_init;
|
|
|
|
engine->mc.takedown = nv50_mc_takedown;
|
|
|
|
engine->timer.init = nouveau_stub_init;
|
2007-07-06 10:34:15 -06:00
|
|
|
engine->timer.read = nouveau_stub_timer_read;
|
2007-06-24 04:49:19 -06:00
|
|
|
engine->timer.takedown = nouveau_stub_takedown;
|
|
|
|
engine->fb.init = nouveau_stub_init;
|
|
|
|
engine->fb.takedown = nouveau_stub_takedown;
|
|
|
|
engine->graph.init = nv50_graph_init;
|
|
|
|
engine->graph.takedown = nv50_graph_takedown;
|
|
|
|
engine->graph.create_context = nv50_graph_create_context;
|
|
|
|
engine->graph.destroy_context = nv50_graph_destroy_context;
|
|
|
|
engine->graph.load_context = nv50_graph_load_context;
|
|
|
|
engine->graph.save_context = nv50_graph_save_context;
|
|
|
|
engine->fifo.init = nv50_fifo_init;
|
|
|
|
engine->fifo.takedown = nv50_fifo_takedown;
|
|
|
|
engine->fifo.create_context = nv50_fifo_create_context;
|
|
|
|
engine->fifo.destroy_context = nv50_fifo_destroy_context;
|
|
|
|
engine->fifo.load_context = nv50_fifo_load_context;
|
|
|
|
engine->fifo.save_context = nv50_fifo_save_context;
|
|
|
|
break;
|
2007-03-26 03:43:48 -06:00
|
|
|
default:
|
|
|
|
DRM_ERROR("NV%02x unsupported\n", dev_priv->chipset);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
int
|
|
|
|
nouveau_card_init(struct drm_device *dev)
|
2007-03-26 03:43:48 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-08-05 11:40:43 -06:00
|
|
|
struct nouveau_engine *engine;
|
2007-03-26 03:43:48 -06:00
|
|
|
int ret;
|
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
if (dev_priv->init_state == NOUVEAU_CARD_INIT_DONE)
|
|
|
|
return 0;
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
/* Map any PCI resources we need on the card */
|
|
|
|
ret = nouveau_init_card_mappings(dev);
|
|
|
|
if (ret) return ret;
|
|
|
|
|
2007-01-28 05:48:33 -07:00
|
|
|
/* Determine exact chipset we're running on */
|
|
|
|
if (dev_priv->card_type < NV_10)
|
|
|
|
dev_priv->chipset = dev_priv->card_type;
|
|
|
|
else
|
2007-03-26 03:43:48 -06:00
|
|
|
dev_priv->chipset =
|
|
|
|
(NV_READ(NV03_PMC_BOOT_0) & 0x0ff00000) >> 20;
|
2007-01-28 05:48:33 -07:00
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
/* Initialise internal driver API hooks */
|
|
|
|
ret = nouveau_init_engine_ptrs(dev);
|
|
|
|
if (ret) return ret;
|
|
|
|
engine = &dev_priv->Engine;
|
2007-07-08 23:37:37 -06:00
|
|
|
dev_priv->init_state = NOUVEAU_CARD_INIT_FAILED;
|
2007-03-26 03:43:48 -06:00
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
ret = drm_irq_install(dev);
|
|
|
|
if (ret) return ret;
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
/* Initialise instance memory, must happen before mem_init so we
|
|
|
|
* know exactly how much VRAM we're able to use for "normal"
|
|
|
|
* purposes.
|
2006-11-13 14:11:49 -07:00
|
|
|
*/
|
2007-07-04 08:12:33 -06:00
|
|
|
ret = engine->instmem.init(dev);
|
2007-03-26 03:43:48 -06:00
|
|
|
if (ret) return ret;
|
|
|
|
|
|
|
|
/* Setup the memory manager */
|
|
|
|
ret = nouveau_mem_init(dev);
|
|
|
|
if (ret) return ret;
|
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
ret = nouveau_gpuobj_init(dev);
|
|
|
|
if (ret) return ret;
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
/* Parse BIOS tables / Run init tables? */
|
|
|
|
|
|
|
|
/* PMC */
|
2007-06-24 02:54:36 -06:00
|
|
|
ret = engine->mc.init(dev);
|
2007-03-26 03:43:48 -06:00
|
|
|
if (ret) return ret;
|
|
|
|
|
|
|
|
/* PTIMER */
|
2007-06-24 02:54:36 -06:00
|
|
|
ret = engine->timer.init(dev);
|
2007-03-26 03:43:48 -06:00
|
|
|
if (ret) return ret;
|
|
|
|
|
|
|
|
/* PFB */
|
2007-06-24 02:54:36 -06:00
|
|
|
ret = engine->fb.init(dev);
|
2007-03-26 03:43:48 -06:00
|
|
|
if (ret) return ret;
|
|
|
|
|
|
|
|
/* PGRAPH */
|
2007-06-24 02:54:36 -06:00
|
|
|
ret = engine->graph.init(dev);
|
2007-03-26 03:43:48 -06:00
|
|
|
if (ret) return ret;
|
|
|
|
|
|
|
|
/* PFIFO */
|
2007-06-24 02:54:36 -06:00
|
|
|
ret = engine->fifo.init(dev);
|
2006-11-13 14:11:49 -07:00
|
|
|
if (ret) return ret;
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
/* what about PVIDEO/PCRTC/PRAMDAC etc? */
|
|
|
|
|
2007-07-08 23:37:37 -06:00
|
|
|
dev_priv->init_state = NOUVEAU_CARD_INIT_DONE;
|
2007-03-26 03:43:48 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-12 23:09:31 -06:00
|
|
|
static void nouveau_card_takedown(struct drm_device *dev)
|
2007-07-02 03:31:18 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-08-05 11:40:43 -06:00
|
|
|
struct nouveau_engine *engine = &dev_priv->Engine;
|
2007-07-02 03:31:18 -06:00
|
|
|
|
2007-07-08 23:37:37 -06:00
|
|
|
if (dev_priv->init_state != NOUVEAU_CARD_INIT_DOWN) {
|
|
|
|
engine->fifo.takedown(dev);
|
|
|
|
engine->graph.takedown(dev);
|
|
|
|
engine->fb.takedown(dev);
|
|
|
|
engine->timer.takedown(dev);
|
|
|
|
engine->mc.takedown(dev);
|
2007-07-15 01:18:15 -06:00
|
|
|
|
|
|
|
nouveau_sgdma_nottm_hack_takedown(dev);
|
|
|
|
nouveau_sgdma_takedown(dev);
|
|
|
|
|
2007-07-08 23:37:37 -06:00
|
|
|
nouveau_gpuobj_takedown(dev);
|
2007-07-15 01:18:15 -06:00
|
|
|
|
2007-07-08 23:37:37 -06:00
|
|
|
nouveau_mem_close(dev);
|
|
|
|
engine->instmem.takedown(dev);
|
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
drm_irq_uninstall(dev);
|
|
|
|
|
2007-07-08 23:37:37 -06:00
|
|
|
dev_priv->init_state = NOUVEAU_CARD_INIT_DOWN;
|
|
|
|
}
|
2007-07-02 03:31:18 -06:00
|
|
|
}
|
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
/* here a client dies, release the stuff that was allocated for its
|
|
|
|
* file_priv */
|
|
|
|
void nouveau_preclose(struct drm_device *dev, struct drm_file *file_priv)
|
2007-03-26 03:43:48 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-03-26 03:43:48 -06:00
|
|
|
|
2007-07-20 07:39:25 -06:00
|
|
|
nouveau_fifo_cleanup(dev, file_priv);
|
|
|
|
nouveau_mem_release(file_priv,dev_priv->fb_heap);
|
|
|
|
nouveau_mem_release(file_priv,dev_priv->agp_heap);
|
|
|
|
nouveau_mem_release(file_priv,dev_priv->pci_heap);
|
2007-03-26 03:43:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/* first module load, setup the mmio/fb mapping */
|
|
|
|
int nouveau_firstopen(struct drm_device *dev)
|
|
|
|
{
|
2006-08-26 16:55:02 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int nouveau_load(struct drm_device *dev, unsigned long flags)
|
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv;
|
2006-08-26 16:55:02 -06:00
|
|
|
|
|
|
|
if (flags==NV_UNKNOWN)
|
2007-07-19 18:00:17 -06:00
|
|
|
return -EINVAL;
|
2006-08-26 16:55:02 -06:00
|
|
|
|
2007-07-02 03:31:18 -06:00
|
|
|
dev_priv = drm_calloc(1, sizeof(*dev_priv), DRM_MEM_DRIVER);
|
2006-08-26 16:55:02 -06:00
|
|
|
if (!dev_priv)
|
2007-07-19 18:00:17 -06:00
|
|
|
return -ENOMEM;
|
2006-08-26 16:55:02 -06:00
|
|
|
|
|
|
|
dev_priv->card_type=flags&NOUVEAU_FAMILY;
|
|
|
|
dev_priv->flags=flags&NOUVEAU_FLAGS;
|
2007-07-08 23:37:37 -06:00
|
|
|
dev_priv->init_state = NOUVEAU_CARD_INIT_DOWN;
|
2006-08-26 16:55:02 -06:00
|
|
|
|
|
|
|
dev->dev_private = (void *)dev_priv;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-01-05 12:49:34 -07:00
|
|
|
void nouveau_lastclose(struct drm_device *dev)
|
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-07-02 03:31:18 -06:00
|
|
|
|
|
|
|
nouveau_card_takedown(dev);
|
|
|
|
|
2007-01-05 12:49:34 -07:00
|
|
|
if(dev_priv->fb_mtrr>0)
|
2007-01-07 16:11:39 -07:00
|
|
|
{
|
2007-01-05 12:49:34 -07:00
|
|
|
drm_mtrr_del(dev_priv->fb_mtrr, drm_get_resource_start(dev, 1),nouveau_mem_fb_amount(dev), DRM_MTRR_WC);
|
2007-01-07 16:11:39 -07:00
|
|
|
dev_priv->fb_mtrr=0;
|
|
|
|
}
|
2007-01-05 12:49:34 -07:00
|
|
|
}
|
|
|
|
|
2006-08-26 16:55:02 -06:00
|
|
|
int nouveau_unload(struct drm_device *dev)
|
|
|
|
{
|
|
|
|
drm_free(dev->dev_private, sizeof(*dev->dev_private), DRM_MEM_DRIVER);
|
|
|
|
dev->dev_private = NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
int
|
|
|
|
nouveau_ioctl_card_init(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file_priv)
|
|
|
|
{
|
|
|
|
return nouveau_card_init(dev);
|
|
|
|
}
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
int nouveau_ioctl_getparam(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2006-08-30 00:55:02 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-07-19 18:11:11 -06:00
|
|
|
struct drm_nouveau_getparam *getparam = data;
|
2006-08-30 00:55:02 -06:00
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
switch (getparam->param) {
|
2007-08-06 05:45:18 -06:00
|
|
|
case NOUVEAU_GETPARAM_CHIPSET_ID:
|
|
|
|
getparam->value = dev_priv->chipset;
|
|
|
|
break;
|
2006-11-04 12:39:59 -07:00
|
|
|
case NOUVEAU_GETPARAM_PCI_VENDOR:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev->pci_vendor;
|
2006-11-04 12:39:59 -07:00
|
|
|
break;
|
|
|
|
case NOUVEAU_GETPARAM_PCI_DEVICE:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev->pci_device;
|
2006-11-04 12:39:59 -07:00
|
|
|
break;
|
|
|
|
case NOUVEAU_GETPARAM_BUS_TYPE:
|
|
|
|
if (drm_device_is_agp(dev))
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=NV_AGP;
|
2006-11-04 12:39:59 -07:00
|
|
|
else if (drm_device_is_pcie(dev))
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=NV_PCIE;
|
2006-11-04 12:39:59 -07:00
|
|
|
else
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=NV_PCI;
|
2006-11-04 12:39:59 -07:00
|
|
|
break;
|
2006-12-03 02:02:54 -07:00
|
|
|
case NOUVEAU_GETPARAM_FB_PHYSICAL:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev_priv->fb_phys;
|
2006-12-03 02:02:54 -07:00
|
|
|
break;
|
|
|
|
case NOUVEAU_GETPARAM_AGP_PHYSICAL:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev_priv->gart_info.aper_base;
|
2006-12-03 02:02:54 -07:00
|
|
|
break;
|
2007-07-10 18:35:10 -06:00
|
|
|
case NOUVEAU_GETPARAM_PCI_PHYSICAL:
|
|
|
|
if ( dev -> sg )
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=(uint64_t) dev->sg->virtual;
|
2007-07-10 18:35:10 -06:00
|
|
|
else
|
|
|
|
{
|
|
|
|
DRM_ERROR("Requested PCIGART address, while no PCIGART was created\n");
|
2007-07-19 18:00:17 -06:00
|
|
|
return -EINVAL;
|
2007-07-10 18:35:10 -06:00
|
|
|
}
|
|
|
|
break;
|
2007-02-27 21:14:08 -07:00
|
|
|
case NOUVEAU_GETPARAM_FB_SIZE:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev_priv->fb_available_size;
|
2007-02-27 21:14:08 -07:00
|
|
|
break;
|
|
|
|
case NOUVEAU_GETPARAM_AGP_SIZE:
|
2007-07-19 18:11:11 -06:00
|
|
|
getparam->value=dev_priv->gart_info.aper_size;
|
2007-02-27 21:14:08 -07:00
|
|
|
break;
|
2006-08-30 00:55:02 -06:00
|
|
|
default:
|
2007-07-19 18:11:11 -06:00
|
|
|
DRM_ERROR("unknown parameter %lld\n", getparam->param);
|
2007-07-19 18:00:17 -06:00
|
|
|
return -EINVAL;
|
2006-08-30 00:55:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
int nouveau_ioctl_setparam(struct drm_device *dev, void *data, struct drm_file *file_priv)
|
2006-08-30 00:55:02 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
2007-07-19 18:11:11 -06:00
|
|
|
struct drm_nouveau_setparam *setparam = data;
|
2006-08-30 00:55:02 -06:00
|
|
|
|
2007-08-06 05:45:18 -06:00
|
|
|
NOUVEAU_CHECK_INITIALISED_WITH_RETURN;
|
|
|
|
|
2007-07-19 18:11:11 -06:00
|
|
|
switch (setparam->param) {
|
2006-09-02 14:36:06 -06:00
|
|
|
case NOUVEAU_SETPARAM_CMDBUF_LOCATION:
|
2007-07-19 18:11:11 -06:00
|
|
|
switch (setparam->value) {
|
2006-09-02 14:36:06 -06:00
|
|
|
case NOUVEAU_MEM_AGP:
|
|
|
|
case NOUVEAU_MEM_FB:
|
2007-07-10 18:35:10 -06:00
|
|
|
case NOUVEAU_MEM_PCI:
|
|
|
|
case NOUVEAU_MEM_AGP | NOUVEAU_MEM_PCI_ACCEPTABLE:
|
2006-09-02 14:36:06 -06:00
|
|
|
break;
|
|
|
|
default:
|
2007-02-27 21:14:08 -07:00
|
|
|
DRM_ERROR("invalid CMDBUF_LOCATION value=%lld\n",
|
2007-07-19 18:11:11 -06:00
|
|
|
setparam->value);
|
2007-07-19 18:00:17 -06:00
|
|
|
return -EINVAL;
|
2006-09-02 14:36:06 -06:00
|
|
|
}
|
2007-07-19 18:11:11 -06:00
|
|
|
dev_priv->config.cmdbuf.location = setparam->value;
|
2006-09-02 14:36:06 -06:00
|
|
|
break;
|
|
|
|
case NOUVEAU_SETPARAM_CMDBUF_SIZE:
|
2007-07-19 18:11:11 -06:00
|
|
|
dev_priv->config.cmdbuf.size = setparam->value;
|
2006-09-02 14:36:06 -06:00
|
|
|
break;
|
2006-08-30 00:55:02 -06:00
|
|
|
default:
|
2007-07-19 18:11:11 -06:00
|
|
|
DRM_ERROR("unknown parameter %lld\n", setparam->param);
|
2007-07-19 18:00:17 -06:00
|
|
|
return -EINVAL;
|
2006-08-30 00:55:02 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-10-10 16:28:15 -06:00
|
|
|
/* waits for idle */
|
|
|
|
void nouveau_wait_for_idle(struct drm_device *dev)
|
2006-09-02 14:36:06 -06:00
|
|
|
{
|
2007-07-12 23:09:31 -06:00
|
|
|
struct drm_nouveau_private *dev_priv=dev->dev_private;
|
2007-07-06 11:33:32 -06:00
|
|
|
switch(dev_priv->card_type) {
|
|
|
|
case NV_03:
|
|
|
|
while (NV_READ(NV03_PGRAPH_STATUS));
|
|
|
|
break;
|
|
|
|
case NV_50:
|
|
|
|
break;
|
|
|
|
default: {
|
|
|
|
/* This stuff is more or less a copy of what is seen
|
|
|
|
* in nv28 kmmio dump.
|
|
|
|
*/
|
|
|
|
uint64_t started = dev_priv->Engine.timer.read(dev);
|
|
|
|
uint64_t stopped = started;
|
|
|
|
uint32_t status;
|
|
|
|
do {
|
|
|
|
uint32_t pmc_e = NV_READ(NV03_PMC_ENABLE);
|
2007-08-05 11:40:43 -06:00
|
|
|
(void)pmc_e;
|
2007-07-06 11:33:32 -06:00
|
|
|
status = NV_READ(NV04_PGRAPH_STATUS);
|
|
|
|
if (!status)
|
|
|
|
break;
|
|
|
|
stopped = dev_priv->Engine.timer.read(dev);
|
|
|
|
/* It'll never wrap anyway... */
|
|
|
|
} while (stopped - started < 1000000000ULL);
|
|
|
|
if (status)
|
|
|
|
DRM_ERROR("timed out with status 0x%08x\n",
|
|
|
|
status);
|
|
|
|
}
|
2006-09-02 14:36:06 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-26 03:43:48 -06:00
|
|
|
|