summaryrefslogtreecommitdiff
path: root/board/keymile/secu1/socfpga.c
blob: dc04a21abea89eca3e3d9bb4b727d778a4bd1399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) 2017-2020 ABB
 */
#include <common.h>
#include <i2c.h>
#include <asm/gpio.h>

#include "../common/common.h"

/*
 * For FU1, the MAC address associated with the mgmt port should
 * be the base address (as read from the IVM) + 4, and for FU2 it
 * is + 10
 */
#define MAC_ADDRESS_OFFSET_FU1	4
#define MAC_ADDRESS_OFFSET_FU2	10

/*
 * This function reads the state of GPIO40 and returns true (non-zero)
 * if it is '1' and false(0) otherwise.
 *
 * This pin is routed to a pull-up on FU2 and a pull-down on
 */
#define GPIO_FU_DETECTION	40

int secu1_is_fu2(void)
{
	int value;
	int ret = gpio_request(GPIO_FU_DETECTION, "secu");

	if (ret) {
		printf("gpio: failed to request pin for FU  detection\n");
		return 1;
	}
	gpio_direction_input(GPIO_FU_DETECTION);
	value = gpio_get_value(GPIO_FU_DETECTION);

	if (value == 1)
		printf("FU2 detected\n");
	else
		printf("FU1 detected\n");

	return value;
}

static uchar ivm_content[CONFIG_SYS_IVM_EEPROM_MAX_LEN];

#if defined(CONFIG_HUSH_INIT_VAR)
int hush_init_var(void)
{
	ivm_analyze_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
	return 0;
}
#endif

int misc_init_r(void)
{
	if (secu1_is_fu2())
		ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
				MAC_ADDRESS_OFFSET_FU2);
	else
		ivm_read_eeprom(ivm_content, CONFIG_SYS_IVM_EEPROM_MAX_LEN,
				MAC_ADDRESS_OFFSET_FU1);

	return 0;
}