]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
b528f713 ŁM |
2 | /* |
3 | * Copyright (C) 2011 Samsung Electronics | |
4 | * Lukasz Majewski <[email protected]> | |
5 | * | |
02585eb3 | 6 | * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved. |
b528f713 ŁM |
7 | */ |
8 | ||
e6f6f9e6 | 9 | #include <blk.h> |
b528f713 | 10 | #include <command.h> |
24b852a7 | 11 | #include <console.h> |
e6f6f9e6 | 12 | #include <errno.h> |
b528f713 | 13 | #include <g_dnl.h> |
336d4615 | 14 | #include <malloc.h> |
abfe8afe | 15 | #include <part.h> |
16297cfb | 16 | #include <usb.h> |
b528f713 | 17 | #include <usb_mass_storage.h> |
85d0aec0 | 18 | #include <watchdog.h> |
c05ed00a | 19 | #include <linux/delay.h> |
1e94b46f | 20 | #include <linux/printk.h> |
b528f713 | 21 | |
abfe8afe SW |
22 | static int ums_read_sector(struct ums *ums_dev, |
23 | ulong start, lbaint_t blkcnt, void *buf) | |
24 | { | |
4101f687 | 25 | struct blk_desc *block_dev = &ums_dev->block_dev; |
abfe8afe | 26 | lbaint_t blkstart = start + ums_dev->start_sector; |
abfe8afe | 27 | |
c9f3c5f9 | 28 | return blk_dread(block_dev, blkstart, blkcnt, buf); |
abfe8afe SW |
29 | } |
30 | ||
31 | static int ums_write_sector(struct ums *ums_dev, | |
32 | ulong start, lbaint_t blkcnt, const void *buf) | |
33 | { | |
4101f687 | 34 | struct blk_desc *block_dev = &ums_dev->block_dev; |
abfe8afe | 35 | lbaint_t blkstart = start + ums_dev->start_sector; |
abfe8afe | 36 | |
c9f3c5f9 | 37 | return blk_dwrite(block_dev, blkstart, blkcnt, buf); |
abfe8afe SW |
38 | } |
39 | ||
02585eb3 SW |
40 | static struct ums *ums; |
41 | static int ums_count; | |
42 | ||
43 | static void ums_fini(void) | |
44 | { | |
45 | int i; | |
46 | ||
47 | for (i = 0; i < ums_count; i++) | |
48 | free((void *)ums[i].name); | |
49 | free(ums); | |
d419026a | 50 | ums = NULL; |
02585eb3 SW |
51 | ums_count = 0; |
52 | } | |
53 | ||
54 | #define UMS_NAME_LEN 16 | |
abfe8afe | 55 | |
a2e3a1d8 | 56 | static int ums_init(const char *devtype, const char *devnums_part_str) |
abfe8afe | 57 | { |
a2e3a1d8 | 58 | char *s, *t, *devnum_part_str, *name; |
4101f687 | 59 | struct blk_desc *block_dev; |
0528979f | 60 | struct disk_partition info; |
a2e3a1d8 | 61 | int partnum; |
a238b0da | 62 | int ret = -1; |
02585eb3 | 63 | struct ums *ums_new; |
abfe8afe | 64 | |
a2e3a1d8 | 65 | s = strdup(devnums_part_str); |
02585eb3 SW |
66 | if (!s) |
67 | return -1; | |
68 | ||
69 | t = s; | |
70 | ums_count = 0; | |
71 | ||
72 | for (;;) { | |
a2e3a1d8 JT |
73 | devnum_part_str = strsep(&t, ","); |
74 | if (!devnum_part_str) | |
02585eb3 SW |
75 | break; |
76 | ||
1833e68c SA |
77 | partnum = part_get_info_by_dev_and_name_or_num(devtype, devnum_part_str, |
78 | &block_dev, &info, 1); | |
a2e3a1d8 JT |
79 | |
80 | if (partnum < 0) | |
02585eb3 SW |
81 | goto cleanup; |
82 | ||
a2e3a1d8 JT |
83 | /* Check if the argument is in legacy format. If yes, |
84 | * expose all partitions by setting the partnum = 0 | |
85 | * e.g. ums 0 mmc 0 | |
86 | */ | |
87 | if (!strchr(devnum_part_str, ':')) | |
88 | partnum = 0; | |
89 | ||
02585eb3 | 90 | ums_new = realloc(ums, (ums_count + 1) * sizeof(*ums)); |
a238b0da | 91 | if (!ums_new) |
02585eb3 | 92 | goto cleanup; |
02585eb3 SW |
93 | ums = ums_new; |
94 | ||
a2e3a1d8 JT |
95 | /* if partnum = 0, expose all partitions */ |
96 | if (partnum == 0) { | |
97 | ums[ums_count].start_sector = 0; | |
98 | ums[ums_count].num_sectors = block_dev->lba; | |
99 | } else { | |
100 | ums[ums_count].start_sector = info.start; | |
101 | ums[ums_count].num_sectors = info.size; | |
102 | } | |
103 | ||
02585eb3 SW |
104 | ums[ums_count].read_sector = ums_read_sector; |
105 | ums[ums_count].write_sector = ums_write_sector; | |
a2e3a1d8 | 106 | |
02585eb3 | 107 | name = malloc(UMS_NAME_LEN); |
a238b0da | 108 | if (!name) |
02585eb3 | 109 | goto cleanup; |
02585eb3 SW |
110 | snprintf(name, UMS_NAME_LEN, "UMS disk %d", ums_count); |
111 | ums[ums_count].name = name; | |
112 | ums[ums_count].block_dev = *block_dev; | |
113 | ||
c954ff5f MS |
114 | printf("UMS: LUN %d, dev %s %d, hwpart %d, sector %#x, count %#x\n", |
115 | ums_count, devtype, ums[ums_count].block_dev.devnum, | |
02585eb3 SW |
116 | ums[ums_count].block_dev.hwpart, |
117 | ums[ums_count].start_sector, | |
118 | ums[ums_count].num_sectors); | |
119 | ||
120 | ums_count++; | |
121 | } | |
122 | ||
a238b0da | 123 | if (ums_count) |
02585eb3 | 124 | ret = 0; |
d0cc456d | 125 | |
02585eb3 SW |
126 | cleanup: |
127 | free(s); | |
abfe8afe | 128 | |
02585eb3 SW |
129 | if (ret < 0) |
130 | ums_fini(); | |
abfe8afe | 131 | |
02585eb3 | 132 | return ret; |
abfe8afe SW |
133 | } |
134 | ||
09140113 SG |
135 | static int do_usb_mass_storage(struct cmd_tbl *cmdtp, int flag, |
136 | int argc, char *const argv[]) | |
b528f713 | 137 | { |
1725f128 SW |
138 | const char *usb_controller; |
139 | const char *devtype; | |
140 | const char *devnum; | |
1725f128 | 141 | unsigned int controller_index; |
f032260c | 142 | struct udevice *udc; |
1725f128 SW |
143 | int rc; |
144 | int cable_ready_timeout __maybe_unused; | |
145 | ||
16297cfb MZ |
146 | if (argc < 3) |
147 | return CMD_RET_USAGE; | |
b528f713 | 148 | |
1725f128 | 149 | usb_controller = argv[1]; |
8c600456 SW |
150 | if (argc >= 4) { |
151 | devtype = argv[2]; | |
152 | devnum = argv[3]; | |
153 | } else { | |
154 | devtype = "mmc"; | |
155 | devnum = argv[2]; | |
156 | } | |
f4dacf7b | 157 | |
02585eb3 SW |
158 | rc = ums_init(devtype, devnum); |
159 | if (rc < 0) | |
f4dacf7b | 160 | return CMD_RET_FAILURE; |
b528f713 | 161 | |
1725f128 SW |
162 | controller_index = (unsigned int)(simple_strtoul( |
163 | usb_controller, NULL, 0)); | |
f032260c MV |
164 | rc = udc_device_get_by_index(controller_index, &udc); |
165 | if (rc) { | |
71002b50 | 166 | pr_err("Couldn't init USB controller.\n"); |
02585eb3 SW |
167 | rc = CMD_RET_FAILURE; |
168 | goto cleanup_ums_init; | |
16297cfb | 169 | } |
b528f713 | 170 | |
f032260c | 171 | rc = fsg_init(ums, ums_count, udc); |
b528f713 | 172 | if (rc) { |
71002b50 | 173 | pr_err("fsg_init failed\n"); |
02585eb3 SW |
174 | rc = CMD_RET_FAILURE; |
175 | goto cleanup_board; | |
b528f713 ŁM |
176 | } |
177 | ||
66b88b07 SW |
178 | rc = g_dnl_register("usb_dnl_ums"); |
179 | if (rc) { | |
71002b50 | 180 | pr_err("g_dnl_register failed\n"); |
02585eb3 SW |
181 | rc = CMD_RET_FAILURE; |
182 | goto cleanup_board; | |
66b88b07 | 183 | } |
b528f713 | 184 | |
3603e31d | 185 | /* Timeout unit: seconds */ |
1725f128 | 186 | cable_ready_timeout = UMS_CABLE_READY_TIMEOUT; |
3603e31d | 187 | |
75504e95 MZ |
188 | if (!g_dnl_board_usb_cable_connected()) { |
189 | /* | |
190 | * Won't execute if we don't know whether the cable is | |
191 | * connected. | |
192 | */ | |
3603e31d PM |
193 | puts("Please connect USB cable.\n"); |
194 | ||
75504e95 | 195 | while (!g_dnl_board_usb_cable_connected()) { |
3603e31d PM |
196 | if (ctrlc()) { |
197 | puts("\rCTRL+C - Operation aborted.\n"); | |
02585eb3 SW |
198 | rc = CMD_RET_SUCCESS; |
199 | goto cleanup_register; | |
3603e31d PM |
200 | } |
201 | if (!cable_ready_timeout) { | |
202 | puts("\rUSB cable not detected.\n" \ | |
203 | "Command exit.\n"); | |
02585eb3 SW |
204 | rc = CMD_RET_SUCCESS; |
205 | goto cleanup_register; | |
3603e31d PM |
206 | } |
207 | ||
208 | printf("\rAuto exit in: %.2d s.", cable_ready_timeout); | |
209 | mdelay(1000); | |
210 | cable_ready_timeout--; | |
211 | } | |
212 | puts("\r\n"); | |
213 | } | |
214 | ||
b528f713 | 215 | while (1) { |
f032260c | 216 | dm_usb_gadget_handle_interrupts(udc); |
351e9b20 PM |
217 | |
218 | rc = fsg_main_thread(NULL); | |
219 | if (rc) { | |
220 | /* Check I/O error */ | |
221 | if (rc == -EIO) | |
222 | printf("\rCheck USB cable connection\n"); | |
223 | ||
224 | /* Check CTRL+C */ | |
225 | if (rc == -EPIPE) | |
226 | printf("\rCTRL+C - Operation aborted\n"); | |
227 | ||
02585eb3 SW |
228 | rc = CMD_RET_SUCCESS; |
229 | goto cleanup_register; | |
351e9b20 | 230 | } |
85d0aec0 | 231 | |
a57adacf SR |
232 | if (IS_ENABLED(CONFIG_CMD_UMS_ABORT_KEYED)) { |
233 | /* Abort by pressing any key */ | |
234 | if (tstc()) { | |
235 | getchar(); | |
236 | printf("\rOperation aborted.\n"); | |
237 | rc = CMD_RET_SUCCESS; | |
238 | goto cleanup_register; | |
239 | } | |
240 | } | |
241 | ||
29caf930 | 242 | schedule(); |
b528f713 | 243 | } |
02585eb3 SW |
244 | |
245 | cleanup_register: | |
b528f713 | 246 | g_dnl_unregister(); |
02585eb3 | 247 | cleanup_board: |
f032260c | 248 | udc_device_put(udc); |
02585eb3 SW |
249 | cleanup_ums_init: |
250 | ums_fini(); | |
251 | ||
252 | return rc; | |
b528f713 ŁM |
253 | } |
254 | ||
8c600456 | 255 | U_BOOT_CMD(ums, 4, 1, do_usb_mass_storage, |
ee02a65e | 256 | "Use the UMS [USB Mass Storage]", |
a2e3a1d8 | 257 | "<USB_controller> [<devtype>] <dev[:part]> e.g. ums 0 mmc 0\n" |
8c600456 | 258 | " devtype defaults to mmc" |
b528f713 | 259 | ); |