]> git.baikalelectronics.ru Git - uboot.git/commit
Merge branch '2022-05-03-virtio-pci-add-and-fix-consistency-checks'
authorTom Rini <trini@konsulko.com>
Tue, 3 May 2022 22:33:46 +0000 (18:33 -0400)
committerTom Rini <trini@konsulko.com>
Tue, 3 May 2022 22:33:46 +0000 (18:33 -0400)
commitad7a01b0580d8765842f329a737bdcd7d6e84234
tree8c0241b1adb7345fe8df34da06ff1dac83f74e4f
parent31f091aff68074b07a0908428159338c3cafa529
parentb2f0c007c575e77337a5587bc0285c096adf918d
Merge branch '2022-05-03-virtio-pci-add-and-fix-consistency-checks'

To quote the author:
The virtio PCI drivers forgo a number of consistency checks,
particularly around pointer validation and bounds checking. This series
focuses on the modern driver to add those checks.

The start of the series adds and fixes some basic bounds checks. Later
patches ensure PCI addresses fall within the expected regions rather
than any arbitrary address. This is acheived by introducing range
parameters to a few of the dm_pci_* functions that allow the ranges to
be checked.

The series also adds a few new configs to allow parts of virtio and PCI
to be disabled where the features may be unused and the current
implementations don't have the needed consistencty checks.