1 /* $NetBSD: nouveau_nvkm_engine_pm_gf108.c,v 1.3 2021/12/18 23:45:37 riastradh Exp $ */ 2 3 /* 4 * Copyright 2015 Samuel Pitoiset 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 shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 23 * 24 * Authors: Samuel Pitoiset 25 */ 26 #include <sys/cdefs.h> 27 __KERNEL_RCSID(0, "$NetBSD: nouveau_nvkm_engine_pm_gf108.c,v 1.3 2021/12/18 23:45:37 riastradh Exp $"); 28 29 #include "gf100.h" 30 31 static const struct nvkm_specdom 32 gf108_pm_hub[] = { 33 {} 34 }; 35 36 static const struct nvkm_specdom 37 gf108_pm_part[] = { 38 { 0xe0, (const struct nvkm_specsig[]) { 39 { 0x14, "part00_pbfb_00", gf100_pbfb_sources }, 40 { 0x15, "part00_pbfb_01", gf100_pbfb_sources }, 41 { 0x20, "part00_pbfb_02", gf100_pbfb_sources }, 42 { 0x21, "part00_pbfb_03", gf100_pbfb_sources }, 43 { 0x01, "part00_pmfb_00", gf100_pmfb_sources }, 44 { 0x04, "part00_pmfb_01", gf100_pmfb_sources }, 45 { 0x05, "part00_pmfb_02", gf100_pmfb_sources}, 46 { 0x07, "part00_pmfb_03", gf100_pmfb_sources }, 47 { 0x0d, "part00_pmfb_04", gf100_pmfb_sources }, 48 { 0x12, "part00_pmfb_05", gf100_pmfb_sources }, 49 { 0x13, "part00_pmfb_06", gf100_pmfb_sources }, 50 { 0x2c, "part00_pmfb_07", gf100_pmfb_sources }, 51 { 0x2d, "part00_pmfb_08", gf100_pmfb_sources }, 52 { 0x2e, "part00_pmfb_09", gf100_pmfb_sources }, 53 { 0x2f, "part00_pmfb_0a", gf100_pmfb_sources }, 54 { 0x30, "part00_pmfb_0b", gf100_pmfb_sources }, 55 {} 56 }, &gf100_perfctr_func }, 57 {} 58 }; 59 60 static const struct gf100_pm_func 61 gf108_pm = { 62 .doms_gpc = gf100_pm_gpc, 63 .doms_hub = gf108_pm_hub, 64 .doms_part = gf108_pm_part, 65 }; 66 67 int 68 gf108_pm_new(struct nvkm_device *device, int index, struct nvkm_pm **ppm) 69 { 70 return gf100_pm_new_(&gf108_pm, device, index, ppm); 71 } 72