Home
last modified time | relevance | path

Searched refs:its (Results 1 – 25 of 2142) sorted by relevance

12345678910>>...86

/linux-6.3-rc2/arch/arm64/kvm/vgic/
A Dvgic-its.c1265 if (!vgic_its_check_id(its, its->baser_coll_table, in vgic_its_cmd_handle_mapc()
1557 its->cbaser = vgic_sanitise_its_cbaser(its->cbaser); in vgic_mmio_write_its_cbaser()
1563 its->cwriter = its->creadr; in vgic_mmio_write_its_cbaser()
1583 while (its->cwriter != its->creadr) { in vgic_its_process_commands()
1614 if (!its) in vgic_mmio_write_its_cwriter()
1757 if (its->creadr == its->cwriter) in vgic_mmio_read_its_ctlr()
1876 iodev->its = its; in vgic_register_its_iodev()
1945 if (!its) in vgic_its_create()
2514 vgic_its_free_device_list(its->dev->kvm, its); in vgic_its_restore_device_tables()
2647 vgic_its_free_collection_list(its->dev->kvm, its); in vgic_its_restore_collection_table()
[all …]
A Dvgic-v4.c409 struct vgic_its *its; in kvm_vgic_v4_set_forwarding() local
422 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_set_forwarding()
423 if (IS_ERR(its)) in kvm_vgic_v4_set_forwarding()
426 mutex_lock(&its->its_lock); in kvm_vgic_v4_set_forwarding()
429 ret = vgic_its_resolve_lpi(kvm, its, irq_entry->msi.devid, in kvm_vgic_v4_set_forwarding()
477 mutex_unlock(&its->its_lock); in kvm_vgic_v4_set_forwarding()
484 struct vgic_its *its; in kvm_vgic_v4_unset_forwarding() local
495 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_unset_forwarding()
496 if (IS_ERR(its)) in kvm_vgic_v4_unset_forwarding()
499 mutex_lock(&its->its_lock); in kvm_vgic_v4_unset_forwarding()
[all …]
/linux-6.3-rc2/arch/mips/generic/
A DPlatform18 its-y := vmlinux.its.S
19 its-$(CONFIG_FIT_IMAGE_FDT_BOSTON) += board-boston.its.S
20 its-$(CONFIG_FIT_IMAGE_FDT_NI169445) += board-ni169445.its.S
21 its-$(CONFIG_FIT_IMAGE_FDT_OCELOT) += board-ocelot.its.S
22 its-$(CONFIG_FIT_IMAGE_FDT_LUTON) += board-luton.its.S
23 its-$(CONFIG_FIT_IMAGE_FDT_JAGUAR2) += board-jaguar2.its.S
24 its-$(CONFIG_FIT_IMAGE_FDT_SERVAL) += board-serval.its.S
25 its-$(CONFIG_FIT_IMAGE_FDT_XILFPGA) += board-xilfpga.its.S
26 its-$(CONFIG_FIT_IMAGE_FDT_MARDUK) += board-marduk.its.S
/linux-6.3-rc2/drivers/irqchip/
A Dirq-gic-v3-its.c237 struct its_node *its = its_dev->its; in dev_event_to_col() local
986 widx = its->cmd_write - its->cmd_base; in its_queue_full()
1015 its->cmd_write = its->cmd_base; in its_allocate_entry()
1687 struct its_node *its = its_dev->its; in its_irq_get_msi_base() local
1698 its = its_dev->its; in its_irq_compose_msi_msg()
3412 dev->its = its; in its_create_device()
3483 vpe_proxy.dev->its == its && in its_msi_prepare()
3553 struct its_node *its = its_dev->its; in its_irq_domain_alloc() local
3621 struct its_node *its = its_dev->its; in its_irq_domain_free() local
4840 its->cmd_write = its->cmd_base; in its_restore_enable()
[all …]
/linux-6.3-rc2/arch/um/os-Linux/
A Dtime.c49 struct itimerspec its; in os_timer_set_interval() local
51 its.it_value.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
52 its.it_value.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
54 its.it_interval.tv_sec = nsecs / UM_NSEC_PER_SEC; in os_timer_set_interval()
55 its.it_interval.tv_nsec = nsecs % UM_NSEC_PER_SEC; in os_timer_set_interval()
65 struct itimerspec its = { in os_timer_one_shot() local
82 struct itimerspec its; in os_timer_disable() local
84 memset(&its, 0, sizeof(struct itimerspec)); in os_timer_disable()
101 struct itimerspec its; in os_idle_sleep() local
110 timer_gettime(event_high_res_timer, &its); in os_idle_sleep()
[all …]
/linux-6.3-rc2/arch/mips/boot/
A DMakefile115 targets += vmlinux.its.S
123 targets += vmlinux.its
124 targets += vmlinux.gz.its
125 targets += vmlinux.bz2.its
126 targets += vmlinux.lzma.its
127 targets += vmlinux.lzo.its
139 $(obj)/vmlinux.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE
142 $(obj)/vmlinux.gz.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE
145 $(obj)/vmlinux.bz2.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE
148 $(obj)/vmlinux.lzma.its: $(obj)/vmlinux.its.S $(VMLINUX) FORCE
[all …]
/linux-6.3-rc2/include/linux/
A Dtime.h62 static inline bool itimerspec64_valid(const struct itimerspec64 *its) in itimerspec64_valid() argument
64 if (!timespec64_valid(&(its->it_interval)) || in itimerspec64_valid()
65 !timespec64_valid(&(its->it_value))) in itimerspec64_valid()
A Dtime32.h56 extern int get_old_itimerspec32(struct itimerspec64 *its,
58 extern int put_old_itimerspec32(const struct itimerspec64 *its,
/linux-6.3-rc2/arch/mips/boot/compressed/
A DMakefile184 targets += ../vmlinuz.its.S
189 $(objboot)/vmlinuz.its.S: $(addprefix $(srctree)/arch/mips/$(PLATFORM)/,$(ITS_INPUTS)) FORCE
192 targets += ../vmlinuz.its
204 $(objboot)/vmlinuz.its: $(objboot)/vmlinuz.its.S FORCE
218 $(objboot)/vmlinuz.itb: $(objboot)/vmlinuz.its $(objboot)/vmlinuz.bin FORCE
/linux-6.3-rc2/Documentation/hwmon/
A Dibmpowernv.rst19 sensor type and its attribute data.
46 disable/enable all of its temperature sensors.
59 disable/enable all of its voltage sensors.
70 disable/enable all of its power sensors.
81 disable/enable all of its current sensors.
A Dlm95234.rst30 or four (LM95234) remote diodes as well as its own temperature.
40 Each sensor has its own maximum limit, but the hysteresis is common to all
45 The lm95234 driver can change its update interval to a fixed set of values.
A Dlm95245.rst29 the temperature of a remote diode as well as its own temperature.
38 Each sensor has its own critical limit. Additionally, there is a relative
45 The lm95245 driver can change its update interval to a fixed set of values.
/linux-6.3-rc2/Documentation/ABI/testing/
A Dsysfs-devices-online11 successful) its 'offline' field is updated accordingly. In
14 for the device and (if successful) its 'offline' field is
19 it is removed (i.e. device_del() is called for it), or its bus
A Dsysfs-bus-usb327 See USB specs for its meaning.
333 See USB specs for its meaning.
349 See USB specs for its meaning.
355 See USB specs for its meaning.
361 See USB specs for its meaning.
367 See USB specs for its meaning.
373 See USB specs for its meaning.
379 See USB specs for its meaning.
385 See USB specs for its meaning.
391 See USB specs for its meaning.
[all …]
A Dsysfs-bus-fsi7 on its links.
24 Sends an FSI terminate command from the master to its
27 addition the slave freezes its internal error register for
/linux-6.3-rc2/Documentation/security/
A DIMA-templates.rst90 - "ima": its format is ``d|n``;
91 - "ima-ng" (default): its format is ``d-ng|n-ng``;
92 - "ima-ngv2": its format is ``d-ngv2|n-ng``;
93 - "ima-sig": its format is ``d-ng|n-ng|sig``;
94 - "ima-sigv2": its format is ``d-ngv2|n-ng|sig``;
95 - "ima-buf": its format is ``d-ng|n-ng|buf``;
96 - "ima-modsig": its format is ``d-ng|n-ng|sig|d-modsig|modsig``;
97 …- "evm-sig": its format is ``d-ng|n-ng|evmsig|xattrnames|xattrlengths|xattrvalues|iuid|igid|imode`…
/linux-6.3-rc2/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/
A Dpar_io.txt11 - reg : offset to the register set and its length.
27 via its own gpio-controller node:
33 - reg : offset to the register set and its length.
/linux-6.3-rc2/Documentation/power/
A Druntime_pm.rst148 idle callback with the device as its argument.
383 return its result
387 return its result;
410 pm_request_idle(dev) and return its result
418 pm_runtime_idle(dev) and return its result
422 pm_runtime_suspend(dev) and return its result
589 reflects the actual state of the device, its bus type's or its driver's
748 callback provided by its driver and return its result, or return 0 if not
765 callback provided by its driver and return its result, or return 0 if not
775 callback provided by its driver and return its result, or return 0 if not
[all …]
/linux-6.3-rc2/Documentation/i2c/
A Di2c-topology.rst29 an I2C transfer on one of its child adapters. The mux driver can
72 2. M1 locks muxes on its parent (the root adapter in this case).
74 4. M1 (presumably) does some I2C transfers as part of its select.
81 8. M1 unlocks muxes on its parent.
152 3. M1 locks its parent adapter.
162 9. M1 unlocks its parent adapter.
163 10. M1 unlocks muxes on its parent.
176 child mux that the root adapter is unused between its select op
178 and the parent mux issues I2C transfers as part of its select).
209 and specifically when M2 requests its parent to lock, M1 passes
[all …]
/linux-6.3-rc2/arch/arm64/boot/dts/arm/
A Dfoundation-v8-gicv3.dtsi22 its: msi-controller@2f020000 { label
23 compatible = "arm,gic-v3-its";
/linux-6.3-rc2/tools/bpf/bpftool/Documentation/
A Dbpftool-struct_ops.rst45 Output will start with struct_ops map ID, followed by its map
46 name and its struct_ops's kernel type.
57 its kernel subsystem.
/linux-6.3-rc2/Documentation/devicetree/bindings/iommu/
A Drockchip,iommu.yaml14 its master device. Each slave device is bound to a single master device and
15 shares its clocks, power domain and irq.
17 For information on assigning IOMMU controller to its peripheral devices,
/linux-6.3-rc2/Documentation/powerpc/
A Dvcpudispatch_stats.rst12 from its home node).
42 6. number of times this vcpu was dispatched in its home node (chip)
71 its last dispatch.
75 outside its home node, on a neighbouring chip.
/linux-6.3-rc2/Documentation/userspace-api/media/v4l/
A Dext-ctrls-detect.rst37 - The image is divided into a grid, each cell with its own motion
41 - The image is divided into a grid, each cell with its own region
43 should be used. Each region has its own thresholds. How these
/linux-6.3-rc2/Documentation/ABI/removed/
A Draw13946 access to FireWire buses. Its major drawbacks were its inability
7 to implement sensible device security policies, and its low level

Completed in 57 milliseconds

12345678910>>...86