Home
last modified time | relevance | path

Searched full:hold (Results 1 – 25 of 3779) sorted by relevance

12345678910>>...152

/kernel/linux/linux-5.10/include/trace/events/
Dpage_pool.h17 s32 inflight, u32 hold, u32 release),
19 TP_ARGS(pool, inflight, hold, release),
24 __field(u32, hold)
32 __entry->hold = hold;
37 TP_printk("page_pool=%p inflight=%d hold=%u release=%u cnt=%llu",
38 __entry->pool, __entry->inflight, __entry->hold,
70 const struct page *page, u32 hold),
72 TP_ARGS(pool, page, hold),
77 __field(u32, hold)
84 __entry->hold = hold;
[all …]
/kernel/liteos_m/targets/riscv_nuclei_gd32vf103_soc_gcc/SoC/gd32vf103/Common/Include/
Dgd32vf103_dbg.h59 #define DBG_CTL_TIMER0_HOLD BIT(10) /*!< hold TIMER0 counter when core is h…
60 #define DBG_CTL_TIMER1_HOLD BIT(11) /*!< hold TIMER1 counter when core is h…
61 #define DBG_CTL_TIMER2_HOLD BIT(12) /*!< hold TIMER2 counter when core is h…
62 #define DBG_CTL_TIMER3_HOLD BIT(13) /*!< hold TIMER3 counter when core is h…
64 #define DBG_CTL_I2C0_HOLD BIT(15) /*!< hold I2C0 smbus when core is halte…
65 #define DBG_CTL_I2C1_HOLD BIT(16) /*!< hold I2C1 smbus when core is halte…
66 #define DBG_CTL_TIMER4_HOLD BIT(18) /*!< hold TIMER4 counter when core is h…
67 #define DBG_CTL_TIMER5_HOLD BIT(19) /*!< hold TIMER5 counter when core is h…
68 #define DBG_CTL_TIMER6_HOLD BIT(20) /*!< hold TIMER6 counter when core is h…
72 /* debug hold when core is halted */
[all …]
/kernel/linux/linux-4.19/lib/zlib_inflate/
Dinffast.c82 unsigned long hold; /* local strm->hold */ in inflate_fast() local
109 hold = state->hold; in inflate_fast()
120 hold += (unsigned long)(*in++) << bits; in inflate_fast()
122 hold += (unsigned long)(*in++) << bits; in inflate_fast()
125 this = lcode[hold & lmask]; in inflate_fast()
128 hold >>= op; in inflate_fast()
139 hold += (unsigned long)(*in++) << bits; in inflate_fast()
142 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
143 hold >>= op; in inflate_fast()
147 hold += (unsigned long)(*in++) << bits; in inflate_fast()
[all …]
/kernel/linux/linux-5.10/lib/zlib_inflate/
Dinffast.c82 unsigned long hold; /* local strm->hold */ in inflate_fast() local
109 hold = state->hold; in inflate_fast()
120 hold += (unsigned long)(*in++) << bits; in inflate_fast()
122 hold += (unsigned long)(*in++) << bits; in inflate_fast()
125 this = lcode[hold & lmask]; in inflate_fast()
128 hold >>= op; in inflate_fast()
139 hold += (unsigned long)(*in++) << bits; in inflate_fast()
142 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
143 hold >>= op; in inflate_fast()
147 hold += (unsigned long)(*in++) << bits; in inflate_fast()
[all …]
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
Dtxx9ndfmc.c71 unsigned char hold; /* in gbusclock */ member
242 /* setup Hold Time, Strobe Pulse Width */ in txx9ndfmc_initialize()
243 txx9ndfmc_write(dev, (drvdata->hold << 4) | drvdata->spw, TXX9_NDFSPR); in txx9ndfmc_initialize()
283 int hold, spw; in txx9ndfmc_probe() local
297 hold = plat->hold ?: 20; /* tDH */ in txx9ndfmc_probe()
300 hold = TXX9NDFMC_NS_TO_CYC(gbusclk, hold); in txx9ndfmc_probe()
303 hold -= 2; /* actual hold time : (HOLD + 2) BUSCLK */ in txx9ndfmc_probe()
305 hold = clamp(hold, 1, 15); in txx9ndfmc_probe()
306 drvdata->hold = hold; in txx9ndfmc_probe()
309 dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n", in txx9ndfmc_probe()
[all …]
/kernel/linux/linux-4.19/drivers/mtd/nand/raw/
Dtxx9ndfmc.c74 unsigned char hold; /* in gbusclock */ member
247 /* setup Hold Time, Strobe Pulse Width */ in txx9ndfmc_initialize()
248 txx9ndfmc_write(dev, (drvdata->hold << 4) | drvdata->spw, TXX9_NDFSPR); in txx9ndfmc_initialize()
279 int hold, spw; in txx9ndfmc_probe() local
293 hold = plat->hold ?: 20; /* tDH */ in txx9ndfmc_probe()
296 hold = TXX9NDFMC_NS_TO_CYC(gbusclk, hold); in txx9ndfmc_probe()
299 hold -= 2; /* actual hold time : (HOLD + 2) BUSCLK */ in txx9ndfmc_probe()
301 hold = clamp(hold, 1, 15); in txx9ndfmc_probe()
302 drvdata->hold = hold; in txx9ndfmc_probe()
305 dev_info(&dev->dev, "CLK:%ldMHz HOLD:%d SPW:%d\n", in txx9ndfmc_probe()
[all …]
/kernel/linux/linux-4.19/Documentation/hwmon/
Dabituguru-datasheet39 after a reboot uGuru will hold 0x00 here, but if the driver is removed and
40 later on attached again data-port will hold 0x08, more about this later.
43 turned up which will hold 0x00 instead of 0xAC at the CMD port, thus we also
45 hold 0x09 and will only hold 0x08 after reading CMD first, so CMD must be read
87 to hold 0x09, DATA should read 0x09 within 250 read cycles.
89 Next CMD _must_ be read and should hold 0xAC, usually CMD will hold 0xAC the
93 After reading CMD, DATA should hold 0x08 which means that the uGuru is ready
94 for input. As above DATA will usually hold 0x08 the first read but not always.
102 First the uGuru must be in "ready" mode as described above, DATA should hold
106 wait for to DATA to hold 0x08 again indicating that it wants / is ready for
[all …]
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/sound/
Dmax98504.txt20 applied during the "attack hold" and "timed hold" phase, the value must be
22 - maxim,brownout-attack-hold-ms - the brownout attack hold phase time in ms,
24 - maxim,brownout-timed-hold-ms - the brownout timed hold phase time in ms,
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/sound/
Dmax98504.txt20 applied during the "attack hold" and "timed hold" phase, the value must be
22 - maxim,brownout-attack-hold-ms - the brownout attack hold phase time in ms,
24 - maxim,brownout-timed-hold-ms - the brownout timed hold phase time in ms,
/kernel/linux/linux-5.10/Documentation/hwmon/
Dabituguru-datasheet.rst40 after a reboot uGuru will hold 0x00 here, but if the driver is removed and
41 later on attached again data-port will hold 0x08, more about this later.
44 turned up which will hold 0x00 instead of 0xAC at the CMD port, thus we also
46 hold 0x09 and will only hold 0x08 after reading CMD first, so CMD must be read
88 to hold 0x09, DATA should read 0x09 within 250 read cycles.
90 Next CMD _must_ be read and should hold 0xAC, usually CMD will hold 0xAC the
94 After reading CMD, DATA should hold 0x08 which means that the uGuru is ready
95 for input. As above DATA will usually hold 0x08 the first read but not always.
103 First the uGuru must be in "ready" mode as described above, DATA should hold
107 wait for to DATA to hold 0x08 again indicating that it wants / is ready for
[all …]
/kernel/liteos_m/targets/riscv_nuclei_gd32vf103_soc_gcc/SoC/gd32vf103/Common/Source/Drivers/
Dgd32vf103_dbg.c84 \arg DBG_CANx_HOLD (x=0,1): hold CANx counter when core is halted
85 \arg DBG_I2Cx_HOLD (x=0,1): hold I2Cx smbus when core is halted
86 \arg DBG_TIMERx_HOLD (x=0,1,2,3,4,5,6): hold TIMERx counter when core is halted
101 \arg DBG_CANx_HOLD (x=0,1): hold CAN0 counter when core is halted
102 \arg DBG_I2Cx_HOLD (x=0,1): hold I2Cx smbus when core is halted
103 \arg DBG_TIMERx_HOLD (x=0,1,2,3,4,5,6): hold TIMERx counter when core is halted
/kernel/linux/linux-5.10/Documentation/usb/
Dgadget_hid.rst193 int keyboard_fill_report(char report[8], char buf[BUF_LEN], int *hold)
204 if (strcmp(tok, "--hold") == 0) {
205 *hold = 1;
246 int mouse_fill_report(char report[8], char buf[BUF_LEN], int *hold)
256 if (strcmp(tok, "--hold") == 0) {
257 *hold = 1;
297 int joystick_fill_report(char report[8], char buf[BUF_LEN], int *hold)
303 *hold = 1;
342 " --hold\n");
352 " --hold\n");
[all …]
/kernel/linux/linux-4.19/Documentation/usb/
Dgadget_hid.txt188 int keyboard_fill_report(char report[8], char buf[BUF_LEN], int *hold)
199 if (strcmp(tok, "--hold") == 0) {
200 *hold = 1;
241 int mouse_fill_report(char report[8], char buf[BUF_LEN], int *hold)
251 if (strcmp(tok, "--hold") == 0) {
252 *hold = 1;
292 int joystick_fill_report(char report[8], char buf[BUF_LEN], int *hold)
298 *hold = 1;
337 " --hold\n");
347 " --hold\n");
[all …]
/kernel/linux/linux-5.10/arch/arc/boot/dts/
Dabilis_tb100_dvk.dts37 i2c-sda-hold-time-ns = <432>;
40 i2c-sda-hold-time-ns = <432>;
43 i2c-sda-hold-time-ns = <432>;
46 i2c-sda-hold-time-ns = <432>;
49 i2c-sda-hold-time-ns = <432>;
Dabilis_tb101_dvk.dts37 i2c-sda-hold-time-ns = <432>;
40 i2c-sda-hold-time-ns = <432>;
43 i2c-sda-hold-time-ns = <432>;
46 i2c-sda-hold-time-ns = <432>;
49 i2c-sda-hold-time-ns = <432>;
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/bus/
Dqcom,ebi2.txt82 - qcom,xmem-write-hold-cycles: write hold cycles, these are extra cycles
84 WE is asserted until CS is asserted. With a hold of 1 (value = 0), the CS
96 - qcom,xmem-address-hold-enable: this is a boolean property stating that we
97 shall hold the address for an extra cycle to meet hold time requirements
102 - qcom,xmem-read-hold-cycles: the length in cycles of the first segment of a
132 qcom,xmem-write-hold-cycles = <3>;
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/bus/
Dqcom,ebi2.txt82 - qcom,xmem-write-hold-cycles: write hold cycles, these are extra cycles
84 WE is asserted until CS is asserted. With a hold of 1 (value = 0), the CS
96 - qcom,xmem-address-hold-enable: this is a boolean property stating that we
97 shall hold the address for an extra cycle to meet hold time requirements
102 - qcom,xmem-read-hold-cycles: the length in cycles of the first segment of a
132 qcom,xmem-write-hold-cycles = <3>;
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/memory-controllers/
Dti-aemif.txt112 - ti,cs-read-hold-ns: read hold width, ns
129 - ti,cs-write-hold-ns: write hold width, ns
166 ti,cs-read-hold-ns = <7>;
169 ti,cs-write-hold-ns = <7>;
195 ti,cs-read-hold-ns = <8>;
198 ti,cs-write-hold-ns = <7>;
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/memory-controllers/
Dti-aemif.txt112 - ti,cs-read-hold-ns: read hold width, ns
129 - ti,cs-write-hold-ns: write hold width, ns
166 ti,cs-read-hold-ns = <7>;
169 ti,cs-write-hold-ns = <7>;
195 ti,cs-read-hold-ns = <8>;
198 ti,cs-write-hold-ns = <7>;
/kernel/linux/linux-4.19/arch/arc/boot/dts/
Dabilis_tb100_dvk.dts49 i2c-sda-hold-time-ns = <432>;
52 i2c-sda-hold-time-ns = <432>;
55 i2c-sda-hold-time-ns = <432>;
58 i2c-sda-hold-time-ns = <432>;
61 i2c-sda-hold-time-ns = <432>;
Dabilis_tb101_dvk.dts49 i2c-sda-hold-time-ns = <432>;
52 i2c-sda-hold-time-ns = <432>;
55 i2c-sda-hold-time-ns = <432>;
58 i2c-sda-hold-time-ns = <432>;
61 i2c-sda-hold-time-ns = <432>;
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/power/reset/
Dmsm-poweroff.txt3 A power supply hold (ps-hold) bit is set to power the msm chipsets.
10 -reg: Specifies the physical address of the ps-hold register
/kernel/linux/linux-4.19/Documentation/devicetree/bindings/power/reset/
Dmsm-poweroff.txt3 A power supply hold (ps-hold) bit is set to power the msm chipsets.
10 -reg: Specifies the physical address of the ps-hold register
/kernel/linux/linux-5.10/include/net/caif/
Dcfsrvl.h23 void (*hold)(struct cflayer *lyr); member
51 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get()
54 s->hold(layr->up); in cfsrvl_get()
60 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put()
/kernel/linux/linux-4.19/include/net/caif/
Dcfsrvl.h23 void (*hold)(struct cflayer *lyr); member
51 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_get()
54 s->hold(layr->up); in cfsrvl_get()
60 if (layr == NULL || layr->up == NULL || s->hold == NULL) in cfsrvl_put()

12345678910>>...152