hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/*
 * Copyright (C) 2015, Google, Inc
 *
 * SPDX-License-Identifier:    GPL-2.0+
 */
 
#include <common.h>
#include <dm.h>
#include <asm/gpio.h>
#include <dm/device-internal.h>
#include <dm/uclass-internal.h>
 
#define GPIO_BANKE_NAME        "gpioe"
 
int misc_init_r(void)
{
   struct udevice *dev;
   struct gpio_desc desc;
   int ret;
 
   /*
    * Turn on USB VBUS for the two USB ports on the board.
    * Each port's VBUS is controlled by a GPIO pin.
    */
 
   ret = uclass_find_device_by_name(UCLASS_GPIO, GPIO_BANKE_NAME, &dev);
   if (ret) {
       debug("%s: GPIO %s device cannot be not found (ret=%d)\n",
             __func__, GPIO_BANKE_NAME, ret);
       return ret;
   }
 
   ret = device_probe(dev);
   if (ret) {
       debug("%s: GPIO %s device probe failed (ret=%d)\n",
             __func__, GPIO_BANKE_NAME, ret);
       return ret;
   }
 
   desc.dev = dev;
   desc.flags = GPIOD_IS_OUT;
 
   /* GPIO E8 controls the bottom port */
   desc.offset = 8;
 
   ret = dm_gpio_request(&desc, "usb_host_en0");
   if (ret)
       return ret;
   dm_gpio_set_value(&desc, 1);
 
   /* GPIO E9 controls the upper port */
   desc.offset = 9;
 
   ret = dm_gpio_request(&desc, "usb_host_en1");
   if (ret)
       return ret;
 
   dm_gpio_set_value(&desc, 1);
 
   return 0;
}