2015-09-11 04:38:32 +03:00
/*
* Copyright ( C ) 2015 Linaro Ltd .
* Author : Shannon Zhao < shannon . zhao @ linaro . org >
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License 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 .
*
* You should have received a copy of the GNU General Public License
* along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# ifndef __ASM_ARM_KVM_PMU_H
# define __ASM_ARM_KVM_PMU_H
# include <linux/perf_event.h>
# include <asm/perf_event.h>
2015-12-08 10:29:06 +03:00
# define ARMV8_PMU_CYCLE_IDX (ARMV8_PMU_MAX_COUNTERS - 1)
2016-06-08 13:38:55 +03:00
# ifdef CONFIG_KVM_ARM_PMU
2015-09-11 04:38:32 +03:00
struct kvm_pmc {
u8 idx ; /* index into the pmu->pmc array */
struct perf_event * perf_event ;
u64 bitmask ;
} ;
struct kvm_pmu {
int irq_num ;
struct kvm_pmc pmc [ ARMV8_PMU_MAX_COUNTERS ] ;
bool ready ;
2017-05-02 14:41:02 +03:00
bool created ;
2016-02-26 14:29:19 +03:00
bool irq_level ;
2015-09-11 04:38:32 +03:00
} ;
2015-06-18 11:01:53 +03:00
# define kvm_arm_pmu_v3_ready(v) ((v)->arch.pmu.ready)
2016-01-11 16:35:32 +03:00
# define kvm_arm_pmu_irq_initialized(v) ((v)->arch.pmu.irq_num >= VGIC_NR_SGIS)
2015-12-08 10:29:06 +03:00
u64 kvm_pmu_get_counter_value ( struct kvm_vcpu * vcpu , u64 select_idx ) ;
void kvm_pmu_set_counter_value ( struct kvm_vcpu * vcpu , u64 select_idx , u64 val ) ;
2015-09-08 07:26:13 +03:00
u64 kvm_pmu_valid_counter_mask ( struct kvm_vcpu * vcpu ) ;
2015-09-11 06:30:22 +03:00
void kvm_pmu_vcpu_reset ( struct kvm_vcpu * vcpu ) ;
2015-09-11 10:18:05 +03:00
void kvm_pmu_vcpu_destroy ( struct kvm_vcpu * vcpu ) ;
2015-09-08 07:26:13 +03:00
void kvm_pmu_disable_counter ( struct kvm_vcpu * vcpu , u64 val ) ;
void kvm_pmu_enable_counter ( struct kvm_vcpu * vcpu , u64 val ) ;
2016-02-26 14:29:19 +03:00
void kvm_pmu_flush_hwstate ( struct kvm_vcpu * vcpu ) ;
void kvm_pmu_sync_hwstate ( struct kvm_vcpu * vcpu ) ;
2017-02-01 14:51:52 +03:00
bool kvm_pmu_should_notify_user ( struct kvm_vcpu * vcpu ) ;
void kvm_pmu_update_run ( struct kvm_vcpu * vcpu ) ;
2015-09-08 10:49:39 +03:00
void kvm_pmu_software_increment ( struct kvm_vcpu * vcpu , u64 val ) ;
2015-10-28 07:10:30 +03:00
void kvm_pmu_handle_pmcr ( struct kvm_vcpu * vcpu , u64 val ) ;
2015-07-03 09:27:25 +03:00
void kvm_pmu_set_counter_event_type ( struct kvm_vcpu * vcpu , u64 data ,
u64 select_idx ) ;
2016-01-11 17:46:15 +03:00
bool kvm_arm_support_pmu_v3 ( void ) ;
2016-01-11 16:35:32 +03:00
int kvm_arm_pmu_v3_set_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr ) ;
int kvm_arm_pmu_v3_get_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr ) ;
int kvm_arm_pmu_v3_has_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr ) ;
2017-05-02 14:41:02 +03:00
int kvm_arm_pmu_v3_enable ( struct kvm_vcpu * vcpu ) ;
2015-09-11 04:38:32 +03:00
# else
struct kvm_pmu {
} ;
2015-06-18 11:01:53 +03:00
# define kvm_arm_pmu_v3_ready(v) (false)
2016-01-11 16:35:32 +03:00
# define kvm_arm_pmu_irq_initialized(v) (false)
2015-12-08 10:29:06 +03:00
static inline u64 kvm_pmu_get_counter_value ( struct kvm_vcpu * vcpu ,
u64 select_idx )
{
return 0 ;
}
static inline void kvm_pmu_set_counter_value ( struct kvm_vcpu * vcpu ,
u64 select_idx , u64 val ) { }
2015-09-08 07:26:13 +03:00
static inline u64 kvm_pmu_valid_counter_mask ( struct kvm_vcpu * vcpu )
{
return 0 ;
}
2015-09-11 06:30:22 +03:00
static inline void kvm_pmu_vcpu_reset ( struct kvm_vcpu * vcpu ) { }
2015-09-11 10:18:05 +03:00
static inline void kvm_pmu_vcpu_destroy ( struct kvm_vcpu * vcpu ) { }
2015-09-08 07:26:13 +03:00
static inline void kvm_pmu_disable_counter ( struct kvm_vcpu * vcpu , u64 val ) { }
static inline void kvm_pmu_enable_counter ( struct kvm_vcpu * vcpu , u64 val ) { }
2016-02-26 14:29:19 +03:00
static inline void kvm_pmu_flush_hwstate ( struct kvm_vcpu * vcpu ) { }
static inline void kvm_pmu_sync_hwstate ( struct kvm_vcpu * vcpu ) { }
2017-02-01 14:51:52 +03:00
static inline bool kvm_pmu_should_notify_user ( struct kvm_vcpu * vcpu )
{
return false ;
}
static inline void kvm_pmu_update_run ( struct kvm_vcpu * vcpu ) { }
2015-09-08 10:49:39 +03:00
static inline void kvm_pmu_software_increment ( struct kvm_vcpu * vcpu , u64 val ) { }
2015-10-28 07:10:30 +03:00
static inline void kvm_pmu_handle_pmcr ( struct kvm_vcpu * vcpu , u64 val ) { }
2015-07-03 09:27:25 +03:00
static inline void kvm_pmu_set_counter_event_type ( struct kvm_vcpu * vcpu ,
u64 data , u64 select_idx ) { }
2016-01-11 17:46:15 +03:00
static inline bool kvm_arm_support_pmu_v3 ( void ) { return false ; }
2016-01-11 16:35:32 +03:00
static inline int kvm_arm_pmu_v3_set_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr )
{
return - ENXIO ;
}
static inline int kvm_arm_pmu_v3_get_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr )
{
return - ENXIO ;
}
static inline int kvm_arm_pmu_v3_has_attr ( struct kvm_vcpu * vcpu ,
struct kvm_device_attr * attr )
{
return - ENXIO ;
}
2017-05-02 14:41:02 +03:00
static inline int kvm_arm_pmu_v3_enable ( struct kvm_vcpu * vcpu )
{
return 0 ;
}
2015-09-11 04:38:32 +03:00
# endif
# endif