blob: 5d9fdf27b2567ae8760c0761e1ce6a5197f1ae3a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Patrice Chotard2f329792017-02-21 13:37:12 +01002/*
Patrice Chotard9e216242017-10-23 09:53:57 +02003 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
4 * Author(s): Patrice Chotard, <patrice.chotard@st.com> for STMicroelectronics.
Patrice Chotard2f329792017-02-21 13:37:12 +01005 */
6
7#include <common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -07008#include <cpu_func.h>
Patrice Chotardaecc94c2017-09-05 11:04:27 +02009#include <linux/usb/otg.h>
10#include <dwc3-sti-glue.h>
11#include <dwc3-uboot.h>
12#include <usb.h>
Patrice Chotard2f329792017-02-21 13:37:12 +010013
14DECLARE_GLOBAL_DATA_PTR;
15
16int dram_init(void)
17{
18 gd->ram_size = PHYS_SDRAM_1_SIZE;
19 return 0;
20}
21
Simon Glass2f949c32017-03-31 08:40:32 -060022int dram_init_banksize(void)
Patrice Chotard2f329792017-02-21 13:37:12 +010023{
24 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
25 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
Simon Glass2f949c32017-03-31 08:40:32 -060026
27 return 0;
Patrice Chotard2f329792017-02-21 13:37:12 +010028}
29
Trevor Woerner43ec7e02019-05-03 09:41:00 -040030#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Patrice Chotard411b3fc2017-03-20 15:21:36 +010031void enable_caches(void)
32{
33 /* Enable D-cache. I-cache is already enabled in start.S */
34 dcache_enable();
35}
36#endif
37
Patrice Chotard2f329792017-02-21 13:37:12 +010038int board_init(void)
39{
40 return 0;
41}
Patrice Chotardaecc94c2017-09-05 11:04:27 +020042
43#ifdef CONFIG_USB_DWC3
44static struct dwc3_device dwc3_device_data = {
45 .maximum_speed = USB_SPEED_HIGH,
46 .dr_mode = USB_DR_MODE_PERIPHERAL,
47 .index = 0,
48};
49
50int usb_gadget_handle_interrupts(int index)
51{
52 dwc3_uboot_handle_interrupt(index);
53 return 0;
54}
55
56int board_usb_init(int index, enum usb_init_type init)
57{
58 int node;
59 const void *blob = gd->fdt_blob;
60
61 /* find the snps,dwc3 node */
62 node = fdt_node_offset_by_compatible(blob, -1, "snps,dwc3");
63
64 dwc3_device_data.base = fdtdec_get_addr(blob, node, "reg");
65
66 return dwc3_uboot_init(&dwc3_device_data);
67}
68
69int board_usb_cleanup(int index, enum usb_init_type init)
70{
71 dwc3_uboot_exit(index);
72 return 0;
73}
74
75int g_dnl_board_usb_cable_connected(void)
76{
77 return 1;
78}
79#endif