2012-08-14 10:04:04 +10:00
|
|
|
/*
|
|
|
|
|
* Copyright 2012 Red Hat Inc.
|
|
|
|
|
*
|
|
|
|
|
* 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 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
|
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
|
|
|
|
|
*
|
|
|
|
|
* Authors: Ben Skeggs
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <engine/software.h>
|
|
|
|
|
#include <engine/disp.h>
|
|
|
|
|
|
2014-08-10 04:10:27 +10:00
|
|
|
#include <nvif/class.h>
|
2012-08-14 14:11:49 +10:00
|
|
|
|
2012-08-14 10:04:04 +10:00
|
|
|
#include "nv50.h"
|
|
|
|
|
|
2014-02-20 21:33:34 +10:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* Base display object
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-08-14 10:04:04 +10:00
|
|
|
static struct nouveau_oclass
|
|
|
|
|
nva3_disp_sclass[] = {
|
2014-10-02 15:25:25 +10:00
|
|
|
{ GT214_DISP_CORE_CHANNEL_DMA, &nv50_disp_core_ofuncs.base },
|
|
|
|
|
{ GT214_DISP_BASE_CHANNEL_DMA, &nv50_disp_base_ofuncs.base },
|
2014-08-10 04:10:27 +10:00
|
|
|
{ GT214_DISP_OVERLAY_CHANNEL_DMA, &nv50_disp_ovly_ofuncs.base },
|
|
|
|
|
{ GT214_DISP_OVERLAY, &nv50_disp_oimm_ofuncs.base },
|
|
|
|
|
{ GT214_DISP_CURSOR, &nv50_disp_curs_ofuncs.base },
|
2012-08-14 10:04:04 +10:00
|
|
|
{}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static struct nouveau_oclass
|
2014-10-02 15:25:25 +10:00
|
|
|
nva3_disp_main_oclass[] = {
|
|
|
|
|
{ GT214_DISP, &nv50_disp_main_ofuncs },
|
2012-08-14 14:11:49 +10:00
|
|
|
{}
|
2012-08-14 10:04:04 +10:00
|
|
|
};
|
|
|
|
|
|
2014-02-20 21:33:34 +10:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* Display engine implementation
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2012-08-14 10:04:04 +10:00
|
|
|
static int
|
|
|
|
|
nva3_disp_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
|
|
|
|
|
struct nouveau_oclass *oclass, void *data, u32 size,
|
|
|
|
|
struct nouveau_object **pobject)
|
|
|
|
|
{
|
|
|
|
|
struct nv50_disp_priv *priv;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2013-01-31 09:23:34 +10:00
|
|
|
ret = nouveau_disp_create(parent, engine, oclass, 2, "PDISP",
|
2012-08-14 10:04:04 +10:00
|
|
|
"display", &priv);
|
|
|
|
|
*pobject = nv_object(priv);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2014-08-11 14:38:10 +10:00
|
|
|
ret = nvkm_event_init(&nv50_disp_chan_uevent, 1, 9, &priv->uevent);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
2014-10-02 15:25:25 +10:00
|
|
|
nv_engine(priv)->sclass = nva3_disp_main_oclass;
|
2012-08-14 10:04:04 +10:00
|
|
|
nv_engine(priv)->cclass = &nv50_disp_cclass;
|
|
|
|
|
nv_subdev(priv)->intr = nv50_disp_intr;
|
2013-02-18 17:50:51 -05:00
|
|
|
INIT_WORK(&priv->supervisor, nv50_disp_intr_supervisor);
|
2012-08-14 10:04:04 +10:00
|
|
|
priv->sclass = nva3_disp_sclass;
|
|
|
|
|
priv->head.nr = 2;
|
|
|
|
|
priv->dac.nr = 3;
|
|
|
|
|
priv->sor.nr = 4;
|
2013-02-11 09:11:08 +10:00
|
|
|
priv->pior.nr = 3;
|
2012-11-09 09:32:56 +10:00
|
|
|
priv->dac.power = nv50_dac_power;
|
2012-11-09 09:38:06 +10:00
|
|
|
priv->dac.sense = nv50_dac_sense;
|
2012-11-09 09:32:56 +10:00
|
|
|
priv->sor.power = nv50_sor_power;
|
2012-11-09 10:38:10 +10:00
|
|
|
priv->sor.hda_eld = nva3_hda_eld;
|
2012-11-09 10:54:38 +10:00
|
|
|
priv->sor.hdmi = nva3_hdmi_ctrl;
|
2013-02-11 09:11:08 +10:00
|
|
|
priv->pior.power = nv50_pior_power;
|
2012-08-14 10:04:04 +10:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-20 21:33:34 +10:00
|
|
|
struct nouveau_oclass *
|
|
|
|
|
nva3_disp_oclass = &(struct nv50_disp_impl) {
|
|
|
|
|
.base.base.handle = NV_ENGINE(DISP, 0x85),
|
|
|
|
|
.base.base.ofuncs = &(struct nouveau_ofuncs) {
|
2012-08-14 10:04:04 +10:00
|
|
|
.ctor = nva3_disp_ctor,
|
|
|
|
|
.dtor = _nouveau_disp_dtor,
|
|
|
|
|
.init = _nouveau_disp_init,
|
|
|
|
|
.fini = _nouveau_disp_fini,
|
|
|
|
|
},
|
2014-08-10 04:10:20 +10:00
|
|
|
.base.vblank = &nv50_disp_vblank_func,
|
2014-05-17 11:19:54 +10:00
|
|
|
.base.outp = nv94_disp_outp_sclass,
|
2014-10-02 15:25:25 +10:00
|
|
|
.mthd.core = &nv94_disp_core_mthd_chan,
|
|
|
|
|
.mthd.base = &nv84_disp_base_mthd_chan,
|
2014-02-20 15:14:10 +10:00
|
|
|
.mthd.ovly = &nv84_disp_ovly_mthd_chan,
|
|
|
|
|
.mthd.prev = 0x000004,
|
2014-10-02 15:25:25 +10:00
|
|
|
.head.scanoutpos = nv50_disp_main_scanoutpos,
|
2014-02-20 21:33:34 +10:00
|
|
|
}.base.base;
|