hc
2023-03-21 4b55d97acc464242bcd6a8ae77b8ff37c22dec58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Copyright (C) 2017 Google, Inc.
 *     Thiebaud Weksteen <tweek@google.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
 
#include <linux/efi.h>
#include <linux/init.h>
#include <linux/memblock.h>
 
#include <asm/early_ioremap.h>
 
/*
 * Reserve the memory associated with the TPM Event Log configuration table.
 */
int __init efi_tpm_eventlog_init(void)
{
   struct linux_efi_tpm_eventlog *log_tbl;
   unsigned int tbl_size;
 
   if (efi.tpm_log == EFI_INVALID_TABLE_ADDR)
       return 0;
 
   log_tbl = early_memremap(efi.tpm_log, sizeof(*log_tbl));
   if (!log_tbl) {
       pr_err("Failed to map TPM Event Log table @ 0x%lx\n",
           efi.tpm_log);
       efi.tpm_log = EFI_INVALID_TABLE_ADDR;
       return -ENOMEM;
   }
 
   tbl_size = sizeof(*log_tbl) + log_tbl->size;
   memblock_reserve(efi.tpm_log, tbl_size);
   early_memunmap(log_tbl, sizeof(*log_tbl));
   return 0;
}