intel_fsp_m.py 901 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright 2019 Google LLC
  3. # Written by Simon Glass <sjg@chromium.org>
  4. #
  5. # Entry-type module for Intel Firmware Support Package binary blob (M section)
  6. #
  7. from binman.etype.blob_ext import Entry_blob_ext
  8. class Entry_intel_fsp_m(Entry_blob_ext):
  9. """Intel Firmware Support Package (FSP) memory init
  10. Properties / Entry arguments:
  11. - filename: Filename of file to read into entry
  12. This file contains a binary blob which is used on some devices to set up
  13. SDRAM. U-Boot executes this code in SPL so that it can make full use of
  14. memory. Documentation is typically not available in sufficient detail to
  15. allow U-Boot do this this itself..
  16. An example filename is 'fsp_m.bin'
  17. See README.x86 for information about x86 binary blobs.
  18. """
  19. def __init__(self, section, etype, node):
  20. super().__init__(section, etype, node)