From 35980eac098741a0508d6e14afb344a405de374c Mon Sep 17 00:00:00 2001 From: Mahantesh Kumbar Date: Wed, 1 Feb 2017 22:03:03 +0530 Subject: gpu: nvgpu: Delete PMU fecs override interface Deleted PMU fecs override interface from pmu_api.h header file as feature not used anymore & its dependent code too. Deleted file pmu_api.h as file dont have any interfaces left inside Jira NVGPU-19 Change-Id: I490cf67ae60ce2f1de37da063199ee04835b940d Signed-off-by: Mahantesh Kumbar Reviewed-on: http://git-master/r/1297370 Reviewed-by: svccoveritychecker GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom --- drivers/gpu/nvgpu/gk20a/pmu_api.h | 61 --------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 drivers/gpu/nvgpu/gk20a/pmu_api.h (limited to 'drivers/gpu/nvgpu/gk20a/pmu_api.h') diff --git a/drivers/gpu/nvgpu/gk20a/pmu_api.h b/drivers/gpu/nvgpu/gk20a/pmu_api.h deleted file mode 100644 index ad8a6903..00000000 --- a/drivers/gpu/nvgpu/gk20a/pmu_api.h +++ /dev/null @@ -1,61 +0,0 @@ -/* - * Copyright (c) 2011-2017, NVIDIA CORPORATION. All rights reserved. - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU General Public License, - * version 2, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for - * more details. - */ - -#ifndef __PMU_API_H__ -#define __PMU_API_H__ - -#include -#include "pmuif/gpmuif_pg_rppg.h" - -/* FECS mem override command*/ - -#define PMU_LRF_TEX_LTC_DRAM_CMD_ID_EN_DIS 0 - -/*! - * Enable/Disable FECS error feature - */ -struct pmu_cmd_lrf_tex_ltc_dram_en_dis { - /*Command type must be first*/ - u8 cmd_type; - /*unit bitmask*/ - u8 en_dis_mask; -}; - -struct pmu_lrf_tex_ltc_dram_cmd { - union { - u8 cmd_type; - struct pmu_cmd_lrf_tex_ltc_dram_en_dis en_dis; - }; -}; - -/* FECS mem override messages*/ -#define PMU_LRF_TEX_LTC_DRAM_MSG_ID_EN_DIS 0 - -struct pmu_msg_lrf_tex_ltc_dram_en_dis { - /*! - * Must be at start - */ - u8 msg_type; - u8 en_fail_mask; - u8 dis_fail_mask; - u32 pmu_status; -}; - -struct pmu_lrf_tex_ltc_dram_msg { - union { - u8 msg_type; - struct pmu_msg_lrf_tex_ltc_dram_en_dis en_dis; - }; -}; - -#endif /*__PMU_API_H__*/ -- cgit v1.2.2