Home
last modified time | relevance | path

Searched +full:pressure +full:- +full:min (Results 1 – 25 of 144) sorted by relevance

123456

/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/
H A Dresistive-adc-touch.yaml1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/input/touchscreen/resistive-adc-touch.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Oleksij Rempel <o.rempel@pengutronix.de>
15 position measurement and optional pressure.
18 - $ref: touchscreen.yaml#
22 const: resistive-adc-touch
24 io-channels:
27 - description: x
[all …]
H A Dads7846.txt7 Documentation/devicetree/bindings/spi/spi-bus.txt
23 vcc-supply A regulator node for the supply voltage.
28 ti,vref-delay-usecs vref supply delay in usecs, 0 for
30 ti,vref-mv The VREF voltage, in millivolts (u16).
33 ti,keep-vref-on set to keep vref on for differential
35 ti,settle-delay-usec Settling time of the analog signals;
37 on the X/Y drivers. If set to non-zero,
41 ti,penirq-recheck-delay-usecs If set to non-zero, after samples are
47 ti,x-plate-ohms Resistance of the X-plate,
49 ti,y-plate-ohms Resistance of the Y-plate,
[all …]
H A Dtouchscreen.yaml1 # SPDX-License-Identifier: GPL-2.0
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Dmitry Torokhov <dmitry.torokhov@gmail.com>
20 touchscreen-min
[all...]
H A Dti,ads7843.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Alexander Stein <alexander.stein@ew.tq-group.com>
11 - Dmitry Torokhov <dmitry.torokhov@gmail.com>
12 - Marek Vasut <marex@denx.de>
21 - ti,ads7843
22 - ti,ads7845
23 - ti,ads7846
24 - ti,ads7873
[all …]
H A Dtoradex,vf50-touchscreen.yaml1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
3 ---
4 $id: http://devicetree.org/schemas/input/touchscreen/toradex,vf50-touchscreen.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
10 - Dmitry Torokhov <dmitry.torokhov@gmail.com>
11 - Sanchayan Maity <maitysanchayan@gmail.com>
15 const: toradex,vf50-touchscreen
20 io-channels:
24 IIO ADC for Y-, X-, Y+, X+ connections
26 xp-gpios:
[all …]
H A Dcolibri-vf50-ts.txt4 - compatible must be toradex,vf50-touchscreen
5 - io-channels: adc channels being used by the Colibri VF50 module
6 IIO ADC for Y-, X-, Y+, X+ connections
7 - xp-gpios: FET gate driver for input of X+
8 - xm-gpios: FET gate driver for input of X-
9 - yp-gpios: FET gate driver for input of Y+
10 - ym-gpios: FET gate driver for input of Y-
11 - interrupts: pen irq interrupt for touch detection, signal from X plate
12 - pinctrl-names: "idle", "default"
13 - pinctrl-0: pinctrl node for pen/touch detection, pinctrl must provide
[all …]
H A Dresistive-adc-touch.txt5 - compatible: must be "resistive-adc-touch"
7 position measurement and optional pressure.
9 https://github.com/devicetree-org/dt-schema/blob/master/schemas/iio/iio-consumer.yaml
12 - iio-channels: must have at least two channels connected to an ADC device.
16 - iio-channel-names: must have all the channels' names. Mandatory channels
20 - iio-channels: The third channel named "pressure" is optional and can be
21 used if the ADC device also measures pressure besides position.
22 If this channel is missing, pressure will be ignored and the touchscreen
24 - iio-channel-names: optional channel named "pressure".
29 compatible = "resistive-adc-touch";
[all …]
H A Diqs5xx.txt5 - compatible : Must be equal to one of the following:
10 - reg : I2C slave address for the device.
12 - interrupts : GPIO to which the device's active-high RDY
15 - reset-gpios : GPIO to which the device's active-low NRST
20 - touchscreen-min-x : See [2].
22 - touchscreen-min-y : See [2].
24 - touchscreen-size-x : See [2]. If this property is omitted, the
25 maximum x-coordinate is specified by the
28 - touchscreen-size-y : See [2]. If this property is omitted, the
29 maximum y-coordinate is specified by the
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNSchedStrategy.cpp1 //===-- GCNSchedStrategy.cpp - GCN Scheduler Strategy ---------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
19 /// for the kernel-wide effect of register usage on occupancy. Usually, only a
20 /// few scheduling regions will have register pressure high enough to limit
24 //===----------------------------------------------------------------------===//
31 #define DEBUG_TYPE "machine-scheduler"
36 "amdgpu-disable-unclustered-high-rp-reschedule", cl::Hidden,
37 cl::desc("Disable unclustered high register pressure "
42 "amdgpu-disable-clustered-low-occupancy-reschedule", cl::Hidden,
[all …]
H A DGCNRegPressure.cpp1 //===- GCNRegPressure.cpp -------------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
20 #define DEBUG_TYPE "machine-scheduler"
29 if (I == S2.end() || I->second != P.second) in isEqual()
43 return STI->isSGPRClass(RC) in getRegKind()
44 ? (STI->getRegSizeInBits(*RC) == 32 ? SGPR32 : SGPR_TUPLE) in getRegKind()
45 : STI->isAGPRClass(RC) in getRegKind()
46 ? (STI->getRegSizeInBits(*RC) == 32 ? AGPR32 : AGPR_TUPLE) in getRegKind()
[all …]
H A DGCNIterativeScheduler.cpp1 //===- GCNIterativeScheduler.cpp ------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
20 #define DEBUG_TYPE "machine-scheduler"
36 return SU->getInstr(); in getMachineInstr()
50 auto BB = Begin->getParent(); in printRegion()
51 OS << BB->getParent()->getName() << ":" << printMBBReference(*BB) << ' ' in printRegion()
52 << BB->getName() << ":\n"; in printRegion()
55 for (; I != End && MaxInstNum; ++I, --MaxInstNum) { in printRegion()
[all …]
H A DGCNRegPressure.h1 //===- GCNRegPressure.h -----------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
10 /// This file defines the GCNRegPressure class, which tracks registry pressure
15 //===----------------------------------------------------------------------===//
64 return std::min(ST.getOccupancyWithNumSGPRs(getSGPRNum()), in getOccupancy()
79 /// to target-specific pecularities (e.g. we care about occupancy rather than
85 /// 3. Less tuple register pressure (first preference to VGPR tuples if we
86 /// determine that SGPR pressure is not important)
87 /// 4. Less raw register pressure (first preference to VGPR tuples if we
[all …]
/freebsd/sys/dev/hid/
H A Dbcm5974.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
101 * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
104 * Copyright (C) 2005 Frank Arnold (frank@scirocco-5v-turbo.de)
106 * Copyright (C) 2005 Michael Hanselmann (linux-kerne
166 uint8_t pressure; global() member
185 uint16_t pressure; /* pressure on forcetouch touchpad */ global() member
222 int min; /* device minimum reading */ global() member
[all...]
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Darc_os.c9 * or https://opensource.org/licenses/CDDL-1.0.
93 arc_default_max(uint64_t min, uint64_t allmem) in arc_default_max() argument
98 size = allmem - (1 << 30); in arc_default_max()
100 size = min; in arc_default_max()
112 return (ptob(zfs_totalram_pages - zfs_totalhigh_pages)); in arc_all_memory()
121 * from 0-20% of all memory.
129 return (ptob(si.freeram - si.freehigh)); in arc_free_memory()
144 return (arc_free_memory() - arc_sys_free); in arc_available_memory()
152 zfs_refcount_count(&arc_mru->arcs_esize[ARC_BUFC_DATA]) + in arc_evictable_memory()
153 zfs_refcount_count(&arc_mru->arcs_esize[ARC_BUFC_METADATA]) + in arc_evictable_memory()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Dam3517-som.dtsi1 // SPDX-License-Identifier: GPL-2.0-only
5 * Based on am3517-evm.dts
11 cpu0-supply = <&vdd_core_reg>;
16 compatible = "regulator-fixed";
17 regulator-name = "wl1271_buf";
18 regulator-min-microvolt = <1800000>;
19 regulator-max-microvolt = <1800000>;
20 pinctrl-names = "default";
21 pinctrl-0 = <&wl12xx_buffer_pins>;
23 regulator-always-on;
[all …]
H A Domap3-panel-sharp-ls037v7dw01.dtsi1 // SPDX-License-Identifier: GPL-2.0
6 * at minimum the GPIO enable-gpios for display, and
7 * gpios for gpio-backlight.
16 compatible = "gpio-backlight";
17 default-on;
21 lcd_3v3: regulator-lcd-3v3 {
22 compatible = "regulator-fixed";
23 regulator-name = "lcd_3v3";
24 regulator-min-microvolt = <3300000>;
25 regulator-max-microvolt = <3300000>;
[all …]
H A Domap3-devkit8000-lcd-common.dtsi1 // SPDX-License-Identifier: GPL-2.0-only
6 #include "omap3-devkit8000-common.dtsi"
15 compatible = "panel-dpi";
18 enable-gpios = <&twl_gpio 18 GPIO_ACTIVE_HIGH>;
22 remote-endpoint = <&dpi_lcd_out>;
30 #address-cells = <1>;
31 #size-cells = <0>;
34 remote-endpoint = <&lcd_in>;
35 data-lines = <24>;
41 regulator-min-microvolt = <1800000>;
[all …]
/freebsd/tools/test/stress2/misc/
H A Dswap6.sh4 # SPDX-License-Identifier: BSD-2-Clause
30 # Verify that the VM pressure generated is sufficient for stress testing.
35 [ `sysctl -n vm.swap_total` -eq 0 ] && exit 0
36 min=10 # percent swap usage
37 (cd ../testcases/swap; ./swap -t 10m -i 100 -l 100 -h > /dev/null) &
40 while pgrep -q swap; do
41 n=`swapinfo | tail -1 | sed 's/.* //; s/%//'`
42 [ $n -gt $mx ] && mx=$n
43 [ $mx -ge $min ] && pkill swap
46 if [ $mx -lt $min ]; then
/freebsd/sys/contrib/device-tree/src/arm/nxp/vf/
H A Dvf500-colibri-eval-v3.dts1 // SPDX-License-Identifier: GPL-2.0+ OR MIT
3 * Copyright 2014-2020 Toradex
6 /dts-v1/;
7 #include "vf500-colibri.dtsi"
8 #include "vf-colibri-eval-v3.dtsi"
12 compatible = "toradex,vf500-colibri_vf50-on-eval", "toradex,vf500-colibri_vf50", "fsl,vf500";
16 vf50-ts-min-pressure = <200>;
H A Dvf500-colibri.dtsi1 // SPDX-License-Identifier: GPL-2.0+ OR MIT
3 * Copyright 2014-2020 Toradex
7 #include "vf-colibri.dtsi"
11 compatible = "toradex,vf500-colibri_vf50", "fsl,vf500";
18 touchscreen: vf50-touchscreen {
19 compatible = "toradex,vf50-touchscreen";
20 io-channels = <&adc1 0>,<&adc0 0>,
22 xp-gpios = <&gpio0 13 GPIO_ACTIVE_LOW>;
23 xm-gpios = <&gpio2 29 GPIO_ACTIVE_HIGH>;
24 yp-gpios = <&gpio0 12 GPIO_ACTIVE_LOW>;
[all …]
/freebsd/sys/dev/usb/input/
H A Dwsp.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
124 WSP_CLAMP(ptun->scale_factor, 1, 63); in wsp_runing_rangecheck()
125 WSP_CLAMP(ptun->z_factor, 1, 63); in wsp_runing_rangecheck()
126 WSP_CLAMP(ptun->z_invert, 0, 1); in wsp_runing_rangecheck()
127 WSP_CLAMP(ptun->pressure_touch_threshold, 1, 255); in wsp_runing_rangecheck()
128 WSP_CLAMP(ptun->pressure_untouch_threshold, 1, 255); in wsp_runing_rangecheck()
129 WSP_CLAMP(ptun->pressure_tap_threshold, 1, 255); in wsp_runing_rangecheck()
130 WSP_CLAMP(ptun->max_finger_area, 1, 2400); in wsp_runing_rangecheck()
131 WSP_CLAMP(ptun->max_double_tap_distance, 1, 16384); in wsp_runing_rangecheck()
[all …]
/freebsd/sys/contrib/device-tree/src/arm/microchip/
H A Dat91sam9x5dm.dtsi1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * at91sam9x5dm.dtsi - Device Tree file for SAM9x5 display module
8 * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
13 compatible = "pwm-backlight";
15 brightness-levels = <0 4 8 16 32 64 128 255>;
16 default-brightness-level = <6>;
17 power-supply = <&bl_reg>;
22 compatible = "regulator-fixed";
23 regulator-name = "backlight-power-supply";
24 regulator-min-microvolt = <5000000>;
[all …]
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx7d-pico-hobbit.dts1 // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
5 #include "imx7d-pico.dtsi"
8 model = "TechNexion PICO-IMX7D Board using Hobbit baseboard";
9 compatible = "technexion,imx7d-pico-hobbit", "fsl,imx7d";
12 compatible = "gpio-leds";
13 pinctrl-names = "default";
14 pinctrl-0 = <&pinctrl_gpio_leds>;
17 label = "gpio-led";
23 compatible = "simple-audio-card";
24 simple-audio-card,name = "imx7-sgtl5000";
[all …]
H A Dimx6dl-b1x5v2.dtsi1 // SPDX-License-Identifier: GPL-2.0 OR MIT
6 // Copyright 2018-2021 General Electric Company
7 // Copyright 2018-2021 Collabora
9 #include <dt-bindings/input/input.h>
10 #include "imx6dl-b1x5pv2.dtsi"
13 reg_3v3_acm: regulator-3v3-acm {
14 compatible = "regulator-fixe
[all...]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DVLIWMachineScheduler.h1 //===- VLIWMachineScheduler.h - VLIW-Focused Scheduling Pass ----*- C++ -*-
[all...]

123456