/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
/*
|
*
|
* (C) COPYRIGHT 2019-2021 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 license.
|
*
|
* This program is distributed in the hope that it will be useful,
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
* GNU General Public License for more details.
|
*
|
* You should have received a copy of the GNU General Public License
|
* along with this program; if not, you can access it online at
|
* http://www.gnu.org/licenses/gpl-2.0.html.
|
*
|
*/
|
|
#ifndef _KBASE_MMU_INTERNAL_H_
|
#define _KBASE_MMU_INTERNAL_H_
|
|
void kbase_mmu_get_as_setup(struct kbase_mmu_table *mmut,
|
struct kbase_mmu_setup * const setup);
|
|
/**
|
* kbase_mmu_report_mcu_as_fault_and_reset - Report page fault for all
|
* address spaces and reset the GPU.
|
* @kbdev: The kbase_device the fault happened on
|
* @fault: Data relating to the fault
|
*/
|
void kbase_mmu_report_mcu_as_fault_and_reset(struct kbase_device *kbdev,
|
struct kbase_fault *fault);
|
|
void kbase_gpu_report_bus_fault_and_kill(struct kbase_context *kctx,
|
struct kbase_as *as, struct kbase_fault *fault);
|
|
void kbase_mmu_report_fault_and_kill(struct kbase_context *kctx,
|
struct kbase_as *as, const char *reason_str,
|
struct kbase_fault *fault);
|
|
/**
|
* kbase_mmu_switch_to_ir() - Switch to incremental rendering if possible
|
* @kctx: kbase_context for the faulting address space.
|
* @reg: of a growable GPU memory region in the same context.
|
* Takes ownership of the reference if successful.
|
*
|
* Used to switch to incremental rendering if we have nearly run out of
|
* virtual address space in a growable memory region.
|
*
|
* Return 0 if successful, otherwise a negative error code.
|
*/
|
int kbase_mmu_switch_to_ir(struct kbase_context *kctx,
|
struct kbase_va_region *reg);
|
|
/**
|
* kbase_mmu_page_fault_worker() - Process a page fault.
|
*
|
* @data: work_struct passed by queue_work()
|
*/
|
void kbase_mmu_page_fault_worker(struct work_struct *data);
|
|
/**
|
* kbase_mmu_bus_fault_worker() - Process a bus fault.
|
*
|
* @data: work_struct passed by queue_work()
|
*/
|
void kbase_mmu_bus_fault_worker(struct work_struct *data);
|
|
#endif /* _KBASE_MMU_INTERNAL_H_ */
|