blob: 5d0dac950efe6cd252f49d48294e6fdaa702607f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Kishon Vijay Abraham I9848e572015-02-23 18:39:54 +05302/* include/linux/usb/otg.h
3 *
4 * Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com
5 *
6 * USB OTG (On The Go) defines
Kishon Vijay Abraham I9848e572015-02-23 18:39:54 +05307 */
8
9#ifndef __LINUX_USB_OTG_H
10#define __LINUX_USB_OTG_H
11
Kever Yangac28e592020-03-04 08:59:50 +080012#include <dm/ofnode.h>
13
Kishon Vijay Abraham I9848e572015-02-23 18:39:54 +053014enum usb_dr_mode {
15 USB_DR_MODE_UNKNOWN,
16 USB_DR_MODE_HOST,
17 USB_DR_MODE_PERIPHERAL,
18 USB_DR_MODE_OTG,
19};
20
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053021/**
22 * usb_get_dr_mode() - Get dual role mode for given device
Kever Yangac28e592020-03-04 08:59:50 +080023 * @node: ofnode of the given device
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053024 *
25 * The function gets phy interface string from property 'dr_mode',
26 * and returns the correspondig enum usb_dr_mode
27 */
Kever Yangac28e592020-03-04 08:59:50 +080028enum usb_dr_mode usb_get_dr_mode(ofnode node);
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053029
Mugunthan V N59592b92018-05-18 13:15:05 +020030/**
Mark Kettenis6a6468f2022-04-19 21:06:33 +020031 * usb_get_dr_mode() - Get dual role mode for given device
32 * @node: ofnode of the given device
33 *
34 * The function gets phy interface string from property
35 * 'role-switch-defaulr-mode', and returns the correspondig enum
36 * usb_dr_mode
37 */
38enum usb_dr_mode usb_get_role_switch_default_mode(ofnode node);
39
40/**
Mugunthan V N59592b92018-05-18 13:15:05 +020041 * usb_get_maximum_speed() - Get maximum speed for given device
Kever Yangac28e592020-03-04 08:59:50 +080042 * @node: ofnode of the given device
Mugunthan V N59592b92018-05-18 13:15:05 +020043 *
44 * The function gets phy interface string from property 'maximum-speed',
45 * and returns the correspondig enum usb_device_speed
46 */
Kever Yangac28e592020-03-04 08:59:50 +080047enum usb_device_speed usb_get_maximum_speed(ofnode node);
Mugunthan V N59592b92018-05-18 13:15:05 +020048
Kishon Vijay Abraham I9848e572015-02-23 18:39:54 +053049#endif /* __LINUX_USB_OTG_H */