This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
from 204f4a18a0 Support to ARP Address Conflict Detection new 18f97bf2f8 pcie: add framework new 69ed5bb67d Various fixes for PCI work new 0ed4123326 x86_64: Early framebuffer console new 50f7e96e5e boards/x86_64: refresh earlyfb and pcitest configurations new 2e758f33ee fix various compilation errors after pci code rebase new a12fdd8876 cosmetic changes after pci code rebase The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../x86_64/qemu/boards/qemu-intel64/index.rst | 27 + Kconfig | 34 + arch/x86_64/Kconfig | 20 +- arch/x86_64/src/common/x86_64_internal.h | 8 +- arch/x86_64/src/intel64/Make.defs | 4 + arch/x86_64/src/intel64/intel64_createstack.c | 2 +- arch/x86_64/src/intel64/intel64_head.S | 14 +- arch/x86_64/src/intel64/intel64_lowsetup.c | 62 ++ arch/x86_64/src/intel64/intel64_mbfb.c | 350 +++++++++ arch/x86_64/src/intel64/intel64_serial.c | 13 +- boards/x86_64/intel64/qemu-intel64/Kconfig | 8 + .../intel64/qemu-intel64/configs/earlyfb/defconfig | 65 ++ .../intel64/qemu-intel64/configs/pcitest/defconfig | 70 ++ boards/x86_64/intel64/qemu-intel64/src/Makefile | 4 + .../x86_64/intel64/qemu-intel64/src/qemu_bringup.c | 5 + .../x86_64/intel64/qemu-intel64/src/qemu_intel64.h | 2 + boards/x86_64/intel64/qemu-intel64/src/qemu_pci.c | 229 ++++++ drivers/Kconfig | 2 + drivers/Makefile | 2 + drivers/pci/Kconfig | 11 + .../src/Makefile => drivers/pci/Make.defs | 15 +- drivers/pci/pci.c | 832 +++++++++++++++++++++ drivers/virt/Kconfig | 29 + .../src/Makefile => drivers/virt/Make.defs | 26 +- drivers/virt/qemu_edu.c | 470 ++++++++++++ drivers/virt/qemu_pci_test.c | 274 +++++++ include/debug.h | 18 + include/nuttx/pci/pci.h | 472 ++++++++++++ .../nuttx/virt/qemu_pci.h | 46 +- 29 files changed, 3063 insertions(+), 51 deletions(-) create mode 100644 arch/x86_64/src/intel64/intel64_mbfb.c create mode 100644 boards/x86_64/intel64/qemu-intel64/configs/earlyfb/defconfig create mode 100644 boards/x86_64/intel64/qemu-intel64/configs/pcitest/defconfig create mode 100644 boards/x86_64/intel64/qemu-intel64/src/qemu_pci.c create mode 100644 drivers/pci/Kconfig copy boards/x86_64/intel64/qemu-intel64/src/Makefile => drivers/pci/Make.defs (80%) create mode 100644 drivers/pci/pci.c create mode 100644 drivers/virt/Kconfig copy boards/x86_64/intel64/qemu-intel64/src/Makefile => drivers/virt/Make.defs (74%) create mode 100644 drivers/virt/qemu_edu.c create mode 100644 drivers/virt/qemu_pci_test.c create mode 100644 include/nuttx/pci/pci.h copy boards/x86_64/intel64/qemu-intel64/src/qemu_bringup.c => include/nuttx/virt/qemu_pci.h (66%)