CopyEngine.py (11261:2050602b55f7) | CopyEngine.py (13665:9c7fe3811b88) |
---|---|
1# Copyright (c) 2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 15 unchanged lines hidden (view full) --- 24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26# 27# Authors: Ali Saidi 28 29from m5.SimObject import SimObject 30from m5.params import * 31from m5.proxy import * | 1# Copyright (c) 2008 The Regents of The University of Michigan 2# All rights reserved. 3# 4# Redistribution and use in source and binary forms, with or without 5# modification, are permitted provided that the following conditions are 6# met: redistributions of source code must retain the above copyright 7# notice, this list of conditions and the following disclaimer; 8# redistributions in binary form must reproduce the above copyright --- 15 unchanged lines hidden (view full) --- 24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26# 27# Authors: Ali Saidi 28 29from m5.SimObject import SimObject 30from m5.params import * 31from m5.proxy import * |
32from PciDevice import PciDevice | |
33 | 32 |
33from m5.objects.PciDevice import PciDevice 34 |
|
34class CopyEngine(PciDevice): 35 type = 'CopyEngine' 36 cxx_header = "dev/pci/copy_engine.hh" 37 dma = VectorMasterPort("Copy engine DMA port") 38 VendorID = 0x8086 39 DeviceID = 0x1a38 40 Revision = 0xA2 # CM2 stepping (newest listed) 41 SubsystemID = 0 --- 18 unchanged lines hidden --- | 35class CopyEngine(PciDevice): 36 type = 'CopyEngine' 37 cxx_header = "dev/pci/copy_engine.hh" 38 dma = VectorMasterPort("Copy engine DMA port") 39 VendorID = 0x8086 40 DeviceID = 0x1a38 41 Revision = 0xA2 # CM2 stepping (newest listed) 42 SubsystemID = 0 --- 18 unchanged lines hidden --- |