Deleted Added
sdiff udiff text old ( 11296:fe89fe1d1869 ) new ( 11297:d1f8610cdffd )
full compact
1# Copyright (c) 2009-2015 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

266 pixel_chunk = Param.Unsigned(32, "Number of pixels to handle in one batch")
267
268class RealView(Platform):
269 type = 'RealView'
270 cxx_header = "dev/arm/realview.hh"
271 system = Param.System(Parent.any, "system")
272 _mem_regions = [(Addr(0), Addr('256MB'))]
273
274 def attachPciDevices(self):
275 pass
276
277 def enableMSIX(self):
278 pass
279
280 def onChipIOClkDomain(self, clkdomain):
281 pass
282
283 def offChipIOClkDomain(self, clkdomain):
284 pass
285
286 def setupBootLoader(self, mem_bus, cur_sys, loc):
287 self.nvmem = SimpleMemory(range = AddrRange('2GB', size = '64MB'),
288 conf_table_reported = False)
289 self.nvmem.port = mem_bus.master
290 cur_sys.boot_loader = loc('boot.arm')
291 cur_sys.atags_addr = 0x100
292 cur_sys.load_addr_mask = 0xfffffff
293 cur_sys.load_offset = 0

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

711 self.nvmem = SimpleMemory(range = AddrRange(0, size = '64MB'))
712 self.nvmem.port = mem_bus.master
713 cur_sys.boot_loader = loc('boot_emm.arm64')
714 cur_sys.atags_addr = 0x8000000
715 cur_sys.load_addr_mask = 0xfffffff
716 cur_sys.load_offset = 0x80000000
717
718