Blame view

cmd/fuse.c 3.33 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
2
3
4
5
6
7
8
  /*
   * (C) Copyright 2009-2013 ADVANSEE
   * Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
   *
   * Based on the mpc512x iim code:
   * Copyright 2008 Silicon Turnkey Express, Inc.
   * Martha Marx <mmarx@silicontkx.com>
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
9
10
11
12
   */
  
  #include <common.h>
  #include <command.h>
24b852a7a   Simon Glass   Move console defi...
13
  #include <console.h>
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
14
  #include <fuse.h>
1221ce459   Masahiro Yamada   treewide: replace...
15
  #include <linux/errno.h>
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  
  static int strtou32(const char *str, unsigned int base, u32 *result)
  {
  	char *ep;
  
  	*result = simple_strtoul(str, &ep, base);
  	if (ep == str || *ep != '\0')
  		return -EINVAL;
  
  	return 0;
  }
  
  static int confirm_prog(void)
  {
  	puts("Warning: Programming fuses is an irreversible operation!
  "
  			"         This may brick your system.
  "
  			"         Use this command only if you are sure of "
  					"what you are doing!
  "
  			"
  Really perform this fuse programming? <y/N>
  ");
a5dffa4b6   Pierre Aubert   Add the function ...
40
41
  	if (confirm_yesno())
  		return 1;
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
  
  	puts("Fuse programming aborted
  ");
  	return 0;
  }
  
  static int do_fuse(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
  {
  	const char *op = argc >= 2 ? argv[1] : NULL;
  	int confirmed = argc >= 3 && !strcmp(argv[2], "-y");
  	u32 bank, word, cnt, val;
  	int ret, i;
  
  	argc -= 2 + confirmed;
  	argv += 2 + confirmed;
  
  	if (argc < 2 || strtou32(argv[0], 0, &bank) ||
  			strtou32(argv[1], 0, &word))
  		return CMD_RET_USAGE;
  
  	if (!strcmp(op, "read")) {
  		if (argc == 2)
  			cnt = 1;
  		else if (argc != 3 || strtou32(argv[2], 0, &cnt))
  			return CMD_RET_USAGE;
  
  		printf("Reading bank %u:
  ", bank);
  		for (i = 0; i < cnt; i++, word++) {
  			if (!(i % 4))
  				printf("
  Word 0x%.8x:", word);
  
  			ret = fuse_read(bank, word, &val);
  			if (ret)
  				goto err;
  
  			printf(" %.8x", val);
  		}
  		putc('
  ');
  	} else if (!strcmp(op, "sense")) {
  		if (argc == 2)
  			cnt = 1;
  		else if (argc != 3 || strtou32(argv[2], 0, &cnt))
  			return CMD_RET_USAGE;
  
  		printf("Sensing bank %u:
  ", bank);
  		for (i = 0; i < cnt; i++, word++) {
  			if (!(i % 4))
  				printf("
  Word 0x%.8x:", word);
  
  			ret = fuse_sense(bank, word, &val);
  			if (ret)
  				goto err;
  
  			printf(" %.8x", val);
  		}
  		putc('
  ');
  	} else if (!strcmp(op, "prog")) {
  		if (argc < 3)
  			return CMD_RET_USAGE;
  
  		for (i = 2; i < argc; i++, word++) {
  			if (strtou32(argv[i], 16, &val))
  				return CMD_RET_USAGE;
  
  			printf("Programming bank %u word 0x%.8x to 0x%.8x...
  ",
  					bank, word, val);
  			if (!confirmed && !confirm_prog())
  				return CMD_RET_FAILURE;
  			ret = fuse_prog(bank, word, val);
  			if (ret)
  				goto err;
  		}
  	} else if (!strcmp(op, "override")) {
  		if (argc < 3)
  			return CMD_RET_USAGE;
  
  		for (i = 2; i < argc; i++, word++) {
  			if (strtou32(argv[i], 16, &val))
  				return CMD_RET_USAGE;
  
  			printf("Overriding bank %u word 0x%.8x with "
  					"0x%.8x...
  ", bank, word, val);
  			ret = fuse_override(bank, word, val);
  			if (ret)
  				goto err;
  		}
  	} else {
  		return CMD_RET_USAGE;
  	}
  
  	return 0;
  
  err:
  	puts("ERROR
  ");
814b66144   Hector Palacios   cmd_fuse: return ...
145
  	return CMD_RET_FAILURE;
ccca7dfd0   Benoît Thébaudeau   Add fuse API and ...
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
  }
  
  U_BOOT_CMD(
  	fuse, CONFIG_SYS_MAXARGS, 0, do_fuse,
  	"Fuse sub-system",
  	     "read <bank> <word> [<cnt>] - read 1 or 'cnt' fuse words,
  "
  	"    starting at 'word'
  "
  	"fuse sense <bank> <word> [<cnt>] - sense 1 or 'cnt' fuse words,
  "
  	"    starting at 'word'
  "
  	"fuse prog [-y] <bank> <word> <hexval> [<hexval>...] - program 1 or
  "
  	"    several fuse words, starting at 'word' (PERMANENT)
  "
  	"fuse override <bank> <word> <hexval> [<hexval>...] - override 1 or
  "
  	"    several fuse words, starting at 'word'"
  );