1# SPDX-License-Identifier: GPL-2.0+
2# Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/
3# Written by Neha Malcom Francis <n-francis@ti.com>
4#
5# Entry-type module for TI Device Manager (DM)
6#
7
8from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg
9
10class Entry_ti_dm(Entry_blob_named_by_arg):
11    """TI Device Manager (DM) blob
12
13    Properties / Entry arguments:
14        - ti-dm-path: Filename of file to read into the entry, typically ti-dm.bin
15
16    This entry holds the device manager responsible for resource and power management
17    in K3 devices. See https://software-dl.ti.com/tisci/esd/latest/ for more information
18    about TI DM.
19    """
20    def __init__(self, section, etype, node):
21        super().__init__(section, etype, node, 'ti-dm')
22        self.external = True
23