Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 1 | #!/usr/bin/env python |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 2 | # Script to analyze code and arrange ld sections. |
Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 3 | # |
Kevin O'Connor | ab482e0 | 2014-06-11 14:00:21 -0400 | [diff] [blame] | 4 | # Copyright (C) 2008-2014 Kevin O'Connor <kevin@koconnor.net> |
Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 5 | # |
| 6 | # This file may be distributed under the terms of the GNU GPLv3 license. |
| 7 | |
Johannes Krampf | 0a82fc7 | 2014-01-12 11:39:57 -0500 | [diff] [blame] | 8 | import operator |
Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 9 | import sys |
| 10 | |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 11 | # LD script headers/trailers |
| 12 | COMMONHEADER = """ |
Kevin O'Connor | ffc0687 | 2014-06-11 15:40:04 -0400 | [diff] [blame] | 13 | /* DO NOT EDIT! This is an autogenerated file. See scripts/layoutrom.py. */ |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 14 | OUTPUT_FORMAT("elf32-i386") |
| 15 | OUTPUT_ARCH("i386") |
| 16 | SECTIONS |
| 17 | { |
| 18 | """ |
| 19 | COMMONTRAILER = """ |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 20 | |
| 21 | /* Discard regular data sections to force a link error if |
| 22 | * code attempts to access data not marked with VAR16 (or other |
| 23 | * appropriate macro) |
| 24 | */ |
| 25 | /DISCARD/ : { |
| 26 | *(.text*) *(.data*) *(.bss*) *(.rodata*) |
Kevin O'Connor | 90ebed4 | 2012-06-21 20:54:53 -0400 | [diff] [blame] | 27 | *(COMMON) *(.discard*) *(.eh_frame) *(.note*) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 28 | } |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 29 | } |
| 30 | """ |
| 31 | |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 32 | |
| 33 | ###################################################################### |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 34 | # Determine section locations |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 35 | ###################################################################### |
| 36 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 37 | # Align 'pos' to 'alignbytes' offset |
| 38 | def alignpos(pos, alignbytes): |
| 39 | mask = alignbytes - 1 |
| 40 | return (pos + mask) & ~mask |
| 41 | |
| 42 | # Determine the final addresses for a list of sections that end at an |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 43 | # address. |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 44 | def setSectionsStart(sections, endaddr, minalign=1, segoffset=0): |
Kevin O'Connor | 5b8f809 | 2009-09-20 19:47:45 -0400 | [diff] [blame] | 45 | totspace = 0 |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 46 | for section in sections: |
| 47 | if section.align > minalign: |
| 48 | minalign = section.align |
| 49 | totspace = alignpos(totspace, section.align) + section.size |
Johannes Krampf | 9d7d044 | 2014-01-12 11:19:22 -0500 | [diff] [blame] | 50 | startaddr = int((endaddr - totspace) / minalign) * minalign |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 51 | curaddr = startaddr |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 52 | for section in sections: |
| 53 | curaddr = alignpos(curaddr, section.align) |
| 54 | section.finalloc = curaddr |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 55 | section.finalsegloc = curaddr - segoffset |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 56 | curaddr += section.size |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 57 | return startaddr, minalign |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 58 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 59 | # The 16bit code can't exceed 64K of space. |
| 60 | BUILD_BIOS_ADDR = 0xf0000 |
| 61 | BUILD_BIOS_SIZE = 0x10000 |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 62 | BUILD_ROM_START = 0xc0000 |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 63 | BUILD_LOWRAM_END = 0xa0000 |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 64 | # Space to reserve in f-segment for dynamic allocations |
| 65 | BUILD_MIN_BIOSTABLE = 2048 |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 66 | |
| 67 | # Layout the 16bit code. This ensures sections with fixed offset |
| 68 | # requirements are placed in the correct location. It also places the |
| 69 | # 16bit code as high as possible in the f-segment. |
| 70 | def fitSections(sections, fillsections): |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 71 | # fixedsections = [(addr, section), ...] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 72 | fixedsections = [] |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 73 | for section in sections: |
| 74 | if section.name.startswith('.fixedaddr.'): |
| 75 | addr = int(section.name[11:], 16) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 76 | section.finalloc = addr + BUILD_BIOS_ADDR |
| 77 | section.finalsegloc = addr |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 78 | fixedsections.append((addr, section)) |
| 79 | if section.align != 1: |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 80 | print("Error: Fixed section %s has non-zero alignment (%d)" % ( |
| 81 | section.name, section.align)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 82 | sys.exit(1) |
Johannes Krampf | 0a82fc7 | 2014-01-12 11:39:57 -0500 | [diff] [blame] | 83 | fixedsections.sort(key=operator.itemgetter(0)) |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 84 | firstfixed = fixedsections[0][0] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 85 | |
| 86 | # Find freespace in fixed address area |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 87 | # fixedAddr = [(freespace, section), ...] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 88 | fixedAddr = [] |
| 89 | for i in range(len(fixedsections)): |
| 90 | fixedsectioninfo = fixedsections[i] |
| 91 | addr, section = fixedsectioninfo |
| 92 | if i == len(fixedsections) - 1: |
| 93 | nextaddr = BUILD_BIOS_SIZE |
| 94 | else: |
| 95 | nextaddr = fixedsections[i+1][0] |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 96 | avail = nextaddr - addr - section.size |
| 97 | fixedAddr.append((avail, section)) |
Johannes Krampf | 0a82fc7 | 2014-01-12 11:39:57 -0500 | [diff] [blame] | 98 | fixedAddr.sort(key=operator.itemgetter(0)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 99 | |
| 100 | # Attempt to fit other sections into fixed area |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 101 | canrelocate = [(section.size, section.align, section.name, section) |
| 102 | for section in fillsections] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 103 | canrelocate.sort() |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 104 | canrelocate = [section for size, align, name, section in canrelocate] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 105 | totalused = 0 |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 106 | for freespace, fixedsection in fixedAddr: |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 107 | addpos = fixedsection.finalsegloc + fixedsection.size |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 108 | totalused += fixedsection.size |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 109 | nextfixedaddr = addpos + freespace |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 110 | # print("Filling section %x uses %d, next=%x, available=%d" % ( |
| 111 | # fixedsection.finalloc, fixedsection.size, nextfixedaddr, freespace)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 112 | while 1: |
| 113 | canfit = None |
| 114 | for fitsection in canrelocate: |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 115 | if addpos + fitsection.size > nextfixedaddr: |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 116 | # Can't fit and nothing else will fit. |
| 117 | break |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 118 | fitnextaddr = alignpos(addpos, fitsection.align) + fitsection.size |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 119 | # print("Test %s - %x vs %x" % ( |
| 120 | # fitsection.name, fitnextaddr, nextfixedaddr)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 121 | if fitnextaddr > nextfixedaddr: |
| 122 | # This item can't fit. |
| 123 | continue |
| 124 | canfit = (fitnextaddr, fitsection) |
| 125 | if canfit is None: |
| 126 | break |
| 127 | # Found a section that can fit. |
| 128 | fitnextaddr, fitsection = canfit |
| 129 | canrelocate.remove(fitsection) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 130 | fitsection.finalloc = addpos + BUILD_BIOS_ADDR |
| 131 | fitsection.finalsegloc = addpos |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 132 | addpos = fitnextaddr |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 133 | totalused += fitsection.size |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 134 | # print(" Adding %s (size %d align %d) pos=%x avail=%d" % ( |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 135 | # fitsection[2], fitsection[0], fitsection[1] |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 136 | # , fitnextaddr, nextfixedaddr - fitnextaddr)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 137 | |
| 138 | # Report stats |
| 139 | total = BUILD_BIOS_SIZE-firstfixed |
| 140 | slack = total - totalused |
| 141 | print ("Fixed space: 0x%x-0x%x total: %d slack: %d" |
| 142 | " Percent slack: %.1f%%" % ( |
| 143 | firstfixed, BUILD_BIOS_SIZE, total, slack, |
| 144 | (float(slack) / total) * 100.0)) |
| 145 | |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 146 | return firstfixed + BUILD_BIOS_ADDR |
| 147 | |
| 148 | # Return the subset of sections with a given category |
| 149 | def getSectionsCategory(sections, category): |
| 150 | return [section for section in sections if section.category == category] |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 151 | |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 152 | # Return the subset of sections with a given fileid |
| 153 | def getSectionsFileid(sections, fileid): |
| 154 | return [section for section in sections if section.fileid == fileid] |
| 155 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 156 | # Return the subset of sections with a given name prefix |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 157 | def getSectionsPrefix(sections, prefix): |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 158 | return [section for section in sections |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 159 | if section.name.startswith(prefix)] |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 160 | |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 161 | # The sections (and associated information) to be placed in output rom |
| 162 | class LayoutInfo: |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 163 | sections = None |
Vladimir Serbinenko | 1b911d7 | 2015-05-18 19:07:16 +0200 | [diff] [blame] | 164 | config = None |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 165 | genreloc = None |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 166 | sec32init_start = sec32init_end = sec32init_align = None |
| 167 | sec32low_start = sec32low_end = None |
| 168 | zonelow_base = final_sec32low_start = None |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 169 | zonefseg_start = zonefseg_end = None |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 170 | final_readonly_start = None |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 171 | varlowsyms = entrysym = None |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 172 | |
| 173 | # Determine final memory addresses for sections |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 174 | def doLayout(sections, config, genreloc): |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 175 | li = LayoutInfo() |
Vladimir Serbinenko | 1b911d7 | 2015-05-18 19:07:16 +0200 | [diff] [blame] | 176 | li.config = config |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 177 | li.sections = sections |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 178 | li.genreloc = genreloc |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 179 | # Determine 16bit positions |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 180 | sections16 = getSectionsCategory(sections, '16') |
| 181 | textsections = getSectionsPrefix(sections16, '.text.') |
| 182 | rodatasections = getSectionsPrefix(sections16, '.rodata') |
| 183 | datasections = getSectionsPrefix(sections16, '.data16.') |
Kevin O'Connor | ab482e0 | 2014-06-11 14:00:21 -0400 | [diff] [blame] | 184 | fixedsections = getSectionsCategory(sections, 'fixed') |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 185 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 186 | firstfixed = fitSections(fixedsections, textsections) |
| 187 | remsections = [s for s in textsections+rodatasections+datasections |
| 188 | if s.finalloc is None] |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 189 | sec16_start, sec16_align = setSectionsStart( |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 190 | remsections, firstfixed, segoffset=BUILD_BIOS_ADDR) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 191 | |
| 192 | # Determine 32seg positions |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 193 | sections32seg = getSectionsCategory(sections, '32seg') |
| 194 | textsections = getSectionsPrefix(sections32seg, '.text.') |
| 195 | rodatasections = getSectionsPrefix(sections32seg, '.rodata') |
| 196 | datasections = getSectionsPrefix(sections32seg, '.data32seg.') |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 197 | |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 198 | sec32seg_start, sec32seg_align = setSectionsStart( |
| 199 | textsections + rodatasections + datasections, sec16_start |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 200 | , segoffset=BUILD_BIOS_ADDR) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 201 | |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 202 | # Determine 32bit "fseg memory" data positions |
| 203 | sections32textfseg = getSectionsCategory(sections, '32textfseg') |
| 204 | sec32textfseg_start, sec32textfseg_align = setSectionsStart( |
| 205 | sections32textfseg, sec32seg_start, 16) |
Kevin O'Connor | 4195349 | 2013-02-18 23:09:01 -0500 | [diff] [blame] | 206 | |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 207 | sections32fseg = getSectionsCategory(sections, '32fseg') |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 208 | sec32fseg_start, sec32fseg_align = setSectionsStart( |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 209 | sections32fseg, sec32textfseg_start, 16 |
Kevin O'Connor | 4195349 | 2013-02-18 23:09:01 -0500 | [diff] [blame] | 210 | , segoffset=BUILD_BIOS_ADDR) |
| 211 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 212 | # Determine 32flat runtime positions |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 213 | sections32flat = getSectionsCategory(sections, '32flat') |
| 214 | textsections = getSectionsPrefix(sections32flat, '.text.') |
| 215 | rodatasections = getSectionsPrefix(sections32flat, '.rodata') |
| 216 | datasections = getSectionsPrefix(sections32flat, '.data.') |
| 217 | bsssections = getSectionsPrefix(sections32flat, '.bss.') |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 218 | |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 219 | sec32flat_start, sec32flat_align = setSectionsStart( |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 220 | textsections + rodatasections + datasections + bsssections |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 221 | , sec32fseg_start, 16) |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 222 | |
| 223 | # Determine 32flat init positions |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 224 | sections32init = getSectionsCategory(sections, '32init') |
| 225 | init32_textsections = getSectionsPrefix(sections32init, '.text.') |
| 226 | init32_rodatasections = getSectionsPrefix(sections32init, '.rodata') |
| 227 | init32_datasections = getSectionsPrefix(sections32init, '.data.') |
| 228 | init32_bsssections = getSectionsPrefix(sections32init, '.bss.') |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 229 | |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 230 | sec32init_start, sec32init_align = setSectionsStart( |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 231 | init32_textsections + init32_rodatasections |
| 232 | + init32_datasections + init32_bsssections |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 233 | , sec32flat_start, 16) |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 234 | |
| 235 | # Determine location of ZoneFSeg memory. |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 236 | zonefseg_end = sec32flat_start |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 237 | if not genreloc: |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 238 | zonefseg_end = sec32init_start |
| 239 | zonefseg_start = BUILD_BIOS_ADDR |
| 240 | if zonefseg_start + BUILD_MIN_BIOSTABLE > zonefseg_end: |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 241 | # Not enough ZoneFSeg space - force a minimum space. |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 242 | zonefseg_end = sec32fseg_start |
| 243 | zonefseg_start = zonefseg_end - BUILD_MIN_BIOSTABLE |
| 244 | sec32flat_start, sec32flat_align = setSectionsStart( |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 245 | textsections + rodatasections + datasections + bsssections |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 246 | , zonefseg_start, 16) |
| 247 | sec32init_start, sec32init_align = setSectionsStart( |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 248 | init32_textsections + init32_rodatasections |
| 249 | + init32_datasections + init32_bsssections |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 250 | , sec32flat_start, 16) |
| 251 | li.sec32init_start = sec32init_start |
| 252 | li.sec32init_end = sec32flat_start |
| 253 | li.sec32init_align = sec32init_align |
| 254 | final_readonly_start = min(BUILD_BIOS_ADDR, sec32flat_start) |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 255 | if not genreloc: |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 256 | final_readonly_start = min(BUILD_BIOS_ADDR, sec32init_start) |
| 257 | li.zonefseg_start = zonefseg_start |
| 258 | li.zonefseg_end = zonefseg_end |
| 259 | li.final_readonly_start = final_readonly_start |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 260 | |
| 261 | # Determine "low memory" data positions |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 262 | sections32low = getSectionsCategory(sections, '32low') |
| 263 | sec32low_end = sec32init_start |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 264 | if config.get('CONFIG_MALLOC_UPPERMEMORY'): |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 265 | final_sec32low_end = final_readonly_start |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 266 | zonelow_base = final_sec32low_end - 64*1024 |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 267 | zonelow_base = max(BUILD_ROM_START, alignpos(zonelow_base, 2*1024)) |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 268 | else: |
| 269 | final_sec32low_end = BUILD_LOWRAM_END |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 270 | zonelow_base = final_sec32low_end - 64*1024 |
Kevin O'Connor | 3be89a1 | 2013-02-23 16:07:00 -0500 | [diff] [blame] | 271 | relocdelta = final_sec32low_end - sec32low_end |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 272 | li.sec32low_start, li.sec32low_align = setSectionsStart( |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 273 | sections32low, sec32low_end, 16 |
| 274 | , segoffset=zonelow_base - relocdelta) |
| 275 | li.sec32low_end = sec32low_end |
| 276 | li.zonelow_base = zonelow_base |
Kevin O'Connor | c91da7a | 2012-06-08 21:14:19 -0400 | [diff] [blame] | 277 | li.final_sec32low_start = li.sec32low_start + relocdelta |
Kevin O'Connor | d1b4f96 | 2010-09-15 21:38:16 -0400 | [diff] [blame] | 278 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 279 | # Print statistics |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 280 | size16 = BUILD_BIOS_ADDR + BUILD_BIOS_SIZE - sec16_start |
| 281 | size32seg = sec16_start - sec32seg_start |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 282 | size32textfseg = sec32seg_start - sec32textfseg_start |
| 283 | size32fseg = sec32textfseg_start - sec32fseg_start |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 284 | size32flat = sec32fseg_start - sec32flat_start |
| 285 | size32init = sec32flat_start - sec32init_start |
| 286 | sizelow = li.sec32low_end - li.sec32low_start |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 287 | print("16bit size: %d" % size16) |
| 288 | print("32bit segmented size: %d" % size32seg) |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 289 | print("32bit flat size: %d" % (size32flat + size32textfseg)) |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 290 | print("32bit flat init size: %d" % size32init) |
| 291 | print("Lowmem size: %d" % sizelow) |
| 292 | print("f-segment var size: %d" % size32fseg) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 293 | return li |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 294 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 295 | |
| 296 | ###################################################################### |
| 297 | # Linker script output |
| 298 | ###################################################################### |
| 299 | |
| 300 | # Write LD script includes for the given cross references |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 301 | def outXRefs(sections, useseg=0, exportsyms=[], forcedelta=0): |
Kevin O'Connor | a3c48f5 | 2013-02-05 22:36:13 -0500 | [diff] [blame] | 302 | xrefs = dict([(symbol.name, symbol) for symbol in exportsyms]) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 303 | out = "" |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 304 | for section in sections: |
| 305 | for reloc in section.relocs: |
| 306 | symbol = reloc.symbol |
Kevin O'Connor | a3c48f5 | 2013-02-05 22:36:13 -0500 | [diff] [blame] | 307 | if (symbol.section is not None |
| 308 | and (symbol.section.fileid != section.fileid |
| 309 | or symbol.name != reloc.symbolname)): |
| 310 | xrefs[reloc.symbolname] = symbol |
| 311 | for symbolname, symbol in xrefs.items(): |
| 312 | loc = symbol.section.finalloc |
| 313 | if useseg: |
| 314 | loc = symbol.section.finalsegloc |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 315 | out += "%s = 0x%x ;\n" % (symbolname, loc + forcedelta + symbol.offset) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 316 | return out |
| 317 | |
Kevin O'Connor | e574997 | 2014-06-07 15:55:00 -0400 | [diff] [blame] | 318 | # Write LD script includes for the given sections |
| 319 | def outSections(sections, useseg=0): |
| 320 | out = "" |
| 321 | for section in sections: |
| 322 | loc = section.finalloc |
| 323 | if useseg: |
| 324 | loc = section.finalsegloc |
| 325 | out += "%s 0x%x : { *(%s) }\n" % (section.name, loc, section.name) |
| 326 | return out |
| 327 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 328 | # Write LD script includes for the given sections using relative offsets |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 329 | def outRelSections(sections, startsym, useseg=0): |
| 330 | sections = [(section.finalloc, section) for section in sections |
| 331 | if section.finalloc is not None] |
Johannes Krampf | 0a82fc7 | 2014-01-12 11:39:57 -0500 | [diff] [blame] | 332 | sections.sort(key=operator.itemgetter(0)) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 333 | out = "" |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 334 | for addr, section in sections: |
| 335 | loc = section.finalloc |
| 336 | if useseg: |
| 337 | loc = section.finalsegloc |
| 338 | out += ". = ( 0x%x - %s ) ;\n" % (loc, startsym) |
Kevin O'Connor | e574997 | 2014-06-07 15:55:00 -0400 | [diff] [blame] | 339 | if section.name in ('.rodata.str1.1', '.rodata'): |
| 340 | out += "_rodata%s = . ;\n" % (section.fileid,) |
| 341 | out += "*%s.*(%s)\n" % (section.fileid, section.name) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 342 | return out |
| 343 | |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 344 | # Build linker script output for a list of relocations. |
| 345 | def strRelocs(outname, outrel, relocs): |
| 346 | relocs.sort() |
| 347 | return (" %s_start = ABSOLUTE(.) ;\n" % (outname,) |
| 348 | + "".join(["LONG(0x%x - %s)\n" % (pos, outrel) |
| 349 | for pos in relocs]) |
| 350 | + " %s_end = ABSOLUTE(.) ;\n" % (outname,)) |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 351 | |
Kevin O'Connor | b40016f | 2014-06-11 14:40:45 -0400 | [diff] [blame] | 352 | # Find relocations to the given sections |
| 353 | def getRelocs(sections, tosection, type=None): |
| 354 | return [section.finalloc + reloc.offset |
| 355 | for section in sections |
| 356 | for reloc in section.relocs |
| 357 | if (reloc.symbol.section in tosection |
| 358 | and (type is None or reloc.type == type))] |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 359 | |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 360 | # Output the linker scripts for all required sections. |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 361 | def writeLinkerScripts(li, out16, out32seg, out32flat): |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 362 | # Write 16bit linker script |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 363 | filesections16 = getSectionsFileid(li.sections, '16') |
| 364 | out = outXRefs(filesections16, useseg=1) + """ |
Kevin O'Connor | c924344 | 2013-02-17 13:58:28 -0500 | [diff] [blame] | 365 | zonelow_base = 0x%x ; |
| 366 | _zonelow_seg = 0x%x ; |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 367 | |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 368 | %s |
Kevin O'Connor | c924344 | 2013-02-17 13:58:28 -0500 | [diff] [blame] | 369 | """ % (li.zonelow_base, |
Johannes Krampf | 9d7d044 | 2014-01-12 11:19:22 -0500 | [diff] [blame] | 370 | int(li.zonelow_base / 16), |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 371 | outSections(filesections16, useseg=1)) |
Johannes Krampf | 19f789b | 2014-01-19 16:03:49 +0100 | [diff] [blame] | 372 | outfile = open(out16, 'w') |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 373 | outfile.write(COMMONHEADER + out + COMMONTRAILER) |
| 374 | outfile.close() |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 375 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 376 | # Write 32seg linker script |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 377 | filesections32seg = getSectionsFileid(li.sections, '32seg') |
| 378 | out = (outXRefs(filesections32seg, useseg=1) |
| 379 | + outSections(filesections32seg, useseg=1)) |
Johannes Krampf | 19f789b | 2014-01-19 16:03:49 +0100 | [diff] [blame] | 380 | outfile = open(out32seg, 'w') |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 381 | outfile.write(COMMONHEADER + out + COMMONTRAILER) |
| 382 | outfile.close() |
Kevin O'Connor | 871e0a0 | 2009-12-30 12:14:53 -0500 | [diff] [blame] | 383 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 384 | # Write 32flat linker script |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 385 | sec32all_start = li.sec32low_start |
Kevin O'Connor | 402fd9c | 2010-09-15 00:26:19 -0400 | [diff] [blame] | 386 | relocstr = "" |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 387 | if li.genreloc: |
Kevin O'Connor | 402fd9c | 2010-09-15 00:26:19 -0400 | [diff] [blame] | 388 | # Generate relocations |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 389 | initsections = dict([ |
| 390 | (s, 1) for s in getSectionsCategory(li.sections, '32init')]) |
| 391 | noninitsections = dict([(s, 1) for s in li.sections |
| 392 | if s not in initsections]) |
Kevin O'Connor | b40016f | 2014-06-11 14:40:45 -0400 | [diff] [blame] | 393 | absrelocs = getRelocs(initsections, initsections, type='R_386_32') |
| 394 | relrelocs = getRelocs(initsections, noninitsections, type='R_386_PC32') |
| 395 | initrelocs = getRelocs(noninitsections, initsections) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 396 | relocstr = (strRelocs("_reloc_abs", "code32init_start", absrelocs) |
| 397 | + strRelocs("_reloc_rel", "code32init_start", relrelocs) |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 398 | + strRelocs("_reloc_init", "code32flat_start", initrelocs)) |
| 399 | numrelocs = len(absrelocs + relrelocs + initrelocs) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 400 | sec32all_start -= numrelocs * 4 |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 401 | filesections32flat = getSectionsFileid(li.sections, '32flat') |
| 402 | out = outXRefs([], exportsyms=li.varlowsyms |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 403 | , forcedelta=li.final_sec32low_start-li.sec32low_start) |
Vladimir Serbinenko | 1b911d7 | 2015-05-18 19:07:16 +0200 | [diff] [blame] | 404 | multiboot_header = "" |
| 405 | if li.config.get('CONFIG_MULTIBOOT'): |
| 406 | multiboot_header = "LONG(0x1BADB002) LONG(0) LONG(-0x1BADB002)" |
| 407 | sec32all_start -= 3 * 4 |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 408 | out += outXRefs(filesections32flat, exportsyms=[li.entrysym]) + """ |
Kevin O'Connor | 402fd9c | 2010-09-15 00:26:19 -0400 | [diff] [blame] | 409 | _reloc_min_align = 0x%x ; |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 410 | zonefseg_start = 0x%x ; |
| 411 | zonefseg_end = 0x%x ; |
Kevin O'Connor | c924344 | 2013-02-17 13:58:28 -0500 | [diff] [blame] | 412 | zonelow_base = 0x%x ; |
| 413 | final_varlow_start = 0x%x ; |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 414 | final_readonly_start = 0x%x ; |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 415 | varlow_start = 0x%x ; |
| 416 | varlow_end = 0x%x ; |
| 417 | code32init_start = 0x%x ; |
| 418 | code32init_end = 0x%x ; |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 419 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 420 | code32flat_start = 0x%x ; |
| 421 | .text code32flat_start : { |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 422 | %s |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 423 | %s |
Vladimir Serbinenko | 1b911d7 | 2015-05-18 19:07:16 +0200 | [diff] [blame] | 424 | %s |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 425 | code32flat_end = ABSOLUTE(.) ; |
| 426 | } :text |
Kevin O'Connor | a3c48f5 | 2013-02-05 22:36:13 -0500 | [diff] [blame] | 427 | """ % (li.sec32init_align, |
Kevin O'Connor | 6d15264 | 2013-02-19 21:35:20 -0500 | [diff] [blame] | 428 | li.zonefseg_start, |
| 429 | li.zonefseg_end, |
Kevin O'Connor | c924344 | 2013-02-17 13:58:28 -0500 | [diff] [blame] | 430 | li.zonelow_base, |
Kevin O'Connor | c91da7a | 2012-06-08 21:14:19 -0400 | [diff] [blame] | 431 | li.final_sec32low_start, |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 432 | li.final_readonly_start, |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 433 | li.sec32low_start, |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 434 | li.sec32low_end, |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 435 | li.sec32init_start, |
Kevin O'Connor | 38729bc | 2014-06-11 13:39:02 -0400 | [diff] [blame] | 436 | li.sec32init_end, |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 437 | sec32all_start, |
Vladimir Serbinenko | 1b911d7 | 2015-05-18 19:07:16 +0200 | [diff] [blame] | 438 | multiboot_header, |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 439 | relocstr, |
Kevin O'Connor | 8216a47 | 2014-06-10 17:59:53 -0400 | [diff] [blame] | 440 | outRelSections(li.sections, 'code32flat_start')) |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 441 | out = COMMONHEADER + out + COMMONTRAILER + """ |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 442 | ENTRY(%s) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 443 | PHDRS |
| 444 | { |
| 445 | text PT_LOAD AT ( code32flat_start ) ; |
| 446 | } |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 447 | """ % (li.entrysym.name,) |
Johannes Krampf | 19f789b | 2014-01-19 16:03:49 +0100 | [diff] [blame] | 448 | outfile = open(out32flat, 'w') |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 449 | outfile.write(out) |
| 450 | outfile.close() |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 451 | |
| 452 | |
| 453 | ###################################################################### |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 454 | # Detection of unused sections and init sections |
Kevin O'Connor | d1b4f96 | 2010-09-15 21:38:16 -0400 | [diff] [blame] | 455 | ###################################################################### |
| 456 | |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 457 | # Visit all sections reachable from a given set of start sections |
| 458 | def findReachable(anchorsections, checkreloc, data): |
| 459 | anchorsections = dict([(section, []) for section in anchorsections]) |
| 460 | pending = list(anchorsections) |
| 461 | while pending: |
| 462 | section = pending.pop() |
| 463 | for reloc in section.relocs: |
| 464 | chain = anchorsections[section] + [section.name] |
| 465 | if not checkreloc(reloc, section, data, chain): |
| 466 | continue |
| 467 | nextsection = reloc.symbol.section |
| 468 | if nextsection not in anchorsections: |
| 469 | anchorsections[nextsection] = chain |
| 470 | pending.append(nextsection) |
| 471 | return anchorsections |
| 472 | |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 473 | # Find "runtime" sections (ie, not init only sections). |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 474 | def checkRuntime(reloc, rsection, data, chain): |
| 475 | section = reloc.symbol.section |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 476 | if section is None or '.init.' in section.name: |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 477 | return 0 |
Kevin O'Connor | 2af52da | 2013-03-08 19:36:28 -0500 | [diff] [blame] | 478 | if '.data.varinit.' in section.name: |
Johannes Krampf | 064fd06 | 2014-01-12 11:14:54 -0500 | [diff] [blame] | 479 | print("ERROR: %s is VARVERIFY32INIT but used from %s" % ( |
| 480 | section.name, chain)) |
Kevin O'Connor | 2af52da | 2013-03-08 19:36:28 -0500 | [diff] [blame] | 481 | sys.exit(1) |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 482 | return 1 |
Kevin O'Connor | d1b4f96 | 2010-09-15 21:38:16 -0400 | [diff] [blame] | 483 | |
Kevin O'Connor | fdca418 | 2010-01-01 12:46:54 -0500 | [diff] [blame] | 484 | # Find and keep the section associated with a symbol (if available). |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 485 | def checkKeepSym(reloc, syms, fileid, isxref): |
Kevin O'Connor | f3fe3aa | 2010-12-05 12:38:33 -0500 | [diff] [blame] | 486 | symbolname = reloc.symbolname |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 487 | mustbecfunc = symbolname.startswith('_cfunc') |
| 488 | if mustbecfunc: |
| 489 | symprefix = '_cfunc' + fileid + '_' |
| 490 | if not symbolname.startswith(symprefix): |
| 491 | return 0 |
| 492 | symbolname = symbolname[len(symprefix):] |
| 493 | symbol = syms.get(symbolname) |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 494 | if (symbol is None or symbol.section is None |
| 495 | or symbol.section.name.startswith('.discard.')): |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 496 | return 0 |
Kevin O'Connor | f3fe3aa | 2010-12-05 12:38:33 -0500 | [diff] [blame] | 497 | isdestcfunc = (symbol.section.name.startswith('.text.') |
| 498 | and not symbol.section.name.startswith('.text.asm.')) |
| 499 | if ((mustbecfunc and not isdestcfunc) |
| 500 | or (not mustbecfunc and isdestcfunc and isxref)): |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 501 | return 0 |
Kevin O'Connor | f3fe3aa | 2010-12-05 12:38:33 -0500 | [diff] [blame] | 502 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 503 | reloc.symbol = symbol |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 504 | return 1 |
Kevin O'Connor | fdca418 | 2010-01-01 12:46:54 -0500 | [diff] [blame] | 505 | |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 506 | # Resolve a relocation and check if it should be kept in the final binary. |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 507 | def checkKeep(reloc, section, symbols, chain): |
| 508 | ret = checkKeepSym(reloc, symbols[section.fileid], section.fileid, 0) |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 509 | if ret: |
| 510 | return ret |
| 511 | # Not in primary sections - it may be a cross 16/32 reference |
| 512 | for fileid in ('16', '32seg', '32flat'): |
| 513 | if fileid != section.fileid: |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 514 | ret = checkKeepSym(reloc, symbols[fileid], fileid, 1) |
Kevin O'Connor | cc132ab | 2014-06-09 12:48:13 -0400 | [diff] [blame] | 515 | if ret: |
| 516 | return ret |
| 517 | return 0 |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 518 | |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 519 | |
| 520 | ###################################################################### |
| 521 | # Startup and input parsing |
| 522 | ###################################################################### |
| 523 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 524 | class Section: |
| 525 | name = size = alignment = fileid = relocs = None |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 526 | finalloc = finalsegloc = category = None |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 527 | class Reloc: |
Kevin O'Connor | f3fe3aa | 2010-12-05 12:38:33 -0500 | [diff] [blame] | 528 | offset = type = symbolname = symbol = None |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 529 | class Symbol: |
| 530 | name = offset = section = None |
| 531 | |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 532 | # Read in output from objdump |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 533 | def parseObjDump(file, fileid): |
| 534 | # sections = [section, ...] |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 535 | sections = [] |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 536 | sectionmap = {} |
| 537 | # symbols[symbolname] = symbol |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 538 | symbols = {} |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 539 | |
| 540 | state = None |
| 541 | for line in file.readlines(): |
| 542 | line = line.rstrip() |
| 543 | if line == 'Sections:': |
| 544 | state = 'section' |
| 545 | continue |
| 546 | if line == 'SYMBOL TABLE:': |
| 547 | state = 'symbol' |
| 548 | continue |
Kevin O'Connor | 6c2e781 | 2010-09-13 18:04:02 -0400 | [diff] [blame] | 549 | if line.startswith('RELOCATION RECORDS FOR ['): |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 550 | sectionname = line[24:-2] |
| 551 | if sectionname.startswith('.debug_'): |
| 552 | # Skip debugging sections (to reduce parsing time) |
| 553 | state = None |
| 554 | continue |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 555 | state = 'reloc' |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 556 | relocsection = sectionmap[sectionname] |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 557 | continue |
| 558 | |
| 559 | if state == 'section': |
| 560 | try: |
| 561 | idx, name, size, vma, lma, fileoff, align = line.split() |
| 562 | if align[:3] != '2**': |
| 563 | continue |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 564 | section = Section() |
| 565 | section.name = name |
| 566 | section.size = int(size, 16) |
| 567 | section.align = 2**int(align[3:]) |
| 568 | section.fileid = fileid |
| 569 | section.relocs = [] |
| 570 | sections.append(section) |
| 571 | sectionmap[name] = section |
| 572 | except ValueError: |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 573 | pass |
| 574 | continue |
| 575 | if state == 'symbol': |
| 576 | try: |
Kevin O'Connor | 90ebed4 | 2012-06-21 20:54:53 -0400 | [diff] [blame] | 577 | parts = line[17:].split() |
| 578 | if len(parts) == 3: |
| 579 | sectionname, size, name = parts |
| 580 | elif len(parts) == 4 and parts[2] == '.hidden': |
| 581 | sectionname, size, hidden, name = parts |
| 582 | else: |
| 583 | continue |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 584 | symbol = Symbol() |
| 585 | symbol.size = int(size, 16) |
| 586 | symbol.offset = int(line[:8], 16) |
| 587 | symbol.name = name |
| 588 | symbol.section = sectionmap.get(sectionname) |
| 589 | symbols[name] = symbol |
| 590 | except ValueError: |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 591 | pass |
| 592 | continue |
| 593 | if state == 'reloc': |
| 594 | try: |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 595 | off, type, symbolname = line.split() |
| 596 | reloc = Reloc() |
| 597 | reloc.offset = int(off, 16) |
| 598 | reloc.type = type |
Kevin O'Connor | f3fe3aa | 2010-12-05 12:38:33 -0500 | [diff] [blame] | 599 | reloc.symbolname = symbolname |
Kevin O'Connor | 67863be | 2010-12-24 10:23:10 -0500 | [diff] [blame] | 600 | reloc.symbol = symbols.get(symbolname) |
| 601 | if reloc.symbol is None: |
| 602 | # Some binutils (2.20.1) give section name instead |
| 603 | # of a symbol - create a dummy symbol. |
| 604 | reloc.symbol = symbol = Symbol() |
| 605 | symbol.size = 0 |
| 606 | symbol.offset = 0 |
| 607 | symbol.name = symbolname |
| 608 | symbol.section = sectionmap.get(symbolname) |
| 609 | symbols[symbolname] = symbol |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 610 | relocsection.relocs.append(reloc) |
| 611 | except ValueError: |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 612 | pass |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 613 | return sections, symbols |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 614 | |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 615 | # Parser for constants in simple C header files. |
| 616 | def scanconfig(file): |
Johannes Krampf | 19f789b | 2014-01-19 16:03:49 +0100 | [diff] [blame] | 617 | f = open(file, 'r') |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 618 | opts = {} |
| 619 | for l in f.readlines(): |
| 620 | parts = l.split() |
| 621 | if len(parts) != 3: |
| 622 | continue |
| 623 | if parts[0] != '#define': |
| 624 | continue |
| 625 | value = parts[2] |
| 626 | if value.isdigit() or (value.startswith('0x') and value[2:].isdigit()): |
| 627 | value = int(value, 0) |
| 628 | opts[parts[1]] = value |
| 629 | return opts |
| 630 | |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 631 | def main(): |
| 632 | # Get output name |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 633 | in16, in32seg, in32flat, cfgfile, out16, out32seg, out32flat = sys.argv[1:] |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 634 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 635 | # Read in the objdump information |
Johannes Krampf | 19f789b | 2014-01-19 16:03:49 +0100 | [diff] [blame] | 636 | infile16 = open(in16, 'r') |
| 637 | infile32seg = open(in32seg, 'r') |
| 638 | infile32flat = open(in32flat, 'r') |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 639 | |
Kevin O'Connor | 1a4885e | 2010-09-15 21:28:31 -0400 | [diff] [blame] | 640 | # infoX = (sections, symbols) |
| 641 | info16 = parseObjDump(infile16, '16') |
| 642 | info32seg = parseObjDump(infile32seg, '32seg') |
| 643 | info32flat = parseObjDump(infile32flat, '32flat') |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 644 | |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 645 | # Read kconfig config file |
| 646 | config = scanconfig(cfgfile) |
| 647 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 648 | # Figure out which sections to keep. |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 649 | allsections = info16[0] + info32seg[0] + info32flat[0] |
| 650 | symbols = {'16': info16[1], '32seg': info32seg[1], '32flat': info32flat[1]} |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 651 | if config.get('CONFIG_COREBOOT'): |
| 652 | entrysym = symbols['16'].get('entry_elf') |
| 653 | elif config.get('CONFIG_CSM'): |
| 654 | entrysym = symbols['16'].get('entry_csm') |
| 655 | else: |
| 656 | entrysym = symbols['16'].get('reset_vector') |
| 657 | anchorsections = [entrysym.section] + [ |
Kevin O'Connor | ab482e0 | 2014-06-11 14:00:21 -0400 | [diff] [blame] | 658 | section for section in allsections |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 659 | if section.name.startswith('.fixedaddr.')] |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 660 | keepsections = findReachable(anchorsections, checkKeep, symbols) |
| 661 | sections = [section for section in allsections if section in keepsections] |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 662 | |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 663 | # Separate 32bit flat into runtime, init, and special variable parts |
| 664 | anchorsections = [ |
| 665 | section for section in sections |
| 666 | if ('.data.varlow.' in section.name or '.data.varfseg.' in section.name |
Kevin O'Connor | ab482e0 | 2014-06-11 14:00:21 -0400 | [diff] [blame] | 667 | or '.fixedaddr.' in section.name or '.runtime.' in section.name)] |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 668 | runtimesections = findReachable(anchorsections, checkRuntime, None) |
| 669 | for section in sections: |
| 670 | if section.name.startswith('.data.varlow.'): |
| 671 | section.category = '32low' |
| 672 | elif section.name.startswith('.data.varfseg.'): |
| 673 | section.category = '32fseg' |
Kevin O'Connor | eb88bf7 | 2014-09-24 15:58:12 -0400 | [diff] [blame] | 674 | elif section.name.startswith('.text.32fseg.'): |
| 675 | section.category = '32textfseg' |
Kevin O'Connor | ab482e0 | 2014-06-11 14:00:21 -0400 | [diff] [blame] | 676 | elif section.name.startswith('.fixedaddr.'): |
| 677 | section.category = 'fixed' |
Kevin O'Connor | bf70fbf | 2014-06-10 00:00:20 -0400 | [diff] [blame] | 678 | elif section.fileid == '32flat' and section not in runtimesections: |
| 679 | section.category = '32init' |
| 680 | else: |
| 681 | section.category = section.fileid |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 682 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 683 | # Determine the final memory locations of each kept section. |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 684 | genreloc = '_reloc_abs_start' in symbols['32flat'] |
Kevin O'Connor | b94170c | 2013-12-06 13:52:16 -0500 | [diff] [blame] | 685 | li = doLayout(sections, config, genreloc) |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 686 | |
Kevin O'Connor | a3c48f5 | 2013-02-05 22:36:13 -0500 | [diff] [blame] | 687 | # Exported symbols |
Kevin O'Connor | c228d70 | 2014-06-09 14:59:25 -0400 | [diff] [blame] | 688 | li.varlowsyms = [symbol for symbol in symbols['32flat'].values() |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 689 | if (symbol.section is not None |
| 690 | and symbol.section.finalloc is not None |
| 691 | and '.data.varlow.' in symbol.section.name |
| 692 | and symbol.name != symbol.section.name)] |
Kevin O'Connor | ee95253 | 2014-06-09 14:37:23 -0400 | [diff] [blame] | 693 | li.entrysym = entrysym |
Kevin O'Connor | a3c48f5 | 2013-02-05 22:36:13 -0500 | [diff] [blame] | 694 | |
Kevin O'Connor | 9ba1dea | 2010-05-01 09:50:13 -0400 | [diff] [blame] | 695 | # Write out linker script files. |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 696 | writeLinkerScripts(li, out16, out32seg, out32flat) |
Kevin O'Connor | c069394 | 2009-06-10 21:56:01 -0400 | [diff] [blame] | 697 | |
Kevin O'Connor | 202024a | 2009-01-17 10:41:28 -0500 | [diff] [blame] | 698 | if __name__ == '__main__': |
| 699 | main() |