/* * Copyright 2022 Advanced Micro Devices, Inc. * * 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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. * */ #include "amdgpu.h" #include "amdgpu_psp_ta.h" #if defined(CONFIG_DEBUG_FS) static ssize_t ta_if_load_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off); static ssize_t ta_if_unload_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off); static ssize_t ta_if_invoke_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off); static uint32_t get_bin_version(const uint8_t *bin) { … } static int prep_ta_mem_context(struct ta_mem_context *mem_context, uint8_t *shared_buf, uint32_t shared_buf_len) { … } static bool is_ta_type_valid(enum ta_type_id ta_type) { … } static const struct ta_funcs ras_ta_funcs = …; static void set_ta_context_funcs(struct psp_context *psp, enum ta_type_id ta_type, struct ta_context **pcontext) { … } static const struct file_operations ta_load_debugfs_fops = …; static const struct file_operations ta_unload_debugfs_fops = …; static const struct file_operations ta_invoke_debugfs_fops = …; /* * DOC: AMDGPU TA debugfs interfaces * * Three debugfs interfaces can be opened by a program to * load/invoke/unload TA, * * - /sys/kernel/debug/dri/<N>/ta_if/ta_load * - /sys/kernel/debug/dri/<N>/ta_if/ta_invoke * - /sys/kernel/debug/dri/<N>/ta_if/ta_unload * * How to use the interfaces in a program? * * A program needs to provide transmit buffer to the interfaces * and will receive buffer from the interfaces below, * * - For TA load debugfs interface: * Transmit buffer: * - TA type (4bytes) * - TA bin length (4bytes) * - TA bin * Receive buffer: * - TA ID (4bytes) * * - For TA invoke debugfs interface: * Transmit buffer: * - TA type (4bytes) * - TA ID (4bytes) * - TA CMD ID (4bytes) * - TA shard buf length * (4bytes, value not beyond TA shared memory size) * - TA shared buf * Receive buffer: * - TA shared buf * * - For TA unload debugfs interface: * Transmit buffer: * - TA type (4bytes) * - TA ID (4bytes) */ static ssize_t ta_if_load_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off) { … } static ssize_t ta_if_unload_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off) { … } static ssize_t ta_if_invoke_debugfs_write(struct file *fp, const char *buf, size_t len, loff_t *off) { … } void amdgpu_ta_if_debugfs_init(struct amdgpu_device *adev) { … } #else void amdgpu_ta_if_debugfs_init(struct amdgpu_device *adev) { } #endif