dram_ctrl.cc (13857:9255d7412a58) dram_ctrl.cc (13892:0182a0601f66)
1/*
2 * Copyright (c) 2010-2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

2844 // rely on the abstract memory
2845 functionalAccess(pkt);
2846}
2847
2848Port &
2849DRAMCtrl::getPort(const string &if_name, PortID idx)
2850{
2851 if (if_name != "port") {
1/*
2 * Copyright (c) 2010-2018 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

2844 // rely on the abstract memory
2845 functionalAccess(pkt);
2846}
2847
2848Port &
2849DRAMCtrl::getPort(const string &if_name, PortID idx)
2850{
2851 if (if_name != "port") {
2852 return MemObject::getPort(if_name, idx);
2852 return QoS::MemCtrl::getPort(if_name, idx);
2853 } else {
2854 return port;
2855 }
2856}
2857
2858DrainState
2859DRAMCtrl::drain()
2860{

--- 111 unchanged lines hidden ---
2853 } else {
2854 return port;
2855 }
2856}
2857
2858DrainState
2859DRAMCtrl::drain()
2860{

--- 111 unchanged lines hidden ---