VirtIO.py (10388:a26a20060ba3) VirtIO.py (11260:bedcc64f6145)
1# -*- mode:python -*-
2
3# Copyright (c) 2014 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

36# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37#
38# Authors: Andreas Sandberg
39
40from m5.SimObject import SimObject
41from m5.params import *
42from m5.proxy import *
43from Device import PioDevice
1# -*- mode:python -*-
2
3# Copyright (c) 2014 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

36# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37#
38# Authors: Andreas Sandberg
39
40from m5.SimObject import SimObject
41from m5.params import *
42from m5.proxy import *
43from Device import PioDevice
44from Pci import PciDevice
44from PciDevice import PciDevice
45
46
47class VirtIODeviceBase(SimObject):
48 type = 'VirtIODeviceBase'
49 cxx_header = 'dev/virtio/base.hh'
50 abstract = True
51
52 subsystem = Param.UInt8(0x00, "VirtIO subsystem ID")

--- 19 unchanged lines hidden ---
45
46
47class VirtIODeviceBase(SimObject):
48 type = 'VirtIODeviceBase'
49 cxx_header = 'dev/virtio/base.hh'
50 abstract = True
51
52 subsystem = Param.UInt8(0x00, "VirtIO subsystem ID")

--- 19 unchanged lines hidden ---