forked from M-Labs/zynq-rs
uncached: setup Shareable Device memory
This commit is contained in:
parent
c72402b966
commit
fb4022f04d
|
@ -25,8 +25,10 @@ impl<T> UncachedSlice<T> {
|
||||||
for page_start in (start..(start + size)).step_by(L1_PAGE_SIZE) {
|
for page_start in (start..(start + size)).step_by(L1_PAGE_SIZE) {
|
||||||
L1Table::get()
|
L1Table::get()
|
||||||
.update(page_start as *const (), |l1_section| {
|
.update(page_start as *const (), |l1_section| {
|
||||||
|
// Shareable Device
|
||||||
|
l1_section.tex = 0b000;
|
||||||
l1_section.cacheable = false;
|
l1_section.cacheable = false;
|
||||||
l1_section.bufferable = false;
|
l1_section.bufferable = true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue