- Apr 11, 2016
-
-
Fabio Estevam authored
It is clearer to specify the full path to access the doc/README.video file. Signed-off-by:
Fabio Estevam <fabio.estevam@nxp.com>
-
Eric Nelson authored
Signed-off-by:
Eric Nelson <eric@nelint.com>
-
Eric Nelson authored
Signed-off-by:
Eric Nelson <eric@nelint.com> Acked-by:
Stephen Warren <swarren@nvidia.com>
-
Eric Nelson authored
Signed-off-by:
Eric Nelson <eric@nelint.com>
-
Stephen Warren authored
Add notes re: enabling the UART to the RPi 3 32-bit help text. Fully describe the RPi 3 64-bit board option. Signed-off-by:
Stephen Warren <swarren@wwwdotorg.org> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Stephen Warren authored
On all Pis so far, the VC FW provides a short stub to set up the ARM CPU before entering the kernel (a/k/a U-Boot for us). This feature is not currently supported by the VC FW when booting in 64-bit mode. However, this feature will likely appear in the near future, and this U-Boot port assumes that such a feature is in place. Without that feature, or a temporary workaround described below, U-Boot will not boot. Once the VC FW does provide the ARM stub, u-boot.bin built for rpi_3 can be used drectly as kernel7.img, in the same way as any other RPi port. The following config.txt is required: # Fix mini UART input frequency, and setup/enable up the UART. # Without this option, U-Boot will not boot, even if you don't care # about the serial console. This option will always be required for # all RPi3 use-cases, unless the PL011 UART is used, which is not # yet supported by rpi_3* builds of U-Boot. enable_uart=1 # Boot in AArch64 (64-bit) mode. # It is possible that a future VC FW will remove the need for this # option, instead auto-setting 32-/64-bit mode based on the "kernel" # filename present on the SD card. arm_control=0x200 Prior to the VC FW providing the ARM boot stub, you can use the following steps to build an equivalent stub into the U-Boot binary: git clone https://github.com/swarren/rpi-3-aarch64-demo.git \ ../rpi-3-aarch64-demo (cd ../rpi-3-aarch64-demo && ./build.sh) Build U-Boot for rpi_3 in the usual way cat ../rpi-3-aarch64-demo/armstub64.bin u-boot.bin > u-boot.bin.stubbed Use u-boot.bin.stubbed as kernel7.img on the Pi SD card. In this case, the following additional entries are required in config.txt: # Tell the FW to load the kernel image at address 0, the reset vector. kernel_old=1 Signed-off-by:
Stephen Warren <swarren@wwwdotorg.org> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Stephen Warren authored
There are ARM SoCs (such as the BCM2837) do not contain an ARM GIC. Fix the ARMv8 CPU startup code to compile in this case. Signed-off-by:
Stephen Warren <swarren@wwwdotorg.org> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Sam Protsenko authored
"buildman" tool revealed that USB_GADGET was enabled by mistake for this board in process of moving that option to Kconfig. Remove it to bring things back to correct state. Signed-off-by:
Sam Protsenko <semen.protsenko@linaro.org> Acked-by:
Stefan Roese <sr@denx.de>
-
Guy Thouret authored
Patch to fix boot hang when using env on i2c eeprom caused by invalid gd->env_addr Signed-off-by:
Guy Thouret <guy.thouret@wems.co.uk> Cc: Heiko Schocher <hs@denx.de>
-
Jeffy Chen authored
It may overflow in sparse_block_size_to_storage, use uint64_t instead in the calculation. Signed-off-by:
Jeffy Chen <jeffy.chen@rock-chips.com>
-
- Apr 10, 2016
-
-
git://git.denx.de/u-boot-socfpgaTom Rini authored
-
git://git.denx.de/u-boot-usbTom Rini authored
-
Marek Vasut authored
There is an incorrect space after loadaddr= in the extra environment, so drop it. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Dinh Nguyen <dinguyen@opensource.altera.com> Cc: Chin Liang See <clsee@altera.com>
-
Marek Vasut authored
The dwmmc.h include was forgotten during the migration of dwmmc probing to DM. Since the shiny DM is in place now, remove this relic of the past. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Dinh Nguyen <dinguyen@opensource.altera.com> Cc: Chin Liang See <clsee@altera.com>
-
Denis Bakhvalov authored
CONFIG_SPI_FLASH_BAR was deleted from socfpga_common.h and placed in socfpga_*_defconfig because it is Kconfig symbol. Signed-off-by:
Denis Bakhvalov <dendibakh@gmail.com> Reported-by:
Denis Bakhvalov <dendibakh@gmail.com> Cc: Marek Vasut <marex@denx.de> Acked-by:
Marek Vasut <marex@denx.de>
-
Marek Vasut authored
The currently present DRAM timings generated from GHRD 14.0 did not work on SoCkit rev. D because they were too tight. Load the DRAM timings from GHRD 13.0 which are more relaxed and work with SoCkit rev. D. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Dinh Nguyen <dinguyen@opensource.altera.com> Cc: Chin Liang See <clsee@altera.com>
-
Marek Vasut authored
Thus far, the socfpga init code had hard-coded the configuration of the ethernet PHY interface to RGMII in the ethernet registers in sysmgr space, so PHYs connected in another modes did not work. This patch fixes support for configurations where the ethernet PHYs are connected over MII/GMII/RMII interfaces by parsing the phy-mode OF property of the GMACs and configuring the ethernet registers in sysmgr space accordingly. Signed-off-by:
Marek Vasut <marex@denx.de> Reported-by:
Denis Bakhvalov <denis.bakhvalov@nokia.com> Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
-
Hans de Goede authored
Some usb hosts may have failed to probe on "usb start", i.e. an otg host without an otg-host cable plugged in. "usb tree" would cause the probe method of these hosts to get called again, something which should only happen on "usb reset". This commit fixes this. Signed-off-by:
Hans de Goede <hdegoede@redhat.com>
-
Hans de Goede authored
musb_lowlevelinit(): if no device is plugged in / detected call musb_stop() to undo the preceding musb_start() call. Signed-off-by:
Hans de Goede <hdegoede@redhat.com>
-
Hans de Goede authored
The probe function of the musb host driver can be called multiple times. The code assumes that it can save the pointer to the allocated musb struct in the driver model priv_auto_alloc data, but this data gets free-ed on a probe failure or on removal, so we must save the pointer elsewhere. Signed-off-by:
Hans de Goede <hdegoede@redhat.com>
-
Steve Rae authored
Turn on the USB OTG clocks. Signed-off-by:
Steve Rae <srae@broadcom.com>
-
Sriram Dash authored
Changes the return type of fdt_usb_get_node_type from char* to int Signed-off-by:
Sriram Dash <sriram.dash@nxp.com> Signed-off-by:
Rajesh Bhagat <rajesh.bhagat@nxp.com>
-
Sriram Dash authored
Enables usb device-tree fixup code to incorporate xhci controller Signed-off-by:
Ramneek Mehresh <ramneek.mehresh@nxp.com> Signed-off-by:
Sriram Dash <sriram.dash@nxp.com>
-
Sriram Dash authored
Call fdt_usb_get_node_type() from fdt_fixup_usb_mode_phy_type() to avoid code duplication. Signed-off-by:
Sriram Dash <sriram.dash@nxp.com> Signed-off-by:
Rajesh Bhagat <rajesh.bhagat@nxp.com> Acked-by:
Marek Vasut <marex@denx.de>
-
Sriram Dash authored
Move usb device-tree fixup framework from ehci-fsl.c to common place so that it can be used by other drivers as well (xhci-fsl.c). Signed-off-by:
Ramneek Mehresh <ramneek.mehresh@nxp.com> Signed-off-by:
Sriram Dash <sriram.dash@nxp.com> Acked-by:
Marek Vasut <marex@denx.de>
-
Hans de Goede authored
The dm usb_kbd_remove function() will deregister the usb keyboard for us on a "usb reset" / "usb stop" so there is no need to manually call usb_kbd_deregister() in the dm case. This commit removes usb_kbd_deregister() in the dm case fixing the following "usb reset" errors: usb_kbd_remove: warning, ret=-6 device_remove: Device 'usb_kbd' failed to remove, but children are gone Signed-off-by:
Hans de Goede <hdegoede@redhat.com>
-
Mateusz Kulikowski authored
This commit fixes crash on BananaPi (and possibly others) casued by 3f9f8a5b. Crash reason: When no ops were passed to ehci_register(), USB host driver caused NULL pointer dereference. Signed-off-by:
Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
-
Purna Chandra Mandal authored
Enable MUSB host and USB storage support for Microchip PIC32MZ[DA] Starter Kit. Signed-off-by:
Purna Chandra Mandal <purna.mandal@microchip.com>
-
Purna Chandra Mandal authored
This driver adds support of PIC32 MUSB OTG controller as dual role device. It implements platform specific glue to reuse musb core. Signed-off-by:
Cristian Birsan <cristian.birsan@microchip.com> Signed-off-by:
Purna Chandra Mandal <purna.mandal@microchip.com>
-
Purna Chandra Mandal authored
Definition of writes{bwlq}, reads{bwlq} are now added into arch specific asm/io.h. So removing them from driver to fix re-definition error Signed-off-by:
Purna Chandra Mandal <purna.mandal@microchip.com>
-
Purna Chandra Mandal authored
ARM defines __raw_writes[bwql], __raw_reads[bwql] in arch io.h but not the writes[bwql], reads[bwql] needed by some drivers. Signed-off-by:
Purna Chandra Mandal <purna.mandal@microchip.com>
-
- Apr 08, 2016
-
-
git://git.denx.de/u-boot-mpc85xxTom Rini authored
-
mario.six@gdsys.cc authored
To enable DM on MPC85xx, we need pre-relocation malloc, which is implemented in this patch. We also make sure that the IVORs are always 4-aligned on e500 to prevent alignment exceptions caused by code changes in start.S. Signed-off-by:
Mario Six <mario.six@gdsys.cc> Cc: York Sun <york.sun@nxp.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by:
York Sun <york.sun@nxp.com>
-
York Sun authored
CONFIG_SYS_INIT_RAM_SIZE may be used out of the board header file. Some boards use CONFIG_SYS_INIT_RAM_END for the same purpose. To unify the macros, use CONFIG_SYS_INIT_RAM_SIZE for all. Signed-off-by:
York Sun <york.sun@nxp.com> CC: Mario Six <mario.six@gdsys.cc> Acked-by:
Stefan Roese <sr@denx.de> Acked-by:
Anatolij Gustschin <agust@denx.de>
-
- Apr 07, 2016
-
-
Codrin Ciubotariu authored
The commands for the VSC9953 l2 switch from T1040 became generic in patch https://patchwork.ozlabs.org/patch/499748/ and the define was renamed. Signed-off-by:
Codrin Ciubotariu <codrin.ciubotariu@nxp.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com> Reviewed-by:
York Sun <york.sun@nxp.com>
-
- Apr 06, 2016
-
-
York Sun authored
LS2080A is the primary SoC, and LS2085A is a personality with AIOP and DPAA DDR. The RDB and QDS boards support both personality. By detecting the SVR at runtime, a single image per board can support both SoCs. It gives users flexibility to swtich SoC without the need to reprogram the board. Signed-off-by:
York Sun <york.sun@nxp.com> CC: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Reviewed-by:
Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
-
Qianyu Gong authored
Signed-off-by:
Gong Qianyu <Qianyu.Gong@nxp.com> Reviewed-by:
York Sun <york.sun@nxp.com>
-
Qianyu Gong authored
Signed-off-by:
Gong Qianyu <Qianyu.Gong@nxp.com> Reviewed-by:
York Sun <york.sun@nxp.com>
-
Wenbin Song authored
There is only one flash bank for ls1043aqds. Signed-off-by:
Wenbin Song <wenbin.song@nxp.com> Reviewed-by:
York Sun <york.sun@nxp.com>