/linux-6.12.1/tools/testing/selftests/drivers/net/hw/ |
D | ethtool.sh | 60 for speed in "${speeds_arr[@]}"; do 62 ethtool_set $h1 speed $speed autoneg off 63 ethtool_set $h2 speed $speed autoneg off 68 check_err $? "ping with speed $speed autoneg off" 69 log_test "force speed $speed on both ends" 86 ethtool_set $h1 speed $speed1 autoneg off 87 ethtool_set $h2 speed $speed2 autoneg off 102 # Test that when one device is forced to a speed supported by both 107 for speed in "${speeds_arr[@]}"; do 109 ethtool_set $h1 speed $speed autoneg off [all …]
|
/linux-6.12.1/drivers/net/ethernet/stmicro/stmmac/ |
D | dwmac-rk.c | 31 void (*set_rgmii_speed)(struct rk_priv_data *bsp_priv, int speed); 32 void (*set_rmii_speed)(struct rk_priv_data *bsp_priv, int speed); 115 static void px30_set_rmii_speed(struct rk_priv_data *bsp_priv, int speed) in px30_set_rmii_speed() argument 126 if (speed == 10) { in px30_set_rmii_speed() 134 } else if (speed == 100) { in px30_set_rmii_speed() 144 dev_err(dev, "unknown speed value for RMII! speed=%d", speed); in px30_set_rmii_speed() 213 static void rk3128_set_rgmii_speed(struct rk_priv_data *bsp_priv, int speed) in rk3128_set_rgmii_speed() argument 222 if (speed == 10) in rk3128_set_rgmii_speed() 225 else if (speed == 100) in rk3128_set_rgmii_speed() 228 else if (speed == 1000) in rk3128_set_rgmii_speed() [all …]
|
/linux-6.12.1/Documentation/admin-guide/pm/ |
D | intel-speed-select.rst | 4 Intel(R) Speed Select Technology User Guide 7 The Intel(R) Speed Select Technology (Intel(R) SST) provides a powerful new 14 - https://www.intel.com/content/www/us/en/architecture-and-technology/speed-select-technology-artic… 15 - https://builders.intel.com/docs/networkbuilders/intel-speed-select-technology-base-frequency-enha… 21 and configure these features is by using the Intel Speed Select utility. 23 This document explains how to use the Intel Speed Select tool to enumerate and 29 intel-speed-select configuration tool 32 Most Linux distribution packages may include the "intel-speed-select" tool. If not, 38 # cd tools/power/x86/intel-speed-select/ 47 # intel-speed-select --help [all …]
|
/linux-6.12.1/drivers/gpu/drm/nouveau/nvkm/subdev/pci/ |
D | gk104.c | 33 gk104_pcie_set_cap_speed(struct nvkm_pci *pci, enum nvkm_pcie_speed speed) in gk104_pcie_set_cap_speed() argument 37 switch (speed) { in gk104_pcie_set_cap_speed() 56 int speed = gf100_pcie_cap_speed(pci); in gk104_pcie_cap_speed() local 58 if (speed == 0) in gk104_pcie_cap_speed() 61 if (speed >= 1) { in gk104_pcie_cap_speed() 78 gk104_pcie_set_lnkctl_speed(struct nvkm_pci *pci, enum nvkm_pcie_speed speed) in gk104_pcie_set_lnkctl_speed() argument 81 switch (speed) { in gk104_pcie_set_lnkctl_speed() 127 gk104_pcie_set_link_speed(struct nvkm_pci *pci, enum nvkm_pcie_speed speed) in gk104_pcie_set_link_speed() argument 132 switch (speed) { in gk104_pcie_set_link_speed() 163 nvkm_trace(subdev, "adjusting cap to max speed\n"); in gk104_pcie_init() [all …]
|
D | pcie.c | 33 nvkm_pcie_speed(enum pci_bus_speed speed) in nvkm_pcie_speed() argument 35 switch (speed) { in nvkm_pcie_speed() 44 if (speed == 0x17) in nvkm_pcie_speed() 83 nvkm_debug(&pci->subdev, "pcie max speed: %s\n", in nvkm_pcie_oneinit() 108 if (pci->pcie.speed != -1) in nvkm_pcie_init() 109 nvkm_pcie_set_link(pci, pci->pcie.speed, pci->pcie.width); in nvkm_pcie_init() 115 nvkm_pcie_set_link(struct nvkm_pci *pci, enum nvkm_pcie_speed speed, u8 width) in nvkm_pcie_set_link() argument 128 nvkm_trace(subdev, "requested %s\n", nvkm_pcie_speeds[speed]); in nvkm_pcie_set_link() 139 nvkm_trace(subdev, "current speed: %s\n", nvkm_pcie_speeds[cur_speed]); in nvkm_pcie_set_link() 141 if (speed > max_speed) { in nvkm_pcie_set_link() [all …]
|
/linux-6.12.1/drivers/mtd/tests/ |
D | speedtest.c | 5 * Test read and write speed of a MTD device. 176 long speed; in mtd_speedtest_init() local 244 pr_info("testing eraseblock write speed\n"); in mtd_speedtest_init() 258 speed = calc_speed(); in mtd_speedtest_init() 259 pr_info("eraseblock write speed is %ld KiB/s\n", speed); in mtd_speedtest_init() 262 pr_info("testing eraseblock read speed\n"); in mtd_speedtest_init() 276 speed = calc_speed(); in mtd_speedtest_init() 277 pr_info("eraseblock read speed is %ld KiB/s\n", speed); in mtd_speedtest_init() 284 pr_info("testing page write speed\n"); in mtd_speedtest_init() 298 speed = calc_speed(); in mtd_speedtest_init() [all …]
|
/linux-6.12.1/drivers/platform/x86/ |
D | gpd-pocket-fan.c | 33 "Millicelsius values above which the fan speed increases"); 38 "Hysteresis in millicelsius before lowering the fan speed"); 43 "minimum fan speed to allow when system is powered by AC"); 55 static void gpd_pocket_fan_set_speed(struct gpd_pocket_fan_data *fan, int speed) in gpd_pocket_fan_set_speed() argument 57 if (speed == fan->last_speed) in gpd_pocket_fan_set_speed() 60 gpiod_direction_output(fan->gpio0, !!(speed & 1)); in gpd_pocket_fan_set_speed() 61 gpiod_direction_output(fan->gpio1, !!(speed & 2)); in gpd_pocket_fan_set_speed() 63 fan->last_speed = speed; in gpd_pocket_fan_set_speed() 78 int t0, t1, temp, speed, min_speed, i; in gpd_pocket_fan_worker() local 83 speed = MAX_SPEED; in gpd_pocket_fan_worker() [all …]
|
/linux-6.12.1/tools/usb/usbip/libsrc/ |
D | usbip_device_driver.c | 33 enum usb_device_speed speed; member 37 .speed = USB_SPEED_UNKNOWN, 41 .speed = USB_SPEED_LOW, 42 .name = "low-speed", 45 .speed = USB_SPEED_FULL, 46 .name = "full-speed", 49 .speed = USB_SPEED_HIGH, 50 .name = "high-speed", 53 .speed = USB_SPEED_WIRELESS, 57 .speed = USB_SPEED_SUPER, [all …]
|
/linux-6.12.1/tools/power/cpupower/utils/helpers/ |
D | misc.c | 228 void print_speed(unsigned long speed, int no_rounding) in print_speed() argument 233 if (speed > 1000000) in print_speed() 234 printf("%u.%06u GHz", ((unsigned int)speed / 1000000), in print_speed() 235 ((unsigned int)speed % 1000000)); in print_speed() 236 else if (speed > 1000) in print_speed() 237 printf("%u.%03u MHz", ((unsigned int)speed / 1000), in print_speed() 238 (unsigned int)(speed % 1000)); in print_speed() 240 printf("%lu kHz", speed); in print_speed() 242 if (speed > 1000000) { in print_speed() 243 tmp = speed % 10000; in print_speed() [all …]
|
/linux-6.12.1/Documentation/hwmon/ |
D | g762.rst | 4 The GMT G762 Fan Speed PWM Controller is connected directly to a fan 5 and performs closed-loop or open-loop control of the fan speed. Two 25 set desired fan speed. This only makes sense in closed-loop 26 fan speed control (i.e. when pwm1_enable is set to 2). 49 set current fan speed control mode i.e. 1 for manual fan 50 speed control (open-loop) via pwm1 described below, 2 for 51 automatic fan speed control (closed-loop) via fan1_target 60 it run at full speed. 63 when current fan speed control mode is open-loop ('pwm1_enable' set to 1), 64 the fan speed is programmed by setting a value between 0 and 255 via 'pwm1' [all …]
|
D | g760a.rst | 19 The GMT G760A Fan Speed PWM Controller is connected directly to a fan 20 and performs closed-loop control of the fan speed. 22 The fan speed is programmed by setting the period via 'pwm1' of two 23 consecutive speed pulses. The period is defined in terms of clock 27 fan to maximum speed. 29 The measured fan rotation speed returned via 'fan1_input' is derived 30 from the measured speed pulse period by assuming again a 32kHz clock 35 speed differs more than 20% with respect to the programmed fan speed; 36 bit 1 is set when fan speed is below 1920 RPM.
|
D | nct6775.rst | 106 There are 4 to 5 fan rotation speed sensors, 8 to 15 analog voltage sensors, 120 triggered if the rotation speed has dropped below a programmable limit. On 123 do not have a fan speed divider. The driver sets the most suitable fan divisor 124 itself; specifically, it increases the divider value each time a fan speed 125 reading returns an invalid value, and it reduces it if the fan speed reading 144 - this file stores PWM duty cycle or DC value (fan speed) in range: 146 0 (lowest speed) to 255 (full) 151 * 0 Fan control disabled (fans set to maximum speed) 154 * 3 "Fan Speed Cruise" mode 206 There are no changes to fan speed. Once the temperature leaves the interval, fan [all …]
|
D | adm9240.rst | 57 high speed successive approximation ADC allows frequent sampling of all 76 with independent fan speed measurement cycles counting alternating rising 79 DS1780 measurement cycle is about once per second including fan speed. 81 LM81 measurement cycle is about once per 400ms including fan speed. 93 Fan Speed 96 clock via a divider to an 8-bit counter. Fan speed (rpm) is calculated by: 104 - low speed alarm is disabled 106 - auto fan clock adjuster enabled for valid fan speed reading 110 - low speed alarm is enabled 114 - low speed alarm will be asserted if fan speed is [all …]
|
/linux-6.12.1/drivers/usb/common/ |
D | common.c | 71 [USB_SPEED_LOW] = "low-speed", 72 [USB_SPEED_FULL] = "full-speed", 73 [USB_SPEED_HIGH] = "high-speed", 75 [USB_SPEED_SUPER] = "super-speed", 76 [USB_SPEED_SUPER_PLUS] = "super-speed-plus", 81 [USB_SSP_GEN_2x1] = "super-speed-plus-gen2x1", 82 [USB_SSP_GEN_1x2] = "super-speed-plus-gen1x2", 83 [USB_SSP_GEN_2x2] = "super-speed-plus-gen2x2", 87 * usb_speed_string() - Returns human readable-name of the speed. 88 * @speed: The speed to return human-readable name for. If it's not [all …]
|
/linux-6.12.1/include/dt-bindings/pinctrl/ |
D | k210-fpioa.h | 32 #define K210_PCF_UARTHS_RX 18 /* UART High speed Receiver */ 33 #define K210_PCF_UARTHS_TX 19 /* UART High speed Transmitter */ 38 #define K210_PCF_GPIOHS0 24 /* GPIO High speed 0 */ 39 #define K210_PCF_GPIOHS1 25 /* GPIO High speed 1 */ 40 #define K210_PCF_GPIOHS2 26 /* GPIO High speed 2 */ 41 #define K210_PCF_GPIOHS3 27 /* GPIO High speed 3 */ 42 #define K210_PCF_GPIOHS4 28 /* GPIO High speed 4 */ 43 #define K210_PCF_GPIOHS5 29 /* GPIO High speed 5 */ 44 #define K210_PCF_GPIOHS6 30 /* GPIO High speed 6 */ 45 #define K210_PCF_GPIOHS7 31 /* GPIO High speed 7 */ [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/usb/ |
D | usb.yaml | 40 serial is specified and High-Speed Inter-Chip feature if HSIC is 46 maximum-speed: 48 Tells USB controllers we want to work up to a certain speed. In case this 53 - low-speed 54 - full-speed 55 - high-speed 56 - super-speed 57 - super-speed-plus 58 - super-speed-plus-gen2x1 59 - super-speed-plus-gen1x2 [all …]
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-bus-pci-drivers-ehci_hcd | 7 PCI-based EHCI USB controllers (i.e., high-speed USB-2.0 9 "companion" full/low-speed USB-1.1 controllers. When a 10 high-speed device is plugged in, the connection is routed 11 to the EHCI controller; when a full- or low-speed device 15 Sometimes you want to force a high-speed device to connect 16 at full speed, which can be accomplished by forcing the 23 For example: To force the high-speed device attached to 24 port 4 on bus 2 to run at full speed:: 28 To return the port to high-speed operation:: 39 cannot be used to force a port on a high-speed hub to [all …]
|
D | sysfs-class-led-trigger-netdev | 83 Signal the link speed state of 10Mbps of the named network device. 88 speed of 10MBps of the named network device. 91 Present only if the named network device supports 10Mbps link speed. 98 Signal the link speed state of 100Mbps of the named network device. 103 speed of 100Mbps of the named network device. 106 Present only if the named network device supports 100Mbps link speed. 113 Signal the link speed state of 1000Mbps of the named network device. 118 speed of 1000Mbps of the named network device. 121 Present only if the named network device supports 1000Mbps link speed. 128 Signal the link speed state of 2500Mbps of the named network device. [all …]
|
/linux-6.12.1/Documentation/devicetree/bindings/phy/ |
D | nvidia,tegra194-xusb-padctl.yaml | 21 Some of the lanes are high-speed lanes, which can be used for PCIe, SATA or 22 super-speed USB. Other lanes are for various types of low-speed, full-speed 23 or high-speed USB (such as UTMI, ULPI and HSIC). The XUSB pad controller 379 maximum-speed: 381 supported speed of a USB3 port. 384 - description: The USB3 port supports USB 3.1 Gen 2 speed. 386 const: super-speed-plus 387 - description: The USB3 port supports USB 3.1 Gen 1 speed 389 const: super-speed 399 number to map this super-speed USB port to. The range of [all …]
|
/linux-6.12.1/drivers/net/ethernet/marvell/prestera/ |
D | prestera_ethtool.c | 23 u32 speed; member 30 .speed = 10, 37 .speed = 10, 44 .speed = 100, 51 .speed = 100, 58 .speed = 1000, 65 .speed = 1000, 72 .speed = 1000, 79 .speed = 1000, 86 .speed = 2500, [all …]
|
/linux-6.12.1/drivers/usb/misc/ |
D | trancevibrator.c | 30 unsigned int speed; member 39 return sprintf(buf, "%d\n", tv->speed); in speed_show() 56 old = tv->speed; in speed_store() 57 tv->speed = temp; in speed_store() 59 dev_dbg(&tv->udev->dev, "speed = %d\n", tv->speed); in speed_store() 61 /* Set speed */ in speed_store() 63 0x01, /* vendor request: set speed */ in speed_store() 65 tv->speed, /* speed value */ in speed_store() 68 tv->speed = old; in speed_store() 74 static DEVICE_ATTR_RW(speed);
|
/linux-6.12.1/Documentation/usb/ |
D | ehci.rst | 7 The EHCI driver is used to talk to high speed USB 2.0 devices using 11 - "High Speed" 480 Mbit/sec (60 MByte/sec) 12 - "Full Speed" 12 Mbit/sec (1.5 MByte/sec) 13 - "Low Speed" 1.5 Mbit/sec 15 USB 1.1 only addressed full speed and low speed. High speed devices 23 (TT) in the hub, which turns low or full speed transactions into 24 high speed "split transactions" that don't waste transfer bandwidth. 33 been available since late 2001, and other kinds of high speed devices 62 High Speed Isochronous (ISO) transfer support is also functional, but 65 Full Speed Isochronous transfer support, through transaction translators, [all …]
|
/linux-6.12.1/drivers/usb/gadget/udc/ |
D | Kconfig | 39 full speed USB Device Port with support for five configurable 62 USBA is the integrated high-speed USB Device controller on some 85 high speed USB Device Port with support for four fixed endpoints 95 Some of Freescale PowerPC and i.MX processors have a High Speed 123 speed USB device controllers, with support for up to 30 138 an integrated full speed USB 1.1 device controller. The 163 supports both full and high speed USB 2.0 data transfers. 175 that supports both full and high speed USB 2.0 data transfers. 200 that supports super, high, and full speed USB 3.0 data transfers. 222 an integrated full speed USB 1.1 device controller. [all …]
|
/linux-6.12.1/drivers/net/phy/ |
D | swphy.c | 38 * This means the speed table must contain both duplex settings, and the 39 * duplex table must contain all speed settings. 41 static const struct swmii_regs speed[] = { variable 71 static int swphy_decode_speed(int speed) in swphy_decode_speed() argument 73 switch (speed) { in swphy_decode_speed() 98 err = swphy_decode_speed(state->speed); in swphy_validate_state() 100 pr_warn("swphy: unknown speed\n"); in swphy_validate_state() 126 speed_index = swphy_decode_speed(state->speed); in swphy_read_reg() 132 bmsr |= speed[speed_index].bmsr & duplex[duplex_index].bmsr; in swphy_read_reg() 133 estat |= speed[speed_index].estat & duplex[duplex_index].estat; in swphy_read_reg() [all …]
|
/linux-6.12.1/drivers/net/ethernet/aquantia/atlantic/hw_atl/ |
D | hw_atl_utils_fw2x.c | 85 static int aq_fw2x_set_link_speed(struct aq_hw_s *self, u32 speed); 125 static enum hw_atl_fw2x_rate link_speed_mask_2fw2x_ratemask(u32 speed) in link_speed_mask_2fw2x_ratemask() argument 129 if (speed & AQ_NIC_RATE_10G) in link_speed_mask_2fw2x_ratemask() 132 if (speed & AQ_NIC_RATE_5G) in link_speed_mask_2fw2x_ratemask() 135 if (speed & AQ_NIC_RATE_2G5) in link_speed_mask_2fw2x_ratemask() 138 if (speed & AQ_NIC_RATE_1G) in link_speed_mask_2fw2x_ratemask() 141 if (speed & AQ_NIC_RATE_100M) in link_speed_mask_2fw2x_ratemask() 147 static u32 fw2x_to_eee_mask(u32 speed) in fw2x_to_eee_mask() argument 151 if (speed & HW_ATL_FW2X_CAP_EEE_10G_MASK) in fw2x_to_eee_mask() 153 if (speed & HW_ATL_FW2X_CAP_EEE_5G_MASK) in fw2x_to_eee_mask() [all …]
|