| /linux/arch/mips/include/asm/ |
| H A D | tlb.h | 16 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/arch/mips/mm/ |
| H A D | tlb-r4k.c | 397 unsigned long wired; in add_wired_entry() 410 wired = num_wired_entries(); in add_wired_entry() 411 write_c0_wired(wired + 1); in add_wired_entry() 412 write_c0_index(wired); in add_wired_entry() 469 unsigned long wired; in add_temporary_entry() local 478 wired = num_wired_entries(); in add_temporary_entry() 479 if (--temp_tlb_entry < wired) { in add_temporary_entry() 655 int wired = current_cpu_data.tlbsize - ntlb; in tlb_init() local 656 write_c0_wired(wired); in tlb_init() 657 write_c0_index(wired-1); in tlb_init()
|
| H A D | tlb-r3k.c | 223 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()
|
| H A D | init.c | 143 unsigned int wired; in kunmap_coherent() local 148 wired = num_wired_entries() - 1; in kunmap_coherent() 149 write_c0_wired(wired); in kunmap_coherent() 150 write_c0_index(wired); in kunmap_coherent() 151 write_c0_entryhi(UNIQUE_ENTRYHI(wired)); in kunmap_coherent()
|
| /linux/arch/arm/boot/dts/allwinner/ |
| H A D | sun8i-v3s-anbernic-rg-nano.dts | 183 /* 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. */
|
| H A D | sun8i-r16-nintendo-nes-classic.dts | 51 /* VBUS is always on because it is wired to the power supply */
|
| /linux/Documentation/devicetree/bindings/media/ |
| H A D | st-rc.txt | 12 be present iff the rx pins are wired up. 15 be present iff the tx pins are wired up.
|
| /linux/arch/arm/boot/dts/st/ |
| H A D | ste-href-tvk1281618-r2.dtsi | 101 * 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/arch/arm/boot/dts/ti/omap/ |
| H A D | motorola-mapphone-mz607-mz617.dtsi | 15 * dtb. The regulator may not be wired even if a MMC cage is added though.
|
| H A D | dra74x-p.dtsi | 24 /* MCAN interrupts are hard-wired to irqs 67, 68 */
|
| H A D | omap4-mcpdm.dtsi | 5 * Only include this file if your board has pdmclk wired from the
|
| /linux/arch/arm/boot/dts/nxp/imx/ |
| H A D | imx6ul-tx6ul-mainboard.dts | 177 /* LCD_DATA08..09 not wired */ 184 /* LCD_DATA16..17 not wired */
|
| H A D | imx6qdl-tx6-mb7.dtsi | 46 * The backup voltage of the module internal RTC is not wired
|
| /linux/arch/arm/boot/dts/socionext/ |
| H A D | uniphier-ld6b.dtsi | 19 /* UART3 unavailable: the pads are not wired to the package balls */
|
| /linux/arch/arm/boot/dts/marvell/ |
| H A D | armada-385-db-ap.dts | 43 * This bus is wired to two EEPROM 78 * wired to the mini-USB connector
|
| /linux/Documentation/iio/ |
| H A D | ad4000.rst | 84 hard-wired to digital input/output interface supply (VIO). In this setup, the 156 configuration register, which is only possible when the ADC is wired in 3-wire 218 wired in "3-wire" mode and only one transfer per sample is done when using SPI
|
| /linux/Documentation/hwmon/ |
| H A D | w83773g.rst | 27 The chip is wired over I2C/SMBus and specified over a temperature
|
| H A D | smsc47m192.rst | 57 the motherboard has this input wired to VID4. 87 would typically be wired to the diode inside the CPU)
|
| H A D | via686a.rst | 80 in which case the sensor inputs will not be wired. This is the case of 84 not wired for hardware monitoring.
|
| H A D | tmp464.rst | 35 Temperature is measured in degrees Celsius. The chips are wired over
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-iio-adc-envelope-detector | 8 of a comparator wired to an interrupt pin. Like so::
|
| /linux/Documentation/devicetree/bindings/soc/fsl/ |
| H A D | guts.txt | 23 is wired to reset upon setting the HRESET_REQ bit in this register).
|
| /linux/Documentation/devicetree/bindings/soc/fsl/cpm_qe/qe/ |
| H A D | pincfg.txt | 16 - open_drain : indicates the pin is normal or wired-OR:
|
| /linux/Documentation/devicetree/bindings/sound/ |
| H A D | adi,adau1701.txt | 7 and ADDR1, as wired in hardware.
|
| /linux/arch/mips/kvm/ |
| H A D | vz.c | 2463 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()
|