]> git.baikalelectronics.ru Git - uboot.git/commit
pci: Extend 'pci regions' command with bus number
authorPali Rohár <pali@kernel.org>
Mon, 17 Jan 2022 15:38:38 +0000 (16:38 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 28 Jan 2022 22:58:41 +0000 (17:58 -0500)
commit74b54a4d52be2684b78426ecc2394baa147f9c49
tree30b21828f9e037728fa0cc99b3817ead97049b48
parent48311cfee95a129a048b016a479022c04bcc7bc9
pci: Extend 'pci regions' command with bus number

'pci regions' currently prints only region information from bus 0 which
belongs to controller 0. Parser for 'pci regions' cmdline currently ignores
any additional arguments and so U-Boot always uses bus 0.

Regions are stored in controller (not on the bus) and therefore to retrieve
controller from the bus, it is needed to call pci_get_controller() which
returns root bus. Because bus 0 is root bus, current code worked fine for
controller 0.

Extend cmdline parser for 'pci regions' to allows specifying bus number,
extend pci_show_regions() code to accept also non-zero bus number and
print bus ranges for which is regions configuration assigned.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
cmd/pci.c