Deleted Added
sdiff udiff text old ( 13167:258a04d4c20b ) new ( 13504:5a01198080fa )
full compact
1# Copyright (c) 2009-2018 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

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

319 if isinstance(obj, SimObject):
320 node.append(obj.generateDeviceTree(state))
321
322 io_phandle = state.phandle(self.osc_cpu.parent.unproxy(self))
323 node.append(FdtPropertyWords("arm,vexpress,config-bridge", io_phandle))
324
325 yield node
326
327class AmbaFake(AmbaPioDevice):
328 type = 'AmbaFake'
329 cxx_header = "dev/arm/amba_fake.hh"
330 ignore_access = Param.Bool(False, "Ignore reads/writes to this device, (e.g. IsaFake + AMBA)")
331 amba_id = 0;
332
333class Pl011(Uart):
334 type = 'Pl011'

--- 737 unchanged lines hidden ---