[U-Boot] [PATCH v4 0/1] cmd: pci: add option to parse and display BAR information

2016-12-01 Thread yehuday
From: Yehuda Yitschak v4 patch set includes a minor nit fix. v3->v4 - changed flag types to bool v2->v3: - removed support for !DM_PCI - Fixed error return values v1->v2: - Added support for DM_PCI - Added print of memory type and prefetchable flag - Skipped printing of disabled BARs Ye

[U-Boot] [PATCH v4 1/1] cmd: pci: add option to parse and display BAR information

2016-12-01 Thread yehuday
From: Yehuda Yitschak Currently the PCI command only allows to see the BAR register values but not the size and actual base address. This little extension parses the BAR registers and displays the base, size and type of each BAR. Signed-off-by: Yehuda Yitschak --- cmd/pci.c | 83 ++

[U-Boot] [PATCH v3 1/1] cmd: pci: add option to parse and display BAR information

2016-11-30 Thread yehuday
From: Yehuda Yitschak Currently the PCI command only allows to see the BAR register values but not the size and actual base address. This little extension parses the BAR registers and displays the base, size and type of each BAR. Signed-off-by: Yehuda Yitschak --- cmd/pci.c | 82 ++

[U-Boot] [PATCH v3 0/1] cmd: pci: add option to parse and display BAR information

2016-11-30 Thread yehuday
From: Yehuda Yitschak Updated v3 following review from Simon. The only issue i wasn't able to address is the warnings on the PCI BAR print format when compiling sandbox. I wasn't able to reproduce them on my machine nor when compiling to ARMv7 (32 bit) or ARMv8 (64 bit). v2->v3: - removed supp

[U-Boot] [PATCH v2 0/1] cmd: pci: add option to parse and display BAR information

2016-11-06 Thread yehuday
From: Yehuda Yitschak Updates to initial patch following comments from Stephan Rose I don't have access to a board with DM_PCI support so I tested only on non DM_PCI. Appreciate if someone can test on DM_PCI v1->v2: - Added support for DM_PCI - Added print of memory type and prefetchable flag

[U-Boot] [PATCH v2 1/1] cmd: pci: add option to parse and display BAR information

2016-11-06 Thread yehuday
From: Yehuda Yitschak Currently the PCI command only allows to see the BAR register values but not the size and actual base address. This little extension parses the BAR registers and displays the base, size and type of each BAR. Signed-off-by: Yehuda Yitschak --- cmd/pci.c | 95 ++

[U-Boot] [PATCH] cmd: pci: add option to parse and display BAR information

2016-10-27 Thread yehuday
From: Yehuda Yitschak Currently the PCI command only allows to see the BAR register values but not the size and actual base address. This little extension parses the BAR registers and displays the base, size and type of each BAR. Signed-off-by: Yehuda Yitschak --- cmd/pci.c | 74 ++