Merge tag 'u-boot-atmel-fixes-2020.07-a' of https://gitlab.denx.de/u-boot/custodians...
[oweals/u-boot.git] / board / broadcom / bcm28155_ap / bcm28155_ap.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2013 Broadcom Corporation.
4  */
5
6 #include <common.h>
7 #include <init.h>
8 #include <log.h>
9 #include <asm/io.h>
10 #include <asm/mach-types.h>
11 #include <env.h>
12 #include <mmc.h>
13 #include <asm/kona-common/kona_sdhci.h>
14 #include <asm/kona-common/clk.h>
15 #include <asm/arch/sysmap.h>
16
17 #include <usb.h>
18 #include <usb/dwc2_udc.h>
19 #include <g_dnl.h>
20
21 #define SECWATCHDOG_SDOGCR_OFFSET       0x00000000
22 #define SECWATCHDOG_SDOGCR_EN_SHIFT     27
23 #define SECWATCHDOG_SDOGCR_SRSTEN_SHIFT 26
24 #define SECWATCHDOG_SDOGCR_CLKS_SHIFT   20
25 #define SECWATCHDOG_SDOGCR_LD_SHIFT     0
26
27 #ifndef CONFIG_USB_SERIALNO
28 #define CONFIG_USB_SERIALNO "1234567890"
29 #endif
30
31 DECLARE_GLOBAL_DATA_PTR;
32
33 /*
34  * board_init - early hardware init
35  */
36 int board_init(void)
37 {
38         printf("Relocation Offset is: %08lx\n", gd->reloc_off);
39
40         /* adress of boot parameters */
41         gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
42
43         clk_init();
44
45         return 0;
46 }
47
48 /*
49  * misc_init_r - miscellaneous platform dependent initializations
50  */
51 int misc_init_r(void)
52 {
53         /* Disable watchdog reset - watchdog unused */
54         writel((0 << SECWATCHDOG_SDOGCR_EN_SHIFT) |
55                (0 << SECWATCHDOG_SDOGCR_SRSTEN_SHIFT) |
56                (4 << SECWATCHDOG_SDOGCR_CLKS_SHIFT) |
57                (0x5a0 << SECWATCHDOG_SDOGCR_LD_SHIFT),
58                (SECWD_BASE_ADDR + SECWATCHDOG_SDOGCR_OFFSET));
59
60         return 0;
61 }
62
63 /*
64  * dram_init - sets uboots idea of sdram size
65  */
66 int dram_init(void)
67 {
68         gd->ram_size = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
69                                     CONFIG_SYS_SDRAM_SIZE);
70         return 0;
71 }
72
73 /* This is called after dram_init() so use get_ram_size result */
74 int dram_init_banksize(void)
75 {
76         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
77         gd->bd->bi_dram[0].size = gd->ram_size;
78
79         return 0;
80 }
81
82 #ifdef CONFIG_MMC_SDHCI_KONA
83 /*
84  * mmc_init - Initializes mmc
85  */
86 int board_mmc_init(bd_t *bis)
87 {
88         int ret = 0;
89
90         /* Register eMMC - SDIO2 */
91         ret = kona_sdhci_init(1, 400000, 0);
92         if (ret)
93                 return ret;
94
95         /* Register SD Card - SDIO4 kona_mmc_init assumes 0 based index */
96         ret = kona_sdhci_init(3, 400000, 0);
97         return ret;
98 }
99 #endif
100
101 #ifdef CONFIG_USB_GADGET
102 static struct dwc2_plat_otg_data bcm_otg_data = {
103         .regs_otg       = HSOTG_BASE_ADDR
104 };
105
106 int board_usb_init(int index, enum usb_init_type init)
107 {
108         debug("%s: performing dwc2_udc_probe\n", __func__);
109         return dwc2_udc_probe(&bcm_otg_data);
110 }
111
112 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
113 {
114         debug("%s\n", __func__);
115         if (!env_get("serial#"))
116                 g_dnl_set_serialnumber(CONFIG_USB_SERIALNO);
117         return 0;
118 }
119
120 int g_dnl_get_board_bcd_device_number(int gcnum)
121 {
122         debug("%s\n", __func__);
123         return 1;
124 }
125
126 int board_usb_cleanup(int index, enum usb_init_type init)
127 {
128         debug("%s\n", __func__);
129         return 0;
130 }
131 #endif