[U-Boot] [RFC] sandbox: Enable 1:1 map
Heinrich Schuchardt
xypron.glpk at gmx.de
Thu Jun 21 01:23:47 UTC 2018
On 06/20/2018 07:51 PM, Simon Glass wrote:
> Hi Alex,
>
> On 14 June 2018 at 17:13, Alexander Graf <agraf at suse.de> wrote:
>> So far we've always had a split address space situation with
>> "U-Boot addresses" (a number space starting from 0) and "host
>> virtual addresses" (128MB mapped randomly in address space).
>>
>> This meant that we had to make sure all code is properly aware that
>> addresses and pointers are not the same thing, so they must not cast
>> between the two.
>>
>> However, most real boards do actually have a 1:1 map. So it's
>> much easier to just expose the same in sandbox.
>>
>> So this patch maps sandbox RAM from 0x8000000-0x10000000. This
>> address range fits just fine on both 32bit and 64bit systems.
>>
>> ---
>>
>> The patch is on top of my "efi-sandbox-v3" tree. But I'm sure
>> it easily applies on vanilla too.
>>
>> I also don't know if this really is the best path forward, but
>> at least it's one that gets rid of the one awkward target that
>> does not have a 1:1 map ;)
>> ---
>> arch/sandbox/cpu/cpu.c | 18 ++----------------
>> arch/sandbox/cpu/state.c | 4 ++--
>> arch/sandbox/cpu/u-boot.lds | 3 +++
>> arch/sandbox/include/asm/io.h | 17 +++++------------
>> common/board_f.c | 4 +++-
>> configs/sandbox64_defconfig | 6 +++---
>> configs/sandbox_defconfig | 6 +++---
>> configs/sandbox_flattree_defconfig | 4 ++--
>> configs/sandbox_noblk_defconfig | 4 ++--
>> configs/sandbox_spl_defconfig | 4 ++--
>> include/configs/sandbox.h | 22 +++++++++++-----------
>> 11 files changed, 38 insertions(+), 54 deletions(-)
>
> NAK, as discussed.
>
> Just to repeat myself, I do not want to change how sandbox works at
> this stage. We will always have some need for mapping, even if only to
> make PCI work.
>
> Once we have EFI working and have more test coverage in U-Boot itself
> we can revisit this. But this change is not necessary to make EFI
> work.
Hi Simon,
unfortunately I have not seen that your patches make EFI work on the
sandbox. bootefi selftest always failed. Now you even explicitly exclude
all tests
(https://lists.denx.de/pipermail/u-boot/2018-June/332133.html). With
Alex patch series the existing tests work fine.
I see no point in merging patches for the Sandbox which ignore the
existing tests.
Regards
Heinrich
More information about the U-Boot
mailing list