intel_fsp_s.py 966 B

123456789101112131415161718192021222324252627
  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 (S section)
  6. #
  7. from entry import Entry
  8. from blob import Entry_blob
  9. class Entry_intel_fsp_s(Entry_blob):
  10. """Entry containing Intel Firmware Support Package (FSP) silicon init
  11. Properties / Entry arguments:
  12. - filename: Filename of file to read into entry
  13. This file contains a binary blob which is used on some devices to set up
  14. the silicon. U-Boot executes this code in U-Boot proper after SDRAM is
  15. running, so that it can make full use of memory. Documentation is typically
  16. not available in sufficient detail to allow U-Boot do this this itself.
  17. An example filename is 'fsp_s.bin'
  18. See README.x86 for information about x86 binary blobs.
  19. """
  20. def __init__(self, section, etype, node):
  21. Entry_blob.__init__(self, section, etype, node)