Deleted Added
sdiff udiff text old ( 8512:a508c2d92d63 ) new ( 8524:1ddd1aa0e55b )
full compact
1# Copyright (c) 2009 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

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

70 int_num = Param.UInt32("Interrupt number that connects to GIC")
71 amba_id = Param.UInt32("ID of AMBA device for kernel detection")
72
73class A9SCU(BasicPioDevice):
74 type = 'A9SCU'
75
76class RealViewCtrl(BasicPioDevice):
77 type = 'RealViewCtrl'
78 proc_id = Param.UInt32(0x0C000000, "Processor ID, SYS_PROCID")
79 idreg = Param.UInt32(0x00000000, "ID Register, SYS_ID")
80
81class Gic(PioDevice):
82 type = 'Gic'
83 dist_addr = Param.Addr(0x1f001000, "Address for distributor")
84 cpu_addr = Param.Addr(0x1f000100, "Address for cpu")
85 dist_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to distributor")
86 cpu_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to cpu interface")

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

273 self.ssp_fake.pio = bus.port
274 self.sci_fake.pio = bus.port
275 self.aaci_fake.pio = bus.port
276 self.mmc_fake.pio = bus.port
277 self.rtc_fake.pio = bus.port
278 self.flash_fake.pio = bus.port
279 self.smcreg_fake.pio = bus.port
280