Home
last modified time | relevance | path

Searched refs:vpe (Results 1 – 24 of 24) sorted by relevance

/linux-6.6.21/arch/mips/lantiq/ !
Dirq.c50 #define ltq_icu_w32(vpe, m, x, y) \ argument
51 ltq_w32((x), ltq_icu_membase[vpe] + m*LTQ_ICU_IM_SIZE + (y))
53 #define ltq_icu_r32(vpe, m, x) \ argument
54 ltq_r32(ltq_icu_membase[vpe] + m*LTQ_ICU_IM_SIZE + (x))
83 int vpe; in ltq_disable_irq() local
88 for_each_present_cpu(vpe) { in ltq_disable_irq()
89 ltq_icu_w32(vpe, im, in ltq_disable_irq()
90 ltq_icu_r32(vpe, im, LTQ_ICU_IER) & ~BIT(offset), in ltq_disable_irq()
101 int vpe; in ltq_mask_and_ack_irq() local
106 for_each_present_cpu(vpe) { in ltq_mask_and_ack_irq()
[all …]
/linux-6.6.21/drivers/irqchip/ !
Dirq-gic-v4.c118 static int its_alloc_vcpu_sgis(struct its_vpe *vpe, int idx) in its_alloc_vcpu_sgis() argument
130 vpe->fwnode = irq_domain_alloc_named_id_fwnode(name, idx); in its_alloc_vcpu_sgis()
131 if (!vpe->fwnode) in its_alloc_vcpu_sgis()
137 vpe->sgi_domain = irq_domain_create_linear(vpe->fwnode, 16, in its_alloc_vcpu_sgis()
138 sgi_domain_ops, vpe); in its_alloc_vcpu_sgis()
139 if (!vpe->sgi_domain) in its_alloc_vcpu_sgis()
142 sgi_base = irq_domain_alloc_irqs(vpe->sgi_domain, 16, NUMA_NO_NODE, vpe); in its_alloc_vcpu_sgis()
149 if (vpe->sgi_domain) in its_alloc_vcpu_sgis()
150 irq_domain_remove(vpe->sgi_domain); in its_alloc_vcpu_sgis()
151 if (vpe->fwnode) in its_alloc_vcpu_sgis()
[all …]
Dirq-gic-v3-its.c266 static int vpe_to_cpuid_lock(struct its_vpe *vpe, unsigned long *flags) in vpe_to_cpuid_lock() argument
268 raw_spin_lock_irqsave(&vpe->vpe_lock, *flags); in vpe_to_cpuid_lock()
269 return vpe->col_idx; in vpe_to_cpuid_lock()
272 static void vpe_to_cpuid_unlock(struct its_vpe *vpe, unsigned long flags) in vpe_to_cpuid_unlock() argument
274 raw_spin_unlock_irqrestore(&vpe->vpe_lock, flags); in vpe_to_cpuid_unlock()
281 struct its_vpe *vpe = NULL; in irq_to_cpuid_lock() local
285 vpe = irq_data_get_irq_chip_data(d); in irq_to_cpuid_lock()
289 vpe = map->vpe; in irq_to_cpuid_lock()
292 if (vpe) { in irq_to_cpuid_lock()
293 cpu = vpe_to_cpuid_lock(vpe, flags); in irq_to_cpuid_lock()
[all …]
/linux-6.6.21/arch/mips/kernel/ !
Dvpe-mt.c26 int vpe_run(struct vpe *v) in vpe_run()
180 struct vpe *v; in vpe_alloc()
195 int vpe_start(void *vpe, unsigned long start) in vpe_start() argument
197 struct vpe *v = vpe; in vpe_start()
205 int vpe_stop(void *vpe) in vpe_stop() argument
207 struct vpe *v = vpe; in vpe_stop()
226 int vpe_free(void *vpe) in vpe_free() argument
228 struct vpe *v = vpe; in vpe_free()
263 struct vpe *vpe = get_vpe(aprp_cpu_index()); in store_kill() local
266 list_for_each_entry(notifier, &vpe->notify, list) in store_kill()
[all …]
Dvpe.c53 struct vpe *get_vpe(int minor) in get_vpe()
55 struct vpe *res, *v; in get_vpe()
92 struct vpe *alloc_vpe(int minor) in alloc_vpe()
94 struct vpe *v; in alloc_vpe()
96 v = kzalloc(sizeof(struct vpe), GFP_KERNEL); in alloc_vpe()
133 void release_vpe(struct vpe *v) in release_vpe()
549 static int find_vpe_symbols(struct vpe *v, Elf_Shdr *sechdrs, in find_vpe_symbols()
575 static int vpe_elfload(struct vpe *v) in vpe_elfload()
753 struct vpe *v; in vpe_open()
798 struct vpe *v; in vpe_release()
[all …]
DMakefile65 obj-$(CONFIG_MIPS_VPE_LOADER) += vpe.o
66 obj-$(CONFIG_MIPS_VPE_LOADER_MT) += vpe-mt.o
Drtlx.c68 void rtlx_starting(int vpe) in rtlx_starting() argument
81 void rtlx_stopping(int vpe) in rtlx_stopping() argument
Dcpu-probe.c2034 void cpu_set_vpe_id(struct cpuinfo_mips *cpuinfo, unsigned int vpe) in cpu_set_vpe_id() argument
2037 WARN_ON(vpe > (MIPS_GLOBALNUMBER_VP >> MIPS_GLOBALNUMBER_VP_SHF)); in cpu_set_vpe_id()
2040 WARN_ON(vpe && !IS_ENABLED(CONFIG_MIPS_MT_SMP) && in cpu_set_vpe_id()
2044 cpuinfo->globalnumber |= vpe << MIPS_GLOBALNUMBER_VP_SHF; in cpu_set_vpe_id()
Dperf_event_mipsxx.c98 #define M_PERFCTL_VPEID(vpe) ((vpe) << MIPS_PERFCTRL_VPEID_S) argument
/linux-6.6.21/arch/mips/include/asm/ !
Dvpe.h49 struct vpe { struct
82 struct vpe *pvpe; /* parent VPE */ argument
88 void (*start)(int vpe);
89 void (*stop)(int vpe);
108 struct vpe *get_vpe(int minor);
110 struct vpe *alloc_vpe(int minor);
112 void release_vpe(struct vpe *v);
117 int vpe_run(struct vpe *v);
Drtlx.h30 void rtlx_starting(int vpe);
31 void rtlx_stopping(int vpe);
Dsmp-cps.h30 extern void mips_cps_boot_vpes(struct core_boot_config *cfg, unsigned vpe);
Dcpu-info.h179 extern void cpu_set_vpe_id(struct cpuinfo_mips *cpuinfo, unsigned int vpe);
/linux-6.6.21/arch/arm64/kvm/vgic/ !
Dvgic-v4.c108 static void vgic_v4_sync_sgi_config(struct its_vpe *vpe, struct vgic_irq *irq) in vgic_v4_sync_sgi_config() argument
110 vpe->sgi_config[irq->intid].enabled = irq->enabled; in vgic_v4_sync_sgi_config()
111 vpe->sgi_config[irq->intid].group = irq->group; in vgic_v4_sync_sgi_config()
112 vpe->sgi_config[irq->intid].priority = irq->priority; in vgic_v4_sync_sgi_config()
117 struct its_vpe *vpe = &vcpu->arch.vgic_cpu.vgic_v3.its_vpe; in vgic_v4_enable_vsgis() local
137 irq->host_irq = irq_find_mapping(vpe->sgi_domain, i); in vgic_v4_enable_vsgis()
140 vgic_v4_sync_sgi_config(vpe, irq); in vgic_v4_enable_vsgis()
215 struct its_vpe *vpe = &irq->target_vcpu->arch.vgic_cpu.vgic_v3.its_vpe; in vgic_v4_get_vlpi_state() local
220 va = page_address(vpe->vpt_page); in vgic_v4_get_vlpi_state()
341 struct its_vpe *vpe = &vcpu->arch.vgic_cpu.vgic_v3.its_vpe; in vgic_v4_put() local
[all …]
Dvgic-its.c370 if (map.vpe) in update_affinity()
371 atomic_dec(&map.vpe->vlpi_count); in update_affinity()
372 map.vpe = &vcpu->arch.vgic_cpu.vgic_v3.its_vpe; in update_affinity()
373 atomic_inc(&map.vpe->vlpi_count); in update_affinity()
/linux-6.6.21/include/linux/irqchip/ !
Darm-gic-v4.h96 struct its_vpe *vpe; member
133 int its_make_vpe_resident(struct its_vpe *vpe, bool g0en, bool g1en);
134 int its_make_vpe_non_resident(struct its_vpe *vpe, bool db);
135 int its_commit_vpe(struct its_vpe *vpe);
136 int its_invall_vpe(struct its_vpe *vpe);
/linux-6.6.21/Documentation/devicetree/bindings/media/ !
Dti,vpe.yaml4 $id: http://devicetree.org/schemas/media/ti,vpe.yaml#
20 const: ti,dra7-vpe
51 vpe: vpe@489d0000 {
52 compatible = "ti,dra7-vpe";
/linux-6.6.21/drivers/media/platform/ti/vpe/ !
DMakefile2 obj-$(CONFIG_VIDEO_TI_VPE) += ti-vpe.o
7 ti-vpe-y := vpe.o
/linux-6.6.21/drivers/media/platform/ti/ !
DMakefile4 obj-y += vpe/
/linux-6.6.21/drivers/net/ethernet/intel/iavf/ !
Diavf_virtchnl.c1463 struct virtchnl_pf_event *vpe) in iavf_get_vpe_link_status() argument
1466 return vpe->event_data.link_event_adv.link_status; in iavf_get_vpe_link_status()
1468 return vpe->event_data.link_event.link_status; in iavf_get_vpe_link_status()
1480 struct virtchnl_pf_event *vpe) in iavf_set_adapter_link_speed_from_vpe() argument
1484 vpe->event_data.link_event_adv.link_speed; in iavf_set_adapter_link_speed_from_vpe()
1486 adapter->link_speed = vpe->event_data.link_event.link_speed; in iavf_set_adapter_link_speed_from_vpe()
1973 struct virtchnl_pf_event *vpe = in iavf_virtchnl_completion() local
1975 bool link_up = iavf_get_vpe_link_status(adapter, vpe); in iavf_virtchnl_completion()
1977 switch (vpe->event) { in iavf_virtchnl_completion()
1979 iavf_set_adapter_link_speed_from_vpe(adapter, vpe); in iavf_virtchnl_completion()
[all …]
/linux-6.6.21/Documentation/admin-guide/media/ !
Dplatform-cardlist.rst69 ti-vpe TI VPE (Video Processing Engine)
/linux-6.6.21/drivers/gpu/drm/ingenic/ !
Dingenic-drm-drv.c284 unsigned int vpe, vds, vde, vt, hpe, hds, hde, ht; in ingenic_drm_crtc_update_timings() local
286 vpe = mode->crtc_vsync_end - mode->crtc_vsync_start; in ingenic_drm_crtc_update_timings()
298 vpe << JZ_LCD_VSYNC_VPE_OFFSET); in ingenic_drm_crtc_update_timings()
332 (ht * vpe / 3) << JZ_LCD_IPUR_IPUR_LSB); in ingenic_drm_crtc_update_timings()
/linux-6.6.21/arch/arm/boot/dts/ti/omap/ !
Ddra7-l4.dtsi4202 vpe: vpe@0 { label
4203 compatible = "ti,dra7-vpe";
/linux-6.6.21/ !
DMAINTAINERS21649 F: Documentation/devicetree/bindings/media/ti,vpe.yaml
21651 F: drivers/media/platform/ti/vpe/