2016-09-19 12:13:58 +08:00
/*
* Copyright 2016 Advanced Micro Devices , Inc .
*
* Permission is hereby granted , free of charge , to any person obtaining a
* copy of this software and associated documentation files ( the " Software " ) ,
* to deal in the Software without restriction , including without limitation
* the rights to use , copy , modify , merge , publish , distribute , sublicense ,
* and / or sell copies of the Software , and to permit persons to whom the
* Software is furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL
* THE COPYRIGHT HOLDER ( S ) OR AUTHOR ( S ) BE LIABLE FOR ANY CLAIM , DAMAGES OR
* OTHER LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE ,
* ARISING FROM , OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE .
*
* Author : Monk . liu @ amd . com
*/
# ifndef AMDGPU_VIRT_H
# define AMDGPU_VIRT_H
# define AMDGPU_SRIOV_CAPS_SRIOV_VBIOS (1 << 0) /* vBIOS is sr-iov ready */
# define AMDGPU_SRIOV_CAPS_ENABLE_IOV (1 << 1) /* sr-iov is enabled on this GPU */
# define AMDGPU_SRIOV_CAPS_IS_VF (1 << 2) /* this GPU is a virtual function */
# define AMDGPU_PASSTHROUGH_MODE (1 << 3) /* thw whole GPU is pass through for VM */
2017-01-12 14:11:53 +08:00
# define AMDGPU_SRIOV_CAPS_RUNTIME (1 << 4) /* is out of full access mode */
2017-01-09 15:23:17 +08:00
2017-02-28 17:24:52 +08:00
struct amdgpu_mm_table {
struct amdgpu_bo * bo ;
uint32_t * cpu_addr ;
uint64_t gpu_addr ;
} ;
2017-01-12 14:53:08 +08:00
/**
* struct amdgpu_virt_ops - amdgpu device virt operations
*/
struct amdgpu_virt_ops {
int ( * req_full_gpu ) ( struct amdgpu_device * adev , bool init ) ;
int ( * rel_full_gpu ) ( struct amdgpu_device * adev , bool init ) ;
int ( * reset_gpu ) ( struct amdgpu_device * adev ) ;
2017-06-23 13:55:15 -04:00
void ( * trans_msg ) ( struct amdgpu_device * adev , u32 req , u32 data1 , u32 data2 , u32 data3 ) ;
2017-01-12 14:53:08 +08:00
} ;
2016-09-19 12:13:58 +08:00
/* GPU virtualization */
2017-01-09 18:06:57 -05:00
struct amdgpu_virt {
2017-01-12 14:53:08 +08:00
uint32_t caps ;
struct amdgpu_bo * csa_obj ;
uint64_t csa_vmid0_addr ;
2017-01-12 15:32:44 +08:00
bool chained_ib_support ;
2017-01-12 14:53:08 +08:00
uint32_t reg_val_offs ;
2017-01-25 15:48:01 +08:00
struct mutex lock_reset ;
2017-01-12 15:00:41 +08:00
struct amdgpu_irq_src ack_irq ;
struct amdgpu_irq_src rcv_irq ;
2017-02-06 13:56:47 +08:00
struct work_struct flr_work ;
2017-02-28 17:24:52 +08:00
struct amdgpu_mm_table mm_table ;
2017-01-12 14:53:08 +08:00
const struct amdgpu_virt_ops * ops ;
2016-09-19 12:13:58 +08:00
} ;
2017-01-09 15:23:17 +08:00
# define AMDGPU_CSA_SIZE (8 * 1024)
# define AMDGPU_CSA_VADDR (AMDGPU_VA_RESERVED_SIZE - AMDGPU_CSA_SIZE)
2016-09-19 12:13:58 +08:00
# define amdgpu_sriov_enabled(adev) \
2017-01-09 18:06:57 -05:00
( ( adev ) - > virt . caps & AMDGPU_SRIOV_CAPS_ENABLE_IOV )
2016-09-19 12:13:58 +08:00
# define amdgpu_sriov_vf(adev) \
2017-01-09 18:06:57 -05:00
( ( adev ) - > virt . caps & AMDGPU_SRIOV_CAPS_IS_VF )
2016-09-19 12:13:58 +08:00
# define amdgpu_sriov_bios(adev) \
2017-01-09 18:06:57 -05:00
( ( adev ) - > virt . caps & AMDGPU_SRIOV_CAPS_SRIOV_VBIOS )
2016-09-19 12:13:58 +08:00
2017-01-12 14:11:53 +08:00
# define amdgpu_sriov_runtime(adev) \
( ( adev ) - > virt . caps & AMDGPU_SRIOV_CAPS_RUNTIME )
2016-09-19 12:13:58 +08:00
# define amdgpu_passthrough(adev) \
2017-01-09 18:06:57 -05:00
( ( adev ) - > virt . caps & AMDGPU_PASSTHROUGH_MODE )
2016-09-19 12:13:58 +08:00
static inline bool is_virtual_machine ( void )
{
# ifdef CONFIG_X86
return boot_cpu_has ( X86_FEATURE_HYPERVISOR ) ;
# else
return false ;
# endif
}
2017-01-09 15:21:13 +08:00
struct amdgpu_vm ;
int amdgpu_allocate_static_csa ( struct amdgpu_device * adev ) ;
int amdgpu_map_static_csa ( struct amdgpu_device * adev , struct amdgpu_vm * vm ) ;
2017-01-12 14:29:34 +08:00
void amdgpu_virt_init_setting ( struct amdgpu_device * adev ) ;
uint32_t amdgpu_virt_kiq_rreg ( struct amdgpu_device * adev , uint32_t reg ) ;
void amdgpu_virt_kiq_wreg ( struct amdgpu_device * adev , uint32_t reg , uint32_t v ) ;
2017-01-12 14:53:08 +08:00
int amdgpu_virt_request_full_gpu ( struct amdgpu_device * adev , bool init ) ;
int amdgpu_virt_release_full_gpu ( struct amdgpu_device * adev , bool init ) ;
int amdgpu_virt_reset_gpu ( struct amdgpu_device * adev ) ;
2017-04-26 14:51:54 +08:00
int amdgpu_sriov_gpu_reset ( struct amdgpu_device * adev , struct amdgpu_job * job ) ;
2017-04-21 15:40:25 +08:00
int amdgpu_virt_alloc_mm_table ( struct amdgpu_device * adev ) ;
void amdgpu_virt_free_mm_table ( struct amdgpu_device * adev ) ;
2017-01-09 15:21:13 +08:00
2017-01-09 18:06:57 -05:00
# endif