blob: a42a563ab7270729412916dc15231b153a00fcb0 [file] [log] [blame]
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
4 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
5 */
6
Simon Glass655306c2020-05-10 11:39:58 -06007#include <blk.h>
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -07008#include <command.h>
9#include <dm.h>
10#include <virtio_types.h>
11#include <virtio.h>
12
13static int virtio_curr_dev;
14
Simon Glassed38aef2020-05-10 11:40:03 -060015static int do_virtio(struct cmd_tbl *cmdtp, int flag, int argc,
16 char *const argv[])
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -070017{
18 if (argc == 2 && !strcmp(argv[1], "scan")) {
AKASHI Takahiroa5a7b812022-03-08 20:36:45 +090019 /*
20 * make sure all virtio devices are enumerated.
21 * Do the same as virtio_init(), but also call
22 * device_probe() for children (i.e. virtio devices)
23 */
24 struct udevice *bus, *child;
AKASHI Takahiroa5a7b812022-03-08 20:36:45 +090025
Michal Suchanek91c96fe2022-10-12 21:58:08 +020026 uclass_first_device(UCLASS_VIRTIO, &bus);
27 if (!bus)
AKASHI Takahiroa5a7b812022-03-08 20:36:45 +090028 return CMD_RET_FAILURE;
29
30 while (bus) {
31 device_foreach_child_probe(child, bus)
32 ;
Michal Suchanek91c96fe2022-10-12 21:58:08 +020033 uclass_next_device(&bus);
AKASHI Takahiroa5a7b812022-03-08 20:36:45 +090034 }
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -070035
36 return CMD_RET_SUCCESS;
37 }
38
Simon Glassdbfa32c2022-08-11 19:34:59 -060039 return blk_common_cmd(argc, argv, UCLASS_VIRTIO, &virtio_curr_dev);
Tuomas Tynkkynen10a60d22018-10-15 02:21:12 -070040}
41
42U_BOOT_CMD(
43 virtio, 8, 1, do_virtio,
44 "virtio block devices sub-system",
45 "scan - initialize virtio bus\n"
46 "virtio info - show all available virtio block devices\n"
47 "virtio device [dev] - show or set current virtio block device\n"
48 "virtio part [dev] - print partition table of one or all virtio block devices\n"
49 "virtio read addr blk# cnt - read `cnt' blocks starting at block\n"
50 " `blk#' to memory address `addr'\n"
51 "virtio write addr blk# cnt - write `cnt' blocks starting at block\n"
52 " `blk#' from memory address `addr'"
53);