/Linux-v5.15/include/soc/fsl/qe/ |
D | ucc_slow.h | 9 * Internal header file for UCC SLOW unit routines. 80 /* UCC Slow Channel Protocol Mode */ 87 /* UCC Slow Transparent Transmit CRC (TCRC) */ 97 /* UCC Slow oversampling rate for transmitter (TDCR) */ 109 /* UCC Slow Oversampling rate for receiver (RDCR) 122 /* UCC Slow Transmitter encoding method (TENC) 129 /* UCC Slow Receiver decoding method (RENC) 136 /* UCC Slow Diagnostic mode (DIAG) 217 * Initializes Slow UCC according to provided parameters. 219 * us_info - (In) pointer to the slow UCC info structure. [all …]
|
D | ucc.h | 21 /* Slow or fast type for UCCs. 29 * Sets UCC to slow or fast mode. 32 * speed - (In) slow or fast mode for UCC.
|
/Linux-v5.15/drivers/leds/ |
D | leds-ns2.c | 41 * controlled through two GPIOs (command and slow): each combination of values 42 * for the command/slow GPIOs corresponds to a LED mode. 48 struct gpio_desc *slow; member 63 slow_level = gpiod_get_value_cansleep(led->slow); in ns2_led_get_mode() 92 gpiod_set_value(led->slow, led->modval[i].slow_level); in ns2_led_set_mode() 97 gpiod_set_value_cansleep(led->slow, led->modval[i].slow_level); in ns2_led_set_mode() 188 led->slow = devm_fwnode_gpiod_get_index(dev, node, "slow", 0, in ns2_led_register() 191 if (IS_ERR(led->slow)) in ns2_led_register() 192 return PTR_ERR(led->slow); in ns2_led_register() 213 led->can_sleep = gpiod_cansleep(led->cmd) || gpiod_cansleep(led->slow); in ns2_led_register()
|
/Linux-v5.15/Documentation/devicetree/bindings/leds/ |
D | leds-ns2.txt | 10 - slow-gpio: Slow LED GPIO. See OF device-tree GPIO specification. 12 the corresponding cmd-gpio/slow-gpio values. All the GPIO values combinations 28 slow-gpio = <&gpio0 29 0>;
|
/Linux-v5.15/drivers/soc/fsl/qe/ |
D | ucc.c | 45 /* Configure the UCC to either Slow or Fast. 47 * A given UCC can be figured to support either "slow" devices (e.g. UART) 59 /* The GUEMR register is at the same location for both slow and fast in ucc_set_type() 60 devices, so we just use uccX.slow.guemr. */ in ucc_set_type() 62 case 0: guemr = &qe_immr->ucc1.slow.guemr; in ucc_set_type() 64 case 1: guemr = &qe_immr->ucc2.slow.guemr; in ucc_set_type() 66 case 2: guemr = &qe_immr->ucc3.slow.guemr; in ucc_set_type() 68 case 3: guemr = &qe_immr->ucc4.slow.guemr; in ucc_set_type() 70 case 4: guemr = &qe_immr->ucc5.slow.guemr; in ucc_set_type() 72 case 5: guemr = &qe_immr->ucc6.slow.guemr; in ucc_set_type() [all …]
|
/Linux-v5.15/arch/ia64/ |
D | Kconfig.debug | 41 bool "Turn on compare-and-exchange bug checking (slow!)" 45 compare-and-exchange instructions. This is slow! Itaniums 50 bool "Turn on irq debug checks (slow!)" 55 problems, but slow! If you're unsure, select N.
|
/Linux-v5.15/drivers/pinctrl/ |
D | pinctrl-at91.h | 40 #define PIO_IFSCDR 0x80 /* Input Filter Slow Clock Disable Register */ 41 #define PIO_IFSCER 0x84 /* Input Filter Slow Clock Enable Register */ 42 #define PIO_IFSCSR 0x88 /* Input Filter Slow Clock Status Register */ 43 #define PIO_SCDR 0x8c /* Slow Clock Divider Debouncing Register */ 44 #define PIO_SCDR_DIV (0x3fff << 0) /* Slow Clock Divider Mask */
|
/Linux-v5.15/Documentation/devicetree/bindings/timer/ |
D | img,pistachio-gptimer.txt | 10 "slow", slow counter clock 26 clock-names = "fast", "slow", "sys";
|
/Linux-v5.15/tools/testing/selftests/net/mptcp/ |
D | mptcp_join.sh | 284 elif [ $speed = "slow" ]; then 1161 run_tests $ns1 $ns2 10.0.1.1 0 0 0 slow 1170 run_tests $ns1 $ns2 dead:beef:1::1 0 0 0 slow 1202 run_tests $ns1 $ns2 10.0.1.1 0 0 -1 slow 1212 run_tests $ns1 $ns2 10.0.1.1 0 0 -2 slow 1221 run_tests $ns1 $ns2 10.0.1.1 0 -1 0 slow 1232 run_tests $ns1 $ns2 10.0.1.1 0 -1 -1 slow 1244 run_tests $ns1 $ns2 10.0.1.1 0 -1 -2 slow 1256 run_tests $ns1 $ns2 10.0.1.1 0 -3 0 slow 1268 run_tests $ns1 $ns2 10.0.1.1 0 -3 0 slow [all …]
|
/Linux-v5.15/net/ipv4/ |
D | tcp_vegas.c | 19 * only every-other RTT during slow start, we increase during 20 * every RTT during slow start, just like Reno. 21 * o Largely to allow continuous cwnd growth during slow start, 25 * to achieve the right ("actual") rate when we exit slow start. 230 /* Going too fast. Time to slow down in tcp_vegas_cong_avoid() 245 /* Slow start. */ in tcp_vegas_cong_avoid() 255 * we slow down. in tcp_vegas_cong_avoid() 284 /* Use normal slow start */ in tcp_vegas_cong_avoid()
|
D | tcp_bic.c | 45 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold"); 116 /* slow start AMD linear increase */ in bictcp_update() 118 /* slow start */ in bictcp_update() 121 /* slow start */ in bictcp_update() 129 /* if in slow start or link utilization is very low */ in bictcp_update()
|
D | tcp_cubic.c | 13 * CUBIC integrates a new slow start algorithm, called HyStart. 16 * "Taming the Elephants: New TCP Slow Start", NCSU TechReport 2008. 37 /* Two methods of hybrid slow start */ 68 MODULE_PARM_DESC(initial_ssthresh, "initial value of slow start threshold"); 74 MODULE_PARM_DESC(hystart, "turn on/off hybrid slow start algorithm"); 76 MODULE_PARM_DESC(hystart_detect, "hybrid slow start detection mechanisms" 79 MODULE_PARM_DESC(hystart_low_window, "lower bound cwnd for hybrid slow start"); 368 * slow start we begin with small TSO packets and ca->delay_min would 404 * during slow start. in hystart_update()
|
/Linux-v5.15/arch/arm/mach-s3c/ |
D | vr1000.h | 62 * 0x00000000 to 0x04000000 8bit, slow 63 * 0x04000000 to 0x08000000 16bit, slow 77 * nGCS2 - 8bit, slow 78 * nGCS3 - 16bit, slow
|
D | bast.h | 132 * 0x00000000 to 0x04000000 8bit, slow 133 * 0x04000000 to 0x08000000 16bit, slow 150 * nGCS2 - 8bit, slow 151 * nGCS3 - 16bit, slow
|
/Linux-v5.15/drivers/watchdog/ |
D | bd9576_wdt.c | 133 int slow; in find_closest_slow() local 135 slow = window * multipliers[j]; in find_closest_slow() 136 if (slow >= target && (!val || slow < val)) { in find_closest_slow() 137 val = slow; in find_closest_slow() 184 dev_dbg(dev, "Setting type SLOW 0x%x\n", type); in bd957x_set_wdt_mode()
|
/Linux-v5.15/arch/arm/mach-mmp/ |
D | mfp-mmp2.h | 327 #define GPIO43_TWSI2_SCL MFP_CFG_DRV(GPIO43, AF1, SLOW) 328 #define GPIO44_TWSI2_SDA MFP_CFG_DRV(GPIO44, AF1, SLOW) 329 #define GPIO71_TWSI3_SCL MFP_CFG_DRV(GPIO71, AF1, SLOW) 330 #define GPIO72_TWSI3_SDA MFP_CFG_DRV(GPIO72, AF1, SLOW) 331 #define TWSI4_SCL MFP_CFG_DRV(TWSI4_SCL, AF0, SLOW) 332 #define TWSI4_SDA MFP_CFG_DRV(TWSI4_SDA, AF0, SLOW) 333 #define GPIO99_TWSI5_SCL MFP_CFG_DRV(GPIO99, AF4, SLOW) 334 #define GPIO100_TWSI5_SDA MFP_CFG_DRV(GPIO100, AF4, SLOW) 335 #define GPIO97_TWSI6_SCL MFP_CFG_DRV(GPIO97, AF2, SLOW) 336 #define GPIO98_TWSI6_SDA MFP_CFG_DRV(GPIO98, AF2, SLOW)
|
/Linux-v5.15/lib/math/ |
D | prime_numbers.c | 183 * slow trial-divison, up to the value of ULONG_MAX (which is reported as the 272 bool slow = slow_is_prime_number(x); in selftest() local 275 if (slow != fast) { in selftest() 276 pr_err("inconsistent result for is-prime(%lu): slow=%s, fast=%s!\n", in selftest() 277 x, slow ? "yes" : "no", fast ? "yes" : "no"); in selftest() 281 if (!slow) in selftest()
|
/Linux-v5.15/arch/arm/mach-omap2/ |
D | opp2430_data.c | 87 /* PRCM #4 - ratio1 (ES2.1) - SLOW */ 95 /* PRCM #2 - ratio1 (ES2) - SLOW */ 103 /* PRCM #5a - ratio1 - SLOW */ 111 /* PRCM #5b - ratio1 - SLOW*/
|
/Linux-v5.15/include/uapi/linux/ |
D | lp.h | 46 * have extremely slow printing, or if the machine seems to slow down 47 * a lot when you print. If you have slow printing, increase this 63 * this number, and if you have a slow printer, increase this number.
|
/Linux-v5.15/drivers/net/wan/ |
D | sealevel.c | 176 int txdma, int rxdma, int slow) in slvl_init() argument 208 if (slow) in slvl_init() 319 static bool slow; variable 329 module_param(slow, bool, 0); 330 MODULE_PARM_DESC(slow, "Set this for an older Sealevel card such as the 4012"); 340 slvl_unit = slvl_init(io, irq, txdma, rxdma, slow); in slvl_init_module()
|
/Linux-v5.15/net/mptcp/ |
D | sockopt.c | 77 bool slow = lock_sock_fast(ssk); in mptcp_sol_socket_sync_intval() local 113 unlock_sock_fast(ssk, slow); in mptcp_sol_socket_sync_intval() 158 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_tstamp() local 161 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_tstamp() 236 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_timestamping() local 239 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_timestamping() 271 bool slow = lock_sock_fast(ssk); in mptcp_setsockopt_sol_socket_linger() local 281 unlock_sock_fast(ssk, slow); in mptcp_setsockopt_sol_socket_linger() 756 bool slow = lock_sock_fast(ssk); in __mptcp_sockopt_sync() local 760 unlock_sock_fast(ssk, slow); in __mptcp_sockopt_sync()
|
/Linux-v5.15/arch/x86/include/uapi/asm/ |
D | debugreg.h | 66 We can slow the instruction pipeline for instructions coming via the 75 #define DR_LOCAL_SLOWDOWN (0x100) /* Local slow the pipeline */ 76 #define DR_GLOBAL_SLOWDOWN (0x200) /* Global slow the pipeline */
|
/Linux-v5.15/drivers/clocksource/ |
D | timer-atmel-st.c | 218 pr_err("Unable to get slow clock\n"); in atmel_st_timer_init() 224 pr_err("Could not enable slow clock\n"); in atmel_st_timer_init() 230 pr_err("Invalid slow clock rate\n"); in atmel_st_timer_init() 235 /* The 32KiHz "Slow Clock" (tick every 30517.58 nanoseconds) is used in atmel_st_timer_init()
|
/Linux-v5.15/Documentation/locking/ |
D | rt-mutex-design.rst | 428 If there is contention on the lock, we go about the slow path 431 The slow path function is where the task's waiter structure is created on 437 The wait_lock of the mutex is taken since the slow path of unlocking the 445 slow path. The first thing that is done here is an atomic setting of 448 without going into the slow unlock path, and it would then need to grab the 477 Since the wait_lock was taken at the entry of the slow lock, we can safely 520 take the slow path when unlocking the mutex. If the mutex doesn't have any 525 the slow unlock path is taken. 527 The first thing done in the slow unlock path is to take the wait_lock of the 534 in the slow path too. If a waiter of a mutex woke up because of a signal
|
/Linux-v5.15/drivers/scsi/libsas/ |
D | sas_init.c | 43 struct sas_task_slow *slow = kmalloc(sizeof(*slow), flags); in sas_alloc_slow_task() local 45 if (!task || !slow) { in sas_alloc_slow_task() 48 kfree(slow); in sas_alloc_slow_task() 52 task->slow_task = slow; in sas_alloc_slow_task() 53 slow->task = task; in sas_alloc_slow_task() 54 timer_setup(&slow->timer, NULL, 0); in sas_alloc_slow_task() 55 init_completion(&slow->completion); in sas_alloc_slow_task()
|