• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2013 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/firmware.h>
27 #include <subdev/timer.h>
28 
29 bool
nvkm_pmu_fan_controlled(struct nvkm_device * device)30 nvkm_pmu_fan_controlled(struct nvkm_device *device)
31 {
32 	struct nvkm_pmu *pmu = device->pmu;
33 
34 	/* Internal PMU FW does not currently control fans in any way,
35 	 * allow SW control of fans instead.
36 	 */
37 	if (pmu && pmu->func->code.size)
38 		return false;
39 
40 	/* Default (board-loaded, or VBIOS PMU/PREOS) PMU FW on Fermi
41 	 * and newer automatically control the fan speed, which would
42 	 * interfere with SW control.
43 	 */
44 	return (device->chipset >= 0xc0);
45 }
46 
47 void
nvkm_pmu_pgob(struct nvkm_pmu * pmu,bool enable)48 nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable)
49 {
50 	if (pmu && pmu->func->pgob)
51 		pmu->func->pgob(pmu, enable);
52 }
53 
54 static void
nvkm_pmu_recv(struct work_struct * work)55 nvkm_pmu_recv(struct work_struct *work)
56 {
57 	struct nvkm_pmu *pmu = container_of(work, typeof(*pmu), recv.work);
58 	return pmu->func->recv(pmu);
59 }
60 
61 int
nvkm_pmu_send(struct nvkm_pmu * pmu,u32 reply[2],u32 process,u32 message,u32 data0,u32 data1)62 nvkm_pmu_send(struct nvkm_pmu *pmu, u32 reply[2],
63 	      u32 process, u32 message, u32 data0, u32 data1)
64 {
65 	if (!pmu || !pmu->func->send)
66 		return -ENODEV;
67 	return pmu->func->send(pmu, reply, process, message, data0, data1);
68 }
69 
70 static void
nvkm_pmu_intr(struct nvkm_subdev * subdev)71 nvkm_pmu_intr(struct nvkm_subdev *subdev)
72 {
73 	struct nvkm_pmu *pmu = nvkm_pmu(subdev);
74 	if (!pmu->func->intr)
75 		return;
76 	pmu->func->intr(pmu);
77 }
78 
79 static int
nvkm_pmu_fini(struct nvkm_subdev * subdev,bool suspend)80 nvkm_pmu_fini(struct nvkm_subdev *subdev, bool suspend)
81 {
82 	struct nvkm_pmu *pmu = nvkm_pmu(subdev);
83 
84 	if (pmu->func->fini)
85 		pmu->func->fini(pmu);
86 
87 	flush_work(&pmu->recv.work);
88 
89 	reinit_completion(&pmu->wpr_ready);
90 
91 	nvkm_falcon_cmdq_fini(pmu->lpq);
92 	nvkm_falcon_cmdq_fini(pmu->hpq);
93 	pmu->initmsg_received = false;
94 	return 0;
95 }
96 
97 static void
nvkm_pmu_reset(struct nvkm_pmu * pmu)98 nvkm_pmu_reset(struct nvkm_pmu *pmu)
99 {
100 	struct nvkm_device *device = pmu->subdev.device;
101 
102 	if (!pmu->func->enabled(pmu))
103 		return;
104 
105 	/* Reset. */
106 	if (pmu->func->reset)
107 		pmu->func->reset(pmu);
108 
109 	/* Wait for IMEM/DMEM scrubbing to be complete. */
110 	nvkm_msec(device, 2000,
111 		if (!(nvkm_rd32(device, 0x10a10c) & 0x00000006))
112 			break;
113 	);
114 }
115 
116 static int
nvkm_pmu_preinit(struct nvkm_subdev * subdev)117 nvkm_pmu_preinit(struct nvkm_subdev *subdev)
118 {
119 	struct nvkm_pmu *pmu = nvkm_pmu(subdev);
120 	nvkm_pmu_reset(pmu);
121 	return 0;
122 }
123 
124 static int
nvkm_pmu_init(struct nvkm_subdev * subdev)125 nvkm_pmu_init(struct nvkm_subdev *subdev)
126 {
127 	struct nvkm_pmu *pmu = nvkm_pmu(subdev);
128 	struct nvkm_device *device = pmu->subdev.device;
129 
130 	if (!pmu->func->init)
131 		return 0;
132 
133 	if (pmu->func->enabled(pmu)) {
134 		/* Inhibit interrupts, and wait for idle. */
135 		nvkm_wr32(device, 0x10a014, 0x0000ffff);
136 		nvkm_msec(device, 2000,
137 			if (!nvkm_rd32(device, 0x10a04c))
138 				break;
139 		);
140 
141 		nvkm_pmu_reset(pmu);
142 	}
143 
144 	return pmu->func->init(pmu);
145 }
146 
147 static void *
nvkm_pmu_dtor(struct nvkm_subdev * subdev)148 nvkm_pmu_dtor(struct nvkm_subdev *subdev)
149 {
150 	struct nvkm_pmu *pmu = nvkm_pmu(subdev);
151 	nvkm_falcon_msgq_del(&pmu->msgq);
152 	nvkm_falcon_cmdq_del(&pmu->lpq);
153 	nvkm_falcon_cmdq_del(&pmu->hpq);
154 	nvkm_falcon_qmgr_del(&pmu->qmgr);
155 	nvkm_falcon_dtor(&pmu->falcon);
156 	return nvkm_pmu(subdev);
157 }
158 
159 static const struct nvkm_subdev_func
160 nvkm_pmu = {
161 	.dtor = nvkm_pmu_dtor,
162 	.preinit = nvkm_pmu_preinit,
163 	.init = nvkm_pmu_init,
164 	.fini = nvkm_pmu_fini,
165 	.intr = nvkm_pmu_intr,
166 };
167 
168 int
nvkm_pmu_ctor(const struct nvkm_pmu_fwif * fwif,struct nvkm_device * device,int index,struct nvkm_pmu * pmu)169 nvkm_pmu_ctor(const struct nvkm_pmu_fwif *fwif, struct nvkm_device *device,
170 	      int index, struct nvkm_pmu *pmu)
171 {
172 	int ret;
173 
174 	nvkm_subdev_ctor(&nvkm_pmu, device, index, &pmu->subdev);
175 
176 	INIT_WORK(&pmu->recv.work, nvkm_pmu_recv);
177 	init_waitqueue_head(&pmu->recv.wait);
178 
179 	fwif = nvkm_firmware_load(&pmu->subdev, fwif, "Pmu", pmu);
180 	if (IS_ERR(fwif))
181 		return PTR_ERR(fwif);
182 
183 	pmu->func = fwif->func;
184 
185 	ret = nvkm_falcon_ctor(pmu->func->flcn, &pmu->subdev,
186 			       nvkm_subdev_name[pmu->subdev.index], 0x10a000,
187 			       &pmu->falcon);
188 	if (ret)
189 		return ret;
190 
191 	if ((ret = nvkm_falcon_qmgr_new(&pmu->falcon, &pmu->qmgr)) ||
192 	    (ret = nvkm_falcon_cmdq_new(pmu->qmgr, "hpq", &pmu->hpq)) ||
193 	    (ret = nvkm_falcon_cmdq_new(pmu->qmgr, "lpq", &pmu->lpq)) ||
194 	    (ret = nvkm_falcon_msgq_new(pmu->qmgr, "msgq", &pmu->msgq)))
195 		return ret;
196 
197 	init_completion(&pmu->wpr_ready);
198 	return 0;
199 }
200 
201 int
nvkm_pmu_new_(const struct nvkm_pmu_fwif * fwif,struct nvkm_device * device,int index,struct nvkm_pmu ** ppmu)202 nvkm_pmu_new_(const struct nvkm_pmu_fwif *fwif, struct nvkm_device *device,
203 	      int index, struct nvkm_pmu **ppmu)
204 {
205 	struct nvkm_pmu *pmu;
206 	if (!(pmu = *ppmu = kzalloc(sizeof(*pmu), GFP_KERNEL)))
207 		return -ENOMEM;
208 	return nvkm_pmu_ctor(fwif, device, index, *ppmu);
209 }
210