/Linux-v4.19/arch/arm/mach-vexpress/ |
D | spc.c | 113 struct ve_spc_opp *opps[MAX_CLUSTERS]; member 260 struct ve_spc_opp *opps = info->opps[cluster]; in ve_spc_get_performance() local 270 opps += perf; in ve_spc_get_performance() 271 *freq = opps->freq; in ve_spc_get_performance() 280 struct ve_spc_opp *opps = info->opps[cluster]; in ve_spc_round_performance() local 284 for (idx = 0; idx < max_opp; idx++, opps++) { in ve_spc_round_performance() 285 ftmp = opps->freq; in ve_spc_round_performance() 303 struct ve_spc_opp *opps = info->opps[cluster]; in ve_spc_find_performance_index() local 305 for (idx = 0; idx < max_opp; idx++, opps++) in ve_spc_find_performance_index() 306 if (opps->freq == freq) in ve_spc_find_performance_index() [all …]
|
/Linux-v4.19/drivers/firmware/ |
D | arm_scpi.c | 318 } opps[MAX_DVFS_OPPS]; member 646 info->opps = kcalloc(info->count, sizeof(*opp), GFP_KERNEL); in scpi_dvfs_get_info() 647 if (!info->opps) { in scpi_dvfs_get_info() 652 for (i = 0, opp = info->opps; i < info->count; i++, opp++) { in scpi_dvfs_get_info() 653 opp->freq = le32_to_cpu(buf.opps[i].freq); in scpi_dvfs_get_info() 654 opp->m_volt = le32_to_cpu(buf.opps[i].m_volt); in scpi_dvfs_get_info() 657 sort(info->opps, info->count, sizeof(*opp), opp_cmp_func, NULL); in scpi_dvfs_get_info() 703 if (!info->opps) in scpi_dvfs_add_opps_to_device() 706 for (opp = info->opps, idx = 0; idx < info->count; idx++, opp++) { in scpi_dvfs_add_opps_to_device() 880 kfree(info->dvfs[i]->opps); in scpi_remove()
|
/Linux-v4.19/net/ipv6/ |
D | ip6_offload.c | 145 const struct net_offload **opps) in ipv6_exthdrs_len() argument 153 *opps = rcu_dereference(inet6_offloads[proto]); in ipv6_exthdrs_len() 154 if (unlikely(!(*opps))) in ipv6_exthdrs_len() 156 if (!((*opps)->flags & INET6_PROTO_GSO_EXTHDR)) in ipv6_exthdrs_len()
|
/Linux-v4.19/drivers/clk/ |
D | clk-scpi.c | 78 const struct scpi_opp *opp = clk->info->opps; in __scpi_dvfs_round_rate() 103 opp = clk->info->opps + idx; in scpi_dvfs_recalc_rate() 118 const struct scpi_opp *opp = clk->info->opps; in __scpi_find_dvfs_index()
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dce80/ |
D | dce80_resource.c | 673 if (pool->base.opps[i] != NULL) in destruct() 674 dce110_opp_destroy(&pool->base.opps[i]); in destruct() 932 pool->base.opps[i] = dce80_opp_create(ctx, i); in dce80_construct() 933 if (pool->base.opps[i] == NULL) { in dce80_construct() 1126 pool->base.opps[i] = dce80_opp_create(ctx, i); in dce81_construct() 1127 if (pool->base.opps[i] == NULL) { in dce81_construct() 1308 pool->base.opps[i] = dce80_opp_create(ctx, i); in dce83_construct() 1309 if (pool->base.opps[i] == NULL) { in dce83_construct()
|
/Linux-v4.19/include/linux/ |
D | scpi_protocol.h | 28 struct scpi_opp *opps; member
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dce110/ |
D | dce110_resource.c | 669 if (pool->base.opps[i] != NULL) in destruct() 670 dce110_opp_destroy(&pool->base.opps[i]); in destruct() 980 pipe_ctx->stream_res.opp = pool->opps[underlay_idx]; in dce110_acquire_underlay() 1069 pool->opps[pool->pipe_count] = &dce110_oppv->base; in underlay_create() 1291 pool->base.opps[i] = dce110_opp_create(ctx, i); in construct() 1292 if (pool->base.opps[i] == NULL) { in construct()
|
/Linux-v4.19/Documentation/devicetree/bindings/power/ |
D | power_domain.txt | 147 - required-opps: This contains phandle to an OPP node in another device's OPP 195 required-opps = <&domain0_opp_0>; 202 required-opps = <&domain1_opp_1>;
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dce100/ |
D | dce100_resource.c | 640 if (pool->base.opps[i] != NULL) in destruct() 641 dce110_opp_destroy(&pool->base.opps[i]); in destruct() 959 pool->base.opps[i] = dce100_opp_create(ctx, i); in construct() 960 if (pool->base.opps[i] == NULL) { in construct()
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dcn10/ |
D | dcn10_resource.c | 840 if (pool->base.opps[i] != NULL) in destruct() 841 pool->base.opps[i]->funcs->opp_destroy(&pool->base.opps[i]); in destruct() 1280 pool->base.opps[j] = dcn10_opp_create(ctx, i); in construct() 1281 if (pool->base.opps[j] == NULL) { in construct()
|
D | dcn10_hw_sequencer.c | 1034 dc->res_pool->opps[i]->mpc_tree_params.opp_id = dc->res_pool->opps[i]->inst; in dcn10_init_hw() 1035 dc->res_pool->opps[i]->mpc_tree_params.opp_list = NULL; in dcn10_init_hw() 1036 dc->res_pool->opps[i]->mpcc_disconnect_pending[pipe_ctx->plane_res.mpcc_inst] = true; in dcn10_init_hw() 1037 pipe_ctx->stream_res.opp = dc->res_pool->opps[i]; in dcn10_init_hw()
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dce120/ |
D | dce120_resource.c | 479 if (pool->base.opps[i] != NULL) in destruct() 480 dce110_opp_destroy(&pool->base.opps[i]); in destruct() 1015 pool->base.opps[j] = dce120_opp_create( in construct() 1018 if (pool->base.opps[j] == NULL) { in construct()
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/inc/ |
D | core_types.h | 139 struct output_pixel_processor *opps[MAX_PIPES]; member
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/dce112/ |
D | dce112_resource.c | 658 if (pool->base.opps[i] != NULL) in destruct() 659 dce110_opp_destroy(&pool->base.opps[i]); in destruct() 1239 pool->base.opps[i] = dce112_opp_create( in construct() 1242 if (pool->base.opps[i] == NULL) { in construct()
|
/Linux-v4.19/Documentation/power/ |
D | opp.txt | 69 operational functions operate only on available opps: 267 dev_pm_opp_get_opp_count - Retrieve the number of available opps for a device
|
/Linux-v4.19/drivers/mfd/ |
D | db8500-prcmu.c | 1852 u8 opps[] = { ARM_EXTCLK, ARM_50_OPP, ARM_100_OPP, ARM_MAX_OPP }; in set_armss_rate() local 1866 pr_debug("SET ARM OPP 0x%02x\n", opps[i]); in set_armss_rate() 1867 return db8500_prcmu_set_arm_opp(opps[i]); in set_armss_rate()
|
/Linux-v4.19/Documentation/devicetree/bindings/opp/ |
D | opp.txt | 165 - required-opps: This contains phandle to an OPP node in another device's OPP
|
/Linux-v4.19/drivers/gpu/drm/amd/display/dc/core/ |
D | dc_resource.c | 1276 pipe_ctx->stream_res.opp = pool->opps[i]; in acquire_first_split_pipe() 1646 pipe_ctx->stream_res.opp = pool->opps[i]; in acquire_first_free_pipe()
|