blob: c4cb6342fa718d01de3cfe35326190c02c42777c [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
Patrick Delaunayfe240902021-06-28 14:55:59 +020028static int fuse_hash_value(u32 addr, bool print)
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020029{
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 Delaunayfe240902021-06-28 14:55:59 +020039 return ret;
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020040 }
41
Patrick Delaunay3da25522021-06-28 14:56:00 +020042 for (i = 0, word = STM32_OTP_HASH_KEY_START;
43 i < STM32_OTP_HASH_KEY_SIZE;
44 i++, word++, addr += 4) {
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020045 val = __be32_to_cpu(*(u32 *)addr);
Patrick Delaunayfe240902021-06-28 14:55:59 +020046 if (print)
47 printf("Fuse OTP %i : %x\n", word, val);
48
49 ret = misc_write(dev, STM32_BSEC_OTP(word), &val, 4);
50 if (ret != 4) {
51 log_err("Fuse OTP %i failed\n", word);
52 return ret;
53 }
Patrick Delaunay3da25522021-06-28 14:56:00 +020054 /* on success, lock the OTP for HASH key */
55 val = 1;
56 ret = misc_write(dev, STM32_BSEC_LOCK(word), &val, 4);
57 if (ret != 4) {
58 log_err("Lock OTP %i failed\n", word);
59 return ret;
60 }
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020061 }
Patrick Delaunayfe240902021-06-28 14:55:59 +020062
63 return 0;
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020064}
65
66static int confirm_prog(void)
67{
68 puts("Warning: Programming fuses is an irreversible operation!\n"
69 " This may brick your system.\n"
70 " Use this command only if you are sure of what you are doing!\n"
71 "\nReally perform this fuse programming? <y/N>\n");
72
73 if (confirm_yesno())
74 return 1;
75
76 puts("Fuse programming aborted\n");
77 return 0;
78}
79
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020080static int do_stm32key_read(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020081{
82 u32 addr;
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020083
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020084 if (argc == 1)
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020085 return CMD_RET_USAGE;
86
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020087 addr = simple_strtoul(argv[1], NULL, 16);
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020088 if (!addr)
89 return CMD_RET_USAGE;
90
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020091 read_hash_value(addr);
Patrick Delaunayf4cb5d62019-07-05 17:20:17 +020092
93 return CMD_RET_SUCCESS;
94}
95
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +020096static int do_stm32key_fuse(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
97{
98 u32 addr;
99 bool yes = false;
100
101 if (argc < 2)
102 return CMD_RET_USAGE;
103
104 if (argc == 3) {
105 if (strcmp(argv[1], "-y"))
106 return CMD_RET_USAGE;
107 yes = true;
108 }
109
110 addr = simple_strtoul(argv[argc - 1], NULL, 16);
111 if (!addr)
112 return CMD_RET_USAGE;
113
114 if (!yes && !confirm_prog())
115 return CMD_RET_FAILURE;
116
Patrick Delaunayfe240902021-06-28 14:55:59 +0200117 if (fuse_hash_value(addr, !yes))
118 return CMD_RET_FAILURE;
119
Patrick Delaunaybc78d5f2021-06-28 14:55:58 +0200120 printf("Hash key updated !\n");
121
122 return CMD_RET_SUCCESS;
123}
124
125static char stm32key_help_text[] =
126 "read <addr>: Read the hash stored at addr in memory\n"
127 "stm32key fuse [-y] <addr> : Fuse hash stored at addr in OTP\n";
128
129U_BOOT_CMD_WITH_SUBCMDS(stm32key, "Fuse ST Hash key", stm32key_help_text,
130 U_BOOT_SUBCMD_MKENT(read, 2, 0, do_stm32key_read),
131 U_BOOT_SUBCMD_MKENT(fuse, 3, 0, do_stm32key_fuse));