465 lines
14 KiB
C
465 lines
14 KiB
C
|
/* Copyright (c) 2002,2007-2013, The Linux Foundation. All rights reserved.
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License version 2 and
|
||
|
* only version 2 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
*/
|
||
|
#ifndef __KGSL_MMU_H
|
||
|
#define __KGSL_MMU_H
|
||
|
|
||
|
#include <mach/iommu.h>
|
||
|
#include "kgsl_iommu.h"
|
||
|
/*
|
||
|
* These defines control the address range for allocations that
|
||
|
* are mapped into all pagetables.
|
||
|
*/
|
||
|
#define KGSL_IOMMU_GLOBAL_MEM_BASE 0xf8000000
|
||
|
#define KGSL_IOMMU_GLOBAL_MEM_SIZE SZ_4M
|
||
|
|
||
|
#define KGSL_MMU_ALIGN_MASK (~((1 << PAGE_SHIFT) - 1))
|
||
|
|
||
|
/* defconfig option for disabling per process pagetables */
|
||
|
#ifdef CONFIG_KGSL_PER_PROCESS_PAGE_TABLE
|
||
|
#define KGSL_MMU_USE_PER_PROCESS_PT true
|
||
|
#else
|
||
|
#define KGSL_MMU_USE_PER_PROCESS_PT false
|
||
|
#endif
|
||
|
|
||
|
/* Identifier for the global page table */
|
||
|
/* Per process page tables will probably pass in the thread group
|
||
|
as an identifier */
|
||
|
|
||
|
#define KGSL_MMU_GLOBAL_PT 0
|
||
|
#define KGSL_MMU_PRIV_BANK_TABLE_NAME 0xFFFFFFFF
|
||
|
|
||
|
struct kgsl_device;
|
||
|
|
||
|
#define GSL_PT_SUPER_PTE 8
|
||
|
#define GSL_PT_PAGE_WV 0x00000001
|
||
|
#define GSL_PT_PAGE_RV 0x00000002
|
||
|
#define GSL_PT_PAGE_DIRTY 0x00000004
|
||
|
|
||
|
/* MMU registers - the register locations for all cores are the
|
||
|
same. The method for getting to those locations differs between
|
||
|
2D and 3D, but the 2D and 3D register functions do that magic
|
||
|
for us */
|
||
|
|
||
|
#define MH_MMU_CONFIG 0x0040
|
||
|
#define MH_MMU_VA_RANGE 0x0041
|
||
|
#define MH_MMU_PT_BASE 0x0042
|
||
|
#define MH_MMU_PAGE_FAULT 0x0043
|
||
|
#define MH_MMU_TRAN_ERROR 0x0044
|
||
|
#define MH_MMU_INVALIDATE 0x0045
|
||
|
#define MH_MMU_MPU_BASE 0x0046
|
||
|
#define MH_MMU_MPU_END 0x0047
|
||
|
|
||
|
#define MH_INTERRUPT_MASK 0x0A42
|
||
|
#define MH_INTERRUPT_STATUS 0x0A43
|
||
|
#define MH_INTERRUPT_CLEAR 0x0A44
|
||
|
#define MH_AXI_ERROR 0x0A45
|
||
|
#define MH_ARBITER_CONFIG 0x0A40
|
||
|
#define MH_DEBUG_CTRL 0x0A4E
|
||
|
#define MH_DEBUG_DATA 0x0A4F
|
||
|
#define MH_AXI_HALT_CONTROL 0x0A50
|
||
|
#define MH_CLNT_INTF_CTRL_CONFIG1 0x0A54
|
||
|
#define MH_CLNT_INTF_CTRL_CONFIG2 0x0A55
|
||
|
|
||
|
/* MH_MMU_CONFIG bit definitions */
|
||
|
|
||
|
#define MH_MMU_CONFIG__RB_W_CLNT_BEHAVIOR__SHIFT 0x00000004
|
||
|
#define MH_MMU_CONFIG__CP_W_CLNT_BEHAVIOR__SHIFT 0x00000006
|
||
|
#define MH_MMU_CONFIG__CP_R0_CLNT_BEHAVIOR__SHIFT 0x00000008
|
||
|
#define MH_MMU_CONFIG__CP_R1_CLNT_BEHAVIOR__SHIFT 0x0000000a
|
||
|
#define MH_MMU_CONFIG__CP_R2_CLNT_BEHAVIOR__SHIFT 0x0000000c
|
||
|
#define MH_MMU_CONFIG__CP_R3_CLNT_BEHAVIOR__SHIFT 0x0000000e
|
||
|
#define MH_MMU_CONFIG__CP_R4_CLNT_BEHAVIOR__SHIFT 0x00000010
|
||
|
#define MH_MMU_CONFIG__VGT_R0_CLNT_BEHAVIOR__SHIFT 0x00000012
|
||
|
#define MH_MMU_CONFIG__VGT_R1_CLNT_BEHAVIOR__SHIFT 0x00000014
|
||
|
#define MH_MMU_CONFIG__TC_R_CLNT_BEHAVIOR__SHIFT 0x00000016
|
||
|
#define MH_MMU_CONFIG__PA_W_CLNT_BEHAVIOR__SHIFT 0x00000018
|
||
|
|
||
|
/* MMU Flags */
|
||
|
#define KGSL_MMUFLAGS_TLBFLUSH 0x10000000
|
||
|
#define KGSL_MMUFLAGS_PTUPDATE 0x20000000
|
||
|
|
||
|
#define MH_INTERRUPT_MASK__AXI_READ_ERROR 0x00000001L
|
||
|
#define MH_INTERRUPT_MASK__AXI_WRITE_ERROR 0x00000002L
|
||
|
#define MH_INTERRUPT_MASK__MMU_PAGE_FAULT 0x00000004L
|
||
|
|
||
|
#define KGSL_MMU_INT_MASK \
|
||
|
(MH_INTERRUPT_MASK__AXI_READ_ERROR | \
|
||
|
MH_INTERRUPT_MASK__AXI_WRITE_ERROR | \
|
||
|
MH_INTERRUPT_MASK__MMU_PAGE_FAULT)
|
||
|
|
||
|
enum kgsl_mmutype {
|
||
|
KGSL_MMU_TYPE_GPU = 0,
|
||
|
KGSL_MMU_TYPE_IOMMU,
|
||
|
KGSL_MMU_TYPE_NONE
|
||
|
};
|
||
|
|
||
|
struct kgsl_pagetable {
|
||
|
spinlock_t lock;
|
||
|
struct kref refcount;
|
||
|
unsigned int max_entries;
|
||
|
struct gen_pool *pool;
|
||
|
struct gen_pool *kgsl_pool;
|
||
|
struct list_head list;
|
||
|
unsigned int name;
|
||
|
struct kobject *kobj;
|
||
|
|
||
|
struct {
|
||
|
unsigned int entries;
|
||
|
unsigned int mapped;
|
||
|
unsigned int max_mapped;
|
||
|
unsigned int max_entries;
|
||
|
} stats;
|
||
|
const struct kgsl_mmu_pt_ops *pt_ops;
|
||
|
unsigned int tlb_flags;
|
||
|
unsigned int fault_addr;
|
||
|
void *priv;
|
||
|
struct kgsl_mmu *mmu;
|
||
|
};
|
||
|
|
||
|
struct kgsl_mmu;
|
||
|
|
||
|
struct kgsl_mmu_ops {
|
||
|
int (*mmu_init) (struct kgsl_mmu *mmu);
|
||
|
int (*mmu_close) (struct kgsl_mmu *mmu);
|
||
|
int (*mmu_start) (struct kgsl_mmu *mmu);
|
||
|
void (*mmu_stop) (struct kgsl_mmu *mmu);
|
||
|
void (*mmu_setstate) (struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pagetable,
|
||
|
unsigned int context_id);
|
||
|
void (*mmu_device_setstate) (struct kgsl_mmu *mmu,
|
||
|
uint32_t flags);
|
||
|
void (*mmu_pagefault) (struct kgsl_mmu *mmu);
|
||
|
phys_addr_t (*mmu_get_current_ptbase)
|
||
|
(struct kgsl_mmu *mmu);
|
||
|
void (*mmu_pagefault_resume)
|
||
|
(struct kgsl_mmu *mmu);
|
||
|
void (*mmu_disable_clk_on_ts)
|
||
|
(struct kgsl_mmu *mmu, uint32_t ts, bool ts_valid);
|
||
|
int (*mmu_enable_clk)
|
||
|
(struct kgsl_mmu *mmu, int ctx_id);
|
||
|
phys_addr_t (*mmu_get_default_ttbr0)(struct kgsl_mmu *mmu,
|
||
|
unsigned int unit_id,
|
||
|
enum kgsl_iommu_context_id ctx_id);
|
||
|
unsigned int (*mmu_get_reg_gpuaddr)(struct kgsl_mmu *mmu,
|
||
|
int iommu_unit_num, int ctx_id, int reg);
|
||
|
unsigned int (*mmu_get_reg_ahbaddr)(struct kgsl_mmu *mmu,
|
||
|
int iommu_unit_num, int ctx_id,
|
||
|
enum kgsl_iommu_reg_map reg);
|
||
|
int (*mmu_get_num_iommu_units)(struct kgsl_mmu *mmu);
|
||
|
int (*mmu_pt_equal) (struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt,
|
||
|
phys_addr_t pt_base);
|
||
|
phys_addr_t (*mmu_get_pt_base_addr)
|
||
|
(struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt);
|
||
|
int (*mmu_setup_pt) (struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt);
|
||
|
void (*mmu_cleanup_pt) (struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt);
|
||
|
unsigned int (*mmu_sync_lock)
|
||
|
(struct kgsl_mmu *mmu, unsigned int *cmds);
|
||
|
unsigned int (*mmu_sync_unlock)
|
||
|
(struct kgsl_mmu *mmu, unsigned int *cmds);
|
||
|
int (*mmu_hw_halt_supported)(struct kgsl_mmu *mmu, int iommu_unit_num);
|
||
|
};
|
||
|
|
||
|
struct kgsl_mmu_pt_ops {
|
||
|
int (*mmu_map) (struct kgsl_pagetable *pt,
|
||
|
struct kgsl_memdesc *memdesc,
|
||
|
unsigned int protflags,
|
||
|
unsigned int *tlb_flags);
|
||
|
int (*mmu_unmap) (struct kgsl_pagetable *pt,
|
||
|
struct kgsl_memdesc *memdesc,
|
||
|
unsigned int *tlb_flags);
|
||
|
void *(*mmu_create_pagetable) (void);
|
||
|
void (*mmu_destroy_pagetable) (struct kgsl_pagetable *);
|
||
|
};
|
||
|
|
||
|
#define KGSL_MMU_FLAGS_IOMMU_SYNC BIT(31)
|
||
|
|
||
|
struct kgsl_mmu {
|
||
|
unsigned int refcnt;
|
||
|
uint32_t flags;
|
||
|
struct kgsl_device *device;
|
||
|
unsigned int config;
|
||
|
struct kgsl_memdesc setstate_memory;
|
||
|
/* current page table object being used by device mmu */
|
||
|
struct kgsl_pagetable *defaultpagetable;
|
||
|
/* pagetable object used for priv bank of IOMMU */
|
||
|
struct kgsl_pagetable *priv_bank_table;
|
||
|
struct kgsl_pagetable *hwpagetable;
|
||
|
const struct kgsl_mmu_ops *mmu_ops;
|
||
|
void *priv;
|
||
|
int fault;
|
||
|
unsigned long pt_base;
|
||
|
unsigned long pt_size;
|
||
|
bool pt_per_process;
|
||
|
bool use_cpu_map;
|
||
|
};
|
||
|
|
||
|
extern struct kgsl_mmu_ops iommu_ops;
|
||
|
extern struct kgsl_mmu_pt_ops iommu_pt_ops;
|
||
|
extern struct kgsl_mmu_ops gpummu_ops;
|
||
|
extern struct kgsl_mmu_pt_ops gpummu_pt_ops;
|
||
|
|
||
|
struct kgsl_pagetable *kgsl_mmu_getpagetable(struct kgsl_mmu *,
|
||
|
unsigned long name);
|
||
|
void kgsl_mmu_putpagetable(struct kgsl_pagetable *pagetable);
|
||
|
void kgsl_mh_start(struct kgsl_device *device);
|
||
|
void kgsl_mh_intrcallback(struct kgsl_device *device);
|
||
|
int kgsl_mmu_init(struct kgsl_device *device);
|
||
|
int kgsl_mmu_start(struct kgsl_device *device);
|
||
|
int kgsl_mmu_close(struct kgsl_device *device);
|
||
|
int kgsl_mmu_map(struct kgsl_pagetable *pagetable,
|
||
|
struct kgsl_memdesc *memdesc);
|
||
|
int kgsl_mmu_map_global(struct kgsl_pagetable *pagetable,
|
||
|
struct kgsl_memdesc *memdesc);
|
||
|
int kgsl_mmu_unmap(struct kgsl_pagetable *pagetable,
|
||
|
struct kgsl_memdesc *memdesc);
|
||
|
unsigned int kgsl_virtaddr_to_physaddr(void *virtaddr);
|
||
|
void kgsl_setstate(struct kgsl_mmu *mmu, unsigned int context_id,
|
||
|
uint32_t flags);
|
||
|
int kgsl_mmu_get_ptname_from_ptbase(struct kgsl_mmu *mmu,
|
||
|
phys_addr_t pt_base);
|
||
|
unsigned int kgsl_mmu_log_fault_addr(struct kgsl_mmu *mmu,
|
||
|
phys_addr_t pt_base, unsigned int addr);
|
||
|
int kgsl_mmu_pt_get_flags(struct kgsl_pagetable *pt,
|
||
|
enum kgsl_deviceid id);
|
||
|
void kgsl_mmu_ptpool_destroy(void *ptpool);
|
||
|
void *kgsl_mmu_ptpool_init(int entries);
|
||
|
int kgsl_mmu_enabled(void);
|
||
|
void kgsl_mmu_set_mmutype(char *mmutype);
|
||
|
enum kgsl_mmutype kgsl_mmu_get_mmutype(void);
|
||
|
int kgsl_mmu_gpuaddr_in_range(struct kgsl_pagetable *pt, unsigned int gpuaddr);
|
||
|
|
||
|
/*
|
||
|
* Static inline functions of MMU that simply call the SMMU specific
|
||
|
* function using a function pointer. These functions can be thought
|
||
|
* of as wrappers around the actual function
|
||
|
*/
|
||
|
|
||
|
static inline phys_addr_t kgsl_mmu_get_current_ptbase(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_current_ptbase)
|
||
|
return mmu->mmu_ops->mmu_get_current_ptbase(mmu);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline void kgsl_mmu_setstate(struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pagetable,
|
||
|
unsigned int context_id)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_setstate)
|
||
|
mmu->mmu_ops->mmu_setstate(mmu, pagetable, context_id);
|
||
|
}
|
||
|
|
||
|
static inline void kgsl_mmu_device_setstate(struct kgsl_mmu *mmu,
|
||
|
uint32_t flags)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_device_setstate)
|
||
|
mmu->mmu_ops->mmu_device_setstate(mmu, flags);
|
||
|
}
|
||
|
|
||
|
static inline void kgsl_mmu_stop(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_stop)
|
||
|
mmu->mmu_ops->mmu_stop(mmu);
|
||
|
}
|
||
|
|
||
|
static inline int kgsl_mmu_pt_equal(struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt,
|
||
|
phys_addr_t pt_base)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_pt_equal)
|
||
|
return mmu->mmu_ops->mmu_pt_equal(mmu, pt, pt_base);
|
||
|
else
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
static inline phys_addr_t kgsl_mmu_get_pt_base_addr(struct kgsl_mmu *mmu,
|
||
|
struct kgsl_pagetable *pt)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_pt_base_addr)
|
||
|
return mmu->mmu_ops->mmu_get_pt_base_addr(mmu, pt);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline phys_addr_t kgsl_mmu_get_default_ttbr0(struct kgsl_mmu *mmu,
|
||
|
unsigned int unit_id,
|
||
|
enum kgsl_iommu_context_id ctx_id)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_default_ttbr0)
|
||
|
return mmu->mmu_ops->mmu_get_default_ttbr0(mmu, unit_id,
|
||
|
ctx_id);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline int kgsl_mmu_enable_clk(struct kgsl_mmu *mmu,
|
||
|
int ctx_id)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_enable_clk)
|
||
|
return mmu->mmu_ops->mmu_enable_clk(mmu, ctx_id);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline void kgsl_mmu_disable_clk_on_ts(struct kgsl_mmu *mmu,
|
||
|
unsigned int ts, bool ts_valid)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_disable_clk_on_ts)
|
||
|
mmu->mmu_ops->mmu_disable_clk_on_ts(mmu, ts, ts_valid);
|
||
|
}
|
||
|
|
||
|
static inline unsigned int kgsl_mmu_get_int_mask(void)
|
||
|
{
|
||
|
/* Dont enable gpummu interrupts, if iommu is enabled */
|
||
|
if (KGSL_MMU_TYPE_GPU == kgsl_mmu_get_mmutype())
|
||
|
return KGSL_MMU_INT_MASK;
|
||
|
else
|
||
|
return (MH_INTERRUPT_MASK__AXI_READ_ERROR |
|
||
|
MH_INTERRUPT_MASK__AXI_WRITE_ERROR);
|
||
|
}
|
||
|
|
||
|
static inline unsigned int kgsl_mmu_get_reg_gpuaddr(struct kgsl_mmu *mmu,
|
||
|
int iommu_unit_num,
|
||
|
int ctx_id, int reg)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_reg_gpuaddr)
|
||
|
return mmu->mmu_ops->mmu_get_reg_gpuaddr(mmu, iommu_unit_num,
|
||
|
ctx_id, reg);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_get_reg_ahbaddr() - Calls the mmu specific function pointer to
|
||
|
* return the address that GPU can use to access register
|
||
|
* @mmu: Pointer to the device mmu
|
||
|
* @iommu_unit_num: There can be multiple iommu units used for graphics.
|
||
|
* This parameter is an index to the iommu unit being used
|
||
|
* @ctx_id: The context id within the iommu unit
|
||
|
* @reg: Register whose address is to be returned
|
||
|
*
|
||
|
* Returns the ahb address of reg else 0
|
||
|
*/
|
||
|
static inline unsigned int kgsl_mmu_get_reg_ahbaddr(struct kgsl_mmu *mmu,
|
||
|
int iommu_unit_num,
|
||
|
int ctx_id,
|
||
|
enum kgsl_iommu_reg_map reg)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_reg_ahbaddr)
|
||
|
return mmu->mmu_ops->mmu_get_reg_ahbaddr(mmu, iommu_unit_num,
|
||
|
ctx_id, reg);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline int kgsl_mmu_get_num_iommu_units(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_get_num_iommu_units)
|
||
|
return mmu->mmu_ops->mmu_get_num_iommu_units(mmu);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_hw_halt_supported() - Runtime check for iommu hw halt
|
||
|
* @mmu: the mmu
|
||
|
*
|
||
|
* Returns non-zero if the iommu supports hw halt,
|
||
|
* 0 if not.
|
||
|
*/
|
||
|
static inline int kgsl_mmu_hw_halt_supported(struct kgsl_mmu *mmu,
|
||
|
int iommu_unit_num)
|
||
|
{
|
||
|
if (mmu->mmu_ops && mmu->mmu_ops->mmu_hw_halt_supported)
|
||
|
return mmu->mmu_ops->mmu_hw_halt_supported(mmu, iommu_unit_num);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_is_perprocess() - Runtime check for per-process
|
||
|
* pagetables.
|
||
|
* @mmu: the mmu
|
||
|
*
|
||
|
* Returns true if per-process pagetables are enabled,
|
||
|
* false if not.
|
||
|
*/
|
||
|
static inline int kgsl_mmu_is_perprocess(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
return mmu->pt_per_process;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_use_cpu_map() - Runtime check for matching the CPU
|
||
|
* address space on the GPU.
|
||
|
* @mmu: the mmu
|
||
|
*
|
||
|
* Returns true if supported false if not.
|
||
|
*/
|
||
|
static inline int kgsl_mmu_use_cpu_map(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
return mmu->use_cpu_map;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_base_addr() - Get gpu virtual address base.
|
||
|
* @mmu: the mmu
|
||
|
*
|
||
|
* Returns the start address of the allocatable gpu
|
||
|
* virtual address space. Other mappings that mirror
|
||
|
* the CPU address space are possible outside this range.
|
||
|
*/
|
||
|
static inline unsigned int kgsl_mmu_get_base_addr(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
return mmu->pt_base;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* kgsl_mmu_get_ptsize() - Get gpu pagetable size
|
||
|
* @mmu: the mmu
|
||
|
*
|
||
|
* Returns the usable size of the gpu allocatable
|
||
|
* address space.
|
||
|
*/
|
||
|
static inline unsigned int kgsl_mmu_get_ptsize(struct kgsl_mmu *mmu)
|
||
|
{
|
||
|
return mmu->pt_size;
|
||
|
}
|
||
|
|
||
|
static inline int kgsl_mmu_sync_lock(struct kgsl_mmu *mmu,
|
||
|
unsigned int *cmds)
|
||
|
{
|
||
|
if ((mmu->flags & KGSL_MMU_FLAGS_IOMMU_SYNC) &&
|
||
|
mmu->mmu_ops && mmu->mmu_ops->mmu_sync_lock)
|
||
|
return mmu->mmu_ops->mmu_sync_lock(mmu, cmds);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static inline int kgsl_mmu_sync_unlock(struct kgsl_mmu *mmu,
|
||
|
unsigned int *cmds)
|
||
|
{
|
||
|
if ((mmu->flags & KGSL_MMU_FLAGS_IOMMU_SYNC) &&
|
||
|
mmu->mmu_ops && mmu->mmu_ops->mmu_sync_unlock)
|
||
|
return mmu->mmu_ops->mmu_sync_unlock(mmu, cmds);
|
||
|
else
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#endif /* __KGSL_MMU_H */
|