Home
last modified time | relevance | path

Searched refs:wired (Results 1 – 25 of 126) sorted by relevance

123456

/linux-6.12.1/arch/mips/mm/
Dtlb-r4k.c395 unsigned long wired; in add_wired_entry()
408 wired = num_wired_entries(); in add_wired_entry()
409 write_c0_wired(wired + 1); in add_wired_entry()
410 write_c0_index(wired); in add_wired_entry()
467 unsigned long wired; in add_temporary_entry() local
476 wired = num_wired_entries(); in add_temporary_entry()
477 if (--temp_tlb_entry < wired) { in add_temporary_entry()
561 int wired = current_cpu_data.tlbsize - ntlb; in tlb_init() local
562 write_c0_wired(wired); in tlb_init()
563 write_c0_index(wired-1); in tlb_init()
Dtlb-r3k.c223 static unsigned long wired = 0; in add_wired_entry() local
225 if (wired < 8) { in add_wired_entry()
235 write_c0_index(wired); in add_wired_entry()
236 wired++; /* BARRIER */ in add_wired_entry()
Dinit.c151 unsigned int wired; in kunmap_coherent() local
156 wired = num_wired_entries() - 1; in kunmap_coherent()
157 write_c0_wired(wired); in kunmap_coherent()
158 write_c0_index(wired); in kunmap_coherent()
159 write_c0_entryhi(UNIQUE_ENTRYHI(wired)); in kunmap_coherent()
/linux-6.12.1/arch/mips/include/asm/
Dtlb.h16 unsigned int wired = read_c0_wired(); in num_wired_entries() local
19 wired &= MIPSR6_WIRED_WIRED; in num_wired_entries()
21 return wired; in num_wired_entries()
/linux-6.12.1/Documentation/devicetree/bindings/interrupt-controller/
Dimg,pdc-intc.txt82 * An SoC peripheral that is wired through the PDC.
85 // The interrupt controller that this device is wired to.
96 * An interrupt generating device that is wired to a SysWake pin.
99 // The interrupt controller that this device is wired to.
Dmarvell,sei.txt10 AP and is wired while a second set comes from the CPs by the mean of
19 - #interrupt-cells: number of cells to define an SEI wired interrupt
Dopen-pic.txt81 * An interrupt generating device that is wired to an Open PIC.
89 // The interrupt controller that this device is wired to.
Dopenrisc,ompic.txt12 - interrupts : Specifies the interrupt line to which the ompic is wired.
Dmarvell,gicp.txt6 located in the Marvell CP110 to turn wired interrupts inside the CP
/linux-6.12.1/arch/arm/boot/dts/allwinner/
Dsun8i-v3s-anbernic-rg-nano.dts183 /* DCDC2 wired into vdd-cpu, vdd-sys, and vdd-ephy. */
191 /* DCDC3 wired into every 3.3v input that isn't the RTC. */
199 /* LDO1 wired into RTC, voltage is hard-wired at 3.3v. */
205 /* LDO2 wired into VCC-PLL and audio codec. */
Dsun8i-r16-nintendo-nes-classic.dts51 /* VBUS is always on because it is wired to the power supply */
/linux-6.12.1/Documentation/devicetree/bindings/media/
Dst-rc.txt12 be present iff the rx pins are wired up.
15 be present iff the tx pins are wired up.
/linux-6.12.1/arch/arm/boot/dts/st/
Dste-href-tvk1281618-r2.dtsi101 * the falling edge if they could be wired together.
122 * the falling edge if they could be wired together.
159 * the falling edge if they could be wired together.
/linux-6.12.1/arch/arm/boot/dts/ti/omap/
Dmotorola-mapphone-mz607-mz617.dtsi15 * dtb. The regulator may not be wired even if a MMC cage is added though.
Ddra74x-p.dtsi24 /* MCAN interrupts are hard-wired to irqs 67, 68 */
Domap4-mcpdm.dtsi5 * Only include this file if your board has pdmclk wired from the
/linux-6.12.1/arch/arm/boot/dts/socionext/
Duniphier-ld6b.dtsi19 /* UART3 unavailable: the pads are not wired to the package balls */
/linux-6.12.1/arch/arm/boot/dts/marvell/
Darmada-385-db-ap.dts43 * This bus is wired to two EEPROM
78 * wired to the mini-USB connector
/linux-6.12.1/Documentation/hwmon/
Dvia686a.rst80 in which case the sensor inputs will not be wired. This is the case of
84 not wired for hardware monitoring.
Dsmsc47m192.rst57 the motherboard has this input wired to VID4.
87 would typically be wired to the diode inside the CPU)
Dw83773g.rst27 The chip is wired over I2C/SMBus and specified over a temperature
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-bus-iio-adc-envelope-detector8 of a comparator wired to an interrupt pin. Like so::
/linux-6.12.1/Documentation/devicetree/bindings/soc/fsl/
Dguts.txt23 is wired to reset upon setting the HRESET_REQ bit in this register).
/linux-6.12.1/arch/mips/kvm/
Dvz.c2463 unsigned int wired = read_gc0_wired(); in kvm_vz_vcpu_save_wired() local
2468 wired &= MIPSR6_WIRED_WIRED; in kvm_vz_vcpu_save_wired()
2469 if (wired > vcpu->arch.wired_tlb_limit) { in kvm_vz_vcpu_save_wired()
2470 tlbs = krealloc(vcpu->arch.wired_tlb, wired * in kvm_vz_vcpu_save_wired()
2474 wired = vcpu->arch.wired_tlb_limit; in kvm_vz_vcpu_save_wired()
2477 vcpu->arch.wired_tlb_limit = wired; in kvm_vz_vcpu_save_wired()
2481 if (wired) in kvm_vz_vcpu_save_wired()
2483 kvm_vz_save_guesttlb(vcpu->arch.wired_tlb, 0, wired); in kvm_vz_vcpu_save_wired()
2485 for (i = wired; i < vcpu->arch.wired_tlb_used; ++i) { in kvm_vz_vcpu_save_wired()
2491 vcpu->arch.wired_tlb_used = wired; in kvm_vz_vcpu_save_wired()
/linux-6.12.1/arch/arm/boot/dts/nxp/imx/
Dimx6ul-tx6ul-mainboard.dts213 /* LCD_DATA08..09 not wired */
220 /* LCD_DATA16..17 not wired */

123456