123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2018-2021, The Linux Foundation. All rights reserved.
- */
- #ifndef __MSM_CVP_RESOURCES_H__
- #define __MSM_CVP_RESOURCES_H__
- #include <linux/devfreq.h>
- #include <linux/platform_device.h>
- #include "msm_cvp_core.h"
- #include <linux/soc/qcom/llcc-qcom.h>
- struct reg_value_pair {
- u32 reg;
- u32 value;
- };
- struct reg_set {
- struct reg_value_pair *reg_tbl;
- int count;
- };
- struct addr_range {
- u32 start;
- u32 size;
- };
- struct addr_set {
- struct addr_range *addr_tbl;
- int count;
- };
- struct context_bank_info {
- struct list_head list;
- const char *name;
- u32 buffer_type;
- bool is_secure;
- struct addr_range addr_range;
- struct device *dev;
- struct iommu_domain *domain;
- };
- struct regulator_info {
- struct regulator *regulator;
- bool has_hw_power_collapse;
- char *name;
- };
- struct regulator_set {
- struct regulator_info *regulator_tbl;
- u32 count;
- };
- struct clock_info {
- const char *name;
- u32 clk_id;
- struct clk *clk;
- u32 count;
- bool has_scaling;
- bool has_mem_retention;
- };
- struct clock_set {
- struct clock_info *clock_tbl;
- u32 count;
- };
- struct bus_info {
- char *name;
- int master;
- int slave;
- unsigned int range[2];
- const char *governor;
- struct device *dev;
- struct devfreq_dev_profile devfreq_prof;
- struct devfreq *devfreq;
- struct icc_path *client;
- bool is_prfm_gov_used;
- };
- struct bus_set {
- struct bus_info *bus_tbl;
- u32 count;
- };
- enum power_state {
- CVP_POWER_INIT,
- CVP_POWER_ON,
- CVP_POWER_OFF,
- CVP_POWER_INVALID,
- };
- struct reset_info {
- struct reset_control *rst;
- enum power_state required_state;
- const char *name;
- };
- struct reset_set {
- struct reset_info *reset_tbl;
- u32 count;
- };
- struct allowed_clock_rates_table {
- u32 clock_rate;
- };
- struct clock_profile_entry {
- u32 codec_mask;
- u32 vpp_cycles;
- u32 vsp_cycles;
- u32 low_power_cycles;
- };
- struct clock_freq_table {
- struct clock_profile_entry *clk_prof_entries;
- u32 count;
- };
- struct subcache_info {
- const char *name;
- bool isactive;
- bool isset;
- struct llcc_slice_desc *subcache;
- };
- struct subcache_set {
- struct subcache_info *subcache_tbl;
- u32 count;
- };
- struct msm_cvp_mem_cdsp {
- struct device *dev;
- };
- struct msm_cvp_platform_resources {
- phys_addr_t firmware_base;
- phys_addr_t register_base;
- phys_addr_t ipcc_reg_base;
- phys_addr_t gcc_reg_base;
- uint32_t register_size;
- uint32_t ipcc_reg_size;
- uint32_t gcc_reg_size;
- uint32_t irq;
- uint32_t sku_version;
- struct allowed_clock_rates_table *allowed_clks_tbl;
- u32 allowed_clks_tbl_size;
- struct clock_freq_table clock_freq_tbl;
- bool sys_cache_present;
- bool sys_cache_res_set;
- struct subcache_set subcache_set;
- struct reg_set reg_set;
- struct addr_set qdss_addr_set;
- uint32_t max_ssr_allowed;
- struct platform_device *pdev;
- struct regulator_set regulator_set;
- struct clock_set clock_set;
- struct bus_set bus_set;
- struct reset_set reset_set;
- bool use_non_secure_pil;
- bool sw_power_collapsible;
- bool auto_pil;
- bool dsp_enabled;
- struct list_head context_banks;
- bool thermal_mitigable;
- const char *fw_name;
- const char *hfi_version;
- bool never_unload_fw;
- bool debug_timeout;
- uint32_t pm_qos_latency_us;
- uint32_t max_inst_count;
- uint32_t max_secure_inst_count;
- int msm_cvp_hw_rsp_timeout;
- int msm_cvp_dsp_rsp_timeout;
- int msm_cvp_firmware_unload_delay;
- uint32_t msm_cvp_pwr_collapse_delay;
- bool non_fatal_pagefaults;
- bool fatal_ssr;
- struct msm_cvp_mem_cdsp mem_cdsp;
- uint32_t vpu_ver;
- uint32_t fw_cycles;
- struct msm_cvp_ubwc_config_data *ubwc_config;
- };
- static inline bool is_iommu_present(struct msm_cvp_platform_resources *res)
- {
- return !list_empty(&res->context_banks);
- }
- #endif
|