| /linux-6.15/tools/testing/selftests/drivers/net/hw/ |
| H A D | nic_link_layer.py | 84 speeds, duplex_modes = link_config.get_speed_duplex_values(common_link_modes) 86 if speeds and duplex_modes and len(speeds) == len(duplex_modes): 87 for idx in range(len(speeds)): 88 speed = speeds[idx] 96 if not speeds or not duplex_modes:
|
| H A D | nic_performance.py | 65 speeds, duplex_modes = link_config.get_speed_duplex_values(common_link_modes) 74 for idx in range(0, len(speeds)): 75 if link_config.set_speed_and_duplex(speeds[idx], duplex_modes[idx]) == False: 107 for idx in range(0, len(speeds)): 108 send_threshold = float(speeds[idx]) * float(test_config.send_throughput_threshold / 100) 109 … receive_threshold = float(speeds[idx]) * float(test_config.receive_throughput_threshold / 100)
|
| H A D | ethtool.sh | 264 local -a speeds=($(different_speeds_get $h1 $h2 1 1)) 265 local speed1=${speeds[0]} 266 local speed2=${speeds[1]}
|
| /linux-6.15/drivers/net/phy/ |
| H A D | phy_led_triggers.c | 89 unsigned int speeds[50]; in phy_led_triggers_register() local 91 phy->phy_num_led_triggers = phy_supported_speeds(phy, speeds, in phy_led_triggers_register() 92 ARRAY_SIZE(speeds)); in phy_led_triggers_register() 117 speeds[i], in phy_led_triggers_register() 118 phy_speed_to_str(speeds[i])); in phy_led_triggers_register()
|
| H A D | phy_caps.c | 110 size_t phy_caps_speeds(unsigned int *speeds, size_t size, in phy_caps_speeds() argument 118 (count == 0 || speeds[count - 1] != lcap->speed)) { in phy_caps_speeds() 119 speeds[count++] = lcap->speed; in phy_caps_speeds()
|
| H A D | phylib-internal.h | 15 unsigned int *speeds,
|
| H A D | phy-caps.h | 46 size_t phy_caps_speeds(unsigned int *speeds, size_t size,
|
| /linux-6.15/drivers/scsi/lpfc/ |
| H A D | lpfc_ct.c | 2789 u32 speeds = 0; in lpfc_fdmi_port_attr_support_speed() local 2844 speeds = HBA_PORTSPEED_10GE; in lpfc_fdmi_port_attr_support_speed() 2847 speeds = HBA_PORTSPEED_25GE; in lpfc_fdmi_port_attr_support_speed() 2850 speeds = HBA_PORTSPEED_40GE; in lpfc_fdmi_port_attr_support_speed() 2865 u32 speeds = 0; in lpfc_fdmi_port_attr_speed() local 2870 speeds = HBA_PORTSPEED_1GFC; in lpfc_fdmi_port_attr_speed() 2873 speeds = HBA_PORTSPEED_2GFC; in lpfc_fdmi_port_attr_speed() 2876 speeds = HBA_PORTSPEED_4GFC; in lpfc_fdmi_port_attr_speed() 2879 speeds = HBA_PORTSPEED_8GFC; in lpfc_fdmi_port_attr_speed() 2906 speeds = HBA_PORTSPEED_10GE; in lpfc_fdmi_port_attr_speed() [all …]
|
| /linux-6.15/Documentation/devicetree/bindings/hwmon/ |
| H A D | maxim,max31790.yaml | 14 The MAX31790 controls the speeds of up to six fans using six 15 independent PWM outputs. The desired fan speeds (or PWM duty cycles)
|
| H A D | gpio-fan.yaml | 38 A mapping of possible fan RPM speeds and the
|
| /linux-6.15/Documentation/hwmon/ |
| H A D | max31790.rst | 22 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
|
| H A D | max6620.rst | 29 (1, 2, 4, 8, 16 or 32). Set higher values for larger speeds.
|
| H A D | emc2305.rst | 18 Fan rotation speeds are reported in RPM.
|
| H A D | emc2103.rst | 23 Fan rotation speeds are reported in RPM (rotations per minute). An alarm is
|
| H A D | emc6w201.rst | 36 temperatures and fan speeds. Limits can be changed. Alarms are not
|
| H A D | w83l786ng.rst | 38 Fan rotation speeds are reported in RPM (rotations per minute). Fan readings
|
| /linux-6.15/Documentation/translations/zh_CN/power/ |
| H A D | opp.rst | 277 speeds = kcalloc(num_available, sizeof(u32), GFP_KERNEL); 281 speeds[i] = freq; 287 soc_notify_coproc(AVAILABLE_FREQs, speeds, num_available);
|
| /linux-6.15/drivers/net/ethernet/chelsio/cxgb4vf/ |
| H A D | t4vf_common.h | 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()
|
| /linux-6.15/Documentation/devicetree/bindings/net/ |
| H A D | fsl,fman-dtsec.yaml | 15 10/100/1000 MBit/s speeds, and the 10-Gigabit Ethernet Media Access Controller 16 (10GEC) for 10 Gbit/s speeds. Later versions of FMan use the Multirate 17 Ethernet Media Access Controller (mEMAC) to handle all speeds.
|
| /linux-6.15/tools/testing/selftests/drivers/net/hw/lib/py/ |
| H A D | linkconfig.py | 113 speeds, duplex_modes = self.get_speed_duplex_values(self.common_link_modes) 114 speed = speeds[0]
|
| /linux-6.15/Documentation/devicetree/bindings/thermal/ |
| H A D | thermal-cooling-devices.yaml | 32 dissipated heat, e.g. regulating fan speeds. 37 different fan speeds possible. Cooling states are referred to by single
|
| /linux-6.15/drivers/cpufreq/ |
| H A D | longhaul.c | 411 static const int speeds[] = { 666, 1000, 1333, 2000 }; in guess_fsb() local 414 for (i = 0; i < ARRAY_SIZE(speeds); i++) { in guess_fsb() 415 f_max = ((speeds[i] * mult) + 50) / 100; in guess_fsb() 419 return speeds[i] / 10; in guess_fsb()
|
| /linux-6.15/net/mpls/ |
| H A D | Kconfig | 12 hardware speeds (before hardware was capable of routing ipv4 packets),
|
| /linux-6.15/Documentation/devicetree/bindings/mmc/ |
| H A D | usdhi6rol0.txt | 17 entry when the board requires distinct settings for UHS speeds.
|
| H A D | cavium-mmc.txt | 6 Supported maximum speeds are the ones of the eMMC standard 4.41 as well
|