t1000.cc (5478:ca055528a3b3) t1000.cc (5834:b9e30a60dee4)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

89T1000::pciToDma(Addr pciAddr) const
90{
91 panic("Need implementation\n");
92 M5_DUMMY_RETURN
93}
94
95
96Addr
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

89T1000::pciToDma(Addr pciAddr) const
90{
91 panic("Need implementation\n");
92 M5_DUMMY_RETURN
93}
94
95
96Addr
97T1000::calcConfigAddr(int bus, int dev, int func)
97T1000::calcPciConfigAddr(int bus, int dev, int func)
98{
99 panic("Need implementation\n");
100 M5_DUMMY_RETURN
101}
102
98{
99 panic("Need implementation\n");
100 M5_DUMMY_RETURN
101}
102
103Addr
104T1000::calcPciIOAddr(Addr addr)
105{
106 panic("Need implementation\n");
107 M5_DUMMY_RETURN
108}
109
110Addr
111T1000::calcPciMemAddr(Addr addr)
112{
113 panic("Need implementation\n");
114 M5_DUMMY_RETURN
115}
116
103T1000 *
104T1000Params::create()
105{
106 return new T1000(this);
107}
117T1000 *
118T1000Params::create()
119{
120 return new T1000(this);
121}