| /* |
| * |
| * (C) COPYRIGHT 2010-2016 ARM Limited. All rights reserved. |
| * |
| * This program is free software and is provided to you under the terms of the |
| * GNU General Public License version 2 as published by the Free Software |
| * Foundation, and any use by you of this program is subject to the terms |
| * of such GNU licence. |
| * |
| * A copy of the licence is included with the program, and can also be obtained |
| * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| * Boston, MA 02110-1301, USA. |
| * |
| */ |
| |
| |
| |
| #include <mali_kbase.h> |
| #include <mali_kbase_config_defaults.h> |
| #include <mali_kbase_uku.h> |
| #include <mali_midg_regmap.h> |
| #include <mali_kbase_gator.h> |
| #include <mali_kbase_mem_linux.h> |
| #ifdef CONFIG_MALI_DEVFREQ |
| #include <backend/gpu/mali_kbase_devfreq.h> |
| #endif /* CONFIG_MALI_DEVFREQ */ |
| #ifdef CONFIG_MALI_NO_MALI |
| #include "mali_kbase_model_linux.h" |
| #endif /* CONFIG_MALI_NO_MALI */ |
| #include "mali_kbase_mem_profile_debugfs_buf_size.h" |
| #include "mali_kbase_debug_mem_view.h" |
| #include "mali_kbase_mem.h" |
| #include "mali_kbase_mem_pool_debugfs.h" |
| #if !MALI_CUSTOMER_RELEASE |
| #include "mali_kbase_regs_dump_debugfs.h" |
| #endif /* !MALI_CUSTOMER_RELEASE */ |
| #include "mali_kbase_regs_history_debugfs.h" |
| #include <mali_kbase_hwaccess_backend.h> |
| #include <mali_kbase_hwaccess_jm.h> |
| #include <backend/gpu/mali_kbase_device_internal.h> |
| |
| #ifdef CONFIG_KDS |
| #include <linux/kds.h> |
| #include <linux/anon_inodes.h> |
| #include <linux/syscalls.h> |
| #endif /* CONFIG_KDS */ |
| |
| #include <linux/module.h> |
| #include <linux/init.h> |
| #include <linux/poll.h> |
| #include <linux/kernel.h> |
| #include <linux/errno.h> |
| #include <linux/of.h> |
| #include <linux/platform_device.h> |
| #include <linux/miscdevice.h> |
| #include <linux/list.h> |
| #include <linux/semaphore.h> |
| #include <linux/fs.h> |
| #include <linux/uaccess.h> |
| #include <linux/interrupt.h> |
| #include <linux/mm.h> |
| #include <linux/compat.h> /* is_compat_task */ |
| #include <linux/mman.h> |
| #include <linux/version.h> |
| #ifdef CONFIG_MALI_PLATFORM_DEVICETREE |
| #include <linux/pm_runtime.h> |
| #endif /* CONFIG_MALI_PLATFORM_DEVICETREE */ |
| #include <mali_kbase_hw.h> |
| #include <platform/mali_kbase_platform_common.h> |
| #ifdef CONFIG_MALI_PLATFORM_FAKE |
| #include <platform/mali_kbase_platform_fake.h> |
| #endif /*CONFIG_MALI_PLATFORM_FAKE */ |
| #ifdef CONFIG_SYNC |
| #include <mali_kbase_sync.h> |
| #endif /* CONFIG_SYNC */ |
| #ifdef CONFIG_PM_DEVFREQ |
| #include <linux/devfreq.h> |
| #endif /* CONFIG_PM_DEVFREQ */ |
| #include <linux/clk.h> |
| #include <linux/delay.h> |
| |
| #include <mali_kbase_config.h> |
| |
| |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 13, 0)) |
| #include <linux/pm_opp.h> |
| #else |
| #include <linux/opp.h> |
| #endif |
| |
| #include <mali_kbase_tlstream.h> |
| |
| #include <mali_kbase_as_fault_debugfs.h> |
| |
| /* GPU IRQ Tags */ |
| #define JOB_IRQ_TAG 0 |
| #define MMU_IRQ_TAG 1 |
| #define GPU_IRQ_TAG 2 |
| |
| #if MALI_UNIT_TEST |
| static struct kbase_exported_test_data shared_kernel_test_data; |
| EXPORT_SYMBOL(shared_kernel_test_data); |
| #endif /* MALI_UNIT_TEST */ |
| |
| static int kbase_dev_nr; |
| #ifdef CONFIG_MALI_MIDGARD_DVFS |
| extern int mali_pm_statue; |
| #endif |
| |
| static DEFINE_MUTEX(kbase_dev_list_lock); |
| static LIST_HEAD(kbase_dev_list); |
| |
| #define KERNEL_SIDE_DDK_VERSION_STRING "K:" MALI_RELEASE_NAME "(GPL)" |
| static inline void __compile_time_asserts(void) |
| { |
| CSTD_COMPILE_TIME_ASSERT(sizeof(KERNEL_SIDE_DDK_VERSION_STRING) <= KBASE_GET_VERSION_BUFFER_SIZE); |
| } |
| |
| static void kbase_create_timeline_objects(struct kbase_context *kctx) |
| { |
| struct kbase_device *kbdev = kctx->kbdev; |
| unsigned int lpu_id; |
| unsigned int as_nr; |
| struct kbasep_kctx_list_element *element; |
| |
| /* Create LPU objects. */ |
| for (lpu_id = 0; lpu_id < kbdev->gpu_props.num_job_slots; lpu_id++) { |
| u32 *lpu = |
| &kbdev->gpu_props.props.raw_props.js_features[lpu_id]; |
| kbase_tlstream_tl_summary_new_lpu(lpu, lpu_id, *lpu); |
| } |
| |
| /* Create Address Space objects. */ |
| for (as_nr = 0; as_nr < kbdev->nr_hw_address_spaces; as_nr++) |
| kbase_tlstream_tl_summary_new_as(&kbdev->as[as_nr], as_nr); |
| |
| /* Create GPU object and make it retain all LPUs and address spaces. */ |
| kbase_tlstream_tl_summary_new_gpu( |
| kbdev, |
| kbdev->gpu_props.props.raw_props.gpu_id, |
| kbdev->gpu_props.num_cores); |
| |
| for (lpu_id = 0; lpu_id < kbdev->gpu_props.num_job_slots; lpu_id++) { |
| void *lpu = |
| &kbdev->gpu_props.props.raw_props.js_features[lpu_id]; |
| kbase_tlstream_tl_summary_lifelink_lpu_gpu(lpu, kbdev); |
| } |
| for (as_nr = 0; as_nr < kbdev->nr_hw_address_spaces; as_nr++) |
| kbase_tlstream_tl_summary_lifelink_as_gpu( |
| &kbdev->as[as_nr], |
| kbdev); |
| |
| /* Create object for each known context. */ |
| mutex_lock(&kbdev->kctx_list_lock); |
| list_for_each_entry(element, &kbdev->kctx_list, link) { |
| kbase_tlstream_tl_summary_new_ctx( |
| element->kctx, |
| (u32)(element->kctx->id), |
| (u32)(element->kctx->tgid)); |
| } |
| /* Before releasing the lock, reset body stream buffers. |
| * This will prevent context creation message to be directed to both |
| * summary and body stream. */ |
| kbase_tlstream_reset_body_streams(); |
| mutex_unlock(&kbdev->kctx_list_lock); |
| /* Static object are placed into summary packet that needs to be |
| * transmitted first. Flush all streams to make it available to |
| * user space. */ |
| kbase_tlstream_flush_streams(); |
| } |
| |
| static void kbase_api_handshake(struct uku_version_check_args *version) |
| { |
| switch (version->major) { |
| #ifdef BASE_LEGACY_UK6_SUPPORT |
| case 6: |
| /* We are backwards compatible with version 6, |
| * so pretend to be the old version */ |
| version->major = 6; |
| version->minor = 1; |
| break; |
| #endif /* BASE_LEGACY_UK6_SUPPORT */ |
| #ifdef BASE_LEGACY_UK7_SUPPORT |
| case 7: |
| /* We are backwards compatible with version 7, |
| * so pretend to be the old version */ |
| version->major = 7; |
| version->minor = 1; |
| break; |
| #endif /* BASE_LEGACY_UK7_SUPPORT */ |
| #ifdef BASE_LEGACY_UK8_SUPPORT |
| case 8: |
| /* We are backwards compatible with version 8, |
| * so pretend to be the old version */ |
| version->major = 8; |
| version->minor = 4; |
| break; |
| #endif /* BASE_LEGACY_UK8_SUPPORT */ |
| #ifdef BASE_LEGACY_UK9_SUPPORT |
| case 9: |
| /* We are backwards compatible with version 9, |
| * so pretend to be the old version */ |
| version->major = 9; |
| version->minor = 0; |
| break; |
| #endif /* BASE_LEGACY_UK8_SUPPORT */ |
| case BASE_UK_VERSION_MAJOR: |
| /* set minor to be the lowest common */ |
| version->minor = min_t(int, BASE_UK_VERSION_MINOR, |
| (int)version->minor); |
| break; |
| default: |
| /* We return our actual version regardless if it |
| * matches the version returned by userspace - |
| * userspace can bail if it can't handle this |
| * version */ |
| version->major = BASE_UK_VERSION_MAJOR; |
| version->minor = BASE_UK_VERSION_MINOR; |
| break; |
| } |
| } |
| |
| /** |
| * enum mali_error - Mali error codes shared with userspace |
| * |
| * This is subset of those common Mali errors that can be returned to userspace. |
| * Values of matching user and kernel space enumerators MUST be the same. |
| * MALI_ERROR_NONE is guaranteed to be 0. |
| */ |
| enum mali_error { |
| MALI_ERROR_NONE = 0, |
| MALI_ERROR_OUT_OF_GPU_MEMORY, |
| MALI_ERROR_OUT_OF_MEMORY, |
| MALI_ERROR_FUNCTION_FAILED, |
| }; |
| |
| enum { |
| inited_mem = (1u << 0), |
| inited_js = (1u << 1), |
| inited_pm_runtime_init = (1u << 2), |
| #ifdef CONFIG_MALI_DEVFREQ |
| inited_devfreq = (1u << 3), |
| #endif /* CONFIG_MALI_DEVFREQ */ |
| inited_tlstream = (1u << 4), |
| inited_backend_early = (1u << 5), |
| inited_backend_late = (1u << 6), |
| inited_device = (1u << 7), |
| inited_vinstr = (1u << 8), |
| #ifndef CONFIG_MALI_PRFCNT_SET_SECONDARY |
| inited_ipa = (1u << 9), |
| #endif /* CONFIG_MALI_PRFCNT_SET_SECONDARY */ |
| inited_job_fault = (1u << 10), |
| inited_misc_register = (1u << 11), |
| inited_get_device = (1u << 12), |
| inited_sysfs_group = (1u << 13), |
| inited_dev_list = (1u << 14), |
| inited_debugfs = (1u << 15), |
| inited_gpu_device = (1u << 16), |
| inited_registers_map = (1u << 17), |
| inited_io_history = (1u << 18), |
| inited_power_control = (1u << 19), |
| inited_buslogger = (1u << 20) |
| }; |
| |
| |
| #ifdef CONFIG_MALI_DEBUG |
| #define INACTIVE_WAIT_MS (5000) |
| |
| void kbase_set_driver_inactive(struct kbase_device *kbdev, bool inactive) |
| { |
| kbdev->driver_inactive = inactive; |
| wake_up(&kbdev->driver_inactive_wait); |
| |
| /* Wait for any running IOCTLs to complete */ |
| if (inactive) |
| msleep(INACTIVE_WAIT_MS); |
| } |
| KBASE_EXPORT_TEST_API(kbase_set_driver_inactive); |
| #endif /* CONFIG_MALI_DEBUG */ |
| |
| static int kbase_dispatch(struct kbase_context *kctx, void * const args, u32 args_size) |
| { |
| struct kbase_device *kbdev; |
| union uk_header *ukh = args; |
| u32 id; |
| int ret = 0; |
| |
| KBASE_DEBUG_ASSERT(ukh != NULL); |
| |
| kbdev = kctx->kbdev; |
| id = ukh->id; |
| ukh->ret = MALI_ERROR_NONE; /* Be optimistic */ |
| |
| #ifdef CONFIG_MALI_DEBUG |
| wait_event(kbdev->driver_inactive_wait, |
| kbdev->driver_inactive == false); |
| #endif /* CONFIG_MALI_DEBUG */ |
| |
| if (UKP_FUNC_ID_CHECK_VERSION == id) { |
| struct uku_version_check_args *version_check; |
| |
| if (args_size != sizeof(struct uku_version_check_args)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| return 0; |
| } |
| version_check = (struct uku_version_check_args *)args; |
| kbase_api_handshake(version_check); |
| /* save the proposed version number for later use */ |
| kctx->api_version = KBASE_API_VERSION(version_check->major, |
| version_check->minor); |
| ukh->ret = MALI_ERROR_NONE; |
| return 0; |
| } |
| |
| /* block calls until version handshake */ |
| if (kctx->api_version == 0) |
| return -EINVAL; |
| |
| if (!atomic_read(&kctx->setup_complete)) { |
| struct kbase_uk_set_flags *kbase_set_flags; |
| |
| /* setup pending, try to signal that we'll do the setup, |
| * if setup was already in progress, err this call |
| */ |
| if (atomic_cmpxchg(&kctx->setup_in_progress, 0, 1) != 0) |
| return -EINVAL; |
| |
| /* if unexpected call, will stay stuck in setup mode |
| * (is it the only call we accept?) |
| */ |
| if (id != KBASE_FUNC_SET_FLAGS) |
| return -EINVAL; |
| |
| kbase_set_flags = (struct kbase_uk_set_flags *)args; |
| |
| /* if not matching the expected call, stay in setup mode */ |
| if (sizeof(*kbase_set_flags) != args_size) |
| goto bad_size; |
| |
| /* if bad flags, will stay stuck in setup mode */ |
| if (kbase_context_set_create_flags(kctx, |
| kbase_set_flags->create_flags) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| |
| atomic_set(&kctx->setup_complete, 1); |
| return 0; |
| } |
| |
| /* setup complete, perform normal operation */ |
| switch (id) { |
| case KBASE_FUNC_MEM_JIT_INIT: |
| { |
| struct kbase_uk_mem_jit_init *jit_init = args; |
| |
| if (sizeof(*jit_init) != args_size) |
| goto bad_size; |
| |
| if (kbase_region_tracker_init_jit(kctx, |
| jit_init->va_pages)) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| case KBASE_FUNC_MEM_ALLOC: |
| { |
| struct kbase_uk_mem_alloc *mem = args; |
| struct kbase_va_region *reg; |
| |
| if (sizeof(*mem) != args_size) |
| goto bad_size; |
| |
| #if defined(CONFIG_64BIT) |
| if (!kbase_ctx_flag(kctx, KCTX_COMPAT)) { |
| /* force SAME_VA if a 64-bit client */ |
| mem->flags |= BASE_MEM_SAME_VA; |
| } |
| #endif |
| |
| reg = kbase_mem_alloc(kctx, mem->va_pages, |
| mem->commit_pages, mem->extent, |
| &mem->flags, &mem->gpu_va, |
| &mem->va_alignment); |
| if (!reg) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| case KBASE_FUNC_MEM_IMPORT: { |
| struct kbase_uk_mem_import *mem_import = args; |
| void __user *phandle; |
| |
| if (sizeof(*mem_import) != args_size) |
| goto bad_size; |
| #ifdef CONFIG_COMPAT |
| if (kbase_ctx_flag(kctx, KCTX_COMPAT)) |
| phandle = compat_ptr(mem_import->phandle.compat_value); |
| else |
| #endif |
| phandle = mem_import->phandle.value; |
| |
| if (mem_import->type == BASE_MEM_IMPORT_TYPE_INVALID) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_mem_import(kctx, |
| (enum base_mem_import_type) |
| mem_import->type, |
| phandle, |
| &mem_import->gpu_va, |
| &mem_import->va_pages, |
| &mem_import->flags)) { |
| mem_import->type = BASE_MEM_IMPORT_TYPE_INVALID; |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| } |
| break; |
| } |
| case KBASE_FUNC_MEM_ALIAS: { |
| struct kbase_uk_mem_alias *alias = args; |
| struct base_mem_aliasing_info __user *user_ai; |
| struct base_mem_aliasing_info *ai; |
| |
| if (sizeof(*alias) != args_size) |
| goto bad_size; |
| |
| if (alias->nents > 2048) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| if (!alias->nents) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| #ifdef CONFIG_COMPAT |
| if (kbase_ctx_flag(kctx, KCTX_COMPAT)) |
| user_ai = compat_ptr(alias->ai.compat_value); |
| else |
| #endif |
| user_ai = alias->ai.value; |
| |
| ai = vmalloc(sizeof(*ai) * alias->nents); |
| |
| if (!ai) { |
| ukh->ret = MALI_ERROR_OUT_OF_MEMORY; |
| break; |
| } |
| |
| if (copy_from_user(ai, user_ai, |
| sizeof(*ai) * alias->nents)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| goto copy_failed; |
| } |
| |
| alias->gpu_va = kbase_mem_alias(kctx, &alias->flags, |
| alias->stride, |
| alias->nents, ai, |
| &alias->va_pages); |
| if (!alias->gpu_va) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| goto no_alias; |
| } |
| no_alias: |
| copy_failed: |
| vfree(ai); |
| break; |
| } |
| case KBASE_FUNC_MEM_COMMIT: |
| { |
| struct kbase_uk_mem_commit *commit = args; |
| |
| if (sizeof(*commit) != args_size) |
| goto bad_size; |
| |
| if (commit->gpu_addr & ~PAGE_MASK) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_MEM_COMMIT: commit->gpu_addr: passed parameter is invalid"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_mem_commit(kctx, commit->gpu_addr, |
| commit->pages, |
| (base_backing_threshold_status *) |
| &commit->result_subcode) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| |
| break; |
| } |
| |
| case KBASE_FUNC_MEM_QUERY: |
| { |
| struct kbase_uk_mem_query *query = args; |
| |
| if (sizeof(*query) != args_size) |
| goto bad_size; |
| |
| if (query->gpu_addr & ~PAGE_MASK) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_MEM_QUERY: query->gpu_addr: passed parameter is invalid"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| if (query->query != KBASE_MEM_QUERY_COMMIT_SIZE && |
| query->query != KBASE_MEM_QUERY_VA_SIZE && |
| query->query != KBASE_MEM_QUERY_FLAGS) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_MEM_QUERY: query->query = %lld unknown", (unsigned long long)query->query); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_mem_query(kctx, query->gpu_addr, |
| query->query, &query->value) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| else |
| ukh->ret = MALI_ERROR_NONE; |
| break; |
| } |
| break; |
| |
| case KBASE_FUNC_MEM_FLAGS_CHANGE: |
| { |
| struct kbase_uk_mem_flags_change *fc = args; |
| |
| if (sizeof(*fc) != args_size) |
| goto bad_size; |
| |
| if ((fc->gpu_va & ~PAGE_MASK) && (fc->gpu_va >= PAGE_SIZE)) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_MEM_FLAGS_CHANGE: mem->gpu_va: passed parameter is invalid"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_mem_flags_change(kctx, fc->gpu_va, |
| fc->flags, fc->mask) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| |
| break; |
| } |
| case KBASE_FUNC_MEM_FREE: |
| { |
| struct kbase_uk_mem_free *mem = args; |
| |
| if (sizeof(*mem) != args_size) |
| goto bad_size; |
| |
| if ((mem->gpu_addr & ~PAGE_MASK) && (mem->gpu_addr >= PAGE_SIZE)) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_MEM_FREE: mem->gpu_addr: passed parameter is invalid"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_mem_free(kctx, mem->gpu_addr) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| case KBASE_FUNC_JOB_SUBMIT: |
| { |
| struct kbase_uk_job_submit *job = args; |
| |
| if (sizeof(*job) != args_size) |
| goto bad_size; |
| |
| #ifdef BASE_LEGACY_UK6_SUPPORT |
| if (kbase_jd_submit(kctx, job, 0) != 0) |
| #else |
| if (kbase_jd_submit(kctx, job) != 0) |
| #endif /* BASE_LEGACY_UK6_SUPPORT */ |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| #ifdef BASE_LEGACY_UK6_SUPPORT |
| case KBASE_FUNC_JOB_SUBMIT_UK6: |
| { |
| struct kbase_uk_job_submit *job = args; |
| |
| if (sizeof(*job) != args_size) |
| goto bad_size; |
| |
| if (kbase_jd_submit(kctx, job, 1) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| #endif |
| |
| case KBASE_FUNC_SYNC: |
| { |
| struct kbase_uk_sync_now *sn = args; |
| |
| if (sizeof(*sn) != args_size) |
| goto bad_size; |
| |
| if (sn->sset.basep_sset.mem_handle.basep.handle & ~PAGE_MASK) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_SYNC: sn->sset.basep_sset.mem_handle: passed parameter is invalid"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| #ifndef CONFIG_MALI_COH_USER |
| if (kbase_sync_now(kctx, &sn->sset) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| #endif |
| break; |
| } |
| |
| case KBASE_FUNC_DISJOINT_QUERY: |
| { |
| struct kbase_uk_disjoint_query *dquery = args; |
| |
| if (sizeof(*dquery) != args_size) |
| goto bad_size; |
| |
| /* Get the disjointness counter value. */ |
| dquery->counter = kbase_disjoint_event_get(kctx->kbdev); |
| break; |
| } |
| |
| case KBASE_FUNC_POST_TERM: |
| { |
| kbase_event_close(kctx); |
| break; |
| } |
| |
| case KBASE_FUNC_HWCNT_SETUP: |
| { |
| struct kbase_uk_hwcnt_setup *setup = args; |
| |
| if (sizeof(*setup) != args_size) |
| goto bad_size; |
| |
| mutex_lock(&kctx->vinstr_cli_lock); |
| if (kbase_vinstr_legacy_hwc_setup(kbdev->vinstr_ctx, |
| &kctx->vinstr_cli, setup) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| mutex_unlock(&kctx->vinstr_cli_lock); |
| break; |
| } |
| |
| case KBASE_FUNC_HWCNT_DUMP: |
| { |
| /* args ignored */ |
| mutex_lock(&kctx->vinstr_cli_lock); |
| if (kbase_vinstr_hwc_dump(kctx->vinstr_cli, |
| BASE_HWCNT_READER_EVENT_MANUAL) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| mutex_unlock(&kctx->vinstr_cli_lock); |
| break; |
| } |
| |
| case KBASE_FUNC_HWCNT_CLEAR: |
| { |
| /* args ignored */ |
| mutex_lock(&kctx->vinstr_cli_lock); |
| if (kbase_vinstr_hwc_clear(kctx->vinstr_cli) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| mutex_unlock(&kctx->vinstr_cli_lock); |
| break; |
| } |
| |
| case KBASE_FUNC_HWCNT_READER_SETUP: |
| { |
| struct kbase_uk_hwcnt_reader_setup *setup = args; |
| |
| if (sizeof(*setup) != args_size) |
| goto bad_size; |
| |
| mutex_lock(&kctx->vinstr_cli_lock); |
| if (kbase_vinstr_hwcnt_reader_setup(kbdev->vinstr_ctx, |
| setup) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| mutex_unlock(&kctx->vinstr_cli_lock); |
| break; |
| } |
| |
| case KBASE_FUNC_GPU_PROPS_REG_DUMP: |
| { |
| struct kbase_uk_gpuprops *setup = args; |
| |
| if (sizeof(*setup) != args_size) |
| goto bad_size; |
| |
| if (kbase_gpuprops_uk_get_props(kctx, setup) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| case KBASE_FUNC_FIND_CPU_OFFSET: |
| { |
| struct kbase_uk_find_cpu_offset *find = args; |
| |
| if (sizeof(*find) != args_size) |
| goto bad_size; |
| |
| if (find->gpu_addr & ~PAGE_MASK) { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_FIND_CPU_OFFSET: find->gpu_addr: passed parameter is invalid"); |
| goto out_bad; |
| } |
| |
| if (find->size > SIZE_MAX || find->cpu_addr > ULONG_MAX) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| } else { |
| int err; |
| |
| err = kbasep_find_enclosing_cpu_mapping_offset( |
| kctx, |
| find->gpu_addr, |
| (uintptr_t) find->cpu_addr, |
| (size_t) find->size, |
| &find->offset); |
| |
| if (err) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| } |
| break; |
| } |
| case KBASE_FUNC_GET_VERSION: |
| { |
| struct kbase_uk_get_ddk_version *get_version = (struct kbase_uk_get_ddk_version *)args; |
| |
| if (sizeof(*get_version) != args_size) |
| goto bad_size; |
| |
| /* version buffer size check is made in compile time assert */ |
| memcpy(get_version->version_buffer, KERNEL_SIDE_DDK_VERSION_STRING, sizeof(KERNEL_SIDE_DDK_VERSION_STRING)); |
| get_version->version_string_size = sizeof(KERNEL_SIDE_DDK_VERSION_STRING); |
| break; |
| } |
| |
| case KBASE_FUNC_STREAM_CREATE: |
| { |
| #ifdef CONFIG_SYNC |
| struct kbase_uk_stream_create *screate = (struct kbase_uk_stream_create *)args; |
| |
| if (sizeof(*screate) != args_size) |
| goto bad_size; |
| |
| if (strnlen(screate->name, sizeof(screate->name)) >= sizeof(screate->name)) { |
| /* not NULL terminated */ |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| |
| if (kbase_stream_create(screate->name, &screate->fd) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| else |
| ukh->ret = MALI_ERROR_NONE; |
| #else /* CONFIG_SYNC */ |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| #endif /* CONFIG_SYNC */ |
| break; |
| } |
| case KBASE_FUNC_FENCE_VALIDATE: |
| { |
| #ifdef CONFIG_SYNC |
| struct kbase_uk_fence_validate *fence_validate = (struct kbase_uk_fence_validate *)args; |
| |
| if (sizeof(*fence_validate) != args_size) |
| goto bad_size; |
| |
| if (kbase_fence_validate(fence_validate->fd) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| else |
| ukh->ret = MALI_ERROR_NONE; |
| #endif /* CONFIG_SYNC */ |
| break; |
| } |
| |
| case KBASE_FUNC_SET_TEST_DATA: |
| { |
| #if MALI_UNIT_TEST |
| struct kbase_uk_set_test_data *set_data = args; |
| |
| shared_kernel_test_data = set_data->test_data; |
| shared_kernel_test_data.kctx.value = (void __user *)kctx; |
| shared_kernel_test_data.mm.value = (void __user *)current->mm; |
| ukh->ret = MALI_ERROR_NONE; |
| #endif /* MALI_UNIT_TEST */ |
| break; |
| } |
| |
| case KBASE_FUNC_INJECT_ERROR: |
| { |
| #ifdef CONFIG_MALI_ERROR_INJECT |
| unsigned long flags; |
| struct kbase_error_params params = ((struct kbase_uk_error_params *)args)->params; |
| |
| /*mutex lock */ |
| spin_lock_irqsave(&kbdev->reg_op_lock, flags); |
| if (job_atom_inject_error(¶ms) != 0) |
| ukh->ret = MALI_ERROR_OUT_OF_MEMORY; |
| else |
| ukh->ret = MALI_ERROR_NONE; |
| spin_unlock_irqrestore(&kbdev->reg_op_lock, flags); |
| /*mutex unlock */ |
| #endif /* CONFIG_MALI_ERROR_INJECT */ |
| break; |
| } |
| |
| case KBASE_FUNC_MODEL_CONTROL: |
| { |
| #ifdef CONFIG_MALI_NO_MALI |
| unsigned long flags; |
| struct kbase_model_control_params params = |
| ((struct kbase_uk_model_control_params *)args)->params; |
| |
| /*mutex lock */ |
| spin_lock_irqsave(&kbdev->reg_op_lock, flags); |
| if (gpu_model_control(kbdev->model, ¶ms) != 0) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| else |
| ukh->ret = MALI_ERROR_NONE; |
| spin_unlock_irqrestore(&kbdev->reg_op_lock, flags); |
| /*mutex unlock */ |
| #endif /* CONFIG_MALI_NO_MALI */ |
| break; |
| } |
| |
| #ifdef BASE_LEGACY_UK8_SUPPORT |
| case KBASE_FUNC_KEEP_GPU_POWERED: |
| { |
| dev_warn(kbdev->dev, "kbase_dispatch case KBASE_FUNC_KEEP_GPU_POWERED: function is deprecated and disabled\n"); |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| break; |
| } |
| #endif /* BASE_LEGACY_UK8_SUPPORT */ |
| |
| case KBASE_FUNC_GET_PROFILING_CONTROLS: |
| { |
| struct kbase_uk_profiling_controls *controls = |
| (struct kbase_uk_profiling_controls *)args; |
| u32 i; |
| |
| if (sizeof(*controls) != args_size) |
| goto bad_size; |
| |
| for (i = FBDUMP_CONTROL_MIN; i < FBDUMP_CONTROL_MAX; i++) |
| controls->profiling_controls[i] = kbase_get_profiling_control(kbdev, i); |
| |
| break; |
| } |
| |
| /* used only for testing purposes; these controls are to be set by gator through gator API */ |
| case KBASE_FUNC_SET_PROFILING_CONTROLS: |
| { |
| struct kbase_uk_profiling_controls *controls = |
| (struct kbase_uk_profiling_controls *)args; |
| u32 i; |
| |
| if (sizeof(*controls) != args_size) |
| goto bad_size; |
| |
| for (i = FBDUMP_CONTROL_MIN; i < FBDUMP_CONTROL_MAX; i++) |
| _mali_profiling_control(i, controls->profiling_controls[i]); |
| |
| break; |
| } |
| |
| case KBASE_FUNC_DEBUGFS_MEM_PROFILE_ADD: |
| { |
| struct kbase_uk_debugfs_mem_profile_add *add_data = |
| (struct kbase_uk_debugfs_mem_profile_add *)args; |
| char *buf; |
| char __user *user_buf; |
| |
| if (sizeof(*add_data) != args_size) |
| goto bad_size; |
| |
| if (add_data->len > KBASE_MEM_PROFILE_MAX_BUF_SIZE) { |
| dev_err(kbdev->dev, "buffer too big\n"); |
| goto out_bad; |
| } |
| |
| #ifdef CONFIG_COMPAT |
| if (kbase_ctx_flag(kctx, KCTX_COMPAT)) |
| user_buf = compat_ptr(add_data->buf.compat_value); |
| else |
| #endif |
| user_buf = add_data->buf.value; |
| |
| buf = kmalloc(add_data->len, GFP_KERNEL); |
| if (ZERO_OR_NULL_PTR(buf)) |
| goto out_bad; |
| |
| if (0 != copy_from_user(buf, user_buf, add_data->len)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| kfree(buf); |
| goto out_bad; |
| } |
| |
| if (kbasep_mem_profile_debugfs_insert(kctx, buf, |
| add_data->len)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| kfree(buf); |
| goto out_bad; |
| } |
| |
| break; |
| } |
| |
| #ifdef CONFIG_MALI_NO_MALI |
| case KBASE_FUNC_SET_PRFCNT_VALUES: |
| { |
| |
| struct kbase_uk_prfcnt_values *params = |
| ((struct kbase_uk_prfcnt_values *)args); |
| gpu_model_set_dummy_prfcnt_sample(params->data, |
| params->size); |
| |
| break; |
| } |
| #endif /* CONFIG_MALI_NO_MALI */ |
| #ifdef BASE_LEGACY_UK10_4_SUPPORT |
| case KBASE_FUNC_TLSTREAM_ACQUIRE_V10_4: |
| { |
| struct kbase_uk_tlstream_acquire_v10_4 *tlstream_acquire |
| = args; |
| |
| if (sizeof(*tlstream_acquire) != args_size) |
| goto bad_size; |
| |
| if (0 != kbase_tlstream_acquire( |
| kctx, |
| &tlstream_acquire->fd, 0)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| } else if (0 <= tlstream_acquire->fd) { |
| /* Summary stream was cleared during acquire. |
| * Create static timeline objects that will be |
| * read by client. */ |
| kbase_create_timeline_objects(kctx); |
| } |
| break; |
| } |
| #endif /* BASE_LEGACY_UK10_4_SUPPORT */ |
| case KBASE_FUNC_TLSTREAM_ACQUIRE: |
| { |
| struct kbase_uk_tlstream_acquire *tlstream_acquire = |
| args; |
| |
| if (sizeof(*tlstream_acquire) != args_size) |
| goto bad_size; |
| |
| if (tlstream_acquire->flags & ~BASE_TLSTREAM_FLAGS_MASK) |
| goto out_bad; |
| |
| if (0 != kbase_tlstream_acquire( |
| kctx, |
| &tlstream_acquire->fd, |
| tlstream_acquire->flags)) { |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| } else if (0 <= tlstream_acquire->fd) { |
| /* Summary stream was cleared during acquire. |
| * Create static timeline objects that will be |
| * read by client. */ |
| kbase_create_timeline_objects(kctx); |
| } |
| break; |
| } |
| case KBASE_FUNC_TLSTREAM_FLUSH: |
| { |
| struct kbase_uk_tlstream_flush *tlstream_flush = |
| args; |
| |
| if (sizeof(*tlstream_flush) != args_size) |
| goto bad_size; |
| |
| kbase_tlstream_flush_streams(); |
| break; |
| } |
| #if MALI_UNIT_TEST |
| case KBASE_FUNC_TLSTREAM_TEST: |
| { |
| struct kbase_uk_tlstream_test *tlstream_test = args; |
| |
| if (sizeof(*tlstream_test) != args_size) |
| goto bad_size; |
| |
| kbase_tlstream_test( |
| tlstream_test->tpw_count, |
| tlstream_test->msg_delay, |
| tlstream_test->msg_count, |
| tlstream_test->aux_msg); |
| break; |
| } |
| case KBASE_FUNC_TLSTREAM_STATS: |
| { |
| struct kbase_uk_tlstream_stats *tlstream_stats = args; |
| |
| if (sizeof(*tlstream_stats) != args_size) |
| goto bad_size; |
| |
| kbase_tlstream_stats( |
| &tlstream_stats->bytes_collected, |
| &tlstream_stats->bytes_generated); |
| break; |
| } |
| #endif /* MALI_UNIT_TEST */ |
| |
| case KBASE_FUNC_GET_CONTEXT_ID: |
| { |
| struct kbase_uk_context_id *info = args; |
| |
| info->id = kctx->id; |
| break; |
| } |
| |
| case KBASE_FUNC_SOFT_EVENT_UPDATE: |
| { |
| struct kbase_uk_soft_event_update *update = args; |
| |
| if (sizeof(*update) != args_size) |
| goto bad_size; |
| |
| if (((update->new_status != BASE_JD_SOFT_EVENT_SET) && |
| (update->new_status != BASE_JD_SOFT_EVENT_RESET)) || |
| (update->flags != 0)) |
| goto out_bad; |
| |
| if (kbase_soft_event_update(kctx, update->evt, |
| update->new_status)) |
| ukh->ret = MALI_ERROR_FUNCTION_FAILED; |
| |
| break; |
| } |
| |
| default: |
| dev_err(kbdev->dev, "unknown ioctl %u\n", id); |
| goto out_bad; |
| } |
| |
| return ret; |
| |
| bad_size: |
| dev_err(kbdev->dev, "Wrong syscall size (%d) for %08x\n", args_size, id); |
| out_bad: |
| return -EINVAL; |
| } |
| |
| static struct kbase_device *to_kbase_device(struct device *dev) |
| { |
| return dev_get_drvdata(dev); |
| } |
| |
| static int assign_irqs(struct platform_device *pdev) |
| { |
| struct kbase_device *kbdev = to_kbase_device(&pdev->dev); |
| int i; |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| /* 3 IRQ resources */ |
| for (i = 0; i < 3; i++) { |
| struct resource *irq_res; |
| int irqtag; |
| |
| irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, i); |
| if (!irq_res) { |
| dev_err(kbdev->dev, "No IRQ resource at index %d\n", i); |
| return -ENOENT; |
| } |
| |
| #ifdef CONFIG_OF |
| if (!strcmp(irq_res->name, "JOB")) { |
| irqtag = JOB_IRQ_TAG; |
| } else if (!strcmp(irq_res->name, "MMU")) { |
| irqtag = MMU_IRQ_TAG; |
| } else if (!strcmp(irq_res->name, "GPU")) { |
| irqtag = GPU_IRQ_TAG; |
| } else { |
| dev_err(&pdev->dev, "Invalid irq res name: '%s'\n", |
| irq_res->name); |
| return -EINVAL; |
| } |
| #else |
| irqtag = i; |
| #endif /* CONFIG_OF */ |
| kbdev->irqs[irqtag].irq = irq_res->start; |
| kbdev->irqs[irqtag].flags = irq_res->flags & IRQF_TRIGGER_MASK; |
| } |
| |
| return 0; |
| } |
| |
| /* |
| * API to acquire device list mutex and |
| * return pointer to the device list head |
| */ |
| const struct list_head *kbase_dev_list_get(void) |
| { |
| mutex_lock(&kbase_dev_list_lock); |
| return &kbase_dev_list; |
| } |
| KBASE_EXPORT_TEST_API(kbase_dev_list_get); |
| |
| /* API to release the device list mutex */ |
| void kbase_dev_list_put(const struct list_head *dev_list) |
| { |
| mutex_unlock(&kbase_dev_list_lock); |
| } |
| KBASE_EXPORT_TEST_API(kbase_dev_list_put); |
| |
| /* Find a particular kbase device (as specified by minor number), or find the "first" device if -1 is specified */ |
| struct kbase_device *kbase_find_device(int minor) |
| { |
| struct kbase_device *kbdev = NULL; |
| struct list_head *entry; |
| const struct list_head *dev_list = kbase_dev_list_get(); |
| |
| list_for_each(entry, dev_list) { |
| struct kbase_device *tmp; |
| |
| tmp = list_entry(entry, struct kbase_device, entry); |
| if (tmp->mdev.minor == minor || minor == -1) { |
| kbdev = tmp; |
| get_device(kbdev->dev); |
| break; |
| } |
| } |
| kbase_dev_list_put(dev_list); |
| |
| return kbdev; |
| } |
| EXPORT_SYMBOL(kbase_find_device); |
| |
| void kbase_release_device(struct kbase_device *kbdev) |
| { |
| put_device(kbdev->dev); |
| } |
| EXPORT_SYMBOL(kbase_release_device); |
| |
| #if KERNEL_VERSION(4, 6, 0) > LINUX_VERSION_CODE |
| /* |
| * Older versions, before v4.6, of the kernel doesn't have |
| * kstrtobool_from_user(). |
| */ |
| static int kstrtobool_from_user(const char __user *s, size_t count, bool *res) |
| { |
| char buf[32]; |
| |
| count = min(sizeof(buf), count); |
| |
| if (copy_from_user(buf, s, count)) |
| return -EFAULT; |
| buf[count] = '\0'; |
| |
| return strtobool(buf, res); |
| } |
| #endif |
| |
| static ssize_t write_ctx_infinite_cache(struct file *f, const char __user *ubuf, size_t size, loff_t *off) |
| { |
| struct kbase_context *kctx = f->private_data; |
| int err; |
| bool value; |
| |
| err = kstrtobool_from_user(ubuf, size, &value); |
| if (err) |
| return err; |
| |
| if (value) |
| kbase_ctx_flag_set(kctx, KCTX_INFINITE_CACHE); |
| else |
| kbase_ctx_flag_clear(kctx, KCTX_INFINITE_CACHE); |
| |
| return size; |
| } |
| |
| static ssize_t read_ctx_infinite_cache(struct file *f, char __user *ubuf, size_t size, loff_t *off) |
| { |
| struct kbase_context *kctx = f->private_data; |
| char buf[32]; |
| int count; |
| bool value; |
| |
| value = kbase_ctx_flag(kctx, KCTX_INFINITE_CACHE); |
| |
| count = scnprintf(buf, sizeof(buf), "%s\n", value ? "Y" : "N"); |
| |
| return simple_read_from_buffer(ubuf, size, off, buf, count); |
| } |
| |
| static const struct file_operations kbase_infinite_cache_fops = { |
| .open = simple_open, |
| .write = write_ctx_infinite_cache, |
| .read = read_ctx_infinite_cache, |
| }; |
| |
| static int kbase_open(struct inode *inode, struct file *filp) |
| { |
| struct kbase_device *kbdev = NULL; |
| struct kbase_context *kctx; |
| int ret = 0; |
| #ifdef CONFIG_DEBUG_FS |
| char kctx_name[64]; |
| #endif |
| |
| kbdev = kbase_find_device(iminor(inode)); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| kctx = kbase_create_context(kbdev, is_compat_task()); |
| if (!kctx) { |
| ret = -ENOMEM; |
| goto out; |
| } |
| |
| init_waitqueue_head(&kctx->event_queue); |
| filp->private_data = kctx; |
| kctx->filp = filp; |
| |
| if (kbdev->infinite_cache_active_default) |
| kbase_ctx_flag_set(kctx, KCTX_INFINITE_CACHE); |
| |
| #ifdef CONFIG_DEBUG_FS |
| snprintf(kctx_name, 64, "%d_%d", kctx->tgid, kctx->id); |
| |
| kctx->kctx_dentry = debugfs_create_dir(kctx_name, |
| kbdev->debugfs_ctx_directory); |
| |
| if (IS_ERR_OR_NULL(kctx->kctx_dentry)) { |
| ret = -ENOMEM; |
| goto out; |
| } |
| |
| #ifdef CONFIG_MALI_COH_USER |
| /* if cache is completely coherent at hardware level, then remove the |
| * infinite cache control support from debugfs. |
| */ |
| #else |
| debugfs_create_file("infinite_cache", 0644, kctx->kctx_dentry, |
| kctx, &kbase_infinite_cache_fops); |
| #endif /* CONFIG_MALI_COH_USER */ |
| |
| mutex_init(&kctx->mem_profile_lock); |
| |
| kbasep_jd_debugfs_ctx_init(kctx); |
| kbase_debug_mem_view_init(filp); |
| |
| kbase_debug_job_fault_context_init(kctx); |
| |
| kbase_mem_pool_debugfs_init(kctx->kctx_dentry, &kctx->mem_pool); |
| |
| kbase_jit_debugfs_init(kctx); |
| #endif /* CONFIG_DEBUG_FS */ |
| |
| dev_dbg(kbdev->dev, "created base context\n"); |
| |
| { |
| struct kbasep_kctx_list_element *element; |
| |
| element = kzalloc(sizeof(*element), GFP_KERNEL); |
| if (element) { |
| mutex_lock(&kbdev->kctx_list_lock); |
| element->kctx = kctx; |
| list_add(&element->link, &kbdev->kctx_list); |
| kbase_tlstream_tl_new_ctx( |
| element->kctx, |
| (u32)(element->kctx->id), |
| (u32)(element->kctx->tgid)); |
| mutex_unlock(&kbdev->kctx_list_lock); |
| } else { |
| /* we don't treat this as a fail - just warn about it */ |
| dev_warn(kbdev->dev, "couldn't add kctx to kctx_list\n"); |
| } |
| } |
| return 0; |
| |
| out: |
| kbase_release_device(kbdev); |
| return ret; |
| } |
| |
| static int kbase_release(struct inode *inode, struct file *filp) |
| { |
| struct kbase_context *kctx = filp->private_data; |
| struct kbase_device *kbdev = kctx->kbdev; |
| struct kbasep_kctx_list_element *element, *tmp; |
| bool found_element = false; |
| |
| kbase_tlstream_tl_del_ctx(kctx); |
| |
| #ifdef CONFIG_DEBUG_FS |
| debugfs_remove_recursive(kctx->kctx_dentry); |
| kbasep_mem_profile_debugfs_remove(kctx); |
| kbase_debug_job_fault_context_term(kctx); |
| #endif |
| |
| mutex_lock(&kbdev->kctx_list_lock); |
| list_for_each_entry_safe(element, tmp, &kbdev->kctx_list, link) { |
| if (element->kctx == kctx) { |
| list_del(&element->link); |
| kfree(element); |
| found_element = true; |
| } |
| } |
| mutex_unlock(&kbdev->kctx_list_lock); |
| if (!found_element) |
| dev_warn(kbdev->dev, "kctx not in kctx_list\n"); |
| |
| filp->private_data = NULL; |
| |
| mutex_lock(&kctx->vinstr_cli_lock); |
| /* If this client was performing hwcnt dumping and did not explicitly |
| * detach itself, remove it from the vinstr core now */ |
| if (kctx->vinstr_cli) { |
| struct kbase_uk_hwcnt_setup setup; |
| |
| setup.dump_buffer = 0llu; |
| kbase_vinstr_legacy_hwc_setup( |
| kbdev->vinstr_ctx, &kctx->vinstr_cli, &setup); |
| } |
| mutex_unlock(&kctx->vinstr_cli_lock); |
| |
| kbase_destroy_context(kctx); |
| |
| dev_dbg(kbdev->dev, "deleted base context\n"); |
| kbase_release_device(kbdev); |
| return 0; |
| } |
| |
| #define CALL_MAX_SIZE 536 |
| |
| static long kbase_ioctl(struct file *filp, unsigned int cmd, unsigned long arg) |
| { |
| u64 msg[(CALL_MAX_SIZE + 7) >> 3] = { 0xdeadbeefdeadbeefull }; /* alignment fixup */ |
| u32 size = _IOC_SIZE(cmd); |
| struct kbase_context *kctx = filp->private_data; |
| |
| if (size > CALL_MAX_SIZE) |
| return -ENOTTY; |
| |
| if (0 != copy_from_user(&msg, (void __user *)arg, size)) { |
| dev_err(kctx->kbdev->dev, "failed to copy ioctl argument into kernel space\n"); |
| return -EFAULT; |
| } |
| |
| if (kbase_dispatch(kctx, &msg, size) != 0) |
| return -EFAULT; |
| |
| if (0 != copy_to_user((void __user *)arg, &msg, size)) { |
| dev_err(kctx->kbdev->dev, "failed to copy results of UK call back to user space\n"); |
| return -EFAULT; |
| } |
| return 0; |
| } |
| |
| static ssize_t kbase_read(struct file *filp, char __user *buf, size_t count, loff_t *f_pos) |
| { |
| struct kbase_context *kctx = filp->private_data; |
| struct base_jd_event_v2 uevent; |
| int out_count = 0; |
| |
| if (count < sizeof(uevent)) |
| return -ENOBUFS; |
| |
| do { |
| while (kbase_event_dequeue(kctx, &uevent)) { |
| if (out_count > 0) |
| goto out; |
| |
| if (filp->f_flags & O_NONBLOCK) |
| return -EAGAIN; |
| |
| if (wait_event_interruptible(kctx->event_queue, |
| kbase_event_pending(kctx)) != 0) |
| return -ERESTARTSYS; |
| } |
| if (uevent.event_code == BASE_JD_EVENT_DRV_TERMINATED) { |
| if (out_count == 0) |
| return -EPIPE; |
| goto out; |
| } |
| |
| if (copy_to_user(buf, &uevent, sizeof(uevent)) != 0) |
| return -EFAULT; |
| |
| buf += sizeof(uevent); |
| out_count++; |
| count -= sizeof(uevent); |
| } while (count >= sizeof(uevent)); |
| |
| out: |
| return out_count * sizeof(uevent); |
| } |
| |
| static unsigned int kbase_poll(struct file *filp, poll_table *wait) |
| { |
| struct kbase_context *kctx = filp->private_data; |
| |
| poll_wait(filp, &kctx->event_queue, wait); |
| if (kbase_event_pending(kctx)) |
| return POLLIN | POLLRDNORM; |
| |
| return 0; |
| } |
| |
| void kbase_event_wakeup(struct kbase_context *kctx) |
| { |
| KBASE_DEBUG_ASSERT(kctx); |
| |
| wake_up_interruptible(&kctx->event_queue); |
| } |
| |
| KBASE_EXPORT_TEST_API(kbase_event_wakeup); |
| |
| static int kbase_check_flags(int flags) |
| { |
| /* Enforce that the driver keeps the O_CLOEXEC flag so that execve() always |
| * closes the file descriptor in a child process. |
| */ |
| if (0 == (flags & O_CLOEXEC)) |
| return -EINVAL; |
| |
| return 0; |
| } |
| |
| #ifdef CONFIG_64BIT |
| /* The following function is taken from the kernel and just |
| * renamed. As it's not exported to modules we must copy-paste it here. |
| */ |
| |
| static unsigned long kbase_unmapped_area_topdown(struct vm_unmapped_area_info |
| *info) |
| { |
| struct mm_struct *mm = current->mm; |
| struct vm_area_struct *vma; |
| unsigned long length, low_limit, high_limit, gap_start, gap_end; |
| |
| /* Adjust search length to account for worst case alignment overhead */ |
| length = info->length + info->align_mask; |
| if (length < info->length) |
| return -ENOMEM; |
| |
| /* |
| * Adjust search limits by the desired length. |
| * See implementation comment at top of unmapped_area(). |
| */ |
| gap_end = info->high_limit; |
| if (gap_end < length) |
| return -ENOMEM; |
| high_limit = gap_end - length; |
| |
| if (info->low_limit > high_limit) |
| return -ENOMEM; |
| low_limit = info->low_limit + length; |
| |
| /* Check highest gap, which does not precede any rbtree node */ |
| gap_start = mm->highest_vm_end; |
| if (gap_start <= high_limit) |
| goto found_highest; |
| |
| /* Check if rbtree root looks promising */ |
| if (RB_EMPTY_ROOT(&mm->mm_rb)) |
| return -ENOMEM; |
| vma = rb_entry(mm->mm_rb.rb_node, struct vm_area_struct, vm_rb); |
| if (vma->rb_subtree_gap < length) |
| return -ENOMEM; |
| |
| while (true) { |
| /* Visit right subtree if it looks promising */ |
| gap_start = vma->vm_prev ? vma->vm_prev->vm_end : 0; |
| if (gap_start <= high_limit && vma->vm_rb.rb_right) { |
| struct vm_area_struct *right = |
| rb_entry(vma->vm_rb.rb_right, |
| struct vm_area_struct, vm_rb); |
| if (right->rb_subtree_gap >= length) { |
| vma = right; |
| continue; |
| } |
| } |
| |
| check_current: |
| /* Check if current node has a suitable gap */ |
| gap_end = vma->vm_start; |
| if (gap_end < low_limit) |
| return -ENOMEM; |
| if (gap_start <= high_limit && gap_end - gap_start >= length) |
| goto found; |
| |
| /* Visit left subtree if it looks promising */ |
| if (vma->vm_rb.rb_left) { |
| struct vm_area_struct *left = |
| rb_entry(vma->vm_rb.rb_left, |
| struct vm_area_struct, vm_rb); |
| if (left->rb_subtree_gap >= length) { |
| vma = left; |
| continue; |
| } |
| } |
| |
| /* Go back up the rbtree to find next candidate node */ |
| while (true) { |
| struct rb_node *prev = &vma->vm_rb; |
| if (!rb_parent(prev)) |
| return -ENOMEM; |
| vma = rb_entry(rb_parent(prev), |
| struct vm_area_struct, vm_rb); |
| if (prev == vma->vm_rb.rb_right) { |
| gap_start = vma->vm_prev ? |
| vma->vm_prev->vm_end : 0; |
| goto check_current; |
| } |
| } |
| } |
| |
| found: |
| /* We found a suitable gap. Clip it with the original high_limit. */ |
| if (gap_end > info->high_limit) |
| gap_end = info->high_limit; |
| |
| found_highest: |
| /* Compute highest gap address at the desired alignment */ |
| gap_end -= info->length; |
| gap_end -= (gap_end - info->align_offset) & info->align_mask; |
| |
| VM_BUG_ON(gap_end < info->low_limit); |
| VM_BUG_ON(gap_end < gap_start); |
| return gap_end; |
| } |
| |
| |
| static unsigned long kbase_get_unmapped_area(struct file *filp, |
| const unsigned long addr, const unsigned long len, |
| const unsigned long pgoff, const unsigned long flags) |
| { |
| /* based on get_unmapped_area, but simplified slightly due to that some |
| * values are known in advance */ |
| struct kbase_context *kctx = filp->private_data; |
| struct mm_struct *mm = current->mm; |
| struct vm_unmapped_area_info info; |
| |
| /* err on fixed address */ |
| if ((flags & MAP_FIXED) || addr) |
| return -EINVAL; |
| |
| /* too big? */ |
| if (len > TASK_SIZE - SZ_2M) |
| return -ENOMEM; |
| |
| if (kbase_ctx_flag(kctx, KCTX_COMPAT)) |
| return current->mm->get_unmapped_area(filp, addr, len, pgoff, |
| flags); |
| |
| if (kbase_hw_has_feature(kctx->kbdev, BASE_HW_FEATURE_33BIT_VA)) { |
| info.high_limit = kctx->same_va_end << PAGE_SHIFT; |
| info.align_mask = 0; |
| info.align_offset = 0; |
| } else { |
| info.high_limit = min_t(unsigned long, mm->mmap_base, |
| (kctx->same_va_end << PAGE_SHIFT)); |
| if (len >= SZ_2M) { |
| info.align_offset = SZ_2M; |
| info.align_mask = SZ_2M - 1; |
| } else { |
| info.align_mask = 0; |
| info.align_offset = 0; |
| } |
| } |
| |
| info.flags = 0; |
| info.length = len; |
| info.low_limit = SZ_2M; |
| return kbase_unmapped_area_topdown(&info); |
| } |
| #endif |
| |
| static const struct file_operations kbase_fops = { |
| .owner = THIS_MODULE, |
| .open = kbase_open, |
| .release = kbase_release, |
| .read = kbase_read, |
| .poll = kbase_poll, |
| .unlocked_ioctl = kbase_ioctl, |
| .compat_ioctl = kbase_ioctl, |
| .mmap = kbase_mmap, |
| .check_flags = kbase_check_flags, |
| #ifdef CONFIG_64BIT |
| .get_unmapped_area = kbase_get_unmapped_area, |
| #endif |
| }; |
| |
| #ifndef CONFIG_MALI_NO_MALI |
| void kbase_os_reg_write(struct kbase_device *kbdev, u16 offset, u32 value) |
| { |
| writel(value, kbdev->reg + offset); |
| } |
| |
| u32 kbase_os_reg_read(struct kbase_device *kbdev, u16 offset) |
| { |
| return readl(kbdev->reg + offset); |
| } |
| #endif /* !CONFIG_MALI_NO_MALI */ |
| |
| /** Show callback for the @c power_policy sysfs file. |
| * |
| * This function is called to get the contents of the @c power_policy sysfs |
| * file. This is a list of the available policies with the currently active one |
| * surrounded by square brackets. |
| * |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_policy(struct device *dev, struct device_attribute *attr, char *const buf) |
| { |
| struct kbase_device *kbdev; |
| const struct kbase_pm_policy *current_policy; |
| const struct kbase_pm_policy *const *policy_list; |
| int policy_count; |
| int i; |
| ssize_t ret = 0; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| current_policy = kbase_pm_get_policy(kbdev); |
| |
| policy_count = kbase_pm_list_policies(&policy_list); |
| |
| for (i = 0; i < policy_count && ret < PAGE_SIZE; i++) { |
| if (policy_list[i] == current_policy) |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "[%s] ", policy_list[i]->name); |
| else |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s ", policy_list[i]->name); |
| } |
| |
| if (ret < PAGE_SIZE - 1) { |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n"); |
| } else { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /** Store callback for the @c power_policy sysfs file. |
| * |
| * This function is called when the @c power_policy sysfs file is written to. |
| * It matches the requested policy against the available policies and if a |
| * matching policy is found calls @ref kbase_pm_set_policy to change the |
| * policy. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_policy(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| const struct kbase_pm_policy *new_policy = NULL; |
| const struct kbase_pm_policy *const *policy_list; |
| int policy_count; |
| int i; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| policy_count = kbase_pm_list_policies(&policy_list); |
| |
| for (i = 0; i < policy_count; i++) { |
| if (sysfs_streq(policy_list[i]->name, buf)) { |
| new_policy = policy_list[i]; |
| break; |
| } |
| } |
| |
| if (!new_policy) { |
| dev_err(dev, "power_policy: policy not found\n"); |
| return -EINVAL; |
| } |
| |
| kbase_pm_set_policy(kbdev, new_policy); |
| |
| return count; |
| } |
| |
| /** The sysfs file @c power_policy. |
| * |
| * This is used for obtaining information about the available policies, |
| * determining which policy is currently active, and changing the active |
| * policy. |
| */ |
| static DEVICE_ATTR(power_policy, S_IRUGO | S_IWUSR, show_policy, set_policy); |
| |
| /** Show callback for the @c core_availability_policy sysfs file. |
| * |
| * This function is called to get the contents of the @c core_availability_policy |
| * sysfs file. This is a list of the available policies with the currently |
| * active one surrounded by square brackets. |
| * |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_ca_policy(struct device *dev, struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| const struct kbase_pm_ca_policy *current_policy; |
| const struct kbase_pm_ca_policy *const *policy_list; |
| int policy_count; |
| int i; |
| ssize_t ret = 0; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| current_policy = kbase_pm_ca_get_policy(kbdev); |
| |
| policy_count = kbase_pm_ca_list_policies(&policy_list); |
| |
| for (i = 0; i < policy_count && ret < PAGE_SIZE; i++) { |
| if (policy_list[i] == current_policy) |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "[%s] ", policy_list[i]->name); |
| else |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s ", policy_list[i]->name); |
| } |
| |
| if (ret < PAGE_SIZE - 1) { |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "\n"); |
| } else { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /** Store callback for the @c core_availability_policy sysfs file. |
| * |
| * This function is called when the @c core_availability_policy sysfs file is |
| * written to. It matches the requested policy against the available policies |
| * and if a matching policy is found calls @ref kbase_pm_set_policy to change |
| * the policy. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_ca_policy(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| const struct kbase_pm_ca_policy *new_policy = NULL; |
| const struct kbase_pm_ca_policy *const *policy_list; |
| int policy_count; |
| int i; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| policy_count = kbase_pm_ca_list_policies(&policy_list); |
| |
| for (i = 0; i < policy_count; i++) { |
| if (sysfs_streq(policy_list[i]->name, buf)) { |
| new_policy = policy_list[i]; |
| break; |
| } |
| } |
| |
| if (!new_policy) { |
| dev_err(dev, "core_availability_policy: policy not found\n"); |
| return -EINVAL; |
| } |
| |
| kbase_pm_ca_set_policy(kbdev, new_policy); |
| |
| return count; |
| } |
| |
| /** The sysfs file @c core_availability_policy |
| * |
| * This is used for obtaining information about the available policies, |
| * determining which policy is currently active, and changing the active |
| * policy. |
| */ |
| static DEVICE_ATTR(core_availability_policy, S_IRUGO | S_IWUSR, show_ca_policy, set_ca_policy); |
| |
| /** Show callback for the @c core_mask sysfs file. |
| * |
| * This function is called to get the contents of the @c core_mask sysfs |
| * file. |
| * |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_core_mask(struct device *dev, struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret = 0; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
| "Current core mask (JS0) : 0x%llX\n", |
| kbdev->pm.debug_core_mask[0]); |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
| "Current core mask (JS1) : 0x%llX\n", |
| kbdev->pm.debug_core_mask[1]); |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
| "Current core mask (JS2) : 0x%llX\n", |
| kbdev->pm.debug_core_mask[2]); |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, |
| "Available core mask : 0x%llX\n", |
| kbdev->gpu_props.props.raw_props.shader_present); |
| |
| return ret; |
| } |
| |
| /** Store callback for the @c core_mask sysfs file. |
| * |
| * This function is called when the @c core_mask sysfs file is written to. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_core_mask(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| u64 new_core_mask[3]; |
| int items; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| items = sscanf(buf, "%llx %llx %llx", |
| &new_core_mask[0], &new_core_mask[1], |
| &new_core_mask[2]); |
| |
| if (items == 1) |
| new_core_mask[1] = new_core_mask[2] = new_core_mask[0]; |
| |
| if (items == 1 || items == 3) { |
| u64 shader_present = |
| kbdev->gpu_props.props.raw_props.shader_present; |
| u64 group0_core_mask = |
| kbdev->gpu_props.props.coherency_info.group[0]. |
| core_mask; |
| |
| if ((new_core_mask[0] & shader_present) != new_core_mask[0] || |
| !(new_core_mask[0] & group0_core_mask) || |
| (new_core_mask[1] & shader_present) != |
| new_core_mask[1] || |
| !(new_core_mask[1] & group0_core_mask) || |
| (new_core_mask[2] & shader_present) != |
| new_core_mask[2] || |
| !(new_core_mask[2] & group0_core_mask)) { |
| dev_err(dev, "power_policy: invalid core specification\n"); |
| return -EINVAL; |
| } |
| |
| if (kbdev->pm.debug_core_mask[0] != new_core_mask[0] || |
| kbdev->pm.debug_core_mask[1] != |
| new_core_mask[1] || |
| kbdev->pm.debug_core_mask[2] != |
| new_core_mask[2]) { |
| unsigned long flags; |
| |
| spin_lock_irqsave(&kbdev->hwaccess_lock, flags); |
| |
| kbase_pm_set_debug_core_mask(kbdev, new_core_mask[0], |
| new_core_mask[1], new_core_mask[2]); |
| |
| spin_unlock_irqrestore(&kbdev->hwaccess_lock, flags); |
| } |
| |
| return count; |
| } |
| |
| dev_err(kbdev->dev, "Couldn't process set_core_mask write operation.\n" |
| "Use format <core_mask>\n" |
| "or <core_mask_js0> <core_mask_js1> <core_mask_js2>\n"); |
| return -EINVAL; |
| } |
| |
| /** The sysfs file @c core_mask. |
| * |
| * This is used to restrict shader core availability for debugging purposes. |
| * Reading it will show the current core mask and the mask of cores available. |
| * Writing to it will set the current core mask. |
| */ |
| static DEVICE_ATTR(core_mask, S_IRUGO | S_IWUSR, show_core_mask, set_core_mask); |
| |
| /** |
| * set_soft_job_timeout() - Store callback for the soft_job_timeout sysfs |
| * file. |
| * |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The value written to the sysfs file. |
| * @count: The number of bytes written to the sysfs file. |
| * |
| * This allows setting the timeout for software jobs. Waiting soft event wait |
| * jobs will be cancelled after this period expires, while soft fence wait jobs |
| * will print debug information if the fence debug feature is enabled. |
| * |
| * This is expressed in milliseconds. |
| * |
| * Return: count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_soft_job_timeout(struct device *dev, |
| struct device_attribute *attr, |
| const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int soft_job_timeout_ms; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| if ((kstrtoint(buf, 0, &soft_job_timeout_ms) != 0) || |
| (soft_job_timeout_ms <= 0)) |
| return -EINVAL; |
| |
| atomic_set(&kbdev->js_data.soft_job_timeout_ms, |
| soft_job_timeout_ms); |
| |
| return count; |
| } |
| |
| /** |
| * show_soft_job_timeout() - Show callback for the soft_job_timeout sysfs |
| * file. |
| * |
| * This will return the timeout for the software jobs. |
| * |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer for the sysfs file contents. |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t show_soft_job_timeout(struct device *dev, |
| struct device_attribute *attr, |
| char * const buf) |
| { |
| struct kbase_device *kbdev; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| return scnprintf(buf, PAGE_SIZE, "%i\n", |
| atomic_read(&kbdev->js_data.soft_job_timeout_ms)); |
| } |
| |
| static DEVICE_ATTR(soft_job_timeout, S_IRUGO | S_IWUSR, |
| show_soft_job_timeout, set_soft_job_timeout); |
| |
| static u32 timeout_ms_to_ticks(struct kbase_device *kbdev, long timeout_ms, |
| int default_ticks, u32 old_ticks) |
| { |
| if (timeout_ms > 0) { |
| u64 ticks = timeout_ms * 1000000ULL; |
| do_div(ticks, kbdev->js_data.scheduling_period_ns); |
| if (!ticks) |
| return 1; |
| return ticks; |
| } else if (timeout_ms < 0) { |
| return default_ticks; |
| } else { |
| return old_ticks; |
| } |
| } |
| |
| /** Store callback for the @c js_timeouts sysfs file. |
| * |
| * This function is called to get the contents of the @c js_timeouts sysfs |
| * file. This file contains five values separated by whitespace. The values |
| * are basically the same as JS_SOFT_STOP_TICKS, JS_HARD_STOP_TICKS_SS, |
| * JS_HARD_STOP_TICKS_DUMPING, JS_RESET_TICKS_SS, JS_RESET_TICKS_DUMPING |
| * configuration values (in that order), with the difference that the js_timeout |
| * values are expressed in MILLISECONDS. |
| * |
| * The js_timeouts sysfile file allows the current values in |
| * use by the job scheduler to get override. Note that a value needs to |
| * be other than 0 for it to override the current job scheduler value. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_js_timeouts(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int items; |
| long js_soft_stop_ms; |
| long js_soft_stop_ms_cl; |
| long js_hard_stop_ms_ss; |
| long js_hard_stop_ms_cl; |
| long js_hard_stop_ms_dumping; |
| long js_reset_ms_ss; |
| long js_reset_ms_cl; |
| long js_reset_ms_dumping; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| items = sscanf(buf, "%ld %ld %ld %ld %ld %ld %ld %ld", |
| &js_soft_stop_ms, &js_soft_stop_ms_cl, |
| &js_hard_stop_ms_ss, &js_hard_stop_ms_cl, |
| &js_hard_stop_ms_dumping, &js_reset_ms_ss, |
| &js_reset_ms_cl, &js_reset_ms_dumping); |
| |
| if (items == 8) { |
| struct kbasep_js_device_data *js_data = &kbdev->js_data; |
| unsigned long flags; |
| |
| spin_lock_irqsave(&kbdev->hwaccess_lock, flags); |
| |
| #define UPDATE_TIMEOUT(ticks_name, ms_name, default) do {\ |
| js_data->ticks_name = timeout_ms_to_ticks(kbdev, ms_name, \ |
| default, js_data->ticks_name); \ |
| dev_dbg(kbdev->dev, "Overriding " #ticks_name \ |
| " with %lu ticks (%lu ms)\n", \ |
| (unsigned long)js_data->ticks_name, \ |
| ms_name); \ |
| } while (0) |
| |
| UPDATE_TIMEOUT(soft_stop_ticks, js_soft_stop_ms, |
| DEFAULT_JS_SOFT_STOP_TICKS); |
| UPDATE_TIMEOUT(soft_stop_ticks_cl, js_soft_stop_ms_cl, |
| DEFAULT_JS_SOFT_STOP_TICKS_CL); |
| UPDATE_TIMEOUT(hard_stop_ticks_ss, js_hard_stop_ms_ss, |
| kbase_hw_has_issue(kbdev, BASE_HW_ISSUE_8408) ? |
| DEFAULT_JS_HARD_STOP_TICKS_SS_8408 : |
| DEFAULT_JS_HARD_STOP_TICKS_SS); |
| UPDATE_TIMEOUT(hard_stop_ticks_cl, js_hard_stop_ms_cl, |
| DEFAULT_JS_HARD_STOP_TICKS_CL); |
| UPDATE_TIMEOUT(hard_stop_ticks_dumping, |
| js_hard_stop_ms_dumping, |
| DEFAULT_JS_HARD_STOP_TICKS_DUMPING); |
| UPDATE_TIMEOUT(gpu_reset_ticks_ss, js_reset_ms_ss, |
| kbase_hw_has_issue(kbdev, BASE_HW_ISSUE_8408) ? |
| DEFAULT_JS_RESET_TICKS_SS_8408 : |
| DEFAULT_JS_RESET_TICKS_SS); |
| UPDATE_TIMEOUT(gpu_reset_ticks_cl, js_reset_ms_cl, |
| DEFAULT_JS_RESET_TICKS_CL); |
| UPDATE_TIMEOUT(gpu_reset_ticks_dumping, js_reset_ms_dumping, |
| DEFAULT_JS_RESET_TICKS_DUMPING); |
| |
| kbase_js_set_timeouts(kbdev); |
| |
| spin_unlock_irqrestore(&kbdev->hwaccess_lock, flags); |
| |
| return count; |
| } |
| |
| dev_err(kbdev->dev, "Couldn't process js_timeouts write operation.\n" |
| "Use format <soft_stop_ms> <soft_stop_ms_cl> <hard_stop_ms_ss> <hard_stop_ms_cl> <hard_stop_ms_dumping> <reset_ms_ss> <reset_ms_cl> <reset_ms_dumping>\n" |
| "Write 0 for no change, -1 to restore default timeout\n"); |
| return -EINVAL; |
| } |
| |
| static unsigned long get_js_timeout_in_ms( |
| u32 scheduling_period_ns, |
| u32 ticks) |
| { |
| u64 ms = (u64)ticks * scheduling_period_ns; |
| |
| do_div(ms, 1000000UL); |
| return ms; |
| } |
| |
| /** Show callback for the @c js_timeouts sysfs file. |
| * |
| * This function is called to get the contents of the @c js_timeouts sysfs |
| * file. It returns the last set values written to the js_timeouts sysfs file. |
| * If the file didn't get written yet, the values will be current setting in |
| * use. |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_js_timeouts(struct device *dev, struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| unsigned long js_soft_stop_ms; |
| unsigned long js_soft_stop_ms_cl; |
| unsigned long js_hard_stop_ms_ss; |
| unsigned long js_hard_stop_ms_cl; |
| unsigned long js_hard_stop_ms_dumping; |
| unsigned long js_reset_ms_ss; |
| unsigned long js_reset_ms_cl; |
| unsigned long js_reset_ms_dumping; |
| u32 scheduling_period_ns; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| scheduling_period_ns = kbdev->js_data.scheduling_period_ns; |
| |
| #define GET_TIMEOUT(name) get_js_timeout_in_ms(\ |
| scheduling_period_ns, \ |
| kbdev->js_data.name) |
| |
| js_soft_stop_ms = GET_TIMEOUT(soft_stop_ticks); |
| js_soft_stop_ms_cl = GET_TIMEOUT(soft_stop_ticks_cl); |
| js_hard_stop_ms_ss = GET_TIMEOUT(hard_stop_ticks_ss); |
| js_hard_stop_ms_cl = GET_TIMEOUT(hard_stop_ticks_cl); |
| js_hard_stop_ms_dumping = GET_TIMEOUT(hard_stop_ticks_dumping); |
| js_reset_ms_ss = GET_TIMEOUT(gpu_reset_ticks_ss); |
| js_reset_ms_cl = GET_TIMEOUT(gpu_reset_ticks_cl); |
| js_reset_ms_dumping = GET_TIMEOUT(gpu_reset_ticks_dumping); |
| |
| #undef GET_TIMEOUT |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%lu %lu %lu %lu %lu %lu %lu %lu\n", |
| js_soft_stop_ms, js_soft_stop_ms_cl, |
| js_hard_stop_ms_ss, js_hard_stop_ms_cl, |
| js_hard_stop_ms_dumping, js_reset_ms_ss, |
| js_reset_ms_cl, js_reset_ms_dumping); |
| |
| if (ret >= PAGE_SIZE) { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /** The sysfs file @c js_timeouts. |
| * |
| * This is used to override the current job scheduler values for |
| * JS_STOP_STOP_TICKS_SS |
| * JS_STOP_STOP_TICKS_CL |
| * JS_HARD_STOP_TICKS_SS |
| * JS_HARD_STOP_TICKS_CL |
| * JS_HARD_STOP_TICKS_DUMPING |
| * JS_RESET_TICKS_SS |
| * JS_RESET_TICKS_CL |
| * JS_RESET_TICKS_DUMPING. |
| */ |
| static DEVICE_ATTR(js_timeouts, S_IRUGO | S_IWUSR, show_js_timeouts, set_js_timeouts); |
| |
| static u32 get_new_js_timeout( |
| u32 old_period, |
| u32 old_ticks, |
| u32 new_scheduling_period_ns) |
| { |
| u64 ticks = (u64)old_period * (u64)old_ticks; |
| do_div(ticks, new_scheduling_period_ns); |
| return ticks?ticks:1; |
| } |
| |
| /** |
| * set_js_scheduling_period - Store callback for the js_scheduling_period sysfs |
| * file |
| * @dev: The device the sysfs file is for |
| * @attr: The attributes of the sysfs file |
| * @buf: The value written to the sysfs file |
| * @count: The number of bytes written to the sysfs file |
| * |
| * This function is called when the js_scheduling_period sysfs file is written |
| * to. It checks the data written, and if valid updates the js_scheduling_period |
| * value |
| * |
| * Return: @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_js_scheduling_period(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int ret; |
| unsigned int js_scheduling_period; |
| u32 new_scheduling_period_ns; |
| u32 old_period; |
| struct kbasep_js_device_data *js_data; |
| unsigned long flags; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| js_data = &kbdev->js_data; |
| |
| ret = kstrtouint(buf, 0, &js_scheduling_period); |
| if (ret || !js_scheduling_period) { |
| dev_err(kbdev->dev, "Couldn't process js_scheduling_period write operation.\n" |
| "Use format <js_scheduling_period_ms>\n"); |
| return -EINVAL; |
| } |
| |
| new_scheduling_period_ns = js_scheduling_period * 1000000; |
| |
| /* Update scheduling timeouts */ |
| mutex_lock(&js_data->runpool_mutex); |
| spin_lock_irqsave(&kbdev->hwaccess_lock, flags); |
| |
| /* If no contexts have been scheduled since js_timeouts was last written |
| * to, the new timeouts might not have been latched yet. So check if an |
| * update is pending and use the new values if necessary. */ |
| |
| /* Use previous 'new' scheduling period as a base if present. */ |
| old_period = js_data->scheduling_period_ns; |
| |
| #define SET_TIMEOUT(name) \ |
| (js_data->name = get_new_js_timeout(\ |
| old_period, \ |
| kbdev->js_data.name, \ |
| new_scheduling_period_ns)) |
| |
| SET_TIMEOUT(soft_stop_ticks); |
| SET_TIMEOUT(soft_stop_ticks_cl); |
| SET_TIMEOUT(hard_stop_ticks_ss); |
| SET_TIMEOUT(hard_stop_ticks_cl); |
| SET_TIMEOUT(hard_stop_ticks_dumping); |
| SET_TIMEOUT(gpu_reset_ticks_ss); |
| SET_TIMEOUT(gpu_reset_ticks_cl); |
| SET_TIMEOUT(gpu_reset_ticks_dumping); |
| |
| #undef SET_TIMEOUT |
| |
| js_data->scheduling_period_ns = new_scheduling_period_ns; |
| |
| kbase_js_set_timeouts(kbdev); |
| |
| spin_unlock_irqrestore(&kbdev->hwaccess_lock, flags); |
| mutex_unlock(&js_data->runpool_mutex); |
| |
| dev_dbg(kbdev->dev, "JS scheduling period: %dms\n", |
| js_scheduling_period); |
| |
| return count; |
| } |
| |
| /** |
| * show_js_scheduling_period - Show callback for the js_scheduling_period sysfs |
| * entry. |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer to receive the GPU information. |
| * |
| * This function is called to get the current period used for the JS scheduling |
| * period. |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t show_js_scheduling_period(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| u32 period; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| period = kbdev->js_data.scheduling_period_ns; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%d\n", |
| period / 1000000); |
| |
| return ret; |
| } |
| |
| static DEVICE_ATTR(js_scheduling_period, S_IRUGO | S_IWUSR, |
| show_js_scheduling_period, set_js_scheduling_period); |
| |
| #if !MALI_CUSTOMER_RELEASE |
| /** Store callback for the @c force_replay sysfs file. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_force_replay(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| if (!strncmp("limit=", buf, MIN(6, count))) { |
| int force_replay_limit; |
| int items = sscanf(buf, "limit=%u", &force_replay_limit); |
| |
| if (items == 1) { |
| kbdev->force_replay_random = false; |
| kbdev->force_replay_limit = force_replay_limit; |
| kbdev->force_replay_count = 0; |
| |
| return count; |
| } |
| } else if (!strncmp("random_limit", buf, MIN(12, count))) { |
| kbdev->force_replay_random = true; |
| kbdev->force_replay_count = 0; |
| |
| return count; |
| } else if (!strncmp("norandom_limit", buf, MIN(14, count))) { |
| kbdev->force_replay_random = false; |
| kbdev->force_replay_limit = KBASEP_FORCE_REPLAY_DISABLED; |
| kbdev->force_replay_count = 0; |
| |
| return count; |
| } else if (!strncmp("core_req=", buf, MIN(9, count))) { |
| unsigned int core_req; |
| int items = sscanf(buf, "core_req=%x", &core_req); |
| |
| if (items == 1) { |
| kbdev->force_replay_core_req = (base_jd_core_req)core_req; |
| |
| return count; |
| } |
| } |
| dev_err(kbdev->dev, "Couldn't process force_replay write operation.\nPossible settings: limit=<limit>, random_limit, norandom_limit, core_req=<core_req>\n"); |
| return -EINVAL; |
| } |
| |
| /** Show callback for the @c force_replay sysfs file. |
| * |
| * This function is called to get the contents of the @c force_replay sysfs |
| * file. It returns the last set value written to the force_replay sysfs file. |
| * If the file didn't get written yet, the values will be 0. |
| * |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_force_replay(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| if (kbdev->force_replay_random) |
| ret = scnprintf(buf, PAGE_SIZE, |
| "limit=0\nrandom_limit\ncore_req=%x\n", |
| kbdev->force_replay_core_req); |
| else |
| ret = scnprintf(buf, PAGE_SIZE, |
| "limit=%u\nnorandom_limit\ncore_req=%x\n", |
| kbdev->force_replay_limit, |
| kbdev->force_replay_core_req); |
| |
| if (ret >= PAGE_SIZE) { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /** The sysfs file @c force_replay. |
| * |
| */ |
| static DEVICE_ATTR(force_replay, S_IRUGO | S_IWUSR, show_force_replay, |
| set_force_replay); |
| #endif /* !MALI_CUSTOMER_RELEASE */ |
| |
| #ifdef CONFIG_MALI_DEBUG |
| static ssize_t set_js_softstop_always(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int ret; |
| int softstop_always; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = kstrtoint(buf, 0, &softstop_always); |
| if (ret || ((softstop_always != 0) && (softstop_always != 1))) { |
| dev_err(kbdev->dev, "Couldn't process js_softstop_always write operation.\n" |
| "Use format <soft_stop_always>\n"); |
| return -EINVAL; |
| } |
| |
| kbdev->js_data.softstop_always = (bool) softstop_always; |
| dev_dbg(kbdev->dev, "Support for softstop on a single context: %s\n", |
| (kbdev->js_data.softstop_always) ? |
| "Enabled" : "Disabled"); |
| return count; |
| } |
| |
| static ssize_t show_js_softstop_always(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%d\n", kbdev->js_data.softstop_always); |
| |
| if (ret >= PAGE_SIZE) { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /* |
| * By default, soft-stops are disabled when only a single context is present. The ability to |
| * enable soft-stop when only a single context is present can be used for debug and unit-testing purposes. |
| * (see CL t6xx_stress_1 unit-test as an example whereby this feature is used.) |
| */ |
| static DEVICE_ATTR(js_softstop_always, S_IRUGO | S_IWUSR, show_js_softstop_always, set_js_softstop_always); |
| #endif /* CONFIG_MALI_DEBUG */ |
| |
| #ifdef CONFIG_MALI_DEBUG |
| typedef void (kbasep_debug_command_func) (struct kbase_device *); |
| |
| enum kbasep_debug_command_code { |
| KBASEP_DEBUG_COMMAND_DUMPTRACE, |
| |
| /* This must be the last enum */ |
| KBASEP_DEBUG_COMMAND_COUNT |
| }; |
| |
| struct kbasep_debug_command { |
| char *str; |
| kbasep_debug_command_func *func; |
| }; |
| |
| /** Debug commands supported by the driver */ |
| static const struct kbasep_debug_command debug_commands[] = { |
| { |
| .str = "dumptrace", |
| .func = &kbasep_trace_dump, |
| } |
| }; |
| |
| /** Show callback for the @c debug_command sysfs file. |
| * |
| * This function is called to get the contents of the @c debug_command sysfs |
| * file. This is a list of the available debug commands, separated by newlines. |
| * |
| * @param dev The device this sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The output buffer for the sysfs file contents |
| * |
| * @return The number of bytes output to @c buf. |
| */ |
| static ssize_t show_debug(struct device *dev, struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| int i; |
| ssize_t ret = 0; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| for (i = 0; i < KBASEP_DEBUG_COMMAND_COUNT && ret < PAGE_SIZE; i++) |
| ret += scnprintf(buf + ret, PAGE_SIZE - ret, "%s\n", debug_commands[i].str); |
| |
| if (ret >= PAGE_SIZE) { |
| buf[PAGE_SIZE - 2] = '\n'; |
| buf[PAGE_SIZE - 1] = '\0'; |
| ret = PAGE_SIZE - 1; |
| } |
| |
| return ret; |
| } |
| |
| /** Store callback for the @c debug_command sysfs file. |
| * |
| * This function is called when the @c debug_command sysfs file is written to. |
| * It matches the requested command against the available commands, and if |
| * a matching command is found calls the associated function from |
| * @ref debug_commands to issue the command. |
| * |
| * @param dev The device with sysfs file is for |
| * @param attr The attributes of the sysfs file |
| * @param buf The value written to the sysfs file |
| * @param count The number of bytes written to the sysfs file |
| * |
| * @return @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t issue_debug(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int i; |
| |
| kbdev = to_kbase_device(dev); |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| for (i = 0; i < KBASEP_DEBUG_COMMAND_COUNT; i++) { |
| if (sysfs_streq(debug_commands[i].str, buf)) { |
| debug_commands[i].func(kbdev); |
| return count; |
| } |
| } |
| |
| /* Debug Command not found */ |
| dev_err(dev, "debug_command: command not known\n"); |
| return -EINVAL; |
| } |
| |
| /** The sysfs file @c debug_command. |
| * |
| * This is used to issue general debug commands to the device driver. |
| * Reading it will produce a list of debug commands, separated by newlines. |
| * Writing to it with one of those commands will issue said command. |
| */ |
| static DEVICE_ATTR(debug_command, S_IRUGO | S_IWUSR, show_debug, issue_debug); |
| #endif /* CONFIG_MALI_DEBUG */ |
| |
| /** |
| * kbase_show_gpuinfo - Show callback for the gpuinfo sysfs entry. |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer to receive the GPU information. |
| * |
| * This function is called to get a description of the present Mali |
| * GPU via the gpuinfo sysfs entry. This includes the GPU family, the |
| * number of cores, the hardware version and the raw product id. For |
| * example: |
| * |
| * Mali-T60x MP4 r0p0 0x6956 |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t kbase_show_gpuinfo(struct device *dev, |
| struct device_attribute *attr, char *buf) |
| { |
| static const struct gpu_product_id_name { |
| unsigned id; |
| char *name; |
| } gpu_product_id_names[] = { |
| { .id = GPU_ID_PI_T60X, .name = "Mali-T60x" }, |
| { .id = GPU_ID_PI_T62X, .name = "Mali-T62x" }, |
| { .id = GPU_ID_PI_T72X, .name = "Mali-T72x" }, |
| { .id = GPU_ID_PI_T76X, .name = "Mali-T76x" }, |
| { .id = GPU_ID_PI_T82X, .name = "Mali-T82x" }, |
| { .id = GPU_ID_PI_T83X, .name = "Mali-T83x" }, |
| { .id = GPU_ID_PI_T86X, .name = "Mali-T86x" }, |
| { .id = GPU_ID_PI_TFRX, .name = "Mali-T88x" }, |
| { .id = GPU_ID2_PRODUCT_TMIX >> GPU_ID_VERSION_PRODUCT_ID_SHIFT, |
| .name = "Mali-G71" }, |
| { .id = GPU_ID2_PRODUCT_THEX >> GPU_ID_VERSION_PRODUCT_ID_SHIFT, |
| .name = "Mali-THEx" }, |
| }; |
| const char *product_name = "(Unknown Mali GPU)"; |
| struct kbase_device *kbdev; |
| u32 gpu_id; |
| unsigned product_id, product_id_mask; |
| unsigned i; |
| bool is_new_format; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| gpu_id = kbdev->gpu_props.props.raw_props.gpu_id; |
| product_id = gpu_id >> GPU_ID_VERSION_PRODUCT_ID_SHIFT; |
| is_new_format = GPU_ID_IS_NEW_FORMAT(product_id); |
| product_id_mask = |
| (is_new_format ? |
| GPU_ID2_PRODUCT_MODEL : |
| GPU_ID_VERSION_PRODUCT_ID) >> |
| GPU_ID_VERSION_PRODUCT_ID_SHIFT; |
| |
| for (i = 0; i < ARRAY_SIZE(gpu_product_id_names); ++i) { |
| const struct gpu_product_id_name *p = &gpu_product_id_names[i]; |
| |
| if ((GPU_ID_IS_NEW_FORMAT(p->id) == is_new_format) && |
| (p->id & product_id_mask) == |
| (product_id & product_id_mask)) { |
| product_name = p->name; |
| break; |
| } |
| } |
| |
| return scnprintf(buf, PAGE_SIZE, "%s MP%d r%dp%d 0x%04X\n", |
| product_name, kbdev->gpu_props.num_cores, |
| (gpu_id & GPU_ID_VERSION_MAJOR) >> GPU_ID_VERSION_MAJOR_SHIFT, |
| (gpu_id & GPU_ID_VERSION_MINOR) >> GPU_ID_VERSION_MINOR_SHIFT, |
| product_id); |
| } |
| static DEVICE_ATTR(gpuinfo, S_IRUGO, kbase_show_gpuinfo, NULL); |
| |
| /** |
| * set_dvfs_period - Store callback for the dvfs_period sysfs file. |
| * @dev: The device with sysfs file is for |
| * @attr: The attributes of the sysfs file |
| * @buf: The value written to the sysfs file |
| * @count: The number of bytes written to the sysfs file |
| * |
| * This function is called when the dvfs_period sysfs file is written to. It |
| * checks the data written, and if valid updates the DVFS period variable, |
| * |
| * Return: @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_dvfs_period(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int ret; |
| int dvfs_period; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = kstrtoint(buf, 0, &dvfs_period); |
| if (ret || dvfs_period <= 0) { |
| dev_err(kbdev->dev, "Couldn't process dvfs_period write operation.\n" |
| "Use format <dvfs_period_ms>\n"); |
| return -EINVAL; |
| } |
| |
| kbdev->pm.dvfs_period = dvfs_period; |
| dev_dbg(kbdev->dev, "DVFS period: %dms\n", dvfs_period); |
| |
| return count; |
| } |
| |
| /** |
| * show_dvfs_period - Show callback for the dvfs_period sysfs entry. |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer to receive the GPU information. |
| * |
| * This function is called to get the current period used for the DVFS sample |
| * timer. |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t show_dvfs_period(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%d\n", kbdev->pm.dvfs_period); |
| |
| return ret; |
| } |
| |
| static DEVICE_ATTR(dvfs_period, S_IRUGO | S_IWUSR, show_dvfs_period, |
| set_dvfs_period); |
| |
| /** |
| * set_pm_poweroff - Store callback for the pm_poweroff sysfs file. |
| * @dev: The device with sysfs file is for |
| * @attr: The attributes of the sysfs file |
| * @buf: The value written to the sysfs file |
| * @count: The number of bytes written to the sysfs file |
| * |
| * This function is called when the pm_poweroff sysfs file is written to. |
| * |
| * This file contains three values separated by whitespace. The values |
| * are gpu_poweroff_time (the period of the poweroff timer, in ns), |
| * poweroff_shader_ticks (the number of poweroff timer ticks before an idle |
| * shader is powered off), and poweroff_gpu_ticks (the number of poweroff timer |
| * ticks before the GPU is powered off), in that order. |
| * |
| * Return: @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_pm_poweroff(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int items; |
| s64 gpu_poweroff_time; |
| int poweroff_shader_ticks, poweroff_gpu_ticks; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| items = sscanf(buf, "%llu %u %u", &gpu_poweroff_time, |
| &poweroff_shader_ticks, |
| &poweroff_gpu_ticks); |
| if (items != 3) { |
| dev_err(kbdev->dev, "Couldn't process pm_poweroff write operation.\n" |
| "Use format <gpu_poweroff_time_ns> <poweroff_shader_ticks> <poweroff_gpu_ticks>\n"); |
| return -EINVAL; |
| } |
| |
| kbdev->pm.gpu_poweroff_time = HR_TIMER_DELAY_NSEC(gpu_poweroff_time); |
| kbdev->pm.poweroff_shader_ticks = poweroff_shader_ticks; |
| kbdev->pm.poweroff_gpu_ticks = poweroff_gpu_ticks; |
| |
| return count; |
| } |
| |
| /** |
| * show_pm_poweroff - Show callback for the pm_poweroff sysfs entry. |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer to receive the GPU information. |
| * |
| * This function is called to get the current period used for the DVFS sample |
| * timer. |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t show_pm_poweroff(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%llu %u %u\n", |
| ktime_to_ns(kbdev->pm.gpu_poweroff_time), |
| kbdev->pm.poweroff_shader_ticks, |
| kbdev->pm.poweroff_gpu_ticks); |
| |
| return ret; |
| } |
| |
| static DEVICE_ATTR(pm_poweroff, S_IRUGO | S_IWUSR, show_pm_poweroff, |
| set_pm_poweroff); |
| |
| /** |
| * set_reset_timeout - Store callback for the reset_timeout sysfs file. |
| * @dev: The device with sysfs file is for |
| * @attr: The attributes of the sysfs file |
| * @buf: The value written to the sysfs file |
| * @count: The number of bytes written to the sysfs file |
| * |
| * This function is called when the reset_timeout sysfs file is written to. It |
| * checks the data written, and if valid updates the reset timeout. |
| * |
| * Return: @c count if the function succeeded. An error code on failure. |
| */ |
| static ssize_t set_reset_timeout(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| int ret; |
| int reset_timeout; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = kstrtoint(buf, 0, &reset_timeout); |
| if (ret || reset_timeout <= 0) { |
| dev_err(kbdev->dev, "Couldn't process reset_timeout write operation.\n" |
| "Use format <reset_timeout_ms>\n"); |
| return -EINVAL; |
| } |
| |
| kbdev->reset_timeout_ms = reset_timeout; |
| dev_dbg(kbdev->dev, "Reset timeout: %dms\n", reset_timeout); |
| |
| return count; |
| } |
| |
| /** |
| * show_reset_timeout - Show callback for the reset_timeout sysfs entry. |
| * @dev: The device this sysfs file is for. |
| * @attr: The attributes of the sysfs file. |
| * @buf: The output buffer to receive the GPU information. |
| * |
| * This function is called to get the current reset timeout. |
| * |
| * Return: The number of bytes output to buf. |
| */ |
| static ssize_t show_reset_timeout(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%d\n", kbdev->reset_timeout_ms); |
| |
| return ret; |
| } |
| |
| static DEVICE_ATTR(reset_timeout, S_IRUGO | S_IWUSR, show_reset_timeout, |
| set_reset_timeout); |
| |
| |
| |
| static ssize_t show_mem_pool_size(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%zu\n", |
| kbase_mem_pool_size(&kbdev->mem_pool)); |
| |
| return ret; |
| } |
| |
| static ssize_t set_mem_pool_size(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| size_t new_size; |
| int err; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| err = kstrtoul(buf, 0, (unsigned long *)&new_size); |
| if (err) |
| return err; |
| |
| kbase_mem_pool_trim(&kbdev->mem_pool, new_size); |
| |
| return count; |
| } |
| |
| static DEVICE_ATTR(mem_pool_size, S_IRUGO | S_IWUSR, show_mem_pool_size, |
| set_mem_pool_size); |
| |
| static ssize_t show_mem_pool_max_size(struct device *dev, |
| struct device_attribute *attr, char * const buf) |
| { |
| struct kbase_device *kbdev; |
| ssize_t ret; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| ret = scnprintf(buf, PAGE_SIZE, "%zu\n", |
| kbase_mem_pool_max_size(&kbdev->mem_pool)); |
| |
| return ret; |
| } |
| |
| static ssize_t set_mem_pool_max_size(struct device *dev, |
| struct device_attribute *attr, const char *buf, size_t count) |
| { |
| struct kbase_device *kbdev; |
| size_t new_max_size; |
| int err; |
| |
| kbdev = to_kbase_device(dev); |
| if (!kbdev) |
| return -ENODEV; |
| |
| err = kstrtoul(buf, 0, (unsigned long *)&new_max_size); |
| if (err) |
| return -EINVAL; |
| |
| kbase_mem_pool_set_max_size(&kbdev->mem_pool, new_max_size); |
| |
| return count; |
| } |
| |
| static DEVICE_ATTR(mem_pool_max_size, S_IRUGO | S_IWUSR, show_mem_pool_max_size, |
| set_mem_pool_max_size); |
| |
| |
| static int kbasep_protected_mode_enter(struct kbase_device *kbdev) |
| { |
| kbase_reg_write(kbdev, GPU_CONTROL_REG(GPU_COMMAND), |
| GPU_COMMAND_SET_PROTECTED_MODE, NULL); |
| return 0; |
| } |
| |
| static bool kbasep_protected_mode_supported(struct kbase_device *kbdev) |
| { |
| return true; |
| } |
| |
| static struct kbase_protected_ops kbasep_protected_ops = { |
| .protected_mode_enter = kbasep_protected_mode_enter, |
| .protected_mode_reset = NULL, |
| .protected_mode_supported = kbasep_protected_mode_supported, |
| }; |
| |
| static void kbasep_protected_mode_init(struct kbase_device *kbdev) |
| { |
| kbdev->protected_ops = NULL; |
| |
| if (kbase_hw_has_feature(kbdev, BASE_HW_FEATURE_PROTECTED_MODE)) { |
| /* Use native protected ops */ |
| kbdev->protected_ops = &kbasep_protected_ops; |
| } |
| #ifdef PROTECTED_CALLBACKS |
| else |
| kbdev->protected_ops = PROTECTED_CALLBACKS; |
| #endif |
| |
| if (kbdev->protected_ops) |
| kbdev->protected_mode_support = |
| kbdev->protected_ops->protected_mode_supported(kbdev); |
| else |
| kbdev->protected_mode_support = false; |
| } |
| |
| #ifdef CONFIG_MALI_NO_MALI |
| static int kbase_common_reg_map(struct kbase_device *kbdev) |
| { |
| return 0; |
| } |
| static void kbase_common_reg_unmap(struct kbase_device * const kbdev) |
| { |
| } |
| #else /* CONFIG_MALI_NO_MALI */ |
| static int kbase_common_reg_map(struct kbase_device *kbdev) |
| { |
| int err = -ENOMEM; |
| |
| if (!request_mem_region(kbdev->reg_start, kbdev->reg_size, dev_name(kbdev->dev))) { |
| dev_err(kbdev->dev, "Register window unavailable\n"); |
| err = -EIO; |
| goto out_region; |
| } |
| |
| kbdev->reg = ioremap(kbdev->reg_start, kbdev->reg_size); |
| if (!kbdev->reg) { |
| dev_err(kbdev->dev, "Can't remap register window\n"); |
| err = -EINVAL; |
| goto out_ioremap; |
| } |
| |
| return 0; |
| |
| out_ioremap: |
| release_mem_region(kbdev->reg_start, kbdev->reg_size); |
| out_region: |
| return err; |
| } |
| |
| static void kbase_common_reg_unmap(struct kbase_device * const kbdev) |
| { |
| if (kbdev->reg) { |
| iounmap(kbdev->reg); |
| release_mem_region(kbdev->reg_start, kbdev->reg_size); |
| kbdev->reg = NULL; |
| kbdev->reg_start = 0; |
| kbdev->reg_size = 0; |
| } |
| } |
| #endif /* CONFIG_MALI_NO_MALI */ |
| |
| static int registers_map(struct kbase_device * const kbdev) |
| { |
| |
| /* the first memory resource is the physical address of the GPU |
| * registers */ |
| struct platform_device *pdev = to_platform_device(kbdev->dev); |
| struct resource *reg_res; |
| int err; |
| |
| reg_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| if (!reg_res) { |
| dev_err(kbdev->dev, "Invalid register resource\n"); |
| return -ENOENT; |
| } |
| |
| kbdev->reg_start = reg_res->start; |
| kbdev->reg_size = resource_size(reg_res); |
| |
| err = kbase_common_reg_map(kbdev); |
| if (err) { |
| dev_err(kbdev->dev, "Failed to map registers\n"); |
| return err; |
| } |
| |
| return 0; |
| } |
| |
| static void registers_unmap(struct kbase_device *kbdev) |
| { |
| kbase_common_reg_unmap(kbdev); |
| } |
| |
| static int power_control_init(struct platform_device *pdev) |
| { |
| struct kbase_device *kbdev = to_kbase_device(&pdev->dev); |
| int err = 0; |
| |
| if (!kbdev) |
| return -ENODEV; |
| |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) && defined(CONFIG_OF) \ |
| && defined(CONFIG_REGULATOR) |
| kbdev->regulator = regulator_get_optional(kbdev->dev, "mali"); |
| if (IS_ERR_OR_NULL(kbdev->regulator)) { |
| err = PTR_ERR(kbdev->regulator); |
| kbdev->regulator = NULL; |
| if (err == -EPROBE_DEFER) { |
| dev_err(&pdev->dev, "Failed to get regulator\n"); |
| return err; |
| } |
| dev_info(kbdev->dev, |
| "Continuing without Mali regulator control\n"); |
| /* Allow probe to continue without regulator */ |
| } |
| #endif /* LINUX_VERSION_CODE >= 3, 12, 0 */ |
| |
| kbdev->clock = clk_get(kbdev->dev, "clk_mali"); |
| if (IS_ERR_OR_NULL(kbdev->clock)) { |
| err = PTR_ERR(kbdev->clock); |
| kbdev->clock = NULL; |
| if (err == -EPROBE_DEFER) { |
| dev_err(&pdev->dev, "Failed to get clock\n"); |
| goto fail; |
| } |
| dev_info(kbdev->dev, "Continuing without Mali clock control\n"); |
| /* Allow probe to continue without clock. */ |
| } else { |
| err = clk_prepare_enable(kbdev->clock); |
| if (err) { |
| dev_err(kbdev->dev, |
| "Failed to prepare and enable clock (%d)\n", |
| err); |
| goto fail; |
| } |
| } |
| |
| #if defined(CONFIG_OF) && defined(CONFIG_PM_OPP) |
| /* Register the OPPs if they are available in device tree */ |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0)) \ |
| || defined(LSK_OPPV2_BACKPORT) |
| err = dev_pm_opp_of_add_table(kbdev->dev); |
| #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 7, 0)) |
| err = of_init_opp_table(kbdev->dev); |
| #else |
| err = 0; |
| #endif /* LINUX_VERSION_CODE */ |
| if (err) |
| dev_dbg(kbdev->dev, "OPP table not found\n"); |
| #endif /* CONFIG_OF && CONFIG_PM_OPP */ |
| |
| return 0; |
| |
| fail: |
| |
| if (kbdev->clock != NULL) { |
| clk_put(kbdev->clock); |
| kbdev->clock = NULL; |
| } |
| |
| #ifdef CONFIG_REGULATOR |
| if (NULL != kbdev->regulator) { |
| regulator_put(kbdev->regulator); |
| kbdev->regulator = NULL; |
| } |
| #endif |
| |
| return err; |
| } |
| |
| static void power_control_term(struct kbase_device *kbdev) |
| { |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 0)) |
| dev_pm_opp_of_remove_table(kbdev->dev); |
| #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 19, 0)) |
| of_free_opp_table(kbdev->dev); |
| #endif |
| |
| if (kbdev->clock) { |
| clk_disable_unprepare(kbdev->clock); |
| clk_put(kbdev->clock); |
| kbdev->clock = NULL; |
| } |
| |
| #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3, 12, 0)) && defined(CONFIG_OF) \ |
| && defined(CONFIG_REGULATOR) |
| if (kbdev->regulator) { |
| regulator_put(kbdev->regulator); |
| kbdev->regulator = NULL; |
| } |
| #endif /* LINUX_VERSION_CODE >= 3, 12, 0 */ |
| } |
| |
| #ifdef CONFIG_DEBUG_FS |
| |
| #if KBASE_GPU_RESET_EN |
| #include <mali_kbase_hwaccess_jm.h> |
| |
| static void trigger_quirks_reload(struct kbase_device *kbdev) |
| { |
| kbase_pm_context_active(kbdev); |
| if (kbase_prepare_to_reset_gpu(kbdev)) |
| kbase_reset_gpu(kbdev); |
| kbase_pm_context_idle(kbdev); |
| } |
| |
| #define MAKE_QUIRK_ACCESSORS(type) \ |
| static int type##_quirks_set(void *data, u64 val) \ |
| { \ |
| struct kbase_device *kbdev; \ |
| kbdev = (struct kbase_device *)data; \ |
| kbdev->hw_quirks_##type = (u32)val; \ |
| trigger_quirks_reload(kbdev); \ |
| return 0;\ |
| } \ |
| \ |
| static int type##_quirks_get(void *data, u64 *val) \ |
| { \ |
| struct kbase_device *kbdev;\ |
| kbdev = (struct kbase_device *)data;\ |
| *val = kbdev->hw_quirks_##type;\ |
| return 0;\ |
| } \ |
| DEFINE_SIMPLE_ATTRIBUTE(fops_##type##_quirks, type##_quirks_get,\ |
| type##_quirks_set, "%llu\n") |
| |
| MAKE_QUIRK_ACCESSORS(sc); |
| MAKE_QUIRK_ACCESSORS(tiler); |
| MAKE_QUIRK_ACCESSORS(mmu); |
| |
| #endif /* KBASE_GPU_RESET_EN */ |
| |
| /** |
| * debugfs_protected_debug_mode_read - "protected_debug_mode" debugfs read |
| * @file: File object to read is for |
| * @buf: User buffer to populate with data |
| * @len: Length of user buffer |
| * @ppos: Offset within file object |
| * |
| * Retrieves the current status of protected debug mode |
| |