summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorMikko Perttunen <mperttunen@nvidia.com>2018-01-24 09:11:04 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2018-02-27 00:42:02 -0500
commitfe25fc3f14f5cb4e19262e20dc9ceff5d409f9f5 (patch)
tree7c4512f29030820a6cb254f07d12b4785a4b01d3 /include/linux
parent839b7a4efaade88c631f3f2496444d624965f83f (diff)
video: tegra: host: Remove clamping code
Remove both module clamping and CV cluster clamping code, as these operations are now performed by the BPMP firmware. Jira HOSTX-328 Change-Id: I5ea4d3483a29a65ca6fb2ab252c6e969387f20f4 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1645319 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/nvhost.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/nvhost.h b/include/linux/nvhost.h
index 7de229c1b..e8f69b4a9 100644
--- a/include/linux/nvhost.h
+++ b/include/linux/nvhost.h
@@ -265,13 +265,6 @@ struct nvhost_device_data {
265 struct rw_semaphore busy_lock; 265 struct rw_semaphore busy_lock;
266 bool forced_idle; 266 bool forced_idle;
267 267
268 /*
269 * Used to clamp/unclamp clusters across any cluster power sequences.
270 * The clamp is applied after poweroff and unclamp prior to poweron.
271 */
272 void (*cluster_unclamp)(struct platform_device *dev);
273 void (*cluster_clamp)(struct platform_device *dev);
274
275 /* Finalize power on. Can be used for context restore. */ 268 /* Finalize power on. Can be used for context restore. */
276 int (*finalize_poweron)(struct platform_device *dev); 269 int (*finalize_poweron)(struct platform_device *dev);
277 270
@@ -286,9 +279,6 @@ struct nvhost_device_data {
286 */ 279 */
287 void (*reset)(struct platform_device *dev); 280 void (*reset)(struct platform_device *dev);
288 281
289 /* Mask for the module reset clamp bit */
290 u32 reset_clamp_mask;
291
292 /* Device is busy. */ 282 /* Device is busy. */
293 void (*busy)(struct platform_device *); 283 void (*busy)(struct platform_device *);
294 284