From daf1cd66b4245ffc315ba6ba5c618b1386e8a274 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 27 Jul 2018 11:12:59 +0100 Subject: [PATCH] add hacked MemoryMap.bsv, combines SlowTuple2 and FastTuple2 --- src/lib/MemoryMap.bsv | 62 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 src/lib/MemoryMap.bsv diff --git a/src/lib/MemoryMap.bsv b/src/lib/MemoryMap.bsv new file mode 100644 index 0000000..21dc412 --- /dev/null +++ b/src/lib/MemoryMap.bsv @@ -0,0 +1,62 @@ +/* +Copyright (c) 2013, IIT Madras +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. +* Neither the name of IIT Madras nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +*/ +package MemoryMap; + /*=== Project imports ==== */ + import defined_types::*; + `include "instance_defines.bsv" + `include "core_defines.bsv" + /*========================= */ + + +function Tuple2 #(Bool, Bit#(TLog#(Num_Slaves))) fn_addr_to_slave_num (Bit#(`PADDR) addr); + + Bool isfast; + Bit#(TLog#(Num_Slaves) y; + FastTuple2(isfast, y); + if (isfast) + return tuple2(isfast, y); + + Bool isslow; + Bit#(TLog#(Num_Slow_Slaves) y; + SlowTuple2(isslow, y); + if (isslow) + return tuple2(True,fromInteger(valueOf(SlowPeripheral_slave_num))); + + return tuple2(False,?); + +endfunction + +function Bool is_IO_Addr(Bit#(`PADDR) addr); // TODO Shuold be PADDR + if(addr>=`DebugBase && addr<=`DebugEnd) + return (True); + else if(addr>=`SDRAMMemBase && addr<=`SDRAMMemEnd) + `ifdef FlexBus + return (True); + `else + return (False); + `endif + `ifdef BOOTROM + else if(addr>=`BootRomBase && addr<=`BootRomEnd) + return (False); + `endif + `ifdef TCMemory + else if(addr>=`TCMBase && addr<=`TCMEnd) + return (False); + `endif + else + return True; +endfunction + + +endpackage -- 2.30.2