blob: a55def5aba67466d83d829af88e8c657a886d752 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Mugunthan V Nc0c62d92016-04-12 16:01:19 +05302/*
3 * Provides code common for host and device side USB.
4 *
5 * (C) Copyright 2016
6 * Texas Instruments Incorporated, <www.ti.com>
Mugunthan V Nc0c62d92016-04-12 16:01:19 +05307 */
8
9#include <common.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053011#include <linux/usb/otg.h>
Mugunthan V N59592b92018-05-18 13:15:05 +020012#include <linux/usb/ch9.h>
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053013
14DECLARE_GLOBAL_DATA_PTR;
15
16static const char *const usb_dr_modes[] = {
17 [USB_DR_MODE_UNKNOWN] = "",
18 [USB_DR_MODE_HOST] = "host",
19 [USB_DR_MODE_PERIPHERAL] = "peripheral",
20 [USB_DR_MODE_OTG] = "otg",
21};
22
23enum usb_dr_mode usb_get_dr_mode(int node)
24{
25 const void *fdt = gd->fdt_blob;
26 const char *dr_mode;
27 int i;
28
29 dr_mode = fdt_getprop(fdt, node, "dr_mode", NULL);
30 if (!dr_mode) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +090031 pr_err("usb dr_mode not found\n");
Mugunthan V Nc0c62d92016-04-12 16:01:19 +053032 return USB_DR_MODE_UNKNOWN;
33 }
34
35 for (i = 0; i < ARRAY_SIZE(usb_dr_modes); i++)
36 if (!strcmp(dr_mode, usb_dr_modes[i]))
37 return i;
38
39 return USB_DR_MODE_UNKNOWN;
40}
Mugunthan V N59592b92018-05-18 13:15:05 +020041
42static const char *const speed_names[] = {
43 [USB_SPEED_UNKNOWN] = "UNKNOWN",
44 [USB_SPEED_LOW] = "low-speed",
45 [USB_SPEED_FULL] = "full-speed",
46 [USB_SPEED_HIGH] = "high-speed",
47 [USB_SPEED_WIRELESS] = "wireless",
48 [USB_SPEED_SUPER] = "super-speed",
49};
50
51enum usb_device_speed usb_get_maximum_speed(int node)
52{
53 const void *fdt = gd->fdt_blob;
54 const char *max_speed;
55 int i;
56
57 max_speed = fdt_getprop(fdt, node, "maximum-speed", NULL);
58 if (!max_speed) {
59 pr_err("usb maximum-speed not found\n");
60 return USB_SPEED_UNKNOWN;
61 }
62
63 for (i = 0; i < ARRAY_SIZE(speed_names); i++)
64 if (!strcmp(max_speed, speed_names[i]))
65 return i;
66
67 return USB_SPEED_UNKNOWN;
68}