15961c62dSBen Skeggs /*
25961c62dSBen Skeggs * Copyright 2021 Red Hat Inc.
35961c62dSBen Skeggs *
45961c62dSBen Skeggs * Permission is hereby granted, free of charge, to any person obtaining a
55961c62dSBen Skeggs * copy of this software and associated documentation files (the "Software"),
65961c62dSBen Skeggs * to deal in the Software without restriction, including without limitation
75961c62dSBen Skeggs * the rights to use, copy, modify, merge, publish, distribute, sublicense,
85961c62dSBen Skeggs * and/or sell copies of the Software, and to permit persons to whom the
95961c62dSBen Skeggs * Software is furnished to do so, subject to the following conditions:
105961c62dSBen Skeggs *
115961c62dSBen Skeggs * The above copyright notice and this permission notice shall be included in
125961c62dSBen Skeggs * all copies or substantial portions of the Software.
135961c62dSBen Skeggs *
145961c62dSBen Skeggs * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
155961c62dSBen Skeggs * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
165961c62dSBen Skeggs * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
175961c62dSBen Skeggs * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
185961c62dSBen Skeggs * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
195961c62dSBen Skeggs * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
205961c62dSBen Skeggs * OTHER DEALINGS IN THE SOFTWARE.
215961c62dSBen Skeggs */
225961c62dSBen Skeggs #include "priv.h"
235961c62dSBen Skeggs
24565bfaf1SBen Skeggs static void
ga100_mc_device_disable(struct nvkm_mc * mc,u32 mask)25565bfaf1SBen Skeggs ga100_mc_device_disable(struct nvkm_mc *mc, u32 mask)
26565bfaf1SBen Skeggs {
27565bfaf1SBen Skeggs struct nvkm_device *device = mc->subdev.device;
28565bfaf1SBen Skeggs
29565bfaf1SBen Skeggs nvkm_mask(device, 0x000600, mask, 0x00000000);
30565bfaf1SBen Skeggs nvkm_rd32(device, 0x000600);
31565bfaf1SBen Skeggs nvkm_rd32(device, 0x000600);
32565bfaf1SBen Skeggs }
33565bfaf1SBen Skeggs
34565bfaf1SBen Skeggs static void
ga100_mc_device_enable(struct nvkm_mc * mc,u32 mask)35565bfaf1SBen Skeggs ga100_mc_device_enable(struct nvkm_mc *mc, u32 mask)
36565bfaf1SBen Skeggs {
37565bfaf1SBen Skeggs struct nvkm_device *device = mc->subdev.device;
38565bfaf1SBen Skeggs
39565bfaf1SBen Skeggs nvkm_mask(device, 0x000600, mask, mask);
40565bfaf1SBen Skeggs nvkm_rd32(device, 0x000600);
41565bfaf1SBen Skeggs nvkm_rd32(device, 0x000600);
42565bfaf1SBen Skeggs }
43565bfaf1SBen Skeggs
44565bfaf1SBen Skeggs static bool
ga100_mc_device_enabled(struct nvkm_mc * mc,u32 mask)45565bfaf1SBen Skeggs ga100_mc_device_enabled(struct nvkm_mc *mc, u32 mask)
46565bfaf1SBen Skeggs {
47565bfaf1SBen Skeggs return (nvkm_rd32(mc->subdev.device, 0x000600) & mask) == mask;
48565bfaf1SBen Skeggs }
49565bfaf1SBen Skeggs
50*ac9aa21bSBen Dooks static const struct nvkm_mc_device_func
51565bfaf1SBen Skeggs ga100_mc_device = {
52565bfaf1SBen Skeggs .enabled = ga100_mc_device_enabled,
53565bfaf1SBen Skeggs .enable = ga100_mc_device_enable,
54565bfaf1SBen Skeggs .disable = ga100_mc_device_disable,
55565bfaf1SBen Skeggs };
56565bfaf1SBen Skeggs
57565bfaf1SBen Skeggs static void
ga100_mc_init(struct nvkm_mc * mc)58565bfaf1SBen Skeggs ga100_mc_init(struct nvkm_mc *mc)
59565bfaf1SBen Skeggs {
60565bfaf1SBen Skeggs struct nvkm_device *device = mc->subdev.device;
61565bfaf1SBen Skeggs
62565bfaf1SBen Skeggs nvkm_wr32(device, 0x000200, 0xffffffff);
63565bfaf1SBen Skeggs nvkm_wr32(device, 0x000600, 0xffffffff);
64565bfaf1SBen Skeggs }
65565bfaf1SBen Skeggs
665961c62dSBen Skeggs static const struct nvkm_mc_func
675961c62dSBen Skeggs ga100_mc = {
68565bfaf1SBen Skeggs .init = ga100_mc_init,
69565bfaf1SBen Skeggs .device = &ga100_mc_device,
705961c62dSBen Skeggs };
715961c62dSBen Skeggs
725961c62dSBen Skeggs int
ga100_mc_new(struct nvkm_device * device,enum nvkm_subdev_type type,int inst,struct nvkm_mc ** pmc)731fc2fddfSBen Skeggs ga100_mc_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_mc **pmc)
745961c62dSBen Skeggs {
751fc2fddfSBen Skeggs return nvkm_mc_new_(&ga100_mc, device, type, inst, pmc);
765961c62dSBen Skeggs }
77