blob: fa705dea71dfcf6024c0b2fcac6e82c20eac2927 [file] [log] [blame]
Anup Patel3fda0262019-02-25 08:15:19 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2019 Western Digital Corporation or its affiliates.
4 *
5 * Authors:
6 * Anup Patel <anup.patel@wdc.com>
7 */
8
Anup Patel3fda0262019-02-25 08:15:19 +00009#include <dm.h>
Simon Glass09140112020-05-10 11:40:03 -060010#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Pragnesh Patel88eec612020-05-29 11:33:22 +053012#include <log.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060013#include <linux/bug.h>
Anup Patel9f2a0c02019-06-25 06:31:44 +000014#include <linux/delay.h>
15#include <linux/io.h>
Pragnesh Patel88eec612020-05-29 11:33:22 +053016#include <misc.h>
Pragnesh Patel01cdef22020-05-29 11:33:35 +053017#include <spl.h>
Pragnesh Patel88eec612020-05-29 11:33:22 +053018
19/*
20 * This define is a value used for error/unknown serial.
21 * If we really care about distinguishing errors and 0 is
22 * valid, we'll need a different one.
23 */
24#define ERROR_READING_SERIAL_NUMBER 0
Anup Patel9f2a0c02019-06-25 06:31:44 +000025
26#ifdef CONFIG_MISC_INIT_R
27
Pragnesh Patel88eec612020-05-29 11:33:22 +053028#if CONFIG_IS_ENABLED(SIFIVE_OTP)
29static u32 otp_read_serialnum(struct udevice *dev)
Anup Patel9f2a0c02019-06-25 06:31:44 +000030{
31 int ret;
32 u32 serial[2] = {0};
33
34 for (int i = 0xfe * 4; i > 0; i -= 8) {
Pragnesh Patel88eec612020-05-29 11:33:22 +053035 ret = misc_read(dev, i, serial, sizeof(serial));
36
37 if (ret != sizeof(serial)) {
38 printf("%s: error reading serial from OTP\n", __func__);
Anup Patel9f2a0c02019-06-25 06:31:44 +000039 break;
40 }
Pragnesh Patel88eec612020-05-29 11:33:22 +053041
Anup Patel9f2a0c02019-06-25 06:31:44 +000042 if (serial[0] == ~serial[1])
43 return serial[0];
44 }
45
Pragnesh Patel88eec612020-05-29 11:33:22 +053046 return ERROR_READING_SERIAL_NUMBER;
47}
48#endif
49
50static u32 fu540_read_serialnum(void)
51{
52 u32 serial = ERROR_READING_SERIAL_NUMBER;
53
54#if CONFIG_IS_ENABLED(SIFIVE_OTP)
55 struct udevice *dev;
56 int ret;
57
58 /* init OTP */
59 ret = uclass_get_device_by_driver(UCLASS_MISC,
60 DM_GET_DRIVER(sifive_otp), &dev);
61
62 if (ret) {
63 debug("%s: could not find otp device\n", __func__);
64 return serial;
65 }
66
67 /* read serial from OTP and set env var */
68 serial = otp_read_serialnum(dev);
69#endif
70
71 return serial;
Anup Patel9f2a0c02019-06-25 06:31:44 +000072}
73
74static void fu540_setup_macaddr(u32 serialnum)
75{
76 /* Default MAC address */
77 unsigned char mac[6] = { 0x70, 0xb3, 0xd5, 0x92, 0xf0, 0x00 };
78
79 /*
80 * We derive our board MAC address by ORing last three bytes
81 * of board serial number to above default MAC address.
82 *
83 * This logic of deriving board MAC address is taken from
84 * SiFive FSBL and is kept unchanged.
85 */
86 mac[5] |= (serialnum >> 0) & 0xff;
87 mac[4] |= (serialnum >> 8) & 0xff;
88 mac[3] |= (serialnum >> 16) & 0xff;
89
90 /* Update environment variable */
91 eth_env_set_enetaddr("ethaddr", mac);
92}
93
94int misc_init_r(void)
95{
Sagar Shrikant Kadamcba06352019-08-12 07:57:40 -070096 u32 serial_num;
97 char buf[9] = {0};
Anup Patel9f2a0c02019-06-25 06:31:44 +000098
Sagar Shrikant Kadamcba06352019-08-12 07:57:40 -070099 /* Set ethaddr environment variable from board serial number */
100 if (!env_get("serial#")) {
101 serial_num = fu540_read_serialnum();
102 if (!serial_num) {
103 WARN(true, "Board serial number should not be 0 !!\n");
104 return 0;
105 }
106 snprintf(buf, sizeof(buf), "%08x", serial_num);
107 env_set("serial#", buf);
108 fu540_setup_macaddr(serial_num);
109 }
Anup Patel9f2a0c02019-06-25 06:31:44 +0000110 return 0;
111}
112
113#endif
Anup Patel3fda0262019-02-25 08:15:19 +0000114
115int board_init(void)
116{
117 /* For now nothing to do here. */
118
119 return 0;
120}
Pragnesh Patel01cdef22020-05-29 11:33:35 +0530121
122#ifdef CONFIG_SPL
123u32 spl_boot_device(void)
124{
125#ifdef CONFIG_SPL_MMC_SUPPORT
126 return BOOT_DEVICE_MMC1;
127#else
128 puts("Unknown boot device\n");
129 hang();
130#endif
131}
132#endif
133
134#ifdef CONFIG_SPL_LOAD_FIT
135int board_fit_config_name_match(const char *name)
136{
137 /* boot using first FIT config */
138 return 0;
139}
140#endif