]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/usb_mass_storage.c
cmd: unzip: use correct format code
[thirdparty/u-boot.git] / cmd / usb_mass_storage.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
b528f713
ŁM
2/*
3 * Copyright (C) 2011 Samsung Electronics
4 * Lukasz Majewski <l.majewski@samsung.com>
5 *
02585eb3 6 * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved.
b528f713
ŁM
7 */
8
351e9b20 9#include <errno.h>
b528f713
ŁM
10#include <common.h>
11#include <command.h>
24b852a7 12#include <console.h>
b528f713 13#include <g_dnl.h>
abfe8afe 14#include <part.h>
16297cfb 15#include <usb.h>
b528f713
ŁM
16#include <usb_mass_storage.h>
17
abfe8afe
SW
18static int ums_read_sector(struct ums *ums_dev,
19 ulong start, lbaint_t blkcnt, void *buf)
20{
4101f687 21 struct blk_desc *block_dev = &ums_dev->block_dev;
abfe8afe 22 lbaint_t blkstart = start + ums_dev->start_sector;
abfe8afe 23
c9f3c5f9 24 return blk_dread(block_dev, blkstart, blkcnt, buf);
abfe8afe
SW
25}
26
27static int ums_write_sector(struct ums *ums_dev,
28 ulong start, lbaint_t blkcnt, const void *buf)
29{
4101f687 30 struct blk_desc *block_dev = &ums_dev->block_dev;
abfe8afe 31 lbaint_t blkstart = start + ums_dev->start_sector;
abfe8afe 32
c9f3c5f9 33 return blk_dwrite(block_dev, blkstart, blkcnt, buf);
abfe8afe
SW
34}
35
02585eb3
SW
36static struct ums *ums;
37static int ums_count;
38
39static void ums_fini(void)
40{
41 int i;
42
43 for (i = 0; i < ums_count; i++)
44 free((void *)ums[i].name);
45 free(ums);
d419026a 46 ums = NULL;
02585eb3
SW
47 ums_count = 0;
48}
49
50#define UMS_NAME_LEN 16
abfe8afe 51
a2e3a1d8 52static int ums_init(const char *devtype, const char *devnums_part_str)
abfe8afe 53{
a2e3a1d8 54 char *s, *t, *devnum_part_str, *name;
4101f687 55 struct blk_desc *block_dev;
a2e3a1d8
JT
56 disk_partition_t info;
57 int partnum;
a238b0da 58 int ret = -1;
02585eb3 59 struct ums *ums_new;
abfe8afe 60
a2e3a1d8 61 s = strdup(devnums_part_str);
02585eb3
SW
62 if (!s)
63 return -1;
64
65 t = s;
66 ums_count = 0;
67
68 for (;;) {
a2e3a1d8
JT
69 devnum_part_str = strsep(&t, ",");
70 if (!devnum_part_str)
02585eb3
SW
71 break;
72
a2e3a1d8
JT
73 partnum = blk_get_device_part_str(devtype, devnum_part_str,
74 &block_dev, &info, 1);
75
76 if (partnum < 0)
02585eb3
SW
77 goto cleanup;
78
a2e3a1d8
JT
79 /* Check if the argument is in legacy format. If yes,
80 * expose all partitions by setting the partnum = 0
81 * e.g. ums 0 mmc 0
82 */
83 if (!strchr(devnum_part_str, ':'))
84 partnum = 0;
85
02585eb3 86 /* f_mass_storage.c assumes SECTOR_SIZE sectors */
a238b0da 87 if (block_dev->blksz != SECTOR_SIZE)
02585eb3 88 goto cleanup;
abfe8afe 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
114 printf("UMS: LUN %d, dev %d, hwpart %d, sector %#x, count %#x\n",
bcce53d0 115 ums_count, 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
126cleanup:
127 free(s);
abfe8afe 128
02585eb3
SW
129 if (ret < 0)
130 ums_fini();
abfe8afe 131
02585eb3 132 return ret;
abfe8afe
SW
133}
134
b9203429 135static int do_usb_mass_storage(cmd_tbl_t *cmdtp, int flag,
b528f713
ŁM
136 int argc, char * const argv[])
137{
1725f128
SW
138 const char *usb_controller;
139 const char *devtype;
140 const char *devnum;
1725f128
SW
141 unsigned int controller_index;
142 int rc;
143 int cable_ready_timeout __maybe_unused;
144
16297cfb
MZ
145 if (argc < 3)
146 return CMD_RET_USAGE;
b528f713 147
1725f128 148 usb_controller = argv[1];
8c600456
SW
149 if (argc >= 4) {
150 devtype = argv[2];
151 devnum = argv[3];
152 } else {
153 devtype = "mmc";
154 devnum = argv[2];
155 }
f4dacf7b 156
02585eb3
SW
157 rc = ums_init(devtype, devnum);
158 if (rc < 0)
f4dacf7b 159 return CMD_RET_FAILURE;
b528f713 160
1725f128
SW
161 controller_index = (unsigned int)(simple_strtoul(
162 usb_controller, NULL, 0));
a06955ae 163 if (usb_gadget_initialize(controller_index)) {
71002b50 164 pr_err("Couldn't init USB controller.\n");
02585eb3
SW
165 rc = CMD_RET_FAILURE;
166 goto cleanup_ums_init;
16297cfb 167 }
b528f713 168
02585eb3 169 rc = fsg_init(ums, ums_count);
b528f713 170 if (rc) {
71002b50 171 pr_err("fsg_init failed\n");
02585eb3
SW
172 rc = CMD_RET_FAILURE;
173 goto cleanup_board;
b528f713
ŁM
174 }
175
66b88b07
SW
176 rc = g_dnl_register("usb_dnl_ums");
177 if (rc) {
71002b50 178 pr_err("g_dnl_register failed\n");
02585eb3
SW
179 rc = CMD_RET_FAILURE;
180 goto cleanup_board;
66b88b07 181 }
b528f713 182
3603e31d 183 /* Timeout unit: seconds */
1725f128 184 cable_ready_timeout = UMS_CABLE_READY_TIMEOUT;
3603e31d 185
75504e95
MZ
186 if (!g_dnl_board_usb_cable_connected()) {
187 /*
188 * Won't execute if we don't know whether the cable is
189 * connected.
190 */
3603e31d
PM
191 puts("Please connect USB cable.\n");
192
75504e95 193 while (!g_dnl_board_usb_cable_connected()) {
3603e31d
PM
194 if (ctrlc()) {
195 puts("\rCTRL+C - Operation aborted.\n");
02585eb3
SW
196 rc = CMD_RET_SUCCESS;
197 goto cleanup_register;
3603e31d
PM
198 }
199 if (!cable_ready_timeout) {
200 puts("\rUSB cable not detected.\n" \
201 "Command exit.\n");
02585eb3
SW
202 rc = CMD_RET_SUCCESS;
203 goto cleanup_register;
3603e31d
PM
204 }
205
206 printf("\rAuto exit in: %.2d s.", cable_ready_timeout);
207 mdelay(1000);
208 cable_ready_timeout--;
209 }
210 puts("\r\n");
211 }
212
b528f713 213 while (1) {
2d48aa69 214 usb_gadget_handle_interrupts(controller_index);
351e9b20
PM
215
216 rc = fsg_main_thread(NULL);
217 if (rc) {
218 /* Check I/O error */
219 if (rc == -EIO)
220 printf("\rCheck USB cable connection\n");
221
222 /* Check CTRL+C */
223 if (rc == -EPIPE)
224 printf("\rCTRL+C - Operation aborted\n");
225
02585eb3
SW
226 rc = CMD_RET_SUCCESS;
227 goto cleanup_register;
351e9b20 228 }
b528f713 229 }
02585eb3
SW
230
231cleanup_register:
b528f713 232 g_dnl_unregister();
02585eb3 233cleanup_board:
a06955ae 234 usb_gadget_release(controller_index);
02585eb3
SW
235cleanup_ums_init:
236 ums_fini();
237
238 return rc;
b528f713
ŁM
239}
240
8c600456 241U_BOOT_CMD(ums, 4, 1, do_usb_mass_storage,
ee02a65e 242 "Use the UMS [USB Mass Storage]",
a2e3a1d8 243 "<USB_controller> [<devtype>] <dev[:part]> e.g. ums 0 mmc 0\n"
8c600456 244 " devtype defaults to mmc"
b528f713 245);