commit | 5ff777268457c152b94c484a90d37574a27be2f3 | [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 | 13e6d91b9daf481f725c127d8fa15ac17f926c81 [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>