/linux-6.3-rc2/arch/arm64/kvm/vgic/ |
A D | vgic-its.c | 1265 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 D | vgic-v4.c | 409 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 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.3-rc2/drivers/irqchip/ |
A D | irq-gic-v3-its.c | 237 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 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() 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 D | Makefile | 115 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 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()
|
A D | time32.h | 56 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 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.3-rc2/Documentation/hwmon/ |
A 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.
|
A 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.
|
A 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.3-rc2/Documentation/ABI/testing/ |
A 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
|
A D | sysfs-bus-usb | 327 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 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.3-rc2/Documentation/security/ |
A 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.3-rc2/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/ |
A 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.3-rc2/Documentation/power/ |
A D | runtime_pm.rst | 148 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 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. 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 D | foundation-v8-gicv3.dtsi | 22 its: msi-controller@2f020000 { label 23 compatible = "arm,gic-v3-its";
|
/linux-6.3-rc2/tools/bpf/bpftool/Documentation/ |
A D | bpftool-struct_ops.rst | 45 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 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.3-rc2/Documentation/powerpc/ |
A 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.3-rc2/Documentation/userspace-api/media/v4l/ |
A 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.3-rc2/Documentation/ABI/removed/ |
A D | raw1394 | 6 access to FireWire buses. Its major drawbacks were its inability 7 to implement sensible device security policies, and its low level
|