| /kernel/linux/linux-6.6/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.
|
| /kernel/linux/linux-5.10/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.
|
| /kernel/linux/linux-5.10/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()
|
| /kernel/linux/linux-6.6/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()
|
| /kernel/linux/linux-6.6/lib/kunit/ |
| D | executor_test.c | 122 char filters[] = "speed>slow, module!=example", *filter = filters; in parse_filter_attr_test() 136 KUNIT_EXPECT_STREQ(test, parsed_filters[0].input, ">slow"); in parse_filter_attr_test() 144 { .name = "slow", .run_case = dummy_test, .module_name = "dummy", 157 char filter[] = "speed>slow"; in filter_attr_test() 165 * Want: normal_suite(slow, normal), slow_suite(slow, normal), in filter_attr_test() 170 * of slow. in filter_attr_test() 216 char filter[] = "speed>slow"; in filter_attr_skip_test() 221 /* Want: suite(slow, normal), NULL -> suite(slow with SKIP, normal), NULL */ in filter_attr_skip_test() 227 /* Validate we have both the slow and normal test */ in filter_attr_skip_test() 230 KUNIT_EXPECT_STREQ(test, got.start[0]->test_cases[0].name, "slow"); in filter_attr_skip_test() [all …]
|
| /kernel/linux/linux-5.10/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>;
|
| /kernel/linux/linux-6.6/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>;
|
| /kernel/linux/linux-5.10/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 …]
|
| /kernel/linux/linux-6.6/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 …]
|
| /kernel/linux/linux-6.6/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.
|
| /kernel/linux/linux-5.10/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.
|
| /kernel/linux/linux-6.6/Documentation/dev-tools/kunit/ |
| D | running_tips.rst | 294 To mark a test case as slow, you can also use ``KUNIT_CASE_SLOW(test_name)``. 295 This is a helpful macro as the slow attribute is the most commonly used. 329 # example_test.speed: slow 363 kunit.py run --filter speed=slow 371 kunit.py run --filter "speed>slow" 373 This example will run all tests with speeds faster than slow. Note that the 382 kunit.py run --filter "speed>slow, module=kunit_example_test" 386 the filter as a module param: ``kunit.filter="speed>slow, speed<=normal"``. 413 This attribute indicates the speed of a test's execution (how slow or fast the 417 "slow", or "very_slow". The assumed default speed for tests is "normal". This [all …]
|
| /kernel/linux/linux-5.10/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 */
|
| /kernel/linux/linux-6.6/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 */
|
| /kernel/linux/linux-6.6/lib/ |
| D | dec_and_lock.c | 27 /* Otherwise do it the slow way */ in _atomic_dec_and_lock() 44 /* Otherwise do it the slow way */ in _atomic_dec_and_lock_irqsave() 59 /* Otherwise do it the slow way */ in _atomic_dec_and_raw_lock() 75 /* Otherwise do it the slow way */ in _atomic_dec_and_raw_lock_irqsave()
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/timer/ |
| D | img,pistachio-gptimer.txt | 10 "slow", slow counter clock 26 clock-names = "fast", "slow", "sys";
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/timer/ |
| D | img,pistachio-gptimer.txt | 10 "slow", slow counter clock 26 clock-names = "fast", "slow", "sys";
|
| /kernel/linux/linux-6.6/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() 246 /* Slow start. */ in tcp_vegas_cong_avoid() 256 * we slow down. in tcp_vegas_cong_avoid() 285 /* Use normal slow start */ in tcp_vegas_cong_avoid()
|
| /kernel/linux/linux-5.10/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()
|
| /kernel/linux/linux-6.6/net/mptcp/ |
| D | diag.c | 21 bool slow; in subflow_get_info() local 31 slow = lock_sock_fast(sk); in subflow_get_info() 77 unlock_sock_fast(sk, slow); in subflow_get_info() 83 unlock_sock_fast(sk, slow); in subflow_get_info()
|
| /kernel/linux/linux-6.6/drivers/watchdog/ |
| D | bd9576_wdt.c | 129 int slow; in find_closest_slow() local 131 slow = window * multipliers[j]; in find_closest_slow() 132 if (slow >= target && (!val || slow < val)) { in find_closest_slow() 133 val = slow; in find_closest_slow() 180 dev_dbg(dev, "Setting type SLOW 0x%x\n", type); in bd957x_set_wdt_mode()
|
| /kernel/linux/linux-6.6/tools/testing/selftests/net/mptcp/ |
| D | mptcp_join.sh | 1057 elif [ $speed = "slow" ]; then 2052 speed=slow \ 2064 speed=slow \ 2076 speed=slow \ 2089 speed=slow \ 2204 speed=slow \ 2315 speed=slow \ 2327 speed=slow \ 2365 addr_nr_ns2=-1 speed=slow \ 2379 addr_nr_ns2=-2 speed=slow \ [all …]
|
| /kernel/linux/linux-5.10/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
|