summaryrefslogtreecommitdiff
path: root/common/cmd_movi.c
blob: 0f7d7a22cbed4def8687dae82b3432d904632e7f (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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
 * (C) Copyright 2011 Samsung Electronics Co. Ltd
 *
 * See file CREDITS for list of people who contributed to this
 * project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */

#include <common.h>
#include <command.h>
#include <mmc.h>
#include <asm/arch/movi_partition.h>

int do_movi(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
{
	char *cmd;
	ulong addr, start_blk, blkcnt;
	uint rfs_size;
	char run_cmd[100];
	uint rw = 0, attribute = -1;
	int i;
	member_t *image;
	struct mmc *mmc;
	int dev_num = 0;
	int location = 1;

	cmd = argv[1];

	switch (cmd[0]) {
	case 'i':
		if(argv[2]==NULL)
		{
			dev_num = 0;
		} else {
			dev_num = simple_strtoul(argv[2], NULL, 10);
		}

		sprintf(run_cmd,"mmcinfo %d", dev_num);
		run_command(run_cmd, dev_num);
		return 1;
	case 'r':
		rw = 0;	/* read case */
		break;
	case 'w':
		rw = 1; /* write case */
		break;
	default:
		goto usage;
	}

	cmd = argv[2];

	switch (cmd[0]) {
	case 'z':
		location = 0;
		break;
	default:
		location = 1;
		break;
	}

	dev_num = simple_strtoul(argv[4 - location], NULL, 10);
	cmd = argv[3 - location];

	switch (cmd[0]) {

	case 'f':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x0;
		break;
	case 'b':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x1;
		break;
	case 'u':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x2;
		break;
	case 't':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x3;
		break;
#ifdef CONFIG_CHARGER_LOGO
	case 'c':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x7;
		break;
#endif
#ifdef CONFIG_BOOT_LOGO
	case 'l':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x8;
		break;
#endif
#ifdef CONFIG_BOOT
	case 'B':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x9;
		break;
#endif
#ifdef CONFIG_MISC
	case 'm':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x10;
		break;
#endif
#ifdef CONFIG_KERNEL_RECOVERY_MODE
	case 'R':
		if (argc != (6 - location))
			goto usage;
		attribute = 0x11;
		break;
#endif

	default:
		goto usage;
	}

	addr = simple_strtoul(argv[5 - location], NULL, 16);

	mmc = find_mmc_device(dev_num);

	init_raw_area_table(&mmc->block_dev, location);

	/* firmware BL1 r/w */
	if (attribute == 0x0) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}

		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s FWBL1 ..device %d Start %ld, Count %ld ", rw ? "writing":"reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd,"mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write":"read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
	/* BL2 r/w */
	if (attribute == 0x1) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s BL2 ..device %d Start %ld, Count %ld ", rw ? "writing":"reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd,"mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write":"read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
	/* u-boot r/w */
	if (attribute == 0x2) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s u-boot..device %d Start %ld, Count %ld ", rw ? "writing":"reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd,"mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write":"read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}

	/* TrustZone S/W */
	if (attribute == 0x3) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s %d TrustZone S/W.. Start %ld, Count %ld ", rw ? "writing" : "reading",
		       dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}

#ifdef CONFIG_CHARGER_LOGO
	if (attribute == 0x7) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s charger logo..device %d Start %ld, Count %ld ", rw ? "writing" : "reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
#endif
#ifdef CONFIG_BOOT_LOGO
	if (attribute == 0x8) {
		for (i=0, image = raw_area_control.image; i<15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s bootlogo..  %d Start %ld, Count %ld ", rw ? "writing" : "reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
#endif

#ifdef CONFIG_BOOT
	/* Boot r/w */
	if (attribute == 0x9) {
		for (i = 0, image = raw_area_control.image; i < 15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s boot..  %d Start %ld, Count %ld ", rw ? "writing" : "reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
#endif
#ifdef CONFIG_MISC
	/* Misc r/w */
	if (attribute == 0x10) {
		for (i = 0, image = raw_area_control.image; i < 15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s misc..  %d Start %ld, Count %ld ", rw ? "writing" : "reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
#endif
#ifdef CONFIG_KERNEL_RECOVERY_MODE
	/* Misc r/w */
	if (attribute == 0x11) {
		for (i = 0, image = raw_area_control.image; i < 15; i++) {
			if (image[i].attribute == attribute)
				break;
		}
		start_blk = image[i].start_blk;
		blkcnt = image[i].used_blk;
		printf("%s kernel recovery..  %d Start %ld, Count %ld ", rw ? "writing" : "reading",
			dev_num, start_blk, blkcnt);
		sprintf(run_cmd, "mmc %s %d 0x%lx 0x%lx 0x%lx",
			rw ? "write" : "read", dev_num,
			addr, start_blk, blkcnt);
		run_command(run_cmd, dev_num);
		printf("completed\n");
		return 1;
	}
#endif

	return 1;

usage:
	printf("Usage:\n%s\n", cmdtp->usage);
	return -1;
}

U_BOOT_CMD(
	movi,	7,	0,	do_movi,
	"movi\t- sd/mmc r/w sub system for SMDK board",
	"init - Initialize moviNAND and show card info\n"
	"#eMMC#\n"
	"movi read zero {fwbl1 | bl2 | u-boot | tzsw} {device_number} {addr} - Read data from emmc\n"
	"movi write zero {fwbl1 | bl2 | u-boot | tzsw} {device_number} {addr} - Read data from emmc\n"
	"#SD/MMC#\n"
	"movi read {fwbl1 | bl2 | u-boot | tzsw} {device_number} {addr} - Read data from sd/mmc\n"
	"movi write {fwbl1 | bl2 | u-boot | tzsw} {device_number} {addr} - Read data from sd/mmc\n"
	"#COMMON#\n"
	"movi read kernel {device_number} {addr} - Read data from device\n"
	"movi write kernel {device_number} {addr} - Write data to device\n"
	"movi read rootfs {device_number} {addr} [bytes(hex)] - Read rootfs data from device by size\n"
	"movi write rootfs {device_number} {addr} [bytes(hex)] - Write rootfs data to device by size\n"
	"movi read {sector#} {device_number} {bytes(hex)} {addr} - instead of this, you can use \"mmc read\"\n"
	"movi write {sector#} {device_number} {bytes(hex)} {addr} - instead of this, you can use \"mmc write\"\n"
);