Add phys2bus and bus2phys - debugging mailbox code

This commit is contained in:
Berkus Decker 2019-03-07 20:50:02 +02:00
parent 9f27449cd6
commit 791a61ffed
1 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,10 @@ impl BcmHost {
/// As per https://www.raspberrypi.org/forums/viewtopic.php?p=1170522#p1170522
///
pub fn bus2phys(bus: u32) -> u32 {
bus & !0xC000_0000
bus & !0xc000_0000
}
pub fn phys2bus(phys: u32) -> u32 {
phys | 0xc000_0000
}
}