intel_cmc.py 712 B

1234567891011121314151617181920212223
  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 entry import Entry
  8. from blob import Entry_blob
  9. class Entry_intel_cmc(Entry_blob):
  10. """Entry containing an Intel Chipset Micro Code (CMC) file
  11. Properties / Entry arguments:
  12. - filename: Filename of file to read into entry
  13. This file contains microcode for some devices in a special format. An
  14. example filename is 'Microcode/C0_22211.BIN'.
  15. See README.x86 for information about x86 binary blobs.
  16. """
  17. def __init__(self, section, etype, node):
  18. Entry_blob.__init__(self, section, etype, node)