2013-10-15 09:38:12 +10:00
|
|
|
/*
|
|
|
|
|
* Copyright 2013 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
|
|
|
|
|
*/
|
2014-06-12 18:31:32 +10:00
|
|
|
#include "priv.h"
|
2015-01-14 15:10:40 +10:00
|
|
|
#include "fuc/gf110.fuc4.h"
|
2013-10-15 09:38:12 +10:00
|
|
|
|
2015-01-14 15:10:40 +10:00
|
|
|
struct nvkm_oclass *
|
|
|
|
|
gf110_pmu_oclass = &(struct nvkm_pmu_impl) {
|
2015-01-14 00:04:21 +10:00
|
|
|
.base.handle = NV_SUBDEV(PMU, 0xd0),
|
2015-01-14 15:10:40 +10:00
|
|
|
.base.ofuncs = &(struct nvkm_ofuncs) {
|
|
|
|
|
.ctor = _nvkm_pmu_ctor,
|
|
|
|
|
.dtor = _nvkm_pmu_dtor,
|
|
|
|
|
.init = _nvkm_pmu_init,
|
|
|
|
|
.fini = _nvkm_pmu_fini,
|
2013-10-15 09:38:12 +10:00
|
|
|
},
|
2015-01-14 15:10:40 +10:00
|
|
|
.code.data = gf110_pmu_code,
|
|
|
|
|
.code.size = sizeof(gf110_pmu_code),
|
|
|
|
|
.data.data = gf110_pmu_data,
|
|
|
|
|
.data.size = sizeof(gf110_pmu_data),
|
2014-06-12 18:31:32 +10:00
|
|
|
}.base;
|