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
|
|
|
|
|
*/
|
2015-01-14 15:24:57 +10:00
|
|
|
#include "nv50.h"
|
|
|
|
|
#include "outpdp.h"
|
2012-08-14 10:04:04 +10:00
|
|
|
|
2014-08-10 04:10:27 +10:00
|
|
|
#include <nvif/class.h>
|
2012-08-14 14:11:49 +10:00
|
|
|
|
2014-02-20 15:14:10 +10:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* EVO master channel object
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
const struct nv50_disp_mthd_list
|
2015-01-14 15:24:57 +10:00
|
|
|
g94_disp_core_mthd_sor = {
|
2014-02-20 15:14:10 +10:00
|
|
|
.mthd = 0x0040,
|
|
|
|
|
.addr = 0x000008,
|
|
|
|
|
.data = {
|
|
|
|
|
{ 0x0600, 0x610794 },
|
|
|
|
|
{}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const struct nv50_disp_mthd_chan
|
2015-01-14 15:24:57 +10:00
|
|
|
g94_disp_core_mthd_chan = {
|
2014-02-20 15:14:10 +10:00
|
|
|
.name = "Core",
|
|
|
|
|
.addr = 0x000000,
|
|
|
|
|
.data = {
|
2014-10-02 15:25:25 +10:00
|
|
|
{ "Global", 1, &nv50_disp_core_mthd_base },
|
2015-01-14 15:24:57 +10:00
|
|
|
{ "DAC", 3, &g84_disp_core_mthd_dac },
|
|
|
|
|
{ "SOR", 4, &g94_disp_core_mthd_sor },
|
2014-10-02 15:25:25 +10:00
|
|
|
{ "PIOR", 3, &nv50_disp_core_mthd_pior },
|
2015-01-14 15:24:57 +10:00
|
|
|
{ "HEAD", 2, &g84_disp_core_mthd_head },
|
2014-02-20 15:14:10 +10:00
|
|
|
{}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-02-20 21:33:34 +10:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* Base display object
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
static struct nvkm_oclass
|
|
|
|
|
g94_disp_sclass[] = {
|
2014-10-02 15:25:25 +10:00
|
|
|
{ GT206_DISP_CORE_CHANNEL_DMA, &nv50_disp_core_ofuncs.base },
|
|
|
|
|
{ GT200_DISP_BASE_CHANNEL_DMA, &nv50_disp_base_ofuncs.base },
|
2014-08-10 04:10:27 +10:00
|
|
|
{ GT200_DISP_OVERLAY_CHANNEL_DMA, &nv50_disp_ovly_ofuncs.base },
|
|
|
|
|
{ G82_DISP_OVERLAY, &nv50_disp_oimm_ofuncs.base },
|
|
|
|
|
{ G82_DISP_CURSOR, &nv50_disp_curs_ofuncs.base },
|
2012-08-14 10:04:04 +10:00
|
|
|
{}
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
static struct nvkm_oclass
|
|
|
|
|
g94_disp_main_oclass[] = {
|
2014-10-02 15:25:25 +10:00
|
|
|
{ GT206_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
|
2015-01-14 15:24:57 +10:00
|
|
|
g94_disp_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
|
struct nvkm_object **pobject)
|
2012-08-14 10:04:04 +10:00
|
|
|
{
|
|
|
|
|
struct nv50_disp_priv *priv;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
ret = nvkm_disp_create(parent, engine, oclass, 2, "PDISP",
|
|
|
|
|
"display", &priv);
|
2012-08-14 10:04:04 +10:00
|
|
|
*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;
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
nv_engine(priv)->sclass = g94_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);
|
2015-01-14 15:24:57 +10:00
|
|
|
priv->sclass = g94_disp_sclass;
|
2012-08-14 10:04:04 +10:00
|
|
|
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;
|
2015-01-14 15:24:57 +10:00
|
|
|
priv->sor.hdmi = g84_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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
struct nvkm_oclass *
|
|
|
|
|
g94_disp_outp_sclass[] = {
|
2014-05-17 11:19:54 +10:00
|
|
|
&nv50_pior_dp_impl.base.base,
|
2015-01-14 15:24:57 +10:00
|
|
|
&g94_sor_dp_impl.base.base,
|
2014-05-17 11:19:54 +10:00
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2015-01-14 15:24:57 +10:00
|
|
|
struct nvkm_oclass *
|
|
|
|
|
g94_disp_oclass = &(struct nv50_disp_impl) {
|
2014-02-20 21:33:34 +10:00
|
|
|
.base.base.handle = NV_ENGINE(DISP, 0x88),
|
2015-01-14 15:24:57 +10:00
|
|
|
.base.base.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
|
.ctor = g94_disp_ctor,
|
|
|
|
|
.dtor = _nvkm_disp_dtor,
|
|
|
|
|
.init = _nvkm_disp_init,
|
|
|
|
|
.fini = _nvkm_disp_fini,
|
2012-08-14 10:04:04 +10:00
|
|
|
},
|
2014-08-10 04:10:20 +10:00
|
|
|
.base.vblank = &nv50_disp_vblank_func,
|
2015-01-14 15:24:57 +10:00
|
|
|
.base.outp = g94_disp_outp_sclass,
|
|
|
|
|
.mthd.core = &g94_disp_core_mthd_chan,
|
|
|
|
|
.mthd.base = &g84_disp_base_mthd_chan,
|
|
|
|
|
.mthd.ovly = &g84_disp_ovly_mthd_chan,
|
2014-02-20 15:14:10 +10:00
|
|
|
.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;
|