PciDevice.py (11260:bedcc64f6145) PciDevice.py (13665:9c7fe3811b88)
1# Copyright (c) 2013 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

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

36# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38#
39# Authors: Nathan Binkert
40
41from m5.SimObject import SimObject
42from m5.params import *
43from m5.proxy import *
1# Copyright (c) 2013 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

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

36# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38#
39# Authors: Nathan Binkert
40
41from m5.SimObject import SimObject
42from m5.params import *
43from m5.proxy import *
44from Device import DmaDevice
45from PciHost import PciHost
44from m5.objects.Device import DmaDevice
45from m5.objects.PciHost import PciHost
46
47class PciDevice(DmaDevice):
48 type = 'PciDevice'
49 cxx_class = 'PciDevice'
50 cxx_header = "dev/pci/device.hh"
51 abstract = True
52
53 host = Param.PciHost(Parent.any, "PCI host")

--- 101 unchanged lines hidden ---
46
47class PciDevice(DmaDevice):
48 type = 'PciDevice'
49 cxx_class = 'PciDevice'
50 cxx_header = "dev/pci/device.hh"
51 abstract = True
52
53 host = Param.PciHost(Parent.any, "PCI host")

--- 101 unchanged lines hidden ---