2013-03-05 11:10:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Samsung Electronics
|
|
|
|
* Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2013-03-05 11:10:17 +00:00
|
|
|
*/
|
|
|
|
|
2013-10-23 12:30:46 +00:00
|
|
|
#include <errno.h>
|
2013-03-05 11:10:17 +00:00
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <g_dnl.h>
|
2014-05-05 16:40:15 +00:00
|
|
|
#include <mmc.h>
|
|
|
|
#include <part.h>
|
2013-10-04 17:22:26 +00:00
|
|
|
#include <usb.h>
|
2013-03-05 11:10:17 +00:00
|
|
|
#include <usb_mass_storage.h>
|
|
|
|
|
2014-05-05 16:40:15 +00:00
|
|
|
static int ums_read_sector(struct ums *ums_dev,
|
|
|
|
ulong start, lbaint_t blkcnt, void *buf)
|
|
|
|
{
|
|
|
|
block_dev_desc_t *block_dev = ums_dev->block_dev;
|
|
|
|
lbaint_t blkstart = start + ums_dev->start_sector;
|
|
|
|
int dev_num = block_dev->dev;
|
|
|
|
|
|
|
|
return block_dev->block_read(dev_num, blkstart, blkcnt, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ums_write_sector(struct ums *ums_dev,
|
|
|
|
ulong start, lbaint_t blkcnt, const void *buf)
|
|
|
|
{
|
|
|
|
block_dev_desc_t *block_dev = ums_dev->block_dev;
|
|
|
|
lbaint_t blkstart = start + ums_dev->start_sector;
|
|
|
|
int dev_num = block_dev->dev;
|
|
|
|
|
|
|
|
return block_dev->block_write(dev_num, blkstart, blkcnt, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct ums ums_dev = {
|
|
|
|
.read_sector = ums_read_sector,
|
|
|
|
.write_sector = ums_write_sector,
|
|
|
|
.name = "UMS disk",
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ums *ums_init(unsigned int dev_num)
|
|
|
|
{
|
|
|
|
struct mmc *mmc = NULL;
|
|
|
|
|
|
|
|
mmc = find_mmc_device(dev_num);
|
|
|
|
if (!mmc || mmc_init(mmc))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ums_dev.block_dev = &mmc->block_dev;
|
|
|
|
ums_dev.start_sector = 0;
|
|
|
|
ums_dev.num_sectors = mmc->capacity / SECTOR_SIZE;
|
|
|
|
|
|
|
|
printf("UMS: disk start sector: %#x, count: %#x\n",
|
|
|
|
ums_dev.start_sector, ums_dev.num_sectors);
|
|
|
|
|
|
|
|
return &ums_dev;
|
|
|
|
}
|
|
|
|
|
2013-03-05 11:10:17 +00:00
|
|
|
int do_usb_mass_storage(cmd_tbl_t *cmdtp, int flag,
|
|
|
|
int argc, char * const argv[])
|
|
|
|
{
|
2013-10-04 17:22:26 +00:00
|
|
|
if (argc < 3)
|
|
|
|
return CMD_RET_USAGE;
|
2013-03-05 11:10:17 +00:00
|
|
|
|
2013-10-04 17:22:26 +00:00
|
|
|
const char *usb_controller = argv[1];
|
|
|
|
const char *mmc_devstring = argv[2];
|
2013-03-05 11:10:17 +00:00
|
|
|
|
2013-10-23 12:30:43 +00:00
|
|
|
unsigned int dev_num = simple_strtoul(mmc_devstring, NULL, 0);
|
|
|
|
|
|
|
|
struct ums *ums = ums_init(dev_num);
|
|
|
|
if (!ums)
|
|
|
|
return CMD_RET_FAILURE;
|
2013-03-05 11:10:17 +00:00
|
|
|
|
2013-10-04 17:22:26 +00:00
|
|
|
unsigned int controller_index = (unsigned int)(simple_strtoul(
|
|
|
|
usb_controller, NULL, 0));
|
|
|
|
if (board_usb_init(controller_index, USB_INIT_DEVICE)) {
|
|
|
|
error("Couldn't init USB controller.");
|
2013-10-23 12:30:42 +00:00
|
|
|
return CMD_RET_FAILURE;
|
2013-10-04 17:22:26 +00:00
|
|
|
}
|
2013-03-05 11:10:17 +00:00
|
|
|
|
2013-10-23 12:30:42 +00:00
|
|
|
int rc = fsg_init(ums);
|
2013-03-05 11:10:17 +00:00
|
|
|
if (rc) {
|
2013-10-04 17:22:26 +00:00
|
|
|
error("fsg_init failed");
|
2013-10-23 12:30:42 +00:00
|
|
|
return CMD_RET_FAILURE;
|
2013-03-05 11:10:17 +00:00
|
|
|
}
|
|
|
|
|
2014-05-01 21:42:10 +00:00
|
|
|
rc = g_dnl_register("usb_dnl_ums");
|
|
|
|
if (rc) {
|
|
|
|
error("g_dnl_register failed");
|
|
|
|
return CMD_RET_FAILURE;
|
|
|
|
}
|
2013-03-05 11:10:17 +00:00
|
|
|
|
2014-01-07 14:08:37 +00:00
|
|
|
/* Timeout unit: seconds */
|
|
|
|
int cable_ready_timeout = UMS_CABLE_READY_TIMEOUT;
|
|
|
|
|
2014-04-30 11:07:48 +00:00
|
|
|
if (!g_dnl_board_usb_cable_connected()) {
|
|
|
|
/*
|
|
|
|
* Won't execute if we don't know whether the cable is
|
|
|
|
* connected.
|
|
|
|
*/
|
2014-01-07 14:08:37 +00:00
|
|
|
puts("Please connect USB cable.\n");
|
|
|
|
|
2014-04-30 11:07:48 +00:00
|
|
|
while (!g_dnl_board_usb_cable_connected()) {
|
2014-01-07 14:08:37 +00:00
|
|
|
if (ctrlc()) {
|
|
|
|
puts("\rCTRL+C - Operation aborted.\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
if (!cable_ready_timeout) {
|
|
|
|
puts("\rUSB cable not detected.\n" \
|
|
|
|
"Command exit.\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\rAuto exit in: %.2d s.", cable_ready_timeout);
|
|
|
|
mdelay(1000);
|
|
|
|
cable_ready_timeout--;
|
|
|
|
}
|
|
|
|
puts("\r\n");
|
|
|
|
}
|
|
|
|
|
2013-03-05 11:10:17 +00:00
|
|
|
while (1) {
|
|
|
|
usb_gadget_handle_interrupts();
|
2013-10-23 12:30:46 +00:00
|
|
|
|
|
|
|
rc = fsg_main_thread(NULL);
|
|
|
|
if (rc) {
|
|
|
|
/* Check I/O error */
|
|
|
|
if (rc == -EIO)
|
|
|
|
printf("\rCheck USB cable connection\n");
|
|
|
|
|
|
|
|
/* Check CTRL+C */
|
|
|
|
if (rc == -EPIPE)
|
|
|
|
printf("\rCTRL+C - Operation aborted\n");
|
|
|
|
|
2013-03-05 11:10:17 +00:00
|
|
|
goto exit;
|
2013-10-23 12:30:46 +00:00
|
|
|
}
|
2013-03-05 11:10:17 +00:00
|
|
|
}
|
|
|
|
exit:
|
|
|
|
g_dnl_unregister();
|
2013-10-23 12:30:42 +00:00
|
|
|
return CMD_RET_SUCCESS;
|
2013-03-05 11:10:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(ums, CONFIG_SYS_MAXARGS, 1, do_usb_mass_storage,
|
|
|
|
"Use the UMS [User Mass Storage]",
|
2013-10-23 12:30:42 +00:00
|
|
|
"ums <USB_controller> <mmc_dev> e.g. ums 0 0"
|
2013-03-05 11:10:17 +00:00
|
|
|
);
|