| /OK3568_Linux_fs/kernel/drivers/usb/common/ |
| H A D | common.c | 109 const char *maximum_speed; in usb_get_maximum_speed() local 112 ret = device_property_read_string(dev, "maximum-speed", &maximum_speed); in usb_get_maximum_speed() 116 ret = match_string(ssp_rate, ARRAY_SIZE(ssp_rate), maximum_speed); in usb_get_maximum_speed() 120 ret = match_string(speed_names, ARRAY_SIZE(speed_names), maximum_speed); in usb_get_maximum_speed() 136 const char *maximum_speed; in usb_get_maximum_ssp_rate() local 139 ret = device_property_read_string(dev, "maximum-speed", &maximum_speed); in usb_get_maximum_ssp_rate() 143 ret = match_string(ssp_rate, ARRAY_SIZE(ssp_rate), maximum_speed); in usb_get_maximum_ssp_rate()
|
| /OK3568_Linux_fs/u-boot/drivers/usb/dwc3/ |
| H A D | dwc3-generic.c | 34 u32 maximum_speed; member 59 dwc3->maximum_speed = plat->maximum_speed; in dwc3_generic_probe() 113 plat->maximum_speed = usb_get_maximum_speed(node); in dwc3_generic_ofdata_to_platdata() 114 if (plat->maximum_speed == USB_SPEED_UNKNOWN) { in dwc3_generic_ofdata_to_platdata() 116 plat->maximum_speed = USB_SPEED_SUPER; in dwc3_generic_ofdata_to_platdata()
|
| H A D | core.c | 475 if (dwc->maximum_speed == USB_SPEED_SUPER) in dwc3_core_init() 476 dwc->maximum_speed = USB_SPEED_HIGH; in dwc3_core_init() 501 if (dwc->maximum_speed == USB_SPEED_HIGH || in dwc3_core_init() 502 dwc->maximum_speed == USB_SPEED_FULL) in dwc3_core_init() 727 dwc->maximum_speed = dwc3_dev->maximum_speed; in dwc3_uboot_init() 755 if (dwc->maximum_speed == USB_SPEED_UNKNOWN) in dwc3_uboot_init() 756 dwc->maximum_speed = USB_SPEED_SUPER; in dwc3_uboot_init()
|
| /OK3568_Linux_fs/kernel/drivers/cpufreq/ |
| H A D | powernow-k7.c | 96 static unsigned int maximum_speed; variable 199 if (speed > maximum_speed) in get_ranges() 200 maximum_speed = speed; in get_ranges() 409 if (speed > maximum_speed) in powernow_acpi_init() 410 maximum_speed = speed; in powernow_acpi_init() 620 maximum_speed = 0; in powernow_cpu_init() 638 minimum_speed/1000, maximum_speed/1000); in powernow_cpu_init()
|
| /OK3568_Linux_fs/kernel/drivers/usb/dwc3/ |
| H A D | core.c | 1102 if (dwc->maximum_speed == USB_SPEED_HIGH || in dwc3_core_init() 1103 dwc->maximum_speed == USB_SPEED_FULL) in dwc3_core_init() 1336 dwc->maximum_speed = usb_get_maximum_speed(dev); in dwc3_get_properties() 1485 switch (dwc->maximum_speed) { in dwc3_check_params() 1503 dwc->maximum_speed); in dwc3_check_params() 1508 dwc->maximum_speed = USB_SPEED_SUPER_PLUS; in dwc3_check_params() 1512 dwc->maximum_speed = USB_SPEED_SUPER_PLUS; in dwc3_check_params() 1514 dwc->maximum_speed = USB_SPEED_SUPER; in dwc3_check_params() 1517 dwc->maximum_speed = USB_SPEED_HIGH; in dwc3_check_params() 1520 dwc->maximum_speed = USB_SPEED_SUPER; in dwc3_check_params() [all …]
|
| /OK3568_Linux_fs/u-boot/board/xilinx/zynqmp/ |
| H A D | zynqmp.c | 337 .maximum_speed = USB_SPEED_HIGH, 344 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3588/ |
| H A D | evb_rk3588.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3528/ |
| H A D | evb_rk3528.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3568/ |
| H A D | evb_rk3568.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3562/ |
| H A D | evb_rk3562.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rv1126/ |
| H A D | evb_rv1126.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk1808/ |
| H A D | evb_rk1808.c | 15 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rv1106/ |
| H A D | evb_rv1106.c | 16 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3328/ |
| H A D | evb-rk3328.c | 13 .maximum_speed = USB_SPEED_SUPER,
|
| /OK3568_Linux_fs/u-boot/board/forlinx/ok3568/ |
| H A D | ok3568.c | 30 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | dwc3-uboot.h | 20 u32 maximum_speed; member
|
| /OK3568_Linux_fs/u-boot/board/intel/edison/ |
| H A D | edison.c | 23 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/kernel/include/linux/usb/ |
| H A D | musb.h | 77 u32 maximum_speed; member
|
| /OK3568_Linux_fs/u-boot/board/samsung/common/ |
| H A D | exynos5-dt.c | 146 .maximum_speed = USB_SPEED_SUPER,
|
| /OK3568_Linux_fs/u-boot/board/rockchip/evb_rk3399/ |
| H A D | evb-rk3399.c | 192 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/u-boot/board/ti/omap5_uevm/ |
| H A D | evm.c | 65 .maximum_speed = USB_SPEED_SUPER,
|
| /OK3568_Linux_fs/u-boot/board/ti/am43xx/ |
| H A D | board.c | 637 .maximum_speed = USB_SPEED_HIGH, 655 .maximum_speed = USB_SPEED_HIGH,
|
| /OK3568_Linux_fs/kernel/drivers/phy/tegra/ |
| H A D | xusb.c | 926 enum usb_device_speed maximum_speed; in tegra_xusb_usb3_port_parse_dt() local 941 maximum_speed = usb_get_maximum_speed(&port->dev); in tegra_xusb_usb3_port_parse_dt() 942 if (maximum_speed == USB_SPEED_SUPER) in tegra_xusb_usb3_port_parse_dt() 944 else if (maximum_speed == USB_SPEED_SUPER_PLUS) in tegra_xusb_usb3_port_parse_dt()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/stable/ |
| H A D | sysfs-class-udc | 50 What: /sys/class/udc/<udc>/maximum_speed
|
| /OK3568_Linux_fs/kernel/drivers/usb/musb/ |
| H A D | musb_dsps.c | 790 config->maximum_speed = usb_get_maximum_speed(&parent->dev); in dsps_create_musb_pdev() 791 switch (config->maximum_speed) { in dsps_create_musb_pdev() 800 config->maximum_speed = USB_SPEED_HIGH; in dsps_create_musb_pdev()
|