summaryrefslogtreecommitdiff
path: root/tools/binman/etype/u_boot_vpl_bss_pad.py
blob: bba38ccf9e93749f1f1faba6ca5a557128abeb70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# SPDX-License-Identifier: GPL-2.0+
# Copyright 2021 Google LLC
# Written by Simon Glass <sjg@chromium.org>
#
# Entry-type module for BSS padding for vpl/u-boot-vpl.bin. This padding
# can be added after the VPL binary to ensure that anything concatenated
# to it will appear to VPL to be at the end of BSS rather than the start.
#

from binman import elf
from binman.entry import Entry
from binman.etype.blob import Entry_blob
from u_boot_pylib import tools

class Entry_u_boot_vpl_bss_pad(Entry_blob):
    """U-Boot VPL binary padded with a BSS region

    Properties / Entry arguments:
        None

    This holds the padding added after the VPL binary to cover the BSS (Block
    Started by Symbol) region. This region holds the various variables used by
    VPL. It is set to 0 by VPL when it starts up. If you want to append data to
    the VPL image (such as a device tree file), you must pad out the BSS region
    to avoid the data overlapping with U-Boot variables. This entry is useful in
    that case. It automatically pads out the entry size to cover both the code,
    data and BSS.

    The contents of this entry will a certain number of zero bytes, determined
    by __bss_size

    The ELF file 'vpl/u-boot-vpl' must also be available for this to work, since
    binman uses that to look up the BSS address.
    """
    def __init__(self, section, etype, node):
        super().__init__(section, etype, node)

    def ObtainContents(self):
        fname = tools.get_input_filename('vpl/u-boot-vpl')
        bss_size = elf.GetSymbolAddress(fname, '__bss_size')
        if not bss_size:
            self.Raise('Expected __bss_size symbol in vpl/u-boot-vpl')
        self.SetContents(tools.get_bytes(0, bss_size))
        return True