1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright (c) 2016 Google, Inc
5 # Entry-type module for Intel Management Engine binary blob
8 from collections import OrderedDict
10 from binman.entry import Entry
11 from binman.etype.blob import Entry_blob
12 from dtoc import fdt_util
13 from patman import tools
15 class Entry_intel_ifwi(Entry_blob):
16 """Entry containing an Intel Integrated Firmware Image (IFWI) file
18 Properties / Entry arguments:
19 - filename: Filename of file to read into entry. This is either the
20 IFWI file itself, or a file that can be converted into one using a
22 - convert-fit: If present this indicates that the ifwitool should be
23 used to convert the provided file into a IFWI.
25 This file contains code and data used by the SoC that is required to make
26 it work. It includes U-Boot TPL, microcode, things related to the CSE
27 (Converged Security Engine, the microcontroller that loads all the firmware)
28 and other items beyond the wit of man.
30 A typical filename is 'ifwi.bin' for an IFWI file, or 'fitimage.bin' for a
31 file that will be converted to an IFWI.
33 The position of this entry is generally set by the intel-descriptor entry.
35 The contents of the IFWI are specified by the subnodes of the IFWI node.
36 Each subnode describes an entry which is placed into the IFWFI with a given
37 sub-partition (and optional entry name).
39 Properties for subnodes:
40 ifwi-subpart - sub-parition to put this entry into, e.g. "IBBP"
41 ifwi-entry - entry name t use, e.g. "IBBL"
42 ifwi-replace - if present, indicates that the item should be replaced
43 in the IFWI. Otherwise it is added.
45 See README.x86 for information about x86 binary blobs.
47 def __init__(self, section, etype, node):
48 Entry_blob.__init__(self, section, etype, node)
49 self._convert_fit = fdt_util.GetBool(self._node, 'convert-fit')
50 self._ifwi_entries = OrderedDict()
54 Entry_blob.ReadNode(self)
57 """Build the contents of the IFWI and write it to the 'data' property"""
58 # Create the IFWI file if needed
60 inname = self._pathname
61 outname = tools.GetOutputFilename('ifwi.bin')
62 tools.RunIfwiTool(inname, tools.CMD_CREATE, outname)
63 self._filename = 'ifwi.bin'
64 self._pathname = outname
66 # Provide a different code path here to ensure we have test coverage
67 outname = self._pathname
69 # Delete OBBP if it is there, then add the required new items.
70 tools.RunIfwiTool(outname, tools.CMD_DELETE, subpart='OBBP')
72 for entry in self._ifwi_entries.values():
73 # First get the input data and put it in a file
74 data = entry.GetData()
75 uniq = self.GetUniqueName()
76 input_fname = tools.GetOutputFilename('input.%s' % uniq)
77 tools.WriteFile(input_fname, data)
79 tools.RunIfwiTool(outname,
80 tools.CMD_REPLACE if entry._ifwi_replace else tools.CMD_ADD,
81 input_fname, entry._ifwi_subpart, entry._ifwi_entry_name)
83 self.ReadBlobContents()
86 def ObtainContents(self):
87 """Get the contects for the IFWI
89 Unfortunately we cannot create anything from scratch here, as Intel has
90 tools which create precursor binaries with lots of data and settings,
91 and these are not incorporated into binman.
93 The first step is to get a file in the IFWI format. This is either
94 supplied directly or is extracted from a fitimage using the 'create'
97 After that we delete the OBBP sub-partition and add each of the files
98 that we want in the IFWI file, one for each sub-entry of the IWFI node.
100 self._pathname = tools.GetInputFilename(self._filename)
101 for entry in self._ifwi_entries.values():
102 if not entry.ObtainContents():
104 return self._BuildIfwi()
106 def ProcessContents(self):
107 orig_data = self.data
109 same = orig_data == self.data
112 def _ReadSubnodes(self):
113 """Read the subnodes to find out what should go in this IFWI"""
114 for node in self._node.subnodes:
115 entry = Entry.Create(self.section, node)
117 entry._ifwi_replace = fdt_util.GetBool(node, 'ifwi-replace')
118 entry._ifwi_subpart = fdt_util.GetString(node, 'ifwi-subpart')
119 entry._ifwi_entry_name = fdt_util.GetString(node, 'ifwi-entry')
120 self._ifwi_entries[entry._ifwi_subpart] = entry
122 def WriteSymbols(self, section):
123 """Write symbol values into binary files for access at run time"""
124 for entry in self._ifwi_entries.values():
125 entry.WriteSymbols(self)