intel_fsp_t.py 884 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 (T section)
  6. #
  7. from entry import Entry
  8. from blob import Entry_blob
  9. class Entry_intel_fsp_t(Entry_blob):
  10. """Entry containing Intel Firmware Support Package (FSP) temp ram 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. temporary memory (Cache-as-RAM or CAR). U-Boot executes this code in TPL so
  15. that it has access to memory for its stack and initial storage.
  16. An example filename is 'fsp_t.bin'
  17. See README.x86 for information about x86 binary blobs.
  18. """
  19. def __init__(self, section, etype, node):
  20. Entry_blob.__init__(self, section, etype, node)