Gic.py (13013:b204ddd2b986) Gic.py (13014:a4f71c3dc602)
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

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

63 cxx_header = "dev/arm/base_gic.hh"
64 cxx_class = "ArmSPIGen"
65
66class ArmPPI(ArmInterruptPin):
67 type = 'ArmPPI'
68 cxx_header = "dev/arm/base_gic.hh"
69 cxx_class = "ArmPPIGen"
70
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

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

63 cxx_header = "dev/arm/base_gic.hh"
64 cxx_class = "ArmSPIGen"
65
66class ArmPPI(ArmInterruptPin):
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"
71class GicV2(BaseGic):
72 type = 'GicV2'
73 cxx_header = "dev/arm/gic_v2.hh"
74
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")
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)")

--- 16 unchanged lines hidden ---
74
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")
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)")

--- 16 unchanged lines hidden ---