intel_cmc.py 684 B

12345678910111213141516171819202122
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright (c) 2016 Google, Inc
  3. # Written by Simon Glass <sjg@chromium.org>
  4. #
  5. # Entry-type module for Intel Chip Microcode binary blob
  6. #
  7. from binman.etype.blob_ext import Entry_blob_ext
  8. class Entry_intel_cmc(Entry_blob_ext):
  9. """Intel Chipset Micro Code (CMC) file
  10. Properties / Entry arguments:
  11. - filename: Filename of file to read into entry
  12. This file contains microcode for some devices in a special format. An
  13. example filename is 'Microcode/C0_22211.BIN'.
  14. See README.x86 for information about x86 binary blobs.
  15. """
  16. def __init__(self, section, etype, node):
  17. super().__init__(section, etype, node)