Deleted Added
sdiff udiff text old ( 10861:9141d87c7f71 ) new ( 10930:ddc3d96d6313 )
full compact
1#!/usr/bin/env python
2
3# Copyright (c) 2012-2013 ARM Limited
4# All rights reserved
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 600 unchanged lines hidden (view full) ---

609 import re
610 # Search for all ISA sections
611 if re.search('.*sys.*\.cpu.*\.isa$', sec):
612 miscRegs = cpt.get(sec, 'miscRegs').split()
613 # CONTEXTIDR_EL2 defaults to 0b11111100000000000001
614 miscRegs[599:599] = [0xFC001]
615 cpt.set(sec, 'miscRegs', ' '.join(str(x) for x in miscRegs))
616
617migrations = []
618migrations.append(from_0)
619migrations.append(from_1)
620migrations.append(from_2)
621migrations.append(from_3)
622migrations.append(from_4)
623migrations.append(from_5)
624migrations.append(from_6)
625migrations.append(from_7)
626migrations.append(from_8)
627migrations.append(from_9)
628migrations.append(from_A)
629migrations.append(from_B)
630migrations.append(from_C)
631migrations.append(from_D)
632
633verbose_print = False
634
635def verboseprint(*args):
636 if not verbose_print:
637 return
638 for arg in args:
639 print arg,
640 print

--- 94 unchanged lines hidden ---