From 01e6fac4d61fdd7fff5433942ec93fc2ea1e4df1 Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Wed, 28 Jun 2023 18:24:25 -0400 Subject: Include nvgpu headers These are needed to build on NVIDIA's Jetson boards for the time being. Only a couple structs are required, so it should be fairly easy to remove this dependency at some point in the future. --- include/nvgpu/hw/gv100/hw_mc_gv100.h | 259 +++++++++++++++++++++++++++++++++++ 1 file changed, 259 insertions(+) create mode 100644 include/nvgpu/hw/gv100/hw_mc_gv100.h (limited to 'include/nvgpu/hw/gv100/hw_mc_gv100.h') diff --git a/include/nvgpu/hw/gv100/hw_mc_gv100.h b/include/nvgpu/hw/gv100/hw_mc_gv100.h new file mode 100644 index 0000000..cf406c3 --- /dev/null +++ b/include/nvgpu/hw/gv100/hw_mc_gv100.h @@ -0,0 +1,259 @@ +/* + * Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved. + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + */ +/* + * 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_mc_gv100_h_ +#define _hw_mc_gv100_h_ + +static inline u32 mc_boot_0_r(void) +{ + return 0x00000000U; +} +static inline u32 mc_boot_0_architecture_v(u32 r) +{ + return (r >> 24U) & 0x1fU; +} +static inline u32 mc_boot_0_implementation_v(u32 r) +{ + return (r >> 20U) & 0xfU; +} +static inline u32 mc_boot_0_major_revision_v(u32 r) +{ + return (r >> 4U) & 0xfU; +} +static inline u32 mc_boot_0_minor_revision_v(u32 r) +{ + return (r >> 0U) & 0xfU; +} +static inline u32 mc_intr_r(u32 i) +{ + return 0x00000100U + i*4U; +} +static inline u32 mc_intr_pfifo_pending_f(void) +{ + return 0x100U; +} +static inline u32 mc_intr_hub_pending_f(void) +{ + return 0x200U; +} +static inline u32 mc_intr_pgraph_pending_f(void) +{ + return 0x1000U; +} +static inline u32 mc_intr_pmu_pending_f(void) +{ + return 0x1000000U; +} +static inline u32 mc_intr_ltc_pending_f(void) +{ + return 0x2000000U; +} +static inline u32 mc_intr_priv_ring_pending_f(void) +{ + return 0x40000000U; +} +static inline u32 mc_intr_pbus_pending_f(void) +{ + return 0x10000000U; +} +static inline u32 mc_intr_nvlink_pending_f(void) +{ + return 0x400000U; +} +static inline u32 mc_intr_en_r(u32 i) +{ + return 0x00000140U + i*4U; +} +static inline u32 mc_intr_en_set_r(u32 i) +{ + return 0x00000160U + i*4U; +} +static inline u32 mc_intr_en_clear_r(u32 i) +{ + return 0x00000180U + i*4U; +} +static inline u32 mc_enable_r(void) +{ + return 0x00000200U; +} +static inline u32 mc_enable_xbar_enabled_f(void) +{ + return 0x4U; +} +static inline u32 mc_enable_l2_enabled_f(void) +{ + return 0x8U; +} +static inline u32 mc_enable_pmedia_s(void) +{ + return 1U; +} +static inline u32 mc_enable_pmedia_f(u32 v) +{ + return (v & 0x1U) << 4U; +} +static inline u32 mc_enable_pmedia_m(void) +{ + return 0x1U << 4U; +} +static inline u32 mc_enable_pmedia_v(u32 r) +{ + return (r >> 4U) & 0x1U; +} +static inline u32 mc_enable_ce0_m(void) +{ + return 0x1U << 6U; +} +static inline u32 mc_enable_pfifo_enabled_f(void) +{ + return 0x100U; +} +static inline u32 mc_enable_pgraph_enabled_f(void) +{ + return 0x1000U; +} +static inline u32 mc_enable_pwr_v(u32 r) +{ + return (r >> 13U) & 0x1U; +} +static inline u32 mc_enable_pwr_disabled_v(void) +{ + return 0x00000000U; +} +static inline u32 mc_enable_pwr_enabled_f(void) +{ + return 0x2000U; +} +static inline u32 mc_enable_pfb_enabled_f(void) +{ + return 0x100000U; +} +static inline u32 mc_enable_ce2_m(void) +{ + return 0x1U << 21U; +} +static inline u32 mc_enable_ce2_enabled_f(void) +{ + return 0x200000U; +} +static inline u32 mc_enable_blg_enabled_f(void) +{ + return 0x8000000U; +} +static inline u32 mc_enable_perfmon_enabled_f(void) +{ + return 0x10000000U; +} +static inline u32 mc_enable_hub_enabled_f(void) +{ + return 0x20000000U; +} +static inline u32 mc_enable_nvdec_disabled_v(void) +{ + return 0x00000000U; +} +static inline u32 mc_enable_nvdec_enabled_f(void) +{ + return 0x8000U; +} +static inline u32 mc_enable_nvlink_disabled_v(void) +{ + return 0x00000000U; +} +static inline u32 mc_enable_nvlink_disabled_f(void) +{ + return 0x0U; +} +static inline u32 mc_enable_nvlink_enabled_v(void) +{ + return 0x00000001U; +} +static inline u32 mc_enable_nvlink_enabled_f(void) +{ + return 0x2000000U; +} +static inline u32 mc_intr_ltc_r(void) +{ + return 0x000001c0U; +} +static inline u32 mc_enable_pb_r(void) +{ + return 0x00000204U; +} +static inline u32 mc_enable_pb_0_s(void) +{ + return 1U; +} +static inline u32 mc_enable_pb_0_f(u32 v) +{ + return (v & 0x1U) << 0U; +} +static inline u32 mc_enable_pb_0_m(void) +{ + return 0x1U << 0U; +} +static inline u32 mc_enable_pb_0_v(u32 r) +{ + return (r >> 0U) & 0x1U; +} +static inline u32 mc_enable_pb_0_enabled_v(void) +{ + return 0x00000001U; +} +static inline u32 mc_enable_pb_sel_f(u32 v, u32 i) +{ + return (v & 0x1U) << (0U + i*1U); +} +#endif -- cgit v1.2.2