52a53
> from Gic import *
64c65
< gic = Param.Gic(Parent.any, "Gic to use for interrupting")
---
> gic = Param.BaseGic(Parent.any, "Gic to use for interrupting")
75c76
< gic = Param.Gic(Parent.any, "Gic to use for interrupting")
---
> gic = Param.BaseGic(Parent.any, "Gic to use for interrupting")
90,100d90
< class Gic(PioDevice):
< type = 'Gic'
< cxx_header = "dev/arm/gic.hh"
< platform = Param.Platform(Parent.any, "Platform this device is part of.")
< dist_addr = Param.Addr(0x1f001000, "Address for distributor")
< cpu_addr = Param.Addr(0x1f000100, "Address for cpu")
< dist_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to distributor")
< cpu_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to cpu interface")
< int_latency = Param.Latency('10ns', "Delay for interrupt to get to CPU")
< it_lines = Param.UInt32(128, "Number of interrupt lines supported (max = 1020)")
<
110c100
< gic = Param.Gic(Parent.any, "Gic to use for interrupting")
---
> gic = Param.BaseGic(Parent.any, "Gic to use for interrupting")
118c108
< gic = Param.Gic(Parent.any, "Gic to use for interrupting")
---
> gic = Param.BaseGic(Parent.any, "Gic to use for interrupting")
128c118
< gic = Param.Gic(Parent.any, "Gic to use for interrupting")
---
> gic = Param.BaseGic(Parent.any, "Gic to use for interrupting")
177c167
< gic = Gic()
---
> gic = Pl390()
265c255
< gic = Gic(dist_addr=0x10041000, cpu_addr=0x10040000)
---
> gic = Pl390(dist_addr=0x10041000, cpu_addr=0x10040000)
341c331
< gic = Gic(dist_addr=0x2C001000, cpu_addr=0x2C002000)
---
> gic = Pl390(dist_addr=0x2C001000, cpu_addr=0x2C002000)