commit | b02c4e941c7fed520f05cc956b9263bc934a9828 | [log] [tgz] |
---|---|---|
author | Sean Anderson <seanga2@gmail.com> | Sat Oct 14 16:47:55 2023 -0400 |
committer | Tom Rini <trini@konsulko.com> | Tue Oct 17 20:50:52 2023 -0400 |
tree | 8e37dab03b30112d99d4fe17f76ae6a313688154 | |
parent | 93caa3efe25bb9d3e6265aa467dc5b6a2201819b [diff] |
spl: Use map_sysmem where appropriate All "physical" addresses in SPL must be converted to virtual addresses before access in order for sandbox to work. Add some calls to map_sysmem in appropriate places. We do not generally call unmap_sysmem, since we need the image memory to still be mapped when we jump to the image. This doesn't matter at the moment since unmap_sysmem is a no-op. Signed-off-by: Sean Anderson <seanga2@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>