Re: [U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-28 Thread Simon Glass
Hi Mike, On Fri, Oct 28, 2011 at 5:56 PM, Mike Frysinger wrote: > On Sat, Oct 29, 2011 at 02:47, Simon Glass wrote: >> On Wed, Oct 26, 2011 at 1:37 PM, Mike Frysinger wrote: >>> On Wed, Oct 26, 2011 at 12:26, Simon Glass wrote: On Wed, Oct 26, 2011 at 3:30 AM, Mike Frysinger wrote: > ---

Re: [U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-28 Thread Mike Frysinger
On Sat, Oct 29, 2011 at 02:47, Simon Glass wrote: > On Wed, Oct 26, 2011 at 1:37 PM, Mike Frysinger wrote: >> On Wed, Oct 26, 2011 at 12:26, Simon Glass wrote: >>> On Wed, Oct 26, 2011 at 3:30 AM, Mike Frysinger wrote: --- a/arch/sandbox/cpu/os.c +++ b/arch/sandbox/cpu/os.c +off

Re: [U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-28 Thread Simon Glass
Hi Mike, On Wed, Oct 26, 2011 at 1:37 PM, Mike Frysinger wrote: > On Wed, Oct 26, 2011 at 12:26, Simon Glass wrote: >> On Wed, Oct 26, 2011 at 3:30 AM, Mike Frysinger wrote: >>> --- a/arch/sandbox/cpu/os.c >>> +++ b/arch/sandbox/cpu/os.c >>> >>> +off_t os_lseek(int fd, off_t offset, int whence) >

Re: [U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-26 Thread Mike Frysinger
On Wed, Oct 26, 2011 at 12:26, Simon Glass wrote: > On Wed, Oct 26, 2011 at 3:30 AM, Mike Frysinger wrote: >> --- a/arch/sandbox/cpu/os.c >> +++ b/arch/sandbox/cpu/os.c >> >> +off_t os_lseek(int fd, off_t offset, int whence) >> +{ >> +       return lseek(fd, offset, whence); >> +} > > How are we go

Re: [U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-26 Thread Simon Glass
Hi Mike, On Wed, Oct 26, 2011 at 3:30 AM, Mike Frysinger wrote: > Just a WIP brain dump.  Not quite ready yet. Looks good thanks. > > Signed-off-by: Mike Frysinger > --- >  arch/sandbox/cpu/os.c     |   31 >  arch/sandbox/cpu/start.c  |   24 +++ >  drivers/spi/Makefile      |    3 + >  dr

[U-Boot] [PATCH] [WIP] sandbox: spi/sf emulation

2011-10-26 Thread Mike Frysinger
Just a WIP brain dump. Not quite ready yet. Signed-off-by: Mike Frysinger --- arch/sandbox/cpu/os.c | 31 arch/sandbox/cpu/start.c | 24 +++ drivers/spi/Makefile |3 + drivers/spi/sandbox_spi.c | 352 + include/configs/sandbox.