Gic.py (12974:b840a646cfbd) Gic.py (13013:b204ddd2b986)
1# Copyright (c) 2012-2013, 2017-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

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

67 type = 'ArmPPI'
68 cxx_header = "dev/arm/base_gic.hh"
69 cxx_class = "ArmPPIGen"
70
71class Pl390(BaseGic):
72 type = 'Pl390'
73 cxx_header = "dev/arm/gic_pl390.hh"
74
1# Copyright (c) 2012-2013, 2017-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

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

67 type = 'ArmPPI'
68 cxx_header = "dev/arm/base_gic.hh"
69 cxx_class = "ArmPPIGen"
70
71class Pl390(BaseGic):
72 type = 'Pl390'
73 cxx_header = "dev/arm/gic_pl390.hh"
74
75 dist_addr = Param.Addr(0x1f001000, "Address for distributor")
76 cpu_addr = Param.Addr(0x1f000100, "Address for cpu")
75 dist_addr = Param.Addr("Address for distributor")
76 cpu_addr = Param.Addr("Address for cpu")
77 cpu_size = Param.Addr(0x2000, "Size of cpu register bank")
77 dist_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to distributor")
78 cpu_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to cpu interface")
79 int_latency = Param.Latency('10ns', "Delay for interrupt to get to CPU")
80 it_lines = Param.UInt32(128, "Number of interrupt lines supported (max = 1020)")
81 gem5_extensions = Param.Bool(False, "Enable gem5 extensions")
82
83class Gicv2mFrame(SimObject):
84 type = 'Gicv2mFrame'

--- 12 unchanged lines hidden ---
78 dist_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to distributor")
79 cpu_pio_delay = Param.Latency('10ns', "Delay for PIO r/w to cpu interface")
80 int_latency = Param.Latency('10ns', "Delay for interrupt to get to CPU")
81 it_lines = Param.UInt32(128, "Number of interrupt lines supported (max = 1020)")
82 gem5_extensions = Param.Bool(False, "Enable gem5 extensions")
83
84class Gicv2mFrame(SimObject):
85 type = 'Gicv2mFrame'

--- 12 unchanged lines hidden ---