1 // SPDX-License-Identifier: GPL-2.0+
3 * Altera SoCFPGA common board code
5 * Copyright (C) 2015 Marek Vasut <marex@denx.de>
11 #include <asm/arch/reset_manager.h>
12 #include <asm/arch/clock_manager.h>
13 #include <asm/arch/misc.h>
17 #include <usb/dwc2_udc.h>
19 DECLARE_GLOBAL_DATA_PTR;
24 * Preconfigure ACTLR and CPACR, make sure Write Full Line of Zeroes
25 * is disabled in ACTLR.
26 * This is optional on CycloneV / ArriaV.
27 * This is mandatory on Arria10, otherwise Linux refuses to boot.
30 "mcr p15, 0, %0, c1, c0, 1\n"
31 "mcr p15, 0, %0, c1, c0, 2\n"
39 * Miscellaneous platform dependent initialisations
43 /* Address of boot parameters for ATAG (if ATAG is used) */
44 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
49 int dram_init_banksize(void)
51 fdtdec_setup_memory_banksize();
56 #ifdef CONFIG_USB_GADGET
57 struct dwc2_plat_otg_data socfpga_otg_data = {
58 .usb_gusbcfg = 0x1417,
61 int board_usb_init(int index, enum usb_init_type init)
66 count = fdtdec_find_aliases_for_id(gd->fdt_blob, "udc",
67 COMPAT_ALTERA_SOCFPGA_DWC2USB,
69 if (count <= 0) /* No controller found. */
72 addr = fdtdec_get_addr(gd->fdt_blob, node[0], "reg");
73 if (addr == FDT_ADDR_T_NONE) {
74 printf("UDC Controller has no 'reg' property!\n");
78 /* Patch the address from OF into the controller pdata. */
79 socfpga_otg_data.regs_otg = addr;
81 return dwc2_udc_probe(&socfpga_otg_data);
84 int g_dnl_board_usb_cable_connected(void)