]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
[efi] Do not raise TPL within EFI_DRIVER_BINDING_PROTOCOL.Supported()
authorMichael Brown <mcb30@ipxe.org>
Mon, 26 Mar 2018 11:10:09 +0000 (12:10 +0100)
committerMichael Brown <mcb30@ipxe.org>
Mon, 26 Mar 2018 11:10:09 +0000 (12:10 +0100)
When booting some versions of the UEFI shell, our driver binding
protocol's Supported() entry point is called at TPL_NOTIFY for no
discernible reason.  Attempting to raise to TPL_CALLBACK triggers an
immediate assertion failure in the firmware.

Since our Supported() method can run at any TPL, fix by simply not
attempting to raise the TPL within this method.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
src/interface/efi/efi_driver.c

index fe73630fd2dde10b5468677bbf3bcca474ed9315..04796414a2e0e2d9d4bc8806cb2710777ea14aa2 100644 (file)
@@ -95,9 +95,7 @@ struct efi_device * efidev_parent ( struct device *dev ) {
 static EFI_STATUS EFIAPI
 efi_driver_supported ( EFI_DRIVER_BINDING_PROTOCOL *driver __unused,
                       EFI_HANDLE device, EFI_DEVICE_PATH_PROTOCOL *child ) {
-       EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
        struct efi_driver *efidrv;
-       EFI_TPL saved_tpl;
        int rc;
 
        DBGCP ( device, "EFIDRV %s DRIVER_SUPPORTED",
@@ -113,22 +111,17 @@ efi_driver_supported ( EFI_DRIVER_BINDING_PROTOCOL *driver __unused,
                return EFI_ALREADY_STARTED;
        }
 
-       /* Raise TPL */
-       saved_tpl = bs->RaiseTPL ( TPL_CALLBACK );
-
        /* Look for a driver claiming to support this device */
        for_each_table_entry ( efidrv, EFI_DRIVERS ) {
                if ( ( rc = efidrv->supported ( device ) ) == 0 ) {
                        DBGC ( device, "EFIDRV %s has driver \"%s\"\n",
                               efi_handle_name ( device ), efidrv->name );
-                       bs->RestoreTPL ( saved_tpl );
                        return 0;
                }
        }
        DBGCP ( device, "EFIDRV %s has no driver\n",
                efi_handle_name ( device ) );
 
-       bs->RestoreTPL ( saved_tpl );
        return EFI_UNSUPPORTED;
 }