common: Drop linux/delay.h from common header
[oweals/u-boot.git] / board / softing / vining_fpga / socfpga.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *  Copyright (C) 2012 Altera Corporation <www.altera.com>
4  */
5
6 #include <common.h>
7 #include <eeprom.h>
8 #include <env.h>
9 #include <init.h>
10 #include <net.h>
11 #include <status_led.h>
12 #include <asm/arch/reset_manager.h>
13 #include <asm/io.h>
14 #include <asm/gpio.h>
15 #include <i2c.h>
16 #include <linux/delay.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 /*
21  * Miscellaneous platform dependent initialisations
22  */
23 int board_late_init(void)
24 {
25         const unsigned int phy_nrst_gpio = 0;
26         const unsigned int usb_nrst_gpio = 35;
27         int ret;
28
29         status_led_set(1, CONFIG_LED_STATUS_ON);
30         status_led_set(2, CONFIG_LED_STATUS_ON);
31
32         /* Address of boot parameters for ATAG (if ATAG is used) */
33         gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
34
35         ret = gpio_request(phy_nrst_gpio, "phy_nrst_gpio");
36         if (!ret)
37                 gpio_direction_output(phy_nrst_gpio, 1);
38         else
39                 printf("Cannot remove PHY from reset!\n");
40
41         ret = gpio_request(usb_nrst_gpio, "usb_nrst_gpio");
42         if (!ret)
43                 gpio_direction_output(usb_nrst_gpio, 1);
44         else
45                 printf("Cannot remove USB from reset!\n");
46
47         mdelay(50);
48
49         return 0;
50 }
51
52 #ifndef CONFIG_SPL_BUILD
53 int misc_init_r(void)
54 {
55         uchar data[128];
56         char str[32];
57         u32 serial;
58         int ret;
59
60         /* EEPROM is at address 0x50 (at bus CONFIG_SYS_EEPROM_BUS_NUM). */
61         ret = eeprom_read(0x50, 0, data, sizeof(data));
62         if (ret) {
63                 puts("Cannot read I2C EEPROM.\n");
64                 return 0;
65         }
66
67         /* Check EEPROM signature. */
68         if (!(data[0] == 0xa5 && data[1] == 0x5a)) {
69                 puts("Invalid I2C EEPROM signature.\n");
70                 env_set("unit_serial", "invalid");
71                 env_set("unit_ident", "VINing-xxxx-STD");
72                 env_set("hostname", "vining-invalid");
73                 return 0;
74         }
75
76         /* If 'unit_serial' is already set, do nothing. */
77         if (!env_get("unit_serial")) {
78                 /* This field is Big Endian ! */
79                 serial = (data[0x54] << 24) | (data[0x55] << 16) |
80                          (data[0x56] << 8) | (data[0x57] << 0);
81                 memset(str, 0, sizeof(str));
82                 sprintf(str, "%07i", serial);
83                 env_set("unit_serial", str);
84         }
85
86         if (!env_get("unit_ident")) {
87                 memset(str, 0, sizeof(str));
88                 memcpy(str, &data[0x2e], 18);
89                 env_set("unit_ident", str);
90         }
91
92         /* Set ethernet address from EEPROM. */
93         if (!env_get("ethaddr") && is_valid_ethaddr(&data[0x62]))
94                 eth_env_set_enetaddr("ethaddr", &data[0x62]);
95         if (!env_get("eth1addr") && is_valid_ethaddr(&data[0x6a]))
96                 eth_env_set_enetaddr("eth1addr", &data[0x6a]);
97
98         return 0;
99 }
100 #endif