06 May, 2015
1 commit
-
Add a function that maintains an offset to include in the system timer
values returned from the lib/time.c APIs.This will allow timeouts to be skipped instantly in tests
Signed-off-by: Joe Hershberger
Acked-by: Simon Glass
19 Apr, 2015
4 commits
-
Since driver model will probe the EC when it is first used, we do not
need to init it explicitly.Signed-off-by: Simon Glass
-
The 'lo' interface on Linux doesn't support thinks like ARP or
link-layer access like we use to talk to a normal network interface.
A higher-level network API must be used to access localhost.As written, this interface is limited to not supporting ICMP since the
API doesn't allow the socket to be opened for all IP traffic and be able
to receive at the same time. UDP is far more useful to test with, so it
was selected over ICMP. Ping won't work, but things like TFTP should
work.Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass -
Implement a bridge between U-Boot's network stack and Linux's raw packet
API allowing the sandbox to send and receive packets using the host
machine's network interface.This raw Ethernet API requires elevated privileges. You can either run
as root, or you can add the capability needed like so:sudo /sbin/setcap "CAP_NET_RAW+ep" /path/to/u-boot
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass -
Add basic network support to sandbox which includes a network driver.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
31 Jan, 2015
1 commit
-
This brings in a additional small fix which was missed in a recent update
to the README.Suggested-by: Masahiro Yamada
Signed-off-by: Simon Glass
Acked-by: Jagannadha Sutradharudu Teki
22 Sep, 2014
1 commit
-
- Use _defconfig instead of _config, but still _config is working.
- Corrected README.sandbox path in ./READMESigned-off-by: Jagannadha Sutradharudu Teki
Acked-by: Simon Glass
30 Jul, 2014
1 commit
-
We have switched to Kconfig and the boards.cfg file is going to
be removed. We have to retrieve the board status and maintainers
information from it.The MAINTAINERS format as in Linux Kernel would be nice
because we can crib the scripts/get_maintainer.pl script.After some discussion, we chose to put a MAINTAINERS file under each
board directory, not the top-level one because we want to collect
relevant information for a board into a single place.TODO:
Modify get_maintainer.pl to scan multiple MAINTAINERS files.Signed-off-by: Masahiro Yamada
Suggested-by: Tom Rini
Acked-by: Simon Glass
17 May, 2014
2 commits
-
Because sandbox is not a real hardware, setting vendor=sandbox is
almost meaningless.This commit sets sandbox's vendor field to '-'.
It is a good thing that it decreases one level directory hierarchy.
The files board/sandbox/sandbox/* have been moved to board/sandbox/*.Signed-off-by: Masahiro Yamada
Acked-by: Simon Glass
Tested-by: Simon Glass -
This reverts commit 258060905e04fe2eb509756ef3b37e23e220a2d6.
Conflicts:
boards.cfgWrong patch 25806090 was applied by accident. Revert it.
Signed-off-by: Masahiro Yamada
Cc: Simon Glass
Acked-by: Simon Glass
10 May, 2014
2 commits
-
Prior to commit 33a02da0, all boards must have board/${BOARD}/
or board/${VENDOR}/${BOARD}/ directory.
Now this rule is obsolete.It looks weird that sandbox defines "vendor" and "board" just for
meeting the old U-Boot directory structure.Signed-off-by: Masahiro Yamada
Cc: Simon Glass -
Now that sandbox has a good base of features, the README is quite out of
date. Update it, and document the new features.Signed-off-by: Simon Glass
18 Mar, 2014
2 commits
-
Add a simple LCD driver which uses SDL to display the image. We update the
image regularly, while still providing for reasonable performance.Adjust the common lcd code to support sandbox.
For command-line runs we do not want the LCD to be displayed, so add a
--show_lcd option to enable it.Tested-by: Che-Liang Chiou
Signed-off-by: Simon Glass -
Add board code to set up the Chrome OS EC on startup.
Signed-off-by: Simon Glass
05 Mar, 2014
1 commit
-
Convert sandbox over to use driver model GPIOs.
Signed-off-by: Simon Glass
25 Jan, 2014
1 commit
-
If timer_init() is made a weak stub function, then it allows us to
remove several empty timer_init functions for those boards that
already have a timer initialized when u-boot starts. Architectures
that use the timer framework may also remove the need for timer.c.Signed-off-by: Darwin Rambo
Reviewed-by: Tim Kryger
10 Dec, 2013
1 commit
-
This adds a SPI flash driver which simulates SPI flash clients.
Currently supports the bare min that U-Boot requires: you can
probe, read, erase, and write. Should be easy to extend to make
it behave more exactly like a real SPI flash, but this is good
enough to merge now.sjg@chromium.org added a README and tidied up code a little.
Added a required map_sysmem() for sandbox.Signed-off-by: Mike Frysinger
Signed-off-by: Simon Glass
09 Nov, 2013
1 commit
-
Convert sandbox to use common time functions.
Signed-off-by: Rob Herring
01 Nov, 2013
1 commit
-
Signed-off-by: Masahiro Yamada
Cc: Simon Glass
Acked-by: Simon Glass
15 Oct, 2013
1 commit
-
Signed-off-by: Wolfgang Denk
24 Jul, 2013
1 commit
-
Signed-off-by: Wolfgang Denk
[trini: Fixup common/cmd_io.c]
Signed-off-by: Tom Rini
01 May, 2013
1 commit
-
Add generic board support for sandbox. and remove the old board init code.
Select CONFIG_SYS_GENERIC_BOARD for sandbox now that this is supported.
Signed-off-by: Simon Glass
Reviewed-by: Tom Rini
29 Jul, 2012
1 commit
-
Also drop a few files referring to no longer / not yet supported
boards.Signed-off-by: Wolfgang Denk
Cc: Prafulla Wadaskar
Cc: Stefan Roese
Cc: Kim Phillips
Cc: Andy Fleming
Cc: Jason Jin
Cc: Stefano Babic
Cc: Daniel Schwierzeck
Acked-by: Stefano Babic
Acked-by: Daniel Schwierzeck
12 Mar, 2012
1 commit
-
Fixes building after recent readline updates with timeouts.
Signed-off-by: Mike Frysinger
11 Dec, 2011
1 commit
-
Making sleep command work
Signed-off-by: Matthias Weisser
Signed-off-by: Mike Frysinger
22 Oct, 2011
1 commit
-
Seems people fixed their files to use libfoo.o, but didn't actually
update the creation targets to use $(cmd_link_o_target). Update the
rest of the Makefile's found with grep.Signed-off-by: Mike Frysinger
Tested-by: Simon Glass
18 Oct, 2011
1 commit
-
This adds basic files for the sandbox board. The lds file is very simple
since we can rely mostly on the linker defaults.Signed-off-by: Simon Glass