KvmGic.py (10859:0ba6f47025d1) KvmGic.py (11462:768b98294fae)
1# Copyright (c) 2015 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

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

43from System import System
44
45class KvmGic(BaseGic):
46 type = 'KvmGic'
47 cxx_header = "arch/arm/kvm/gic.hh"
48
49 dist_addr = Param.Addr(0x1f001000, "Address for distributor")
50 cpu_addr = Param.Addr(0x1f000100, "Address for cpu")
1# Copyright (c) 2015 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

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

43from System import System
44
45class KvmGic(BaseGic):
46 type = 'KvmGic'
47 cxx_header = "arch/arm/kvm/gic.hh"
48
49 dist_addr = Param.Addr(0x1f001000, "Address for distributor")
50 cpu_addr = Param.Addr(0x1f000100, "Address for cpu")
51 it_lines = Param.UInt32(128, "Number of interrupt lines supported")
51
52 system = Param.System(Parent.any,
53 'System this interrupt controller belongs to')
54 kvmVM = Param.KvmVM(Parent.any, 'KVM VM (i.e., shared memory domain)')
52
53 system = Param.System(Parent.any,
54 'System this interrupt controller belongs to')
55 kvmVM = Param.KvmVM(Parent.any, 'KVM VM (i.e., shared memory domain)')