Home
last modified time | relevance | path

Searched refs:PanfrostDriver (Results 1 – 3 of 3) sorted by relevance

/third_party/mesa3d/src/panfrost/ds/
Dpan_pps_driver.cc25 PanfrostDriver::PanfrostDriver() in PanfrostDriver() function in pps::PanfrostDriver
29 PanfrostDriver::~PanfrostDriver() in ~PanfrostDriver()
33 uint64_t PanfrostDriver::get_min_sampling_period_ns() in get_min_sampling_period_ns()
52 PanfrostDriver::create_available_counters(const PanfrostPerf &perf) in create_available_counters()
74 auto &pan_driver = PanfrostDriver::into(d); in create_available_counters()
92 bool PanfrostDriver::init_perfcnt() in init_perfcnt()
106 void PanfrostDriver::enable_counter(const uint32_t counter_id) in enable_counter()
111 void PanfrostDriver::enable_all_counters() in enable_all_counters()
119 void PanfrostDriver::enable_perfcnt(const uint64_t /* sampling_period_ns */) in enable_perfcnt()
130 bool PanfrostDriver::dump_perfcnt() in dump_perfcnt()
[all …]
Dpan_pps_driver.h22 class PanfrostDriver : public Driver
25 static inline PanfrostDriver &into(Driver &dri);
26 static inline const PanfrostDriver &into(const Driver &dri);
33 PanfrostDriver();
34 ~PanfrostDriver();
53 PanfrostDriver &PanfrostDriver::into(Driver &dri) in into()
55 return reinterpret_cast<PanfrostDriver &>(dri); in into()
58 const PanfrostDriver &PanfrostDriver::into(const Driver &dri) in into()
60 return reinterpret_cast<const PanfrostDriver &>(dri); in into()
/third_party/mesa3d/src/tool/pps/
Dpps_driver.cc46 map.emplace("panfrost", std::make_unique<PanfrostDriver>()); in create_supported_drivers()