blob: 0fbec25e29971fab23dc1f7f6fa27d9047918efd [file] [log] [blame]
Kevin O'Connor202024a2009-01-17 10:41:28 -05001#!/usr/bin/env python
Kevin O'Connor5b8f8092009-09-20 19:47:45 -04002# Script to analyze code and arrange ld sections.
Kevin O'Connor202024a2009-01-17 10:41:28 -05003#
Kevin O'Connorab482e02014-06-11 14:00:21 -04004# Copyright (C) 2008-2014 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connor202024a2009-01-17 10:41:28 -05005#
6# This file may be distributed under the terms of the GNU GPLv3 license.
7
Johannes Krampf0a82fc72014-01-12 11:39:57 -05008import operator
Kevin O'Connor202024a2009-01-17 10:41:28 -05009import sys
10
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040011# LD script headers/trailers
12COMMONHEADER = """
13/* DO NOT EDIT! This is an autogenerated file. See tools/layoutrom.py. */
14OUTPUT_FORMAT("elf32-i386")
15OUTPUT_ARCH("i386")
16SECTIONS
17{
18"""
19COMMONTRAILER = """
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040020
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'Connor90ebed42012-06-21 20:54:53 -040027 *(COMMON) *(.discard*) *(.eh_frame) *(.note*)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040028 }
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040029}
30"""
31
Kevin O'Connorc0693942009-06-10 21:56:01 -040032
33######################################################################
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040034# Determine section locations
Kevin O'Connorc0693942009-06-10 21:56:01 -040035######################################################################
36
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040037# Align 'pos' to 'alignbytes' offset
38def 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'Connor5b8f8092009-09-20 19:47:45 -040043# address.
Kevin O'Connor46b82622012-05-13 12:10:30 -040044def setSectionsStart(sections, endaddr, minalign=1, segoffset=0):
Kevin O'Connor5b8f8092009-09-20 19:47:45 -040045 totspace = 0
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040046 for section in sections:
47 if section.align > minalign:
48 minalign = section.align
49 totspace = alignpos(totspace, section.align) + section.size
Johannes Krampf9d7d0442014-01-12 11:19:22 -050050 startaddr = int((endaddr - totspace) / minalign) * minalign
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040051 curaddr = startaddr
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040052 for section in sections:
53 curaddr = alignpos(curaddr, section.align)
54 section.finalloc = curaddr
Kevin O'Connor46b82622012-05-13 12:10:30 -040055 section.finalsegloc = curaddr - segoffset
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040056 curaddr += section.size
Kevin O'Connor46b82622012-05-13 12:10:30 -040057 return startaddr, minalign
Kevin O'Connorc0693942009-06-10 21:56:01 -040058
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040059# The 16bit code can't exceed 64K of space.
60BUILD_BIOS_ADDR = 0xf0000
61BUILD_BIOS_SIZE = 0x10000
Kevin O'Connor46b82622012-05-13 12:10:30 -040062BUILD_ROM_START = 0xc0000
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -040063BUILD_LOWRAM_END = 0xa0000
Kevin O'Connor6d152642013-02-19 21:35:20 -050064# Space to reserve in f-segment for dynamic allocations
65BUILD_MIN_BIOSTABLE = 2048
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040066
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.
70def fitSections(sections, fillsections):
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040071 # fixedsections = [(addr, section), ...]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040072 fixedsections = []
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040073 for section in sections:
74 if section.name.startswith('.fixedaddr.'):
75 addr = int(section.name[11:], 16)
Kevin O'Connor46b82622012-05-13 12:10:30 -040076 section.finalloc = addr + BUILD_BIOS_ADDR
77 section.finalsegloc = addr
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040078 fixedsections.append((addr, section))
79 if section.align != 1:
Johannes Krampf064fd062014-01-12 11:14:54 -050080 print("Error: Fixed section %s has non-zero alignment (%d)" % (
81 section.name, section.align))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040082 sys.exit(1)
Johannes Krampf0a82fc72014-01-12 11:39:57 -050083 fixedsections.sort(key=operator.itemgetter(0))
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040084 firstfixed = fixedsections[0][0]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040085
86 # Find freespace in fixed address area
Kevin O'Connor1a4885e2010-09-15 21:28:31 -040087 # fixedAddr = [(freespace, section), ...]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040088 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'Connor1a4885e2010-09-15 21:28:31 -040096 avail = nextaddr - addr - section.size
97 fixedAddr.append((avail, section))
Johannes Krampf0a82fc72014-01-12 11:39:57 -050098 fixedAddr.sort(key=operator.itemgetter(0))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -040099
100 # Attempt to fit other sections into fixed area
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400101 canrelocate = [(section.size, section.align, section.name, section)
102 for section in fillsections]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400103 canrelocate.sort()
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400104 canrelocate = [section for size, align, name, section in canrelocate]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400105 totalused = 0
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400106 for freespace, fixedsection in fixedAddr:
Kevin O'Connor46b82622012-05-13 12:10:30 -0400107 addpos = fixedsection.finalsegloc + fixedsection.size
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400108 totalused += fixedsection.size
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400109 nextfixedaddr = addpos + freespace
Johannes Krampf064fd062014-01-12 11:14:54 -0500110# print("Filling section %x uses %d, next=%x, available=%d" % (
111# fixedsection.finalloc, fixedsection.size, nextfixedaddr, freespace))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400112 while 1:
113 canfit = None
114 for fitsection in canrelocate:
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400115 if addpos + fitsection.size > nextfixedaddr:
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400116 # Can't fit and nothing else will fit.
117 break
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400118 fitnextaddr = alignpos(addpos, fitsection.align) + fitsection.size
Johannes Krampf064fd062014-01-12 11:14:54 -0500119# print("Test %s - %x vs %x" % (
120# fitsection.name, fitnextaddr, nextfixedaddr))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400121 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'Connor46b82622012-05-13 12:10:30 -0400130 fitsection.finalloc = addpos + BUILD_BIOS_ADDR
131 fitsection.finalsegloc = addpos
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400132 addpos = fitnextaddr
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400133 totalused += fitsection.size
Johannes Krampf064fd062014-01-12 11:14:54 -0500134# print(" Adding %s (size %d align %d) pos=%x avail=%d" % (
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400135# fitsection[2], fitsection[0], fitsection[1]
Johannes Krampf064fd062014-01-12 11:14:54 -0500136# , fitnextaddr, nextfixedaddr - fitnextaddr))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400137
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'Connor46b82622012-05-13 12:10:30 -0400146 return firstfixed + BUILD_BIOS_ADDR
147
148# Return the subset of sections with a given category
149def getSectionsCategory(sections, category):
150 return [section for section in sections if section.category == category]
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400151
Kevin O'Connor8216a472014-06-10 17:59:53 -0400152# Return the subset of sections with a given fileid
153def getSectionsFileid(sections, fileid):
154 return [section for section in sections if section.fileid == fileid]
155
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400156# Return the subset of sections with a given name prefix
Kevin O'Connor46b82622012-05-13 12:10:30 -0400157def getSectionsPrefix(sections, prefix):
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400158 return [section for section in sections
Kevin O'Connor46b82622012-05-13 12:10:30 -0400159 if section.name.startswith(prefix)]
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400160
Kevin O'Connor46b82622012-05-13 12:10:30 -0400161# The sections (and associated information) to be placed in output rom
162class LayoutInfo:
Kevin O'Connor8216a472014-06-10 17:59:53 -0400163 sections = None
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500164 genreloc = None
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400165 sec32init_start = sec32init_end = sec32init_align = None
166 sec32low_start = sec32low_end = None
167 zonelow_base = final_sec32low_start = None
Kevin O'Connor6d152642013-02-19 21:35:20 -0500168 zonefseg_start = zonefseg_end = None
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500169 final_readonly_start = None
Kevin O'Connoree952532014-06-09 14:37:23 -0400170 varlowsyms = entrysym = None
Kevin O'Connor46b82622012-05-13 12:10:30 -0400171
172# Determine final memory addresses for sections
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500173def doLayout(sections, config, genreloc):
Kevin O'Connor46b82622012-05-13 12:10:30 -0400174 li = LayoutInfo()
Kevin O'Connor8216a472014-06-10 17:59:53 -0400175 li.sections = sections
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500176 li.genreloc = genreloc
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400177 # Determine 16bit positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400178 sections16 = getSectionsCategory(sections, '16')
179 textsections = getSectionsPrefix(sections16, '.text.')
180 rodatasections = getSectionsPrefix(sections16, '.rodata')
181 datasections = getSectionsPrefix(sections16, '.data16.')
Kevin O'Connorab482e02014-06-11 14:00:21 -0400182 fixedsections = getSectionsCategory(sections, 'fixed')
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400183
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400184 firstfixed = fitSections(fixedsections, textsections)
185 remsections = [s for s in textsections+rodatasections+datasections
186 if s.finalloc is None]
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400187 sec16_start, sec16_align = setSectionsStart(
Kevin O'Connor46b82622012-05-13 12:10:30 -0400188 remsections, firstfixed, segoffset=BUILD_BIOS_ADDR)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400189
190 # Determine 32seg positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400191 sections32seg = getSectionsCategory(sections, '32seg')
192 textsections = getSectionsPrefix(sections32seg, '.text.')
193 rodatasections = getSectionsPrefix(sections32seg, '.rodata')
194 datasections = getSectionsPrefix(sections32seg, '.data32seg.')
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400195
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400196 sec32seg_start, sec32seg_align = setSectionsStart(
197 textsections + rodatasections + datasections, sec16_start
Kevin O'Connor46b82622012-05-13 12:10:30 -0400198 , segoffset=BUILD_BIOS_ADDR)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400199
Kevin O'Connor41953492013-02-18 23:09:01 -0500200 # Determine "fseg memory" data positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400201 sections32fseg = getSectionsCategory(sections, '32fseg')
Kevin O'Connor41953492013-02-18 23:09:01 -0500202
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400203 sec32fseg_start, sec32fseg_align = setSectionsStart(
204 sections32fseg, sec32seg_start, 16
Kevin O'Connor41953492013-02-18 23:09:01 -0500205 , segoffset=BUILD_BIOS_ADDR)
206
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400207 # Determine 32flat runtime positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400208 sections32flat = getSectionsCategory(sections, '32flat')
209 textsections = getSectionsPrefix(sections32flat, '.text.')
210 rodatasections = getSectionsPrefix(sections32flat, '.rodata')
211 datasections = getSectionsPrefix(sections32flat, '.data.')
212 bsssections = getSectionsPrefix(sections32flat, '.bss.')
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400213
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400214 sec32flat_start, sec32flat_align = setSectionsStart(
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400215 textsections + rodatasections + datasections + bsssections
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400216 , sec32fseg_start, 16)
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500217
218 # Determine 32flat init positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400219 sections32init = getSectionsCategory(sections, '32init')
220 init32_textsections = getSectionsPrefix(sections32init, '.text.')
221 init32_rodatasections = getSectionsPrefix(sections32init, '.rodata')
222 init32_datasections = getSectionsPrefix(sections32init, '.data.')
223 init32_bsssections = getSectionsPrefix(sections32init, '.bss.')
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500224
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400225 sec32init_start, sec32init_align = setSectionsStart(
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500226 init32_textsections + init32_rodatasections
227 + init32_datasections + init32_bsssections
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400228 , sec32flat_start, 16)
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500229
230 # Determine location of ZoneFSeg memory.
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400231 zonefseg_end = sec32flat_start
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500232 if not genreloc:
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400233 zonefseg_end = sec32init_start
234 zonefseg_start = BUILD_BIOS_ADDR
235 if zonefseg_start + BUILD_MIN_BIOSTABLE > zonefseg_end:
Kevin O'Connor6d152642013-02-19 21:35:20 -0500236 # Not enough ZoneFSeg space - force a minimum space.
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400237 zonefseg_end = sec32fseg_start
238 zonefseg_start = zonefseg_end - BUILD_MIN_BIOSTABLE
239 sec32flat_start, sec32flat_align = setSectionsStart(
Kevin O'Connor6d152642013-02-19 21:35:20 -0500240 textsections + rodatasections + datasections + bsssections
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400241 , zonefseg_start, 16)
242 sec32init_start, sec32init_align = setSectionsStart(
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500243 init32_textsections + init32_rodatasections
244 + init32_datasections + init32_bsssections
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400245 , sec32flat_start, 16)
246 li.sec32init_start = sec32init_start
247 li.sec32init_end = sec32flat_start
248 li.sec32init_align = sec32init_align
249 final_readonly_start = min(BUILD_BIOS_ADDR, sec32flat_start)
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500250 if not genreloc:
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400251 final_readonly_start = min(BUILD_BIOS_ADDR, sec32init_start)
252 li.zonefseg_start = zonefseg_start
253 li.zonefseg_end = zonefseg_end
254 li.final_readonly_start = final_readonly_start
Kevin O'Connor46b82622012-05-13 12:10:30 -0400255
256 # Determine "low memory" data positions
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400257 sections32low = getSectionsCategory(sections, '32low')
258 sec32low_end = sec32init_start
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400259 if config.get('CONFIG_MALLOC_UPPERMEMORY'):
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400260 final_sec32low_end = final_readonly_start
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400261 zonelow_base = final_sec32low_end - 64*1024
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400262 zonelow_base = max(BUILD_ROM_START, alignpos(zonelow_base, 2*1024))
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400263 else:
264 final_sec32low_end = BUILD_LOWRAM_END
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400265 zonelow_base = final_sec32low_end - 64*1024
Kevin O'Connor3be89a12013-02-23 16:07:00 -0500266 relocdelta = final_sec32low_end - sec32low_end
Kevin O'Connor46b82622012-05-13 12:10:30 -0400267 li.sec32low_start, li.sec32low_align = setSectionsStart(
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400268 sections32low, sec32low_end, 16
269 , segoffset=zonelow_base - relocdelta)
270 li.sec32low_end = sec32low_end
271 li.zonelow_base = zonelow_base
Kevin O'Connorc91da7a2012-06-08 21:14:19 -0400272 li.final_sec32low_start = li.sec32low_start + relocdelta
Kevin O'Connord1b4f962010-09-15 21:38:16 -0400273
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400274 # Print statistics
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400275 size16 = BUILD_BIOS_ADDR + BUILD_BIOS_SIZE - sec16_start
276 size32seg = sec16_start - sec32seg_start
277 size32fseg = sec32seg_start - sec32fseg_start
278 size32flat = sec32fseg_start - sec32flat_start
279 size32init = sec32flat_start - sec32init_start
280 sizelow = li.sec32low_end - li.sec32low_start
Johannes Krampf064fd062014-01-12 11:14:54 -0500281 print("16bit size: %d" % size16)
282 print("32bit segmented size: %d" % size32seg)
283 print("32bit flat size: %d" % size32flat)
284 print("32bit flat init size: %d" % size32init)
285 print("Lowmem size: %d" % sizelow)
286 print("f-segment var size: %d" % size32fseg)
Kevin O'Connor46b82622012-05-13 12:10:30 -0400287 return li
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400288
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400289
290######################################################################
291# Linker script output
292######################################################################
293
294# Write LD script includes for the given cross references
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500295def outXRefs(sections, useseg=0, exportsyms=[], forcedelta=0):
Kevin O'Connora3c48f52013-02-05 22:36:13 -0500296 xrefs = dict([(symbol.name, symbol) for symbol in exportsyms])
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400297 out = ""
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400298 for section in sections:
299 for reloc in section.relocs:
300 symbol = reloc.symbol
Kevin O'Connora3c48f52013-02-05 22:36:13 -0500301 if (symbol.section is not None
302 and (symbol.section.fileid != section.fileid
303 or symbol.name != reloc.symbolname)):
304 xrefs[reloc.symbolname] = symbol
305 for symbolname, symbol in xrefs.items():
306 loc = symbol.section.finalloc
307 if useseg:
308 loc = symbol.section.finalsegloc
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500309 out += "%s = 0x%x ;\n" % (symbolname, loc + forcedelta + symbol.offset)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400310 return out
311
Kevin O'Connore5749972014-06-07 15:55:00 -0400312# Write LD script includes for the given sections
313def outSections(sections, useseg=0):
314 out = ""
315 for section in sections:
316 loc = section.finalloc
317 if useseg:
318 loc = section.finalsegloc
319 out += "%s 0x%x : { *(%s) }\n" % (section.name, loc, section.name)
320 return out
321
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400322# Write LD script includes for the given sections using relative offsets
Kevin O'Connor46b82622012-05-13 12:10:30 -0400323def outRelSections(sections, startsym, useseg=0):
324 sections = [(section.finalloc, section) for section in sections
325 if section.finalloc is not None]
Johannes Krampf0a82fc72014-01-12 11:39:57 -0500326 sections.sort(key=operator.itemgetter(0))
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400327 out = ""
Kevin O'Connor46b82622012-05-13 12:10:30 -0400328 for addr, section in sections:
329 loc = section.finalloc
330 if useseg:
331 loc = section.finalsegloc
332 out += ". = ( 0x%x - %s ) ;\n" % (loc, startsym)
Kevin O'Connore5749972014-06-07 15:55:00 -0400333 if section.name in ('.rodata.str1.1', '.rodata'):
334 out += "_rodata%s = . ;\n" % (section.fileid,)
335 out += "*%s.*(%s)\n" % (section.fileid, section.name)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400336 return out
337
Kevin O'Connor46b82622012-05-13 12:10:30 -0400338# Build linker script output for a list of relocations.
339def strRelocs(outname, outrel, relocs):
340 relocs.sort()
341 return (" %s_start = ABSOLUTE(.) ;\n" % (outname,)
342 + "".join(["LONG(0x%x - %s)\n" % (pos, outrel)
343 for pos in relocs])
344 + " %s_end = ABSOLUTE(.) ;\n" % (outname,))
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500345
Kevin O'Connorb40016f2014-06-11 14:40:45 -0400346# Find relocations to the given sections
347def getRelocs(sections, tosection, type=None):
348 return [section.finalloc + reloc.offset
349 for section in sections
350 for reloc in section.relocs
351 if (reloc.symbol.section in tosection
352 and (type is None or reloc.type == type))]
Kevin O'Connor46b82622012-05-13 12:10:30 -0400353
Kevin O'Connor46b82622012-05-13 12:10:30 -0400354# Output the linker scripts for all required sections.
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500355def writeLinkerScripts(li, out16, out32seg, out32flat):
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400356 # Write 16bit linker script
Kevin O'Connor8216a472014-06-10 17:59:53 -0400357 filesections16 = getSectionsFileid(li.sections, '16')
358 out = outXRefs(filesections16, useseg=1) + """
Kevin O'Connorc9243442013-02-17 13:58:28 -0500359 zonelow_base = 0x%x ;
360 _zonelow_seg = 0x%x ;
Kevin O'Connor46b82622012-05-13 12:10:30 -0400361
Kevin O'Connor46b82622012-05-13 12:10:30 -0400362%s
Kevin O'Connorc9243442013-02-17 13:58:28 -0500363""" % (li.zonelow_base,
Johannes Krampf9d7d0442014-01-12 11:19:22 -0500364 int(li.zonelow_base / 16),
Kevin O'Connor8216a472014-06-10 17:59:53 -0400365 outSections(filesections16, useseg=1))
Johannes Krampf19f789b2014-01-19 16:03:49 +0100366 outfile = open(out16, 'w')
Kevin O'Connor46b82622012-05-13 12:10:30 -0400367 outfile.write(COMMONHEADER + out + COMMONTRAILER)
368 outfile.close()
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500369
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400370 # Write 32seg linker script
Kevin O'Connor8216a472014-06-10 17:59:53 -0400371 filesections32seg = getSectionsFileid(li.sections, '32seg')
372 out = (outXRefs(filesections32seg, useseg=1)
373 + outSections(filesections32seg, useseg=1))
Johannes Krampf19f789b2014-01-19 16:03:49 +0100374 outfile = open(out32seg, 'w')
Kevin O'Connor46b82622012-05-13 12:10:30 -0400375 outfile.write(COMMONHEADER + out + COMMONTRAILER)
376 outfile.close()
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500377
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400378 # Write 32flat linker script
Kevin O'Connor46b82622012-05-13 12:10:30 -0400379 sec32all_start = li.sec32low_start
Kevin O'Connor402fd9c2010-09-15 00:26:19 -0400380 relocstr = ""
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500381 if li.genreloc:
Kevin O'Connor402fd9c2010-09-15 00:26:19 -0400382 # Generate relocations
Kevin O'Connor8216a472014-06-10 17:59:53 -0400383 initsections = dict([
384 (s, 1) for s in getSectionsCategory(li.sections, '32init')])
385 noninitsections = dict([(s, 1) for s in li.sections
386 if s not in initsections])
Kevin O'Connorb40016f2014-06-11 14:40:45 -0400387 absrelocs = getRelocs(initsections, initsections, type='R_386_32')
388 relrelocs = getRelocs(initsections, noninitsections, type='R_386_PC32')
389 initrelocs = getRelocs(noninitsections, initsections)
Kevin O'Connor46b82622012-05-13 12:10:30 -0400390 relocstr = (strRelocs("_reloc_abs", "code32init_start", absrelocs)
391 + strRelocs("_reloc_rel", "code32init_start", relrelocs)
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500392 + strRelocs("_reloc_init", "code32flat_start", initrelocs))
393 numrelocs = len(absrelocs + relrelocs + initrelocs)
Kevin O'Connor46b82622012-05-13 12:10:30 -0400394 sec32all_start -= numrelocs * 4
Kevin O'Connor8216a472014-06-10 17:59:53 -0400395 filesections32flat = getSectionsFileid(li.sections, '32flat')
396 out = outXRefs([], exportsyms=li.varlowsyms
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500397 , forcedelta=li.final_sec32low_start-li.sec32low_start)
Kevin O'Connor8216a472014-06-10 17:59:53 -0400398 out += outXRefs(filesections32flat, exportsyms=[li.entrysym]) + """
Kevin O'Connor402fd9c2010-09-15 00:26:19 -0400399 _reloc_min_align = 0x%x ;
Kevin O'Connor6d152642013-02-19 21:35:20 -0500400 zonefseg_start = 0x%x ;
401 zonefseg_end = 0x%x ;
Kevin O'Connorc9243442013-02-17 13:58:28 -0500402 zonelow_base = 0x%x ;
403 final_varlow_start = 0x%x ;
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500404 final_readonly_start = 0x%x ;
Kevin O'Connor8216a472014-06-10 17:59:53 -0400405 varlow_start = 0x%x ;
406 varlow_end = 0x%x ;
407 code32init_start = 0x%x ;
408 code32init_end = 0x%x ;
Kevin O'Connor46b82622012-05-13 12:10:30 -0400409
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400410 code32flat_start = 0x%x ;
411 .text code32flat_start : {
Kevin O'Connor46b82622012-05-13 12:10:30 -0400412%s
Kevin O'Connor46b82622012-05-13 12:10:30 -0400413%s
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400414 code32flat_end = ABSOLUTE(.) ;
415 } :text
Kevin O'Connora3c48f52013-02-05 22:36:13 -0500416""" % (li.sec32init_align,
Kevin O'Connor6d152642013-02-19 21:35:20 -0500417 li.zonefseg_start,
418 li.zonefseg_end,
Kevin O'Connorc9243442013-02-17 13:58:28 -0500419 li.zonelow_base,
Kevin O'Connorc91da7a2012-06-08 21:14:19 -0400420 li.final_sec32low_start,
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500421 li.final_readonly_start,
Kevin O'Connor8216a472014-06-10 17:59:53 -0400422 li.sec32low_start,
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400423 li.sec32low_end,
Kevin O'Connor8216a472014-06-10 17:59:53 -0400424 li.sec32init_start,
Kevin O'Connor38729bc2014-06-11 13:39:02 -0400425 li.sec32init_end,
Kevin O'Connor46b82622012-05-13 12:10:30 -0400426 sec32all_start,
427 relocstr,
Kevin O'Connor8216a472014-06-10 17:59:53 -0400428 outRelSections(li.sections, 'code32flat_start'))
Kevin O'Connor46b82622012-05-13 12:10:30 -0400429 out = COMMONHEADER + out + COMMONTRAILER + """
Kevin O'Connoree952532014-06-09 14:37:23 -0400430ENTRY(%s)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400431PHDRS
432{
433 text PT_LOAD AT ( code32flat_start ) ;
434}
Kevin O'Connoree952532014-06-09 14:37:23 -0400435""" % (li.entrysym.name,)
Johannes Krampf19f789b2014-01-19 16:03:49 +0100436 outfile = open(out32flat, 'w')
Kevin O'Connor46b82622012-05-13 12:10:30 -0400437 outfile.write(out)
438 outfile.close()
Kevin O'Connorc0693942009-06-10 21:56:01 -0400439
440
441######################################################################
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400442# Detection of unused sections and init sections
Kevin O'Connord1b4f962010-09-15 21:38:16 -0400443######################################################################
444
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400445# Visit all sections reachable from a given set of start sections
446def findReachable(anchorsections, checkreloc, data):
447 anchorsections = dict([(section, []) for section in anchorsections])
448 pending = list(anchorsections)
449 while pending:
450 section = pending.pop()
451 for reloc in section.relocs:
452 chain = anchorsections[section] + [section.name]
453 if not checkreloc(reloc, section, data, chain):
454 continue
455 nextsection = reloc.symbol.section
456 if nextsection not in anchorsections:
457 anchorsections[nextsection] = chain
458 pending.append(nextsection)
459 return anchorsections
460
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400461# Find "runtime" sections (ie, not init only sections).
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400462def checkRuntime(reloc, rsection, data, chain):
463 section = reloc.symbol.section
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400464 if section is None or '.init.' in section.name:
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400465 return 0
Kevin O'Connor2af52da2013-03-08 19:36:28 -0500466 if '.data.varinit.' in section.name:
Johannes Krampf064fd062014-01-12 11:14:54 -0500467 print("ERROR: %s is VARVERIFY32INIT but used from %s" % (
468 section.name, chain))
Kevin O'Connor2af52da2013-03-08 19:36:28 -0500469 sys.exit(1)
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400470 return 1
Kevin O'Connord1b4f962010-09-15 21:38:16 -0400471
Kevin O'Connorfdca4182010-01-01 12:46:54 -0500472# Find and keep the section associated with a symbol (if available).
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400473def checkKeepSym(reloc, syms, fileid, isxref):
Kevin O'Connorf3fe3aa2010-12-05 12:38:33 -0500474 symbolname = reloc.symbolname
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400475 mustbecfunc = symbolname.startswith('_cfunc')
476 if mustbecfunc:
477 symprefix = '_cfunc' + fileid + '_'
478 if not symbolname.startswith(symprefix):
479 return 0
480 symbolname = symbolname[len(symprefix):]
481 symbol = syms.get(symbolname)
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400482 if (symbol is None or symbol.section is None
483 or symbol.section.name.startswith('.discard.')):
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400484 return 0
Kevin O'Connorf3fe3aa2010-12-05 12:38:33 -0500485 isdestcfunc = (symbol.section.name.startswith('.text.')
486 and not symbol.section.name.startswith('.text.asm.'))
487 if ((mustbecfunc and not isdestcfunc)
488 or (not mustbecfunc and isdestcfunc and isxref)):
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400489 return 0
Kevin O'Connorf3fe3aa2010-12-05 12:38:33 -0500490
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400491 reloc.symbol = symbol
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400492 return 1
Kevin O'Connorfdca4182010-01-01 12:46:54 -0500493
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400494# Resolve a relocation and check if it should be kept in the final binary.
Kevin O'Connorc228d702014-06-09 14:59:25 -0400495def checkKeep(reloc, section, symbols, chain):
496 ret = checkKeepSym(reloc, symbols[section.fileid], section.fileid, 0)
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400497 if ret:
498 return ret
499 # Not in primary sections - it may be a cross 16/32 reference
500 for fileid in ('16', '32seg', '32flat'):
501 if fileid != section.fileid:
Kevin O'Connorc228d702014-06-09 14:59:25 -0400502 ret = checkKeepSym(reloc, symbols[fileid], fileid, 1)
Kevin O'Connorcc132ab2014-06-09 12:48:13 -0400503 if ret:
504 return ret
505 return 0
Kevin O'Connorc0693942009-06-10 21:56:01 -0400506
Kevin O'Connorc0693942009-06-10 21:56:01 -0400507
508######################################################################
509# Startup and input parsing
510######################################################################
511
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400512class Section:
513 name = size = alignment = fileid = relocs = None
Kevin O'Connorc228d702014-06-09 14:59:25 -0400514 finalloc = finalsegloc = category = None
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400515class Reloc:
Kevin O'Connorf3fe3aa2010-12-05 12:38:33 -0500516 offset = type = symbolname = symbol = None
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400517class Symbol:
518 name = offset = section = None
519
Kevin O'Connorc0693942009-06-10 21:56:01 -0400520# Read in output from objdump
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400521def parseObjDump(file, fileid):
522 # sections = [section, ...]
Kevin O'Connorc0693942009-06-10 21:56:01 -0400523 sections = []
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400524 sectionmap = {}
525 # symbols[symbolname] = symbol
Kevin O'Connorc0693942009-06-10 21:56:01 -0400526 symbols = {}
Kevin O'Connorc0693942009-06-10 21:56:01 -0400527
528 state = None
529 for line in file.readlines():
530 line = line.rstrip()
531 if line == 'Sections:':
532 state = 'section'
533 continue
534 if line == 'SYMBOL TABLE:':
535 state = 'symbol'
536 continue
Kevin O'Connor6c2e7812010-09-13 18:04:02 -0400537 if line.startswith('RELOCATION RECORDS FOR ['):
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400538 sectionname = line[24:-2]
539 if sectionname.startswith('.debug_'):
540 # Skip debugging sections (to reduce parsing time)
541 state = None
542 continue
Kevin O'Connorc0693942009-06-10 21:56:01 -0400543 state = 'reloc'
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400544 relocsection = sectionmap[sectionname]
Kevin O'Connorc0693942009-06-10 21:56:01 -0400545 continue
546
547 if state == 'section':
548 try:
549 idx, name, size, vma, lma, fileoff, align = line.split()
550 if align[:3] != '2**':
551 continue
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400552 section = Section()
553 section.name = name
554 section.size = int(size, 16)
555 section.align = 2**int(align[3:])
556 section.fileid = fileid
557 section.relocs = []
558 sections.append(section)
559 sectionmap[name] = section
560 except ValueError:
Kevin O'Connorc0693942009-06-10 21:56:01 -0400561 pass
562 continue
563 if state == 'symbol':
564 try:
Kevin O'Connor90ebed42012-06-21 20:54:53 -0400565 parts = line[17:].split()
566 if len(parts) == 3:
567 sectionname, size, name = parts
568 elif len(parts) == 4 and parts[2] == '.hidden':
569 sectionname, size, hidden, name = parts
570 else:
571 continue
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400572 symbol = Symbol()
573 symbol.size = int(size, 16)
574 symbol.offset = int(line[:8], 16)
575 symbol.name = name
576 symbol.section = sectionmap.get(sectionname)
577 symbols[name] = symbol
578 except ValueError:
Kevin O'Connorc0693942009-06-10 21:56:01 -0400579 pass
580 continue
581 if state == 'reloc':
582 try:
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400583 off, type, symbolname = line.split()
584 reloc = Reloc()
585 reloc.offset = int(off, 16)
586 reloc.type = type
Kevin O'Connorf3fe3aa2010-12-05 12:38:33 -0500587 reloc.symbolname = symbolname
Kevin O'Connor67863be2010-12-24 10:23:10 -0500588 reloc.symbol = symbols.get(symbolname)
589 if reloc.symbol is None:
590 # Some binutils (2.20.1) give section name instead
591 # of a symbol - create a dummy symbol.
592 reloc.symbol = symbol = Symbol()
593 symbol.size = 0
594 symbol.offset = 0
595 symbol.name = symbolname
596 symbol.section = sectionmap.get(symbolname)
597 symbols[symbolname] = symbol
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400598 relocsection.relocs.append(reloc)
599 except ValueError:
Kevin O'Connorc0693942009-06-10 21:56:01 -0400600 pass
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400601 return sections, symbols
Kevin O'Connorc0693942009-06-10 21:56:01 -0400602
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400603# Parser for constants in simple C header files.
604def scanconfig(file):
Johannes Krampf19f789b2014-01-19 16:03:49 +0100605 f = open(file, 'r')
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400606 opts = {}
607 for l in f.readlines():
608 parts = l.split()
609 if len(parts) != 3:
610 continue
611 if parts[0] != '#define':
612 continue
613 value = parts[2]
614 if value.isdigit() or (value.startswith('0x') and value[2:].isdigit()):
615 value = int(value, 0)
616 opts[parts[1]] = value
617 return opts
618
Kevin O'Connorc0693942009-06-10 21:56:01 -0400619def main():
620 # Get output name
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400621 in16, in32seg, in32flat, cfgfile, out16, out32seg, out32flat = sys.argv[1:]
Kevin O'Connorc0693942009-06-10 21:56:01 -0400622
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400623 # Read in the objdump information
Johannes Krampf19f789b2014-01-19 16:03:49 +0100624 infile16 = open(in16, 'r')
625 infile32seg = open(in32seg, 'r')
626 infile32flat = open(in32flat, 'r')
Kevin O'Connorc0693942009-06-10 21:56:01 -0400627
Kevin O'Connor1a4885e2010-09-15 21:28:31 -0400628 # infoX = (sections, symbols)
629 info16 = parseObjDump(infile16, '16')
630 info32seg = parseObjDump(infile32seg, '32seg')
631 info32flat = parseObjDump(infile32flat, '32flat')
Kevin O'Connorc0693942009-06-10 21:56:01 -0400632
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400633 # Read kconfig config file
634 config = scanconfig(cfgfile)
635
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400636 # Figure out which sections to keep.
Kevin O'Connorc228d702014-06-09 14:59:25 -0400637 allsections = info16[0] + info32seg[0] + info32flat[0]
638 symbols = {'16': info16[1], '32seg': info32seg[1], '32flat': info32flat[1]}
Kevin O'Connoree952532014-06-09 14:37:23 -0400639 if config.get('CONFIG_COREBOOT'):
640 entrysym = symbols['16'].get('entry_elf')
641 elif config.get('CONFIG_CSM'):
642 entrysym = symbols['16'].get('entry_csm')
643 else:
644 entrysym = symbols['16'].get('reset_vector')
645 anchorsections = [entrysym.section] + [
Kevin O'Connorab482e02014-06-11 14:00:21 -0400646 section for section in allsections
Kevin O'Connoree952532014-06-09 14:37:23 -0400647 if section.name.startswith('.fixedaddr.')]
Kevin O'Connorc228d702014-06-09 14:59:25 -0400648 keepsections = findReachable(anchorsections, checkKeep, symbols)
649 sections = [section for section in allsections if section in keepsections]
Kevin O'Connorc0693942009-06-10 21:56:01 -0400650
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400651 # Separate 32bit flat into runtime, init, and special variable parts
652 anchorsections = [
653 section for section in sections
654 if ('.data.varlow.' in section.name or '.data.varfseg.' in section.name
Kevin O'Connorab482e02014-06-11 14:00:21 -0400655 or '.fixedaddr.' in section.name or '.runtime.' in section.name)]
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400656 runtimesections = findReachable(anchorsections, checkRuntime, None)
657 for section in sections:
658 if section.name.startswith('.data.varlow.'):
659 section.category = '32low'
660 elif section.name.startswith('.data.varfseg.'):
661 section.category = '32fseg'
Kevin O'Connorab482e02014-06-11 14:00:21 -0400662 elif section.name.startswith('.fixedaddr.'):
663 section.category = 'fixed'
Kevin O'Connorbf70fbf2014-06-10 00:00:20 -0400664 elif section.fileid == '32flat' and section not in runtimesections:
665 section.category = '32init'
666 else:
667 section.category = section.fileid
Kevin O'Connor46b82622012-05-13 12:10:30 -0400668
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400669 # Determine the final memory locations of each kept section.
Kevin O'Connorc228d702014-06-09 14:59:25 -0400670 genreloc = '_reloc_abs_start' in symbols['32flat']
Kevin O'Connorb94170c2013-12-06 13:52:16 -0500671 li = doLayout(sections, config, genreloc)
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400672
Kevin O'Connora3c48f52013-02-05 22:36:13 -0500673 # Exported symbols
Kevin O'Connorc228d702014-06-09 14:59:25 -0400674 li.varlowsyms = [symbol for symbol in symbols['32flat'].values()
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500675 if (symbol.section is not None
676 and symbol.section.finalloc is not None
677 and '.data.varlow.' in symbol.section.name
678 and symbol.name != symbol.section.name)]
Kevin O'Connoree952532014-06-09 14:37:23 -0400679 li.entrysym = entrysym
Kevin O'Connora3c48f52013-02-05 22:36:13 -0500680
Kevin O'Connor9ba1dea2010-05-01 09:50:13 -0400681 # Write out linker script files.
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500682 writeLinkerScripts(li, out16, out32seg, out32flat)
Kevin O'Connorc0693942009-06-10 21:56:01 -0400683
Kevin O'Connor202024a2009-01-17 10:41:28 -0500684if __name__ == '__main__':
685 main()