/linux-6.6.21/arch/arm64/kvm/vgic/ |
D | vgic-its.c | 26 static int vgic_its_save_tables_v0(struct vgic_its *its); 27 static int vgic_its_restore_tables_v0(struct vgic_its *its); 28 static int vgic_its_commit_v0(struct vgic_its *its); 171 int (*save_tables)(struct vgic_its *its); 172 int (*restore_tables)(struct vgic_its *its); 173 int (*commit)(struct vgic_its *its); 192 inline const struct vgic_its_abi *vgic_its_get_abi(struct vgic_its *its) in vgic_its_get_abi() argument 194 return &its_table_abi_versions[its->abi_rev]; in vgic_its_get_abi() 197 static int vgic_its_set_abi(struct vgic_its *its, u32 rev) in vgic_its_set_abi() argument 201 its->abi_rev = rev; in vgic_its_set_abi() [all …]
|
D | vgic-v4.c | 414 struct vgic_its *its; in kvm_vgic_v4_set_forwarding() local 427 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_set_forwarding() 428 if (IS_ERR(its)) in kvm_vgic_v4_set_forwarding() 431 mutex_lock(&its->its_lock); in kvm_vgic_v4_set_forwarding() 434 ret = vgic_its_resolve_lpi(kvm, its, irq_entry->msi.devid, in kvm_vgic_v4_set_forwarding() 482 mutex_unlock(&its->its_lock); in kvm_vgic_v4_set_forwarding() 489 struct vgic_its *its; in kvm_vgic_v4_unset_forwarding() local 500 its = vgic_get_its(kvm, irq_entry); in kvm_vgic_v4_unset_forwarding() 501 if (IS_ERR(its)) in kvm_vgic_v4_unset_forwarding() 504 mutex_lock(&its->its_lock); in kvm_vgic_v4_unset_forwarding() [all …]
|
/linux-6.6.21/drivers/irqchip/ |
D | irq-gic-v3-its.c | 122 #define is_v4(its) (!!((its)->typer & GITS_TYPER_VLPIS)) argument 123 #define is_v4_1(its) (!!((its)->typer & GITS_TYPER_VMAPP)) argument 124 #define device_ids(its) (FIELD_GET(GITS_TYPER_DEVBITS, (its)->typer) + 1) argument 163 struct its_node *its; member 205 static bool require_its_list_vmovp(struct its_vm *vm, struct its_node *its) in require_its_list_vmovp() argument 207 return (gic_rdists->has_rvpeid || vm->vlpi_count[its->list_nr]); in require_its_list_vmovp() 217 struct its_node *its; in get_its_list() local 220 list_for_each_entry(its, &its_nodes, entry) { in get_its_list() 221 if (!is_v4(its)) in get_its_list() 224 if (require_its_list_vmovp(vm, its)) in get_its_list() [all …]
|
/linux-6.6.21/arch/mips/generic/ |
D | Platform | 18 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.6.21/arch/um/os-Linux/ |
D | time.c | 49 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() 57 if (timer_settime(event_high_res_timer, 0, &its, NULL) == -1) in os_timer_set_interval() 65 struct itimerspec its = { in os_timer_one_shot() local 73 timer_settime(event_high_res_timer, 0, &its, NULL); in os_timer_one_shot() 82 struct itimerspec its; in os_timer_disable() local 84 memset(&its, 0, sizeof(struct itimerspec)); in os_timer_disable() [all …]
|
/linux-6.6.21/arch/mips/boot/ |
D | Makefile | 115 targets += vmlinux.its.S 120 $(obj)/vmlinux.its.S: $(addprefix $(srctree)/arch/mips/$(PLATFORM)/,$(ITS_INPUTS)) FORCE 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 [all …]
|
/linux-6.6.21/include/linux/ |
D | time.h | 62 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()
|
D | time32.h | 56 extern int get_old_itimerspec32(struct itimerspec64 *its, 58 extern int put_old_itimerspec32(const struct itimerspec64 *its,
|
/linux-6.6.21/arch/mips/boot/compressed/ |
D | Makefile | 184 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.6.21/Documentation/hwmon/ |
D | ibmpowernv.rst | 19 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.
|
D | lm95234.rst | 30 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.
|
D | lm95245.rst | 29 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.6.21/Documentation/ABI/testing/ |
D | sysfs-devices-online | 11 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
|
D | sysfs-bus-usb | 142 connected to its receiver dongle, and, for example, consider 210 which wraps to 0 after its maximum is reached. This file supports 237 connection between a port and its connector. 320 See USB specs for its meaning. 326 See USB specs for its meaning. 335 Changing its value will change the device's configuration 342 See USB specs for its meaning. 348 See USB specs for its meaning. 354 See USB specs for its meaning. 360 See USB specs for its meaning. [all …]
|
D | sysfs-bus-fsi | 7 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.6.21/Documentation/security/ |
D | IMA-templates.rst | 90 - "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.6.21/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/ |
D | par_io.txt | 11 - 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.6.21/Documentation/power/ |
D | runtime_pm.rst | 108 the helper functions described in Section 4 for the device until its status 113 mechanism allowing the device to request a change of its power state, such as 136 4 for the device, until its status is directly set to either 'active', or 148 idle callback with the device as its argument. 266 PM core as 'suspended', regardless of its real hardware status 323 then run pm_runtime_autosuspend(dev) and return its result 383 return its result 387 return its result; 390 if its return value is checked by the caller, as this is likely to 410 pm_request_idle(dev) and return its result [all …]
|
/linux-6.6.21/Documentation/i2c/ |
D | i2c-topology.rst | 29 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. 77 5. M1 feeds the I2C transfer from step 1 to its parent adapter as a 81 8. M1 unlocks muxes on its parent. 151 2. M1 locks muxes on its parent (the root adapter in this case). 152 3. M1 locks its parent adapter. 155 its select, those transfers must be unlocked I2C transfers so 162 9. M1 unlocks its parent adapter. 163 10. M1 unlocks muxes on its parent. [all …]
|
/linux-6.6.21/arch/arm64/boot/dts/arm/ |
D | foundation-v8-gicv3.dtsi | 22 its: msi-controller@2f020000 { label 23 compatible = "arm,gic-v3-its";
|
/linux-6.6.21/Documentation/devicetree/bindings/iommu/ |
D | rockchip,iommu.yaml | 14 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.6.21/Documentation/powerpc/ |
D | vcpudispatch_stats.rst | 12 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.6.21/Documentation/mm/ |
D | split_page_table_lock.rst | 18 pointer to its PTE table lock, or returns NULL if no PTE table; 20 maps PTE, returns pointer to PTE with pointer to its PTE table 29 allocates PTE table if needed and takes its lock, returns pointer to 30 PTE with pointer to its lock, or returns NULL if allocation failed; 65 allocation: slab uses page->slab_cache for its pages.
|
/linux-6.6.21/Documentation/userspace-api/media/v4l/ |
D | ext-ctrls-detect.rst | 37 - 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.6.21/Documentation/ABI/removed/ |
D | raw1394 | 6 access to FireWire buses. Its major drawbacks were its inability 7 to implement sensible device security policies, and its low level
|