- Nov 25, 2015
-
-
Otavio Salvador authored
Congatec has several MX6 boards based on quad, dual, dual-lite and solo. Add SPL support so that all the variants can be supported Signed-off-by:
Otavio Salvador <otavio@ossystems.com.br> Reviewed-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
Otavio Salvador authored
Tested basic fastboot commands, such as: On the U-boot prompt: => fastboot 0 On the host PC: $ fastboot getvar bootloader-version -i 0x0525 bootloader-version: U-Boot 2015.10-rc2-09654-g8f41d27 finished. total time: 0.000s $ fastboot reboot -i 0x0525 --> board reboots fine. Signed-off-by:
Otavio Salvador <otavio@ossystems.com.br> Reviewed-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
Otavio Salvador authored
Congatec boards boot from SPI NOR, so it makes more sense to use SPI NOR to store the environment variables. Signed-off-by:
Otavio Salvador <otavio@ossystems.com.br> Reviewed-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
Otavio Salvador authored
Add SPI NOR support: => sf probe SF: Detected SST25VF032B with page size 256 Bytes, erase size 4 KiB, total 4 MiB Signed-off-by:
Otavio Salvador <otavio@ossystems.com.br> Reviewed-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
- Nov 23, 2015
-
-
Marek Vasut authored
Using 50 MiB malloc pool in SPL is nonsense. Since the caches are not enabled in SPL, it takes 2 seconds to init the pool and has no obvious benefit. Reduce the size to 1 MiB. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Stefano Babic <sbabic@denx.de> Cc: Tim Harvey <tharvey@gateworks.com> Tested-by:
Stefano Babic <sbabic@denx.de> Acked-by:
Tim Harvey <tharvey@gateworks.com>
-
- Nov 20, 2015
-
-
Simon Glass authored
Add a README with a brief guide to porting serial drivers over to use driver model. Add a timeline also. All serial drivers should be converted by the end of January 2016. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add a test that verifies that USB keyboards work correctly on sandbox. This verifies some additional parts of the USB stack. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Enable the USB keyboard on sandbox, now that we have a suitable emulation driver. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add a simple USB keyboard driver for sandbox. It provides a function to 'load' it with input data, which it will then stream through to the normal U-Boot input subsystem. When the input data is exhausted, the keyboard stops providing data. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Allow USB device emulation to support interrupt URBs so that we can use USB keyboards with sandbox. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Replace the open-coded values with constants to make it clearer what they mean. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This was missed in the conversion to driver model. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add tests that 'usb tree' produces the right output when a device changes order on the bus. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add tests that this command produces the right output, even when a rescan results in a device disappearing from the bus. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Each scan of the USB bus may return different results. Existing driver-model devices are reused when found, but if a device no longer exists it will stay around, de-activated, but bound. Detect these devices and remove them after the scan completes. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This function should not be used with driver model. While there are users of USB Ethernet that use driver model for USB but not Ethernet, we have to keep it around. Add a comment to that effect. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This reverts commit bb52b367. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This reverts commit 6cda3695. We want to avoid having the USB stack rely on unbind. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This reverts commit 9b510df7. We want to avoid having the USB stack rely on unbind. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Each USB device has an emulator. Currently this can only be found by supplying the 'pipe' value, which contains the device number. Add a way to find it directly from the emulated device. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
To support more advanced testing, support 4 devices instead of 2. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
We would like the serial number to come from the device tree node name of the emulated device. This avoids them all having the same name. Adjust the code to support this. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add iteration macros which support unbinding a device within the loop. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Allow the 'usb tree' command to be used from test code, so that we can verify that it works correctly. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
When running sandbox tests, silence the console to avoid unwanted output. Also, record the console in case tests want to check it. The -v option can be used to enable stdout during tests. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Allow console recording so that tests can use it. Also allow the console output to be suppressed, to reduce test output 'noise'. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
It is useful to be able to record console output and provide console input via a buffer. This provides sandbox with the ability to run a command and check its output. If the console is set to silent then no visible output is generated. This also provides a means to fix the problem where tests produce unwanted output, such as errors or warnings. This can be confusing. We can instead set the console to silent and record this output. It can be checked later in the test if required. It is possible that this may prove useful for non-test situations. For example the console output may be suppressed for normal operations, but recorded and stored for access by the OS. That feature is not implemented at present. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This will be used to support console recording. It provides for a circular buffer which can be written at the head and read from the tail. It supports avoiding data copying by providing raw access to the data. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Since common.h will always include this automatically, it is not needed. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
The console includes a global variable and several functions that are only used by a small subset of U-Boot files. Before adding more functions, move the definitions into their own header file. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Currently the USB tests take around two seconds to run. Remove these unnecessary time delays so that the tests run quickly. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Some tests are slow due to delays which are unnecessary on sandbox. The worst offender is USB where we lose two seconds. Add a way to disable time delays. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Daniel Schwierzeck authored
Building with gcc-5.2 raises this warning: drivers/misc/cros_ec_sandbox.c: In function cros_ec_sandbox_packet: drivers/misc/cros_ec_sandbox.c:483:5: warning: len may be used uninitialized in this function [-Wmaybe-uninitialized] if (len < 0) ^ If the function process_cmd() is called with req_hdr->command == EC_CMD_ENTERING_MODE, the value of len will be returned uninitialized. Signed-off-by:
Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
Convert to use driver model keyboard on QEMU. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
Convert to use driver model keyboard on Intel Crown Bay. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
When 'Num Lock' is not on, we should not send these digit numbers (0-9 and dot) to the output buffer. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
When sending LED update command to an i8042 compatible keyboard, bit1 is 'Num Lock' and bit2 is 'Caps Lock' in the data byte. But input library defines bit1 as 'Caps Lock' and bit2 as 'Num Lock'. This causes a wrong LED to be set on an i8042 compatible keyboard. Change the LED state bits to be i8042 compatible, and change the keyboard flags as well. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
We should request keyboard to turn on/off its LED when detecting any changes on the LEDs. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org> Minor changes to allow this to build without CONFIG_DM_KEYBOARD: Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Bin Meng authored
Currently keyboard's LED state is wrongly saved to config->leds in process_modifier(). It should really be config->flags. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This has duplicated scan code tables and logic. We can use the input library to implement most of the features here. This needs testing. The only supported board appears to be TQM5200. Unfortunately no maintainer is listed for this board. Signed-off-by:
Simon Glass <sjg@chromium.org>
-