Re: [U-Boot] [PATCH 025/126] sandbox: Allow use of real I/O with readl(), etc.

2019-10-06 Thread Bin Meng
On Sun, Oct 6, 2019 at 6:04 PM Bin Meng wrote: > > On Sat, Oct 5, 2019 at 11:30 AM Bin Meng wrote: > > > > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote: > > > > > > At present these functions are stubbed out. For more comprehensive testing > > > with PCI devices it is useful to be able to

Re: [U-Boot] [PATCH 025/126] sandbox: Allow use of real I/O with readl(), etc.

2019-10-06 Thread Bin Meng
On Sat, Oct 5, 2019 at 11:30 AM Bin Meng wrote: > > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote: > > > > At present these functions are stubbed out. For more comprehensive testing > > with PCI devices it is useful to be able to fully emulate I/O access. Add > > simple implementations for t

Re: [U-Boot] [PATCH 025/126] sandbox: Allow use of real I/O with readl(), etc.

2019-10-04 Thread Bin Meng
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote: > > At present these functions are stubbed out. For more comprehensive testing > with PCI devices it is useful to be able to fully emulate I/O access. Add > simple implementations for these. > > Signed-off-by: Simon Glass > --- > > arch/sandbox

[U-Boot] [PATCH 025/126] sandbox: Allow use of real I/O with readl(), etc.

2019-09-25 Thread Simon Glass
At present these functions are stubbed out. For more comprehensive testing with PCI devices it is useful to be able to fully emulate I/O access. Add simple implementations for these. Signed-off-by: Simon Glass --- arch/sandbox/cpu/cpu.c | 51 arch/sand