blob: 6e21fbb1685ceea926427691baa43599753e60f9 [file] [log] [blame]
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05301// SPDX-License-Identifier: GPL-2.0+
2/**
Michal Simek50fa1182023-05-17 09:17:16 +02003 * ufs.c - UFS specific U-Boot commands
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05304 *
Nishanth Menoneaa39c62023-11-01 15:56:03 -05005 * Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05306 *
7 */
Faiz Abbas61e9fbb2019-10-15 18:24:40 +05308#include <command.h>
9#include <ufs.h>
Tom Rinidec7ea02024-05-20 13:35:03 -060010#include <vsprintf.h>
Faiz Abbas61e9fbb2019-10-15 18:24:40 +053011
Simon Glassed38aef2020-05-10 11:40:03 -060012static int do_ufs(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Faiz Abbas61e9fbb2019-10-15 18:24:40 +053013{
14 int dev, ret;
15
16 if (argc >= 2) {
17 if (!strcmp(argv[1], "init")) {
18 if (argc == 3) {
Simon Glassff9b9032021-07-24 09:03:30 -060019 dev = dectoul(argv[2], NULL);
Faiz Abbas61e9fbb2019-10-15 18:24:40 +053020 ret = ufs_probe_dev(dev);
21 if (ret)
22 return CMD_RET_FAILURE;
23 } else {
24 ufs_probe();
25 }
26
27 return CMD_RET_SUCCESS;
28 }
29 }
30
31 return CMD_RET_USAGE;
32}
33
34U_BOOT_CMD(ufs, 3, 1, do_ufs,
Bin Meng5b962032023-10-11 21:15:47 +080035 "UFS sub-system",
Faiz Abbas61e9fbb2019-10-15 18:24:40 +053036 "init [dev] - init UFS subsystem\n"
37);