blob: ce625e54d06cd702385a16da27db03e3431b01cb [file] [log] [blame]
Dinh Nguyen77754402012-10-04 06:46:02 +00001/*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Dinh Nguyen77754402012-10-04 06:46:02 +00005 */
6
7#include <common.h>
8#include <asm/arch/reset_manager.h>
9#include <asm/io.h>
10
Marek Vasut0223a952014-11-04 04:25:09 +010011#include <usb.h>
12#include <usb/s3c_udc.h>
13#include <usb_mass_storage.h>
14
Dinh Nguyen77754402012-10-04 06:46:02 +000015#include <netdev.h>
16
17DECLARE_GLOBAL_DATA_PTR;
18
Dinh Nguyen77754402012-10-04 06:46:02 +000019/*
20 * Print Board information
21 */
22int checkboard(void)
23{
Marek Vasut604364e2014-09-08 14:08:45 +020024 puts("BOARD: Altera SoCFPGA Cyclone5 Board\n");
Dinh Nguyen77754402012-10-04 06:46:02 +000025 return 0;
26}
27
28/*
29 * Initialization function which happen at early stage of c code
30 */
31int board_early_init_f(void)
32{
33 return 0;
34}
35
36/*
37 * Miscellaneous platform dependent initialisations
38 */
39int board_init(void)
40{
Pavel Machek868749a2014-09-08 14:08:45 +020041 /* Address of boot parameters for ATAG (if ATAG is used) */
42 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
43
Dinh Nguyen77754402012-10-04 06:46:02 +000044 return 0;
45}
Marek Vasut0223a952014-11-04 04:25:09 +010046
47#ifdef CONFIG_USB_GADGET
48struct s3c_plat_otg_data socfpga_otg_data = {
49 .regs_otg = CONFIG_USB_DWC2_REG_ADDR,
50 .usb_gusbcfg = 0x1417,
51};
52
53int board_usb_init(int index, enum usb_init_type init)
54{
55 return s3c_udc_probe(&socfpga_otg_data);
56}
57
58int g_dnl_board_usb_cable_connected(void)
59{
60 return 1;
61}
62#endif