SConscript (10802:876341add7be) SConscript (10916:5c76426fd9ee)
1# -*- mode:python -*-
2
3# Copyright (c) 2009, 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

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

41
42if env['TARGET_ISA'] == 'arm':
43 SimObject('AbstractNVM.py')
44 SimObject('FlashDevice.py')
45 SimObject('Gic.py')
46 SimObject('RealView.py')
47 SimObject('UFSHostDevice.py')
48 SimObject('EnergyCtrl.py')
1# -*- mode:python -*-
2
3# Copyright (c) 2009, 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

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

41
42if env['TARGET_ISA'] == 'arm':
43 SimObject('AbstractNVM.py')
44 SimObject('FlashDevice.py')
45 SimObject('Gic.py')
46 SimObject('RealView.py')
47 SimObject('UFSHostDevice.py')
48 SimObject('EnergyCtrl.py')
49 SimObject('NoMali.py')
49
50 Source('a9scu.cc')
51 Source('amba_device.cc')
52 Source('amba_fake.cc')
53 Source('base_gic.cc')
54 Source('flash_device.cc')
55 Source('generic_timer.cc')
56 Source('gic_pl390.cc')
57 Source('gic_v2m.cc')
58 Source('pl011.cc')
59 Source('pl111.cc')
60 Source('hdlcd.cc')
61 Source('kmi.cc')
62 Source('timer_sp804.cc')
50
51 Source('a9scu.cc')
52 Source('amba_device.cc')
53 Source('amba_fake.cc')
54 Source('base_gic.cc')
55 Source('flash_device.cc')
56 Source('generic_timer.cc')
57 Source('gic_pl390.cc')
58 Source('gic_v2m.cc')
59 Source('pl011.cc')
60 Source('pl111.cc')
61 Source('hdlcd.cc')
62 Source('kmi.cc')
63 Source('timer_sp804.cc')
64 Source('gpu_nomali.cc')
63 Source('rv_ctrl.cc')
64 Source('realview.cc')
65 Source('rtc_pl031.cc')
66 Source('timer_cpulocal.cc')
67 Source('vgic.cc')
68 Source('ufs_device.cc')
69 Source('energy_ctrl.cc')
70
71 DebugFlag('AMBA')
72 DebugFlag('FlashDevice')
73 DebugFlag('HDLcd')
74 DebugFlag('PL111')
75 DebugFlag('GICV2M')
76 DebugFlag('Pl050')
77 DebugFlag('GIC')
78 DebugFlag('RVCTRL')
79 DebugFlag('EnergyCtrl')
80 DebugFlag('UFSHostDevice')
81 DebugFlag('VGIC')
65 Source('rv_ctrl.cc')
66 Source('realview.cc')
67 Source('rtc_pl031.cc')
68 Source('timer_cpulocal.cc')
69 Source('vgic.cc')
70 Source('ufs_device.cc')
71 Source('energy_ctrl.cc')
72
73 DebugFlag('AMBA')
74 DebugFlag('FlashDevice')
75 DebugFlag('HDLcd')
76 DebugFlag('PL111')
77 DebugFlag('GICV2M')
78 DebugFlag('Pl050')
79 DebugFlag('GIC')
80 DebugFlag('RVCTRL')
81 DebugFlag('EnergyCtrl')
82 DebugFlag('UFSHostDevice')
83 DebugFlag('VGIC')
84 DebugFlag('NoMali')