1# SPDX-License-Identifier: GPL-2.0+
2# Copyright 2020 Samuel Holland <samuel@sholland.org>
3#
4# Entry-type module for System Control Processor (SCP) firmware blob
5#
6
7from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg
8
9class Entry_scp(Entry_blob_named_by_arg):
10    """System Control Processor (SCP) firmware blob
11
12    Properties / Entry arguments:
13        - scp-path: Filename of file to read into the entry, typically scp.bin
14
15    This entry holds firmware for an external platform-specific coprocessor.
16    """
17    def __init__(self, section, etype, node):
18        super().__init__(section, etype, node, 'scp')
19        self.external = True
20