Skip to content

Commit

Permalink
efi: app: Add a sysreset driver
Browse files Browse the repository at this point in the history
This adds the DM sysreset driver for EFI application support.

Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
  • Loading branch information
lbmeng committed Jul 20, 2018
1 parent fabb2b4 commit c81a8f5
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion lib/efi/efi_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@

#include <common.h>
#include <debug_uart.h>
#include <dm.h>
#include <errno.h>
#include <linux/err.h>
#include <linux/types.h>
#include <efi.h>
#include <efi_api.h>
#include <sysreset.h>

DECLARE_GLOBAL_DATA_PTR;

Expand Down Expand Up @@ -129,11 +131,35 @@ efi_status_t EFIAPI efi_main(efi_handle_t image,
return EFI_SUCCESS;
}

void reset_cpu(ulong addr)
static void efi_exit(void)
{
struct efi_priv *priv = global_priv;

free_memory(priv);
printf("U-Boot EFI exiting\n");
priv->boot->exit(priv->parent_image, EFI_SUCCESS, 0, NULL);
}

static int efi_sysreset_request(struct udevice *dev, enum sysreset_t type)
{
efi_exit();

return -EINPROGRESS;
}

static const struct udevice_id efi_sysreset_ids[] = {
{ .compatible = "efi,reset" },
{ }
};

static struct sysreset_ops efi_sysreset_ops = {
.request = efi_sysreset_request,
};

U_BOOT_DRIVER(efi_sysreset) = {
.name = "efi-sysreset",
.id = UCLASS_SYSRESET,
.of_match = efi_sysreset_ids,
.ops = &efi_sysreset_ops,
.flags = DM_FLAG_PRE_RELOC,
};

0 comments on commit c81a8f5

Please sign in to comment.