blob: d2045a5983bff035cb6414b4af47a66ccc258ca3 [file] [log] [blame]
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +02001// SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
2/*
3 * Copyright (C) 2019, STMicroelectronics - All Rights Reserved
4 */
5
6#include <common.h>
7#include <command.h>
8#include <console.h>
Patrick Delaunayeb653ac2020-11-06 19:01:29 +01009#include <log.h>
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020010#include <misc.h>
11#include <dm/device.h>
12#include <dm/uclass.h>
13
14#define STM32_OTP_HASH_KEY_START 24
15#define STM32_OTP_HASH_KEY_SIZE 8
16
17static void read_hash_value(u32 addr)
18{
19 int i;
20
21 for (i = 0; i < STM32_OTP_HASH_KEY_SIZE; i++) {
22 printf("OTP value %i: %x\n", STM32_OTP_HASH_KEY_START + i,
23 __be32_to_cpu(*(u32 *)addr));
24 addr += 4;
25 }
26}
27
28static void fuse_hash_value(u32 addr, bool print)
29{
30 struct udevice *dev;
31 u32 word, val;
32 int i, ret;
33
34 ret = uclass_get_device_by_driver(UCLASS_MISC,
Simon Glass65e25be2020-12-28 20:34:56 -070035 DM_DRIVER_GET(stm32mp_bsec),
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020036 &dev);
37 if (ret) {
Patrick Delaunayeb653ac2020-11-06 19:01:29 +010038 log_err("Can't find stm32mp_bsec driver\n");
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020039 return;
40 }
41
42 for (i = 0; i < STM32_OTP_HASH_KEY_SIZE; i++) {
43 if (print)
44 printf("Fuse OTP %i : %x\n",
45 STM32_OTP_HASH_KEY_START + i,
46 __be32_to_cpu(*(u32 *)addr));
47
48 word = STM32_OTP_HASH_KEY_START + i;
49 val = __be32_to_cpu(*(u32 *)addr);
50 misc_write(dev, STM32_BSEC_OTP(word), &val, 4);
51
52 addr += 4;
53 }
54}
55
56static int confirm_prog(void)
57{
58 puts("Warning: Programming fuses is an irreversible operation!\n"
59 " This may brick your system.\n"
60 " Use this command only if you are sure of what you are doing!\n"
61 "\nReally perform this fuse programming? <y/N>\n");
62
63 if (confirm_yesno())
64 return 1;
65
66 puts("Fuse programming aborted\n");
67 return 0;
68}
69
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020070static int do_stm32key_read(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020071{
72 u32 addr;
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020073
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020074 if (argc == 1)
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020075 return CMD_RET_USAGE;
76
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020077 addr = simple_strtoul(argv[1], NULL, 16);
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020078 if (!addr)
79 return CMD_RET_USAGE;
80
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020081 read_hash_value(addr);
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020082
83 return CMD_RET_SUCCESS;
84}
85
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020086static int do_stm32key_fuse(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
87{
88 u32 addr;
89 bool yes = false;
90
91 if (argc < 2)
92 return CMD_RET_USAGE;
93
94 if (argc == 3) {
95 if (strcmp(argv[1], "-y"))
96 return CMD_RET_USAGE;
97 yes = true;
98 }
99
100 addr = simple_strtoul(argv[argc - 1], NULL, 16);
101 if (!addr)
102 return CMD_RET_USAGE;
103
104 if (!yes && !confirm_prog())
105 return CMD_RET_FAILURE;
106
107 fuse_hash_value(addr, !yes);
108 printf("Hash key updated !\n");
109
110 return CMD_RET_SUCCESS;
111}
112
113static char stm32key_help_text[] =
114 "read <addr>: Read the hash stored at addr in memory\n"
115 "stm32key fuse [-y] <addr> : Fuse hash stored at addr in OTP\n";
116
117U_BOOT_CMD_WITH_SUBCMDS(stm32key, "Fuse ST Hash key", stm32key_help_text,
118 U_BOOT_SUBCMD_MKENT(read, 2, 0, do_stm32key_read),
119 U_BOOT_SUBCMD_MKENT(fuse, 3, 0, do_stm32key_fuse));