From 865514be2dbd36b65c3ac128724036ea0ce63321 Mon Sep 17 00:00:00 2001 From: Alex Waterman Date: Fri, 28 Oct 2016 17:41:27 -0700 Subject: gpu: nvgpu: Move gp10b HW headers Move the gp10b HW headers to a new directory specially for them: include/nvgpu/hw/gp10b And change the code to include like so: #include This is part of the process to restructure the nvgpu driver. Bug 1799159 Change-Id: Ic80ea5b7f5c280839e502e2178a345181f7a7ef9 Signed-off-by: Alex Waterman Reviewed-on: http://git-master/r/1280326 GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom --- drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h | 225 --------------------------------- 1 file changed, 225 deletions(-) delete mode 100644 drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h (limited to 'drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h') diff --git a/drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h b/drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h deleted file mode 100644 index c6645ca0..00000000 --- a/drivers/gpu/nvgpu/gp10b/hw_top_gp10b.h +++ /dev/null @@ -1,225 +0,0 @@ -/* - * Copyright (c) 2014-2016, 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. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -/* - * Function naming determines intended use: - * - * _r(void) : Returns the offset for register . - * - * _o(void) : Returns the offset for element . - * - * _w(void) : Returns the word offset for word (4 byte) element . - * - * __s(void) : Returns size of field of register in bits. - * - * __f(u32 v) : Returns a value based on 'v' which has been shifted - * and masked to place it at field of register . This value - * can be |'d with others to produce a full register value for - * register . - * - * __m(void) : Returns a mask for field of register . This - * value can be ~'d and then &'d to clear the value of field for - * register . - * - * ___f(void) : Returns the constant value after being shifted - * to place it at field of register . This value can be |'d - * with others to produce a full register value for . - * - * __v(u32 r) : Returns the value of field from a full register - * value 'r' after being shifted to place its LSB at bit 0. - * This value is suitable for direct comparison with other unshifted - * values appropriate for use in field of register . - * - * ___v(void) : Returns the constant value for defined for - * field of register . This value is suitable for direct - * comparison with unshifted values appropriate for use in field - * of register . - */ -#ifndef _hw_top_gp10b_h_ -#define _hw_top_gp10b_h_ - -static inline u32 top_num_gpcs_r(void) -{ - return 0x00022430; -} -static inline u32 top_num_gpcs_value_v(u32 r) -{ - return (r >> 0) & 0x1f; -} -static inline u32 top_tpc_per_gpc_r(void) -{ - return 0x00022434; -} -static inline u32 top_tpc_per_gpc_value_v(u32 r) -{ - return (r >> 0) & 0x1f; -} -static inline u32 top_num_fbps_r(void) -{ - return 0x00022438; -} -static inline u32 top_num_fbps_value_v(u32 r) -{ - return (r >> 0) & 0x1f; -} -static inline u32 top_ltc_per_fbp_r(void) -{ - return 0x00022450; -} -static inline u32 top_ltc_per_fbp_value_v(u32 r) -{ - return (r >> 0) & 0x1f; -} -static inline u32 top_slices_per_ltc_r(void) -{ - return 0x0002245c; -} -static inline u32 top_slices_per_ltc_value_v(u32 r) -{ - return (r >> 0) & 0x1f; -} -static inline u32 top_num_ltcs_r(void) -{ - return 0x00022454; -} -static inline u32 top_device_info_r(u32 i) -{ - return 0x00022700 + i*4; -} -static inline u32 top_device_info__size_1_v(void) -{ - return 0x00000040; -} -static inline u32 top_device_info_chain_v(u32 r) -{ - return (r >> 31) & 0x1; -} -static inline u32 top_device_info_chain_enable_v(void) -{ - return 0x00000001; -} -static inline u32 top_device_info_engine_enum_v(u32 r) -{ - return (r >> 26) & 0xf; -} -static inline u32 top_device_info_runlist_enum_v(u32 r) -{ - return (r >> 21) & 0xf; -} -static inline u32 top_device_info_intr_enum_v(u32 r) -{ - return (r >> 15) & 0x1f; -} -static inline u32 top_device_info_reset_enum_v(u32 r) -{ - return (r >> 9) & 0x1f; -} -static inline u32 top_device_info_type_enum_v(u32 r) -{ - return (r >> 2) & 0x1fffffff; -} -static inline u32 top_device_info_type_enum_graphics_v(void) -{ - return 0x00000000; -} -static inline u32 top_device_info_type_enum_graphics_f(void) -{ - return 0x0; -} -static inline u32 top_device_info_type_enum_copy2_v(void) -{ - return 0x00000003; -} -static inline u32 top_device_info_type_enum_copy2_f(void) -{ - return 0xc; -} -static inline u32 top_device_info_type_enum_lce_v(void) -{ - return 0x00000013; -} -static inline u32 top_device_info_type_enum_lce_f(void) -{ - return 0x4c; -} -static inline u32 top_device_info_engine_v(u32 r) -{ - return (r >> 5) & 0x1; -} -static inline u32 top_device_info_runlist_v(u32 r) -{ - return (r >> 4) & 0x1; -} -static inline u32 top_device_info_intr_v(u32 r) -{ - return (r >> 3) & 0x1; -} -static inline u32 top_device_info_reset_v(u32 r) -{ - return (r >> 2) & 0x1; -} -static inline u32 top_device_info_entry_v(u32 r) -{ - return (r >> 0) & 0x3; -} -static inline u32 top_device_info_entry_not_valid_v(void) -{ - return 0x00000000; -} -static inline u32 top_device_info_entry_enum_v(void) -{ - return 0x00000002; -} -static inline u32 top_device_info_entry_engine_type_v(void) -{ - return 0x00000002; -} -static inline u32 top_device_info_entry_data_v(void) -{ - return 0x00000001; -} -static inline u32 top_device_info_data_type_v(u32 r) -{ - return (r >> 30) & 0x1; -} -static inline u32 top_device_info_data_type_enum2_v(void) -{ - return 0x00000000; -} -static inline u32 top_device_info_data_inst_id_v(u32 r) -{ - return (r >> 26) & 0xf; -} -static inline u32 top_device_info_data_pri_base_v(u32 r) -{ - return (r >> 12) & 0xfff; -} -static inline u32 top_device_info_data_pri_base_align_v(void) -{ - return 0x0000000c; -} -static inline u32 top_device_info_data_fault_id_enum_v(u32 r) -{ - return (r >> 3) & 0x1f; -} -static inline u32 top_device_info_data_fault_id_v(u32 r) -{ - return (r >> 2) & 0x1; -} -static inline u32 top_device_info_data_fault_id_valid_v(void) -{ - return 0x00000001; -} -#endif -- cgit v1.2.2