/third_party/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_obfuscate_constants.cpp | 413 const opt::Instruction& inst, uint32_t in_operand_index, in MaybeAddConstantIdUse() 417 if (inst.GetInOperand(in_operand_index).type != SPV_OPERAND_TYPE_ID) { in MaybeAddConstantIdUse() 421 auto operand_id = inst.GetSingleWordInOperand(in_operand_index); in MaybeAddConstantIdUse() 433 ->set_target_instruction_opcode(uint32_t(inst.opcode())); in MaybeAddConstantIdUse() 438 skipped_opcode_count.find(inst.opcode()) == in MaybeAddConstantIdUse() 441 : skipped_opcode_count.at(inst.opcode())); in MaybeAddConstantIdUse() 469 for (auto& inst : block) { in Apply() 470 if (inst.HasResultId()) { in Apply() 474 base_instruction_result_id = inst.result_id(); in Apply() 483 if (inst in Apply() 412 MaybeAddConstantIdUse( const opt::Instruction& inst, uint32_t in_operand_index, uint32_t base_instruction_result_id, const std::map<spv::Op, uint32_t>& skipped_opcode_count, std::vector<protobufs::IdUseDescriptor>* constant_uses) MaybeAddConstantIdUse() argument [all...] |
H A D | fuzzer_pass_merge_function_returns.cpp | 151 ->WhileEachInst([](opt::Instruction* inst) { in Apply() 152 return inst->opcode() == spv::Op::OpLabel || in Apply() 153 inst->opcode() == spv::Op::OpPhi || in Apply() 154 inst->opcode() == spv::Op::OpBranch; in Apply() 245 for (auto& inst : *function->entry()) { in GetTypesToIdsAvailableAfterEntryBlock() 246 if (inst.HasResultId() && inst.type_id()) { in GetTypesToIdsAvailableAfterEntryBlock() 247 if (!result.count(inst.type_id())) { in GetTypesToIdsAvailableAfterEntryBlock() 248 result.emplace(inst.type_id(), std::vector<uint32_t>()); in GetTypesToIdsAvailableAfterEntryBlock() 250 result[inst in GetTypesToIdsAvailableAfterEntryBlock() [all...] |
/kernel/linux/linux-5.10/crypto/ |
H A D | pcbc.c | 155 struct skcipher_instance *inst; in crypto_pcbc_create() local 158 inst = skcipher_alloc_instance_simple(tmpl, tb); in crypto_pcbc_create() 159 if (IS_ERR(inst)) in crypto_pcbc_create() 160 return PTR_ERR(inst); in crypto_pcbc_create() 162 inst->alg.encrypt = crypto_pcbc_encrypt; in crypto_pcbc_create() 163 inst->alg.decrypt = crypto_pcbc_decrypt; in crypto_pcbc_create() 165 err = skcipher_register_instance(tmpl, inst); in crypto_pcbc_create() 167 inst->free(inst); in crypto_pcbc_create()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/mpeg/ |
H A D | nv44.c | 48 u32 inst; member 59 chan->inst = (*pgpuobj)->addr; in nv44_mpeg_chan_bind() 74 u32 inst = 0x80000000 | (chan->inst >> 4); in nv44_mpeg_chan_fini() local 77 if (nvkm_rd32(device, 0x00b318) == inst) in nv44_mpeg_chan_fini() 150 u32 inst = nvkm_rd32(device, 0x00b318) & 0x000fffff; in nv44_mpeg_intr() local 159 if (temp->inst >> 4 == inst) { in nv44_mpeg_intr() 185 chan ? chan->fifo->chid : -1, inst << 4, in nv44_mpeg_intr()
|
/kernel/linux/linux-6.6/crypto/ |
H A D | pcbc.c | 156 struct skcipher_instance *inst; in crypto_pcbc_create() local 159 inst = skcipher_alloc_instance_simple(tmpl, tb); in crypto_pcbc_create() 160 if (IS_ERR(inst)) in crypto_pcbc_create() 161 return PTR_ERR(inst); in crypto_pcbc_create() 163 inst->alg.encrypt = crypto_pcbc_encrypt; in crypto_pcbc_create() 164 inst->alg.decrypt = crypto_pcbc_decrypt; in crypto_pcbc_create() 166 err = skcipher_register_instance(tmpl, inst); in crypto_pcbc_create() 168 inst->free(inst); in crypto_pcbc_create()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
H A D | i2c.h | 79 int nv04_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 80 int nv4e_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 81 int nv50_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 82 int g94_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 83 int gf117_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 84 int gf119_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 85 int gk104_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 86 int gk110_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **); 87 int gm200_i2c_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_i2c **);
|
/third_party/libwebsockets/lib/drivers/netdev/ |
H A D | wifi.c | 56 wnd->inst.ops->scan(&wnd->inst); in lws_netdev_wifi_scan() 79 lws_netdevs_t *netdevs = lws_netdevs_from_ndi(&wnd->inst); in lws_netdev_wifi_scan_select() 160 wnd->inst.ops->connect(&wnd->inst, pc->ssid, pc->passphrase, in lws_netdev_wifi_scan_select() 189 lws_netdevs_t *netdevs = lws_netdevs_from_ndi(&wnd->inst); in lws_netdev_wifi_redo_last() 201 lws_snprintf(setname, sizeof(setname), "netdev.last.%s", wnd->inst.name); in lws_netdev_wifi_redo_last() 235 wnd->inst.ops->connect(&wnd->inst, ssid_copy, pp, bssid); in lws_netdev_wifi_redo_last()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | function.cpp | 32 [clone, ctx](const Instruction* inst) { in Clone() 33 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 62 [&f](Instruction* inst) { in ForEachInst() 63 f(inst); in ForEachInst() 73 [&f](const Instruction* inst) { in ForEachInst() 74 f(inst); in ForEachInst() 265 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 266 str << inst->PrettyPrint(options); in PrettyPrint() 267 if (inst->opcode() != SpvOpFunctionEnd) { in PrettyPrint()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | function.cpp | 32 [clone, ctx](const Instruction* inst) { in Clone() 33 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 62 [&f](Instruction* inst) { in ForEachInst() 63 f(inst); in ForEachInst() 73 [&f](const Instruction* inst) { in ForEachInst() 74 f(inst); in ForEachInst() 265 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 266 str << inst->PrettyPrint(options); in PrettyPrint() 267 if (inst->opcode() != SpvOpFunctionEnd) { in PrettyPrint()
|
/third_party/spirv-tools/source/opt/ |
H A D | function.cpp | 30 [clone, ctx](const Instruction* inst) { in Clone() 31 clone->AddParameter(std::unique_ptr<Instruction>(inst->Clone(ctx))); in Clone() 60 [&f](Instruction* inst) { in ForEachInst() 61 f(inst); in ForEachInst() 71 [&f](const Instruction* inst) { in ForEachInst() 72 f(inst); in ForEachInst() 263 ForEachInst([&str, options](const Instruction* inst) { in PrettyPrint() 264 str << inst->PrettyPrint(options); in PrettyPrint() 265 if (inst->opcode() != spv::Op::OpFunctionEnd) { in PrettyPrint()
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/fifo/ |
H A D | gf100.c | 81 nvkm_wr32(device, 0x003000 + (chan->id * 8), 0xc0000000 | chan->inst->addr >> 12); in gf100_chan_bind() 90 nvkm_kmap(chan->inst); in gf100_chan_ramfc_write() 91 nvkm_wo32(chan->inst, 0x08, lower_32_bits(userd)); in gf100_chan_ramfc_write() 92 nvkm_wo32(chan->inst, 0x0c, upper_32_bits(userd)); in gf100_chan_ramfc_write() 93 nvkm_wo32(chan->inst, 0x10, 0x0000face); in gf100_chan_ramfc_write() 94 nvkm_wo32(chan->inst, 0x30, 0xfffff902); in gf100_chan_ramfc_write() 95 nvkm_wo32(chan->inst, 0x48, lower_32_bits(offset)); in gf100_chan_ramfc_write() 96 nvkm_wo32(chan->inst, 0x4c, upper_32_bits(offset) | (limit2 << 16)); in gf100_chan_ramfc_write() 97 nvkm_wo32(chan->inst, 0x54, 0x00000002); in gf100_chan_ramfc_write() 98 nvkm_wo32(chan->inst, in gf100_chan_ramfc_write() 699 u32 inst = nvkm_rd32(device, 0x002800 + (unit * 0x10)); gf100_fifo_intr_mmu_fault_unit() local 965 gf100_fifo_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst, struct nvkm_fifo **pfifo) gf100_fifo_new() argument [all...] |
/third_party/mesa3d/src/intel/common/ |
H A D | intel_batch_decoder.c | 214 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); in handle_state_base_address() local 217 intel_field_iterator_init(&iter, inst, p, 0, false); in handle_state_base_address() 252 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); in handle_binding_table_pool_alloc() local 255 intel_field_iterator_init(&iter, inst, p, 0, false); in handle_binding_table_pool_alloc() 418 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); in handle_media_interface_descriptor_load() local 423 intel_field_iterator_init(&iter, inst, p, 0, false); in handle_media_interface_descriptor_load() 460 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); in handle_compute_walker() local 463 intel_field_iterator_init(&iter, inst, p, 0, false); in handle_compute_walker() 476 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); in handle_3dstate_vertex_buffers() local 486 intel_field_iterator_init(&iter, inst, in handle_3dstate_vertex_buffers() 539 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); handle_3dstate_index_buffer() local 589 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_single_ksp() local 631 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_mesh_task_ksp() local 661 decode_ps_kern(struct intel_batch_decode_ctx *ctx, struct intel_group *inst, const uint32_t *p) decode_ps_kern() argument 717 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_ps_kernels() local 724 struct intel_group *inst = decode_3dstate_constant_all() local 767 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_3dstate_constant() local 814 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_gfx4_constant_buffer() local 947 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_dynamic_state_pointers() local 966 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_3dstate_viewport_state_pointers() local 1023 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_3dstate_cc_state_pointers() local 1109 struct intel_group *inst = intel_ctx_find_instruction(ctx, p); decode_load_register_imm() local 1403 struct intel_group *inst; intel_print_batch() local [all...] |
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_fs_nir.cpp | 377 fs_inst *inst = bld.MOV(bld.null_reg_d(), in nir_emit_if() local 379 inst->conditional_mod = BRW_CONDITIONAL_NZ; in nir_emit_if() 627 fs_inst *inst; in emit_find_msb_using_lzd() local 664 inst = bld.ADD(result, retype(result, BRW_REGISTER_TYPE_D), brw_imm_d(31)); in emit_find_msb_using_lzd() 665 inst->src[0].negate = true; in emit_find_msb_using_lzd() 823 fs_inst *inst; in emit_fsign() local 873 inst = bld.OR(result, result, brw_imm_uw(0x3c00u)); in emit_fsign() 876 inst = bld.XOR(result, result, retype(op[1], BRW_REGISTER_TYPE_UW)); in emit_fsign() 879 inst->predicate = BRW_PREDICATE_NORMAL; in emit_fsign() 893 inst in emit_fsign() 973 fs_inst *inst; nir_emit_alu() local [all...] |
H A D | brw_vec4.h | 154 bool is_dep_ctrl_unsafe(const vec4_instruction *inst); 160 bool is_supported_64bit_region(vec4_instruction *inst, unsigned arg); 165 vec4_instruction *inst, int arg); 167 vec4_instruction *emit(vec4_instruction *inst); 180 vec4_instruction *inst, 265 src_reg get_scratch_offset(bblock_t *block, vec4_instruction *inst, 267 void emit_scratch_read(bblock_t *block, vec4_instruction *inst, 271 void emit_scratch_write(bblock_t *block, vec4_instruction *inst, 279 vec4_instruction *inst, src_reg src); 287 void dump_instruction(const backend_instruction *inst) cons [all...] |
/drivers/hdf_core/adapter/uhdf2/manager/src/ |
H A D | devsvc_manager_stub.c | 603 struct DevSvcManagerStub *inst = (struct DevSvcManagerStub *)svcmgr; in DevSvcManagerStubStart() local 604 if (inst == NULL) { in DevSvcManagerStubStart() 608 if (inst->started) { in DevSvcManagerStubStart() 615 inst->remote = HdfRemoteServiceObtain((struct HdfObject *)inst, &dispatcher); in DevSvcManagerStubStart() 616 if (inst->remote == NULL) { in DevSvcManagerStubStart() 620 if (!HdfRemoteServiceSetInterfaceDesc(inst->remote, "HDI.IServiceManager.V1_0")) { in DevSvcManagerStubStart() 622 HdfRemoteServiceRecycle(inst->remote); in DevSvcManagerStubStart() 626 inst->recipient.OnRemoteDied = DevSvcManagerOnServiceDied; in DevSvcManagerStubStart() 627 int ret = HdfRemoteServiceRegister(DEVICE_SERVICE_MANAGER_SA_ID, inst in DevSvcManagerStubStart() 640 DevSvcManagerStubConstruct(struct DevSvcManagerStub *inst) DevSvcManagerStubConstruct() argument [all...] |
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_atifs_to_nir.c | 180 prepare_argument(struct st_translate *t, const struct atifs_instruction *inst, in prepare_argument() argument 183 if (argId >= inst->ArgCount[alpha]) { in prepare_argument() 188 const struct atifragshader_src_register *srcReg = &inst->SrcReg[alpha][argId]; in prepare_argument() 225 const struct atifs_instruction *inst, in emit_arith_inst() 229 for (int i = 0; i < inst->ArgCount[alpha]; i++) in emit_arith_inst() 230 src[i] = prepare_argument(t, inst, i, alpha); in emit_arith_inst() 232 switch (inst->Opcode[alpha]) { in emit_arith_inst() 395 const struct atifs_instruction *inst) in compile_instruction() 400 unsigned dstreg = inst->DstReg[optype].Index - GL_REG_0_ATI; in compile_instruction() 402 if (!inst in compile_instruction() 224 emit_arith_inst(struct st_translate *t, const struct atifs_instruction *inst, bool alpha) emit_arith_inst() argument 394 compile_instruction(struct st_translate *t, const struct atifs_instruction *inst) compile_instruction() argument 478 struct atifs_instruction *inst = &atifs->Instructions[pass][i]; st_translate_atifs_program() local 576 struct atifs_instruction *inst = &atifs->Instructions[pass][i]; st_init_atifs_prog() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass.cpp | 434 for (auto& inst : GetIRContext()->types_values()) { in FindOrCreateGlobalUndef() 435 if (inst.opcode() == SpvOpUndef && inst.type_id() == type_id) { in FindOrCreateGlobalUndef() 436 return inst.result_id(); in FindOrCreateGlobalUndef() 475 for (auto& inst : GetIRContext()->types_values()) { in GetAvailableBasicTypesAndPointers() 482 switch (inst.opcode()) { in GetAvailableBasicTypesAndPointers() 489 basic_types.insert(inst.result_id()); in GetAvailableBasicTypesAndPointers() 490 basic_type_to_pointers.insert({inst.result_id(), {}}); in GetAvailableBasicTypesAndPointers() 494 if (basic_types.count(inst.GetSingleWordInOperand(0))) { in GetAvailableBasicTypesAndPointers() 495 basic_types.insert(inst in GetAvailableBasicTypesAndPointers() [all...] |
H A D | fuzzer_pass_merge_function_returns.cpp | 151 ->WhileEachInst([](opt::Instruction* inst) { in Apply() 152 return inst->opcode() == SpvOpLabel || in Apply() 153 inst->opcode() == SpvOpPhi || in Apply() 154 inst->opcode() == SpvOpBranch; in Apply() 245 for (auto& inst : *function->entry()) { in GetTypesToIdsAvailableAfterEntryBlock() 246 if (inst.HasResultId() && inst.type_id()) { in GetTypesToIdsAvailableAfterEntryBlock() 247 if (!result.count(inst.type_id())) { in GetTypesToIdsAvailableAfterEntryBlock() 248 result.emplace(inst.type_id(), std::vector<uint32_t>()); in GetTypesToIdsAvailableAfterEntryBlock() 250 result[inst in GetTypesToIdsAvailableAfterEntryBlock() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass.cpp | 434 for (auto& inst : GetIRContext()->types_values()) { in FindOrCreateGlobalUndef() 435 if (inst.opcode() == SpvOpUndef && inst.type_id() == type_id) { in FindOrCreateGlobalUndef() 436 return inst.result_id(); in FindOrCreateGlobalUndef() 475 for (auto& inst : GetIRContext()->types_values()) { in GetAvailableBasicTypesAndPointers() 482 switch (inst.opcode()) { in GetAvailableBasicTypesAndPointers() 489 basic_types.insert(inst.result_id()); in GetAvailableBasicTypesAndPointers() 490 basic_type_to_pointers.insert({inst.result_id(), {}}); in GetAvailableBasicTypesAndPointers() 494 if (basic_types.count(inst.GetSingleWordInOperand(0))) { in GetAvailableBasicTypesAndPointers() 495 basic_types.insert(inst in GetAvailableBasicTypesAndPointers() [all...] |
H A D | fuzzer_pass_merge_function_returns.cpp | 151 ->WhileEachInst([](opt::Instruction* inst) { in Apply() 152 return inst->opcode() == SpvOpLabel || in Apply() 153 inst->opcode() == SpvOpPhi || in Apply() 154 inst->opcode() == SpvOpBranch; in Apply() 245 for (auto& inst : *function->entry()) { in GetTypesToIdsAvailableAfterEntryBlock() 246 if (inst.HasResultId() && inst.type_id()) { in GetTypesToIdsAvailableAfterEntryBlock() 247 if (!result.count(inst.type_id())) { in GetTypesToIdsAvailableAfterEntryBlock() 248 result.emplace(inst.type_id(), std::vector<uint32_t>()); in GetTypesToIdsAvailableAfterEntryBlock() 250 result[inst in GetTypesToIdsAvailableAfterEntryBlock() [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
H A D | uvd_v6_0.c | 95 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_get_rptr() 125 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_get_wptr() 156 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_set_wptr() 393 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_UVD_SYSTEM_MESSAGE, &adev->uvd.inst->irq); in uvd_v6_0_sw_init() 400 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + VISLANDS30_IV_SRCID_UVD_ENC_GEN_PURP, &adev->uvd.inst->irq); in uvd_v6_0_sw_init() 412 adev->uvd.inst->ring_enc[i].funcs = NULL; in uvd_v6_0_sw_init() 414 adev->uvd.inst->irq.num_types = 1; in uvd_v6_0_sw_init() 420 ring = &adev->uvd.inst->ring; in uvd_v6_0_sw_init() 422 r = amdgpu_ring_init(adev, ring, 512, &adev->uvd.inst->irq, 0, in uvd_v6_0_sw_init() 433 ring = &adev->uvd.inst in uvd_v6_0_sw_init() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdgpu/ |
H A D | uvd_v6_0.c | 95 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_get_rptr() 125 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_get_wptr() 156 if (ring == &adev->uvd.inst->ring_enc[0]) in uvd_v6_0_enc_ring_set_wptr() 385 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, VISLANDS30_IV_SRCID_UVD_SYSTEM_MESSAGE, &adev->uvd.inst->irq); in uvd_v6_0_sw_init() 392 r = amdgpu_irq_add_id(adev, AMDGPU_IRQ_CLIENTID_LEGACY, i + VISLANDS30_IV_SRCID_UVD_ENC_GEN_PURP, &adev->uvd.inst->irq); in uvd_v6_0_sw_init() 404 adev->uvd.inst->ring_enc[i].funcs = NULL; in uvd_v6_0_sw_init() 406 adev->uvd.inst->irq.num_types = 1; in uvd_v6_0_sw_init() 412 ring = &adev->uvd.inst->ring; in uvd_v6_0_sw_init() 414 r = amdgpu_ring_init(adev, ring, 512, &adev->uvd.inst->irq, 0, in uvd_v6_0_sw_init() 425 ring = &adev->uvd.inst in uvd_v6_0_sw_init() [all...] |
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | efi.h | 226 #define efi_table_attr(inst, attr) \ 228 ? inst->attr \ 229 : (__typeof__(inst->attr)) \ 230 efi_mixed_mode_cast(inst->mixed_mode.attr)) 311 #define __efi64_thunk_map(inst, func, ...) \ 312 efi64_thunk(inst->mixed_mode.func, \ 326 #define efi_call_proto(inst, func, ...) \ 328 ? inst->func(inst, ##__VA_ARGS__) \ 329 : __efi64_thunk_map(inst, fun [all...] |
/kernel/linux/linux-5.10/drivers/phy/samsung/ |
H A D | phy-exynos5250-usb2.c | 175 static void exynos5250_isol(struct samsung_usb2_phy_instance *inst, bool on) in exynos5250_isol() argument 177 struct samsung_usb2_phy_driver *drv = inst->drv; in exynos5250_isol() 181 switch (inst->cfg->id) { in exynos5250_isol() 197 static int exynos5250_power_on(struct samsung_usb2_phy_instance *inst) in exynos5250_power_on() argument 199 struct samsung_usb2_phy_driver *drv = inst->drv; in exynos5250_power_on() 206 switch (inst->cfg->id) { in exynos5250_power_on() 318 exynos5250_isol(inst, 0); in exynos5250_power_on() 323 static int exynos5250_power_off(struct samsung_usb2_phy_instance *inst) in exynos5250_power_off() argument 325 struct samsung_usb2_phy_driver *drv = inst->drv; in exynos5250_power_off() 330 exynos5250_isol(inst, in exynos5250_power_off() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn21/ |
H A D | dcn21_hwseq.c | 182 uint32_t otg_inst = pipe_ctx->stream_res.tg->inst; in dcn21_set_abm_immediate_disable() 194 panel_cntl->inst, panel_cntl->pwrseq_inst); in dcn21_set_abm_immediate_disable() 199 panel_cntl->inst, in dcn21_set_abm_immediate_disable() 217 otg_inst = tg->inst; in dcn21_set_pipe() 228 panel_cntl->inst, in dcn21_set_pipe() 233 panel_cntl->inst, in dcn21_set_pipe() 251 otg_inst = tg->inst; in dcn21_set_backlight_level() 262 panel_cntl->inst, in dcn21_set_backlight_level() 268 panel_cntl->inst, in dcn21_set_backlight_level() 274 frame_ramp, 0, panel_cntl->inst); in dcn21_set_backlight_level() [all...] |