Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Altera Corporation <www.altera.com> |
| 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Dinh Nguyen | ad51f7c | 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 | 40f1d6b | 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 | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 15 | #include <micrel.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 16 | #include <netdev.h> |
Dinh Nguyen | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 17 | #include <phy.h> |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 18 | |
| 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 21 | /* |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 22 | * Miscellaneous platform dependent initialisations |
| 23 | */ |
| 24 | int board_init(void) |
| 25 | { |
Pavel Machek | 26ea1d9 | 2014-09-08 14:08:45 +0200 | [diff] [blame] | 26 | /* Address of boot parameters for ATAG (if ATAG is used) */ |
| 27 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
| 28 | |
Dinh Nguyen | ad51f7c | 2012-10-04 06:46:02 +0000 | [diff] [blame] | 29 | return 0; |
| 30 | } |
Marek Vasut | 40f1d6b | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 31 | |
Pavel Machek | 4c58751 | 2014-12-11 18:06:31 +0100 | [diff] [blame] | 32 | /* |
| 33 | * PHY configuration |
| 34 | */ |
| 35 | #ifdef CONFIG_PHY_MICREL_KSZ9021 |
Dinh Nguyen | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 36 | int board_phy_config(struct phy_device *phydev) |
| 37 | { |
Pavel Machek | 4c58751 | 2014-12-11 18:06:31 +0100 | [diff] [blame] | 38 | int ret; |
Dinh Nguyen | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 39 | /* |
| 40 | * These skew settings for the KSZ9021 ethernet phy is required for ethernet |
| 41 | * to work reliably on most flavors of cyclone5 boards. |
| 42 | */ |
Pavel Machek | 4c58751 | 2014-12-11 18:06:31 +0100 | [diff] [blame] | 43 | ret = ksz9021_phy_extended_write(phydev, |
| 44 | MII_KSZ9021_EXT_RGMII_RX_DATA_SKEW, |
| 45 | 0x0); |
| 46 | if (ret) |
| 47 | return ret; |
| 48 | |
| 49 | ret = ksz9021_phy_extended_write(phydev, |
| 50 | MII_KSZ9021_EXT_RGMII_TX_DATA_SKEW, |
| 51 | 0x0); |
| 52 | if (ret) |
| 53 | return ret; |
| 54 | |
| 55 | ret = ksz9021_phy_extended_write(phydev, |
| 56 | MII_KSZ9021_EXT_RGMII_CLOCK_SKEW, |
| 57 | 0xf0f0); |
| 58 | if (ret) |
| 59 | return ret; |
| 60 | |
| 61 | if (phydev->drv->config) |
| 62 | return phydev->drv->config(phydev); |
| 63 | |
| 64 | return 0; |
Dinh Nguyen | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 65 | } |
Pavel Machek | 4c58751 | 2014-12-11 18:06:31 +0100 | [diff] [blame] | 66 | #endif |
Dinh Nguyen | f2b845e | 2014-11-13 11:23:41 -0600 | [diff] [blame] | 67 | |
Marek Vasut | 40f1d6b | 2014-11-04 04:25:09 +0100 | [diff] [blame] | 68 | #ifdef CONFIG_USB_GADGET |
| 69 | struct s3c_plat_otg_data socfpga_otg_data = { |
| 70 | .regs_otg = CONFIG_USB_DWC2_REG_ADDR, |
| 71 | .usb_gusbcfg = 0x1417, |
| 72 | }; |
| 73 | |
| 74 | int board_usb_init(int index, enum usb_init_type init) |
| 75 | { |
| 76 | return s3c_udc_probe(&socfpga_otg_data); |
| 77 | } |
| 78 | |
| 79 | int g_dnl_board_usb_cable_connected(void) |
| 80 | { |
| 81 | return 1; |
| 82 | } |
| 83 | #endif |