Home
last modified time | relevance | path

Searched full:speeds (Results 1 – 25 of 730) sorted by relevance

12345678910>>...30

/kernel/linux/linux-4.19/drivers/ide/
Dumc8672.c56 * Default speeds. These can be changed with "auto-tune" and/or hdparm.
58 #define UMC_DRIVE0 1 /* DOS measured drive speeds */
85 static void umc_set_speeds(u8 speeds[]) in umc_set_speeds() argument
91 out_umc(0xd7, (speedtab[0][speeds[2]] | (speedtab[0][speeds[3]]<<4))); in umc_set_speeds()
92 out_umc(0xd6, (speedtab[0][speeds[0]] | (speedtab[0][speeds[1]]<<4))); in umc_set_speeds()
95 tmp = (tmp << 2) | speedtab[1][speeds[i]]; in umc_set_speeds()
98 out_umc(0xd0 + i, speedtab[2][speeds[i]]); in umc_set_speeds()
99 out_umc(0xd8 + i, speedtab[2][speeds[i]]); in umc_set_speeds()
103 printk("umc8672: drive speeds [0 to 11]: %d %d %d %d\n", in umc_set_speeds()
104 speeds[0], speeds[1], speeds[2], speeds[3]); in umc_set_speeds()
DKconfig358 speeds and to configure the chip to optimum performance.
382 change PIO, DMA and UDMA speeds and to configure the chip to
391 This allows the kernel to change PIO, DMA and UDMA speeds
505 This allows the kernel to change PIO, DMA and UDMA speeds and to
640 This allows the kernel to change PIO, DMA and UDMA speeds and to
820 I/O speeds to be set as well.
831 of the DTC-2278 card, and permits faster I/O speeds to be set as
842 of the Holtek card, and permits faster I/O speeds to be set as well.
852 boot parameter. It permits faster I/O speeds to be set. See the
863 of the UMC-8672, and permits faster I/O speeds to be set as well.
/kernel/linux/linux-5.10/drivers/ide/
Dumc8672.c57 * Default speeds. These can be changed with "auto-tune" and/or hdparm.
59 #define UMC_DRIVE0 1 /* DOS measured drive speeds */
86 static void umc_set_speeds(u8 speeds[]) in umc_set_speeds() argument
92 out_umc(0xd7, (speedtab[0][speeds[2]] | (speedtab[0][speeds[3]]<<4))); in umc_set_speeds()
93 out_umc(0xd6, (speedtab[0][speeds[0]] | (speedtab[0][speeds[1]]<<4))); in umc_set_speeds()
96 tmp = (tmp << 2) | speedtab[1][speeds[i]]; in umc_set_speeds()
99 out_umc(0xd0 + i, speedtab[2][speeds[i]]); in umc_set_speeds()
100 out_umc(0xd8 + i, speedtab[2][speeds[i]]); in umc_set_speeds()
104 printk("umc8672: drive speeds [0 to 11]: %d %d %d %d\n", in umc_set_speeds()
105 speeds[0], speeds[1], speeds[2], speeds[3]); in umc_set_speeds()
DKconfig359 speeds and to configure the chip to optimum performance.
383 change PIO, DMA and UDMA speeds and to configure the chip to
392 This allows the kernel to change PIO, DMA and UDMA speeds
506 This allows the kernel to change PIO, DMA and UDMA speeds and to
632 This allows the kernel to change PIO, DMA and UDMA speeds and to
796 I/O speeds to be set as well.
807 of the DTC-2278 card, and permits faster I/O speeds to be set as
818 of the Holtek card, and permits faster I/O speeds to be set as well.
828 boot parameter. It permits faster I/O speeds to be set. See the
839 of the UMC-8672, and permits faster I/O speeds to be set as well.
/kernel/linux/linux-5.10/tools/testing/selftests/net/forwarding/
Dethtool.sh55 # Check that when each of the reported speeds is forced, the links come
78 # Test that when we force different speeds, links are not up and ping
92 check_fail $? "ping with different speeds"
94 log_test "force of different speeds autoneg off"
182 # Test that when one device advertises a subset of speeds and another
191 log_test "advertise subset of speeds"
196 # Check only speeds that h1 advertised. Remove the first speed.
211 log_test "advertise subset of speeds"
221 # Test that when one device advertises a subset of speeds, the other
262 # Test that when we configure links to advertise different speeds,
[all …]
Dethtool_lib.sh82 check_err 1 "cannot check different speeds. There are not enough speeds"
/kernel/linux/linux-5.10/drivers/net/phy/
Dphy_led_triggers.c87 unsigned int speeds[50]; in phy_led_triggers_register() local
89 phy->phy_num_led_triggers = phy_supported_speeds(phy, speeds, in phy_led_triggers_register()
90 ARRAY_SIZE(speeds)); in phy_led_triggers_register()
122 speeds[i]); in phy_led_triggers_register()
Dphy.c208 * phy_supported_speeds - return all speeds currently supported by a phy device
209 * @phy: The phy device to return supported speeds of.
210 * @speeds: buffer to store supported speeds in.
211 * @size: size of speeds buffer.
213 * Description: Returns the number of supported speeds, and fills the speeds
214 * buffer with the supported speeds. If speeds buffer is too small to contain
215 * all currently supported speeds, will return as many speeds as can fit.
218 unsigned int *speeds, in phy_supported_speeds() argument
221 return phy_speeds(speeds, size, phy->supported); in phy_supported_speeds()
243 * Description: Make sure the PHY is set to supported speeds and
[all …]
/kernel/linux/linux-4.19/drivers/net/phy/
Dphy.c182 * phy_supported_speeds - return all speeds currently supported by a phy device
183 * @phy: The phy device to return supported speeds of.
184 * @speeds: buffer to store supported speeds in.
185 * @size: size of speeds buffer.
187 * Description: Returns the number of supported speeds, and fills the speeds
188 * buffer with the supported speeds. If speeds buffer is too small to contain
189 * all currently supported speeds, will return as many speeds as can fit.
192 unsigned int *speeds, in phy_supported_speeds() argument
197 return phy_speeds(speeds, size, &supported, BITS_PER_LONG); in phy_supported_speeds()
220 * Description: Make sure the PHY is set to supported speeds and
[all …]
Dphy_led_triggers.c108 unsigned int speeds[50]; in phy_led_triggers_register() local
110 phy->phy_num_led_triggers = phy_supported_speeds(phy, speeds, in phy_led_triggers_register()
111 ARRAY_SIZE(speeds)); in phy_led_triggers_register()
143 speeds[i]); in phy_led_triggers_register()
/kernel/linux/linux-4.19/Documentation/hwmon/
Dmax3179018 The MAX31790 controls the speeds of up to six fans using six independent
19 PWM outputs. The desired fan speeds (or PWM duty cycles) are written
Dpc8742734 Fan rotation speeds are reported as 14-bit values from a gated clock
35 signal. Speeds down to 83 RPM can be measured.
Dadm102649 Fan rotation speeds are reported in RPM (rotations per minute) but measured
76 divisor. It can take as long as 1.5 seconds to measure all fan speeds.
/kernel/linux/linux-4.19/include/linux/
Dphy.h95 * phy_supported_speeds - return all speeds currently supported by a phy device
96 * @phy: The phy device to return supported speeds of.
97 * @speeds: buffer to store supported speeds in.
98 * @size: size of speeds buffer.
100 * Description: Returns the number of supported speeds, and
101 * fills the speeds * buffer with the supported speeds. If speeds buffer is
102 * too small to contain * all currently supported speeds, will return as
103 * many speeds as can fit.
106 unsigned int *speeds,
694 size_t phy_speeds(unsigned int *speeds, size_t size,
/kernel/linux/linux-5.10/Documentation/hwmon/
Dpc87427.rst38 Fan rotation speeds are reported as 14-bit values from a gated clock
39 signal. Speeds down to 83 RPM can be measured.
Dmax31790.rst22 The MAX31790 controls the speeds of up to six fans using six independent
23 PWM outputs. The desired fan speeds (or PWM duty cycles) are written
Dadm1026.rst57 Fan rotation speeds are reported in RPM (rotations per minute) but measured
84 divisor. It can take as long as 1.5 seconds to measure all fan speeds.
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/dpaa2/
Ddpmac.h108 * Advertised link speeds
127 * @supported: Speeds capability of the phy (bitmap)
128 * @advertising: Speeds that are advertised for autoneg (bitmap)
/kernel/linux/linux-5.10/drivers/usb/gadget/function/
Du_audio.h35 /* Max packet size for all in_ep possible speeds */
37 /* Max packet size for all out_ep possible speeds */
/kernel/linux/linux-4.19/drivers/usb/gadget/function/
Du_audio.h35 /* Max packet size for all in_ep possible speeds */
37 /* Max packet size for all out_ep possible speeds */
/kernel/linux/linux-5.10/arch/mips/lantiq/
Dclk.h12 /* clock speeds */
45 /* clock out speeds */
/kernel/linux/linux-4.19/arch/mips/lantiq/
Dclk.h14 /* clock speeds */
47 /* clock out speeds */
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
Dice_sriov.c99 /* Virtchnl speeds are not defined for every speed supported in in ice_conv_link_speed_to_virtchnl()
102 * resolved to the closest known virtchnl speeds in ice_conv_link_speed_to_virtchnl()
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/thermal/
Dthermal-cooling-devices.yaml32 dissipated heat, e.g. regulating fan speeds.
37 different fan speeds possible. Cooling states are referred to by single
/kernel/linux/linux-5.10/drivers/net/ethernet/chelsio/cxgb4vf/
Dt4vf_common.h150 /* Return true if the Link Configuration supports "High Speeds" (those greater
155 fw_port_cap32_t speeds, high_speeds; in is_x_10g_port() local
157 speeds = FW_PORT_CAP32_SPEED_V(FW_PORT_CAP32_SPEED_G(lc->pcaps)); in is_x_10g_port()
159 speeds & ~(FW_PORT_CAP32_SPEED_100M | FW_PORT_CAP32_SPEED_1G); in is_x_10g_port()

12345678910>>...30