Merge tag 'u-boot-atmel-fixes-2021.01-b' of https://gitlab.denx.de/u-boot/custodians...
[platform/kernel/u-boot.git] / board / st / stih410-b2260 / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4  * Author(s): Patrice Chotard, <patrice.chotard@foss.st.com> for STMicroelectronics.
5  */
6
7 #include <common.h>
8 #include <cpu_func.h>
9 #include <init.h>
10 #include <asm/cache.h>
11 #include <linux/usb/otg.h>
12 #include <dwc3-sti-glue.h>
13 #include <dwc3-uboot.h>
14 #include <usb.h>
15
16 DECLARE_GLOBAL_DATA_PTR;
17
18 int dram_init(void)
19 {
20         gd->ram_size = PHYS_SDRAM_1_SIZE;
21         return 0;
22 }
23
24 int dram_init_banksize(void)
25 {
26         gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
27         gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
28
29         return 0;
30 }
31
32 #if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
33 void enable_caches(void)
34 {
35         /* Enable D-cache. I-cache is already enabled in start.S */
36         dcache_enable();
37 }
38 #endif
39
40 int board_init(void)
41 {
42         return 0;
43 }
44
45 #ifdef CONFIG_USB_DWC3
46 static struct dwc3_device dwc3_device_data = {
47         .maximum_speed = USB_SPEED_HIGH,
48         .dr_mode = USB_DR_MODE_PERIPHERAL,
49         .index = 0,
50 };
51
52 int usb_gadget_handle_interrupts(int index)
53 {
54         dwc3_uboot_handle_interrupt(index);
55         return 0;
56 }
57
58 int board_usb_init(int index, enum usb_init_type init)
59 {
60         int node;
61         const void *blob = gd->fdt_blob;
62
63         /* find the snps,dwc3 node */
64         node = fdt_node_offset_by_compatible(blob, -1, "snps,dwc3");
65
66         dwc3_device_data.base = fdtdec_get_addr(blob, node, "reg");
67
68         return dwc3_uboot_init(&dwc3_device_data);
69 }
70
71 int board_usb_cleanup(int index, enum usb_init_type init)
72 {
73         dwc3_uboot_exit(index);
74         return 0;
75 }
76
77 int g_dnl_board_usb_cable_connected(void)
78 {
79         return 1;
80 }
81 #endif