1 /* 2 * Copyright 2012 Red Hat Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 * 22 * Authors: Ben Skeggs 23 */ 24 #include "priv.h" 25 26 #include <core/option.h> 27 #include <subdev/vga.h> 28 29 u32 30 nvkm_devinit_mmio(struct nvkm_devinit *init, u32 addr) 31 { 32 if (init->func->mmio) 33 addr = init->func->mmio(init, addr); 34 return addr; 35 } 36 37 int 38 nvkm_devinit_pll_set(struct nvkm_devinit *init, u32 type, u32 khz) 39 { 40 return init->func->pll_set(init, type, khz); 41 } 42 43 void 44 nvkm_devinit_meminit(struct nvkm_devinit *init) 45 { 46 if (init->func->meminit) 47 init->func->meminit(init); 48 } 49 50 u64 51 nvkm_devinit_disable(struct nvkm_devinit *init) 52 { 53 if (init->func->disable) 54 return init->func->disable(init); 55 return 0; 56 } 57 58 static int 59 nvkm_devinit_fini(struct nvkm_subdev *subdev, bool suspend) 60 { 61 struct nvkm_devinit *init = nvkm_devinit(subdev); 62 /* force full reinit on resume */ 63 if (suspend) 64 init->post = true; 65 return 0; 66 } 67 68 static int 69 nvkm_devinit_preinit(struct nvkm_subdev *subdev) 70 { 71 struct nvkm_devinit *init = nvkm_devinit(subdev); 72 73 if (init->func->preinit) 74 init->func->preinit(init); 75 76 /* unlock the extended vga crtc regs */ 77 nvkm_lockvgac(subdev->device, false); 78 return 0; 79 } 80 81 static int 82 nvkm_devinit_init(struct nvkm_subdev *subdev) 83 { 84 struct nvkm_devinit *init = nvkm_devinit(subdev); 85 int ret; 86 87 ret = init->func->post(init, init->post); 88 if (ret) 89 return ret; 90 91 if (init->func->init) 92 init->func->init(init); 93 94 if (init->func->disable) 95 subdev->device->disable_mask |= init->func->disable(init); 96 return 0; 97 } 98 99 static void * 100 nvkm_devinit_dtor(struct nvkm_subdev *subdev) 101 { 102 struct nvkm_devinit *init = nvkm_devinit(subdev); 103 void *data = init; 104 105 if (init->func->dtor) 106 data = init->func->dtor(init); 107 108 /* lock crtc regs */ 109 nvkm_lockvgac(subdev->device, true); 110 return data; 111 } 112 113 static const struct nvkm_subdev_func 114 nvkm_devinit = { 115 .dtor = nvkm_devinit_dtor, 116 .preinit = nvkm_devinit_preinit, 117 .init = nvkm_devinit_init, 118 .fini = nvkm_devinit_fini, 119 }; 120 121 void 122 nvkm_devinit_ctor(const struct nvkm_devinit_func *func, 123 struct nvkm_device *device, int index, 124 struct nvkm_devinit *init) 125 { 126 nvkm_subdev_ctor(&nvkm_devinit, device, index, 0, &init->subdev); 127 init->func = func; 128 init->post = nvkm_boolopt(device->cfgopt, "NvForcePost", false); 129 } 130