Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Altera Corporation <www.altera.com> |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/arch/reset_manager.h> |
| 9 | #include <asm/io.h> |
| 10 | |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 11 | #include <usb.h> |
| 12 | #include <usb/s3c_udc.h> |
| 13 | #include <usb_mass_storage.h> |
| 14 | |
Dinh Nguyen | 74ae12e | 2014-11-13 11:23:41 -0600 | [diff] [blame^] | 15 | #include <micrel.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 16 | #include <netdev.h> |
Dinh Nguyen | 74ae12e | 2014-11-13 11:23:41 -0600 | [diff] [blame^] | 17 | #include <phy.h> |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 18 | |
| 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Print Board information |
| 23 | */ |
| 24 | int checkboard(void) |
| 25 | { |
Marek Vasut | 604364e | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 26 | puts("BOARD: Altera SoCFPGA Cyclone5 Board\n"); |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | /* |
| 31 | * Initialization function which happen at early stage of c code |
| 32 | */ |
| 33 | int board_early_init_f(void) |
| 34 | { |
| 35 | return 0; |
| 36 | } |
| 37 | |
| 38 | /* |
| 39 | * Miscellaneous platform dependent initialisations |
| 40 | */ |
| 41 | int board_init(void) |
| 42 | { |
Pavel Machek | 868749a | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 43 | /* Address of boot parameters for ATAG (if ATAG is used) */ |
| 44 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
| 45 | |
Dinh Nguyen | 7775440 | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 46 | return 0; |
| 47 | } |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 48 | |
Dinh Nguyen | 74ae12e | 2014-11-13 11:23:41 -0600 | [diff] [blame^] | 49 | int board_phy_config(struct phy_device *phydev) |
| 50 | { |
| 51 | /* |
| 52 | * These skew settings for the KSZ9021 ethernet phy is required for ethernet |
| 53 | * to work reliably on most flavors of cyclone5 boards. |
| 54 | */ |
| 55 | ksz9021_phy_extended_write(phydev, MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW, |
| 56 | 0x0); |
| 57 | ksz9021_phy_extended_write(phydev, MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW, |
| 58 | 0x0); |
| 59 | ksz9021_phy_extended_write(phydev, MII_KSZ9021_EXT_RGMII_CLOCK_SKEW, |
| 60 | 0xf0f0); |
| 61 | } |
| 62 | |
Marek Vasut | 0223a95 | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 63 | #ifdef CONFIG_USB_GADGET |
| 64 | struct s3c_plat_otg_data socfpga_otg_data = { |
| 65 | .regs_otg = CONFIG_USB_DWC2_REG_ADDR, |
| 66 | .usb_gusbcfg = 0x1417, |
| 67 | }; |
| 68 | |
| 69 | int board_usb_init(int index, enum usb_init_type init) |
| 70 | { |
| 71 | return s3c_udc_probe(&socfpga_otg_data); |
| 72 | } |
| 73 | |
| 74 | int g_dnl_board_usb_cable_connected(void) |
| 75 | { |
| 76 | return 1; |
| 77 | } |
| 78 | #endif |