[PATCH 00/16] EFI net driver - series 2/2: Support multiple EFI net objects

Adriano Cordova adrianox at gmail.com
Tue Mar 11 17:47:42 CET 2025


This series finishes adding support for multiple network interfaces
in the EFI network stack. This series relies on "EFI net driver -
 series 1/2: Support multiple EFI net objects". In this series two drivers
are introduced: first, an EFI driver that manages handles that have the
efi simple network protocol installed, second, and an ethernet driver that
implements ethernet operations using a working efi simple network protocol as
a backend. The U-Boot code will call connect_controller for each U-Boot net
udevice after creating an efi_net_obj for it, and the first driver will pick
it up. If connect_controller gets called for a handle with an already existing
efi simple network protocol on it, the first driver will create a U-Boot net
udevice managed by the second driver, and an efi_net_obj will be created too.

Adriano Cordova (16):
  efi_driver: efi_net: Add EFI network device driver
  efi_loader: efi_net: check efi_search_protocol return value
  efi_loader: efi_net: Reuse efi_net_obj's
  efi_loader: efi_net: Let efi_net_obj store pointers to
    efi_simple_network, efi_simple_network_mode, and the efi handle
  efi_net: efi_loader: Add efi_netobj_alloc to allocate an efi_net_obj
  efi_loader: efi_net: Manage EFI net objects with
    efi_[dis]connect_controller
  eth_uclass: Add eth_create_device to create a net udevice
  efi_driver: efi_net: UCLASS_ETH driver for EFI net devices
  efi_driver: efi_uclass: Add unbind method to efi_driver_ops
  efi_driver: efi_net: Add efi_net_unbind_drv method to efi_net driver
  efi_loader: efi_net: Add http, ip4_config2, and pxe on demand
  efi_loader: efi_net: add snp_owner field to efi_net_obj struct
  efi_selftest: Add selftest for counting EFI netdevices
  py/tests: test_efi_selftest: Add test for counting EFI netdevices
  py/tests: test_efi_selftest: Add test for removing EFI netdevices
  efi_selftest: Add test for efi_netdev driver

 include/efi_driver.h                       |   4 +
 include/efi_loader.h                       |  30 +-
 include/net-common.h                       |   2 +
 lib/efi_driver/Makefile                    |   1 +
 lib/efi_driver/efi_net_device.c            | 290 +++++++++
 lib/efi_driver/efi_uclass.c                |   6 +-
 lib/efi_loader/efi_http.c                  |  30 +-
 lib/efi_loader/efi_ipconfig.c              |  36 +-
 lib/efi_loader/efi_net.c                   | 665 +++++++++++++++------
 lib/efi_loader/efi_setup.c                 |   4 +-
 lib/efi_selftest/Makefile                  |   2 +-
 lib/efi_selftest/efi_selftest_net_device.c |  65 ++
 lib/efi_selftest/efi_selftest_net_driver.c | 310 ++++++++++
 net/eth-uclass.c                           |  32 +
 test/py/tests/test_efi_selftest.py         |  45 ++
 15 files changed, 1330 insertions(+), 192 deletions(-)
 create mode 100644 lib/efi_driver/efi_net_device.c
 create mode 100644 lib/efi_selftest/efi_selftest_net_device.c
 create mode 100644 lib/efi_selftest/efi_selftest_net_driver.c

-- 
2.48.1



More information about the U-Boot mailing list