- Aug 27, 2013
-
-
git://git.denx.de/u-boot-usbTom Rini authored
-
Heiko Schocher authored
i2c dev command does not work anymore for legacy drivers because a check is executed that is valid only in the new framework. Signed-off-by:
Heiko Schocher <hs@denx.de> Tested-by:
Stefano Babic <sbabic@denx.de>
-
- Aug 26, 2013
-
-
Jim Lin authored
TFTP booting is slow when a USB keyboard is installed and stdin has usbkbd added. This fix is to change Ctrl-C polling for USB keyboard to every second when NET transfer is running. My previous patch is expected to be put into usb_kbd_testc(). But it went into usb_kbd_getc() after applied. This patch is to put change in correct place. Signed-off-by:
Jim Lin <jilin@nvidia.com>
-
Jim Lin authored
TFTP booting is slow when a USB keyboard is installed and stdin has usbkbd added. This fix is to change Ctrl-C polling for USB keyboard to every second when NET transfer is running. Signed-off-by:
Jim Lin <jilin@nvidia.com>
-
Jim Lin authored
This flag is to make console aware that NET transfer is running or not. Signed-off-by:
Jim Lin <jilin@nvidia.com>
-
Fabio Estevam authored
The 'enable' argument can be better expressed as boolean. Signed-off-by:
Fabio Estevam <fabio.estevam@freescale.com> Reviewed-by:
Otavio Salvador <otavio@ossystems.com.br>
-
Fabio Estevam authored
Currently we have the following behavior in ehci_hcd_init() - Read csmr1 register, clear bit 26 and then set bit 26. However a little bit later we call set_usb_phy_clk() which clears bit 26, so let's get rid of the unnecessary code. Signed-off-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
Łukasz Majewski authored
The manufacturer and product IDs are dynamically assigned when gadget is bind. Now the IDs aren't assigned at struct g_dnl_string_defs definition. Signed-off-by:
Lukasz Majewski <l.majewski@samsung.com> Cc: Marek Vasut <marex@denx.de> Cc: "Egli, Samuel" <samuel.egli@siemens.com>
-
Łukasz Majewski authored
USB composite gadget (g_dnl) supports only one configuration. Due to that the corresponding field - bConfigurationValue has been changed. Moreover more descriptive names were chosen for relevant fields. Windows XP setup: - Thesyscon USB Descriptor Dumper - zadig_xp program for WinUSB installation (which is required by dfu-util) - dfu-util for windows (version 0.6) - TRATS target connected via USB hub to test Win XP machine. Tested at: Trats - Exynos4210 Signed-off-by:
Lukasz Majewski <l.majewski@samsung.com> Cc: Marek Vasut <marex@denx.de> Cc: "Egli, Samuel" <samuel.egli@siemens.com>
-
Heiko Schocher authored
updating an ubi partition needs a completely erased mtd partition, see: http://lists.infradead.org/pipermail/linux-mtd/2011-May/035416.html So, add partubi alt setting for the dfu_alt_info environment variable to mark this partition as an ubi partition. In case we update an ubi partition, we erase after flashing the image into the partition, the remaining sektors. Signed-off-by:
Heiko Schocher <hs@denx.de> Cc: Pantelis Antoniou <panto@antoniou-consulting.com> Cc: Tom Rini <trini@ti.com> Cc: Lukasz Majewski <l.majewski@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Marek Vasut <marex@denx.de> Cc: Wolfgang Denk <wd@denx.de> Cc: Scott Wood <scottwood@freescale.com>
-
Julius Werner authored
The existing USB configuration parsing code relies on the descriptors' own length values when reading through the configuration blob. Since the size of those descriptors is always well-defined, we should rather use the known sizes instead of trusting device-provided values to be correct. Also adds some safety to potential out-of-order descriptors. Change-Id: I16f69dfdd6793aa0fe930b5148d4521f3e5c3090 Signed-off-by:
Julius Werner <jwerner@chromium.org>
-
Dan Murphy authored
Add the call back to reset the LAN9730 after the FEAT_POWER has been called. Signed-off-by:
Dan Murphy <dmurphy@ti.com>
-
Dan Murphy authored
Add a __weak function that can be overridden to reset devices attached to an ehci devices after the FEAT_POWER has been submitted Signed-off-by:
Dan Murphy <dmurphy@ti.com>
-
Dan Murphy authored
Set the usbethaddr based on the OMAP DIE_ID registers which should be unique for each processor. Then set this as the usb ethernet MAC address. Signed-off-by:
Dan Murphy <dmurphy@ti.com>
-
Dan Murphy authored
Add the USB ehci support for the OMAP5 uEVM. Configure the uEVM mux data Add the flags to build the appropriate modules Add the usb call backs to initialize the EHCI controller Signed-off-by:
Dan Murphy <dmurphy@ti.com>
-
Dan Murphy authored
Fix the linker error for missing ulpi_reset when ulpi is not defined in the board config. Signed-off-by:
Dan Murphy <dmurphy@ti.com> Acked-by:
Marek Vasut <marex@denx.de>
-
Dan Murphy authored
* Enable the OMAP5 EHCI host clocks * Add OMAP5 EHCI register definitions * Add OMAP5 ES2 host revision Signed-off-by:
Dan Murphy <dmurphy@ti.com>
-
Dan Murphy authored
Change the board name for the sys info to 5432 uEVM Signed-off-by:
Dan Murphy <dmurphy@ti.com> Acked-by:
Marek Vasut <marex@denx.de>
-
- Aug 22, 2013
-
-
Phil Sutter authored
Without this patch, when the currently chosen environment to be written has bad blocks, saveenv fails completely. Instead, when there is redundant environment fall back to the other copy. Environment reading needs no adjustment, as the fallback logic for incomplete writes applies to this case as well. Signed-off-by:
Phil Sutter <phil.sutter@viprinet.com>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
When executing nand scrub, the user gets the prompt: Really scrub this NAND flash? <y/N> We do not want the annoying usage displayed when saying N here. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
If a non-zero value is given to only_oob argument, printing the main area is skipped. With a little modification, we can skip the whole while loop. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
If datbuf = memalign(ARCH_DMA_MINALIGN, nand->writesize); succeeds and oobbuf = memalign(ARCH_DMA_MINALIGN, nand->oobsize); fails, nand_dump function should free databuf. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
- Aug 21, 2013
-
-
git://git.denx.de/u-boot-mpc85xxTom Rini authored
-
York Sun authored
Fix a bug introduced by commit 3aa29dee TPL : introduce the TPL based on the SPL Signed-off-by:
York Sun <yorksun@freescale.com>
-
- Aug 20, 2013
-
-
Николай Пузанов authored
Signed-off-by:
Николай Пузанов <punzik@gmail.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shengzhou Liu authored
Multiple read/write transactions initiated by security engine may cause system to hang. Workaround: set MCFGR[AXIPIPE] to 0 to avoid hang. Signed-off-by:
Shengzhou Liu <Shengzhou.Liu@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shengzhou Liu authored
There was a bug for calculating ddr_freq_mhz, it should be divided by 1000000 rather than 0x1000000. Signed-off-by:
Shengzhou Liu <Shengzhou.Liu@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shaohui Xie authored
Also some fix for QSGMII. 1. fix QSGMII configure of Serdes2. 2. fix PHY address of QSGMII MAC9 & MAC10 for each FMAN. 3. fix dtb for QSGMII interface. Signed-off-by:
Shaohui Xie <Shaohui.Xie@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shaohui Xie authored
When using QSGMII protocols, the first lane and third lane on each slot need to be swapped. Signed-off-by:
Shaohui Xie <Shaohui.Xie@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shaohui Xie authored
Since the parameters need to be modified according to different Serdes protocols at runtime, the const will block this. Also remove const from arrays define used by vsc3316_config. Signed-off-by:
Shaohui Xie <Shaohui.Xie@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Shruti Kanetkar authored
Makes the startup output more consistent Signed-off-by:
Shruti Kanetkar <Shruti@Freescale.com> Acked-by:
Andy Fleming <afleming@freescale.com> Acked-by:
Stefan Roese <sr@denx.de> Acked-by:
York Sun <yorksun@freescale.com>
-
Shruti Kanetkar authored
Makes the startup output more consistent Signed-off-by:
Shruti Kanetkar <Shruti@Freescale.com> Acked-by:
Andy Fleming <afleming@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
York Sun authored
This patch cleans up license header in these files: board/freescale/p1022ds/spl.c drivers/mmc/fsl_esdhc_spl.c drivers/mtd/spi/fsl_espi_spl.c Signed-off-by:
York Sun <yorksun@freescale.com>
-
Prabhakar Kushwaha authored
85xx, 86xx PowerPC folders have code variables with CamelCase naming conventions. because of this code checkpatch script generates "WARNING: Avoid CamelCase". Convert variables name to normal naming convention and modify board, driver files with updated the new structure. Signed-off-by:
Prabhakar Kushwaha <prabhakar@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Ying Zhang authored
TPL is introduced in the patch "NAND: TPL : introduce the TPL based on the SPL", here enable TPL for p1022ds nand boot. Signed-off-by:
Ying Zhang <b40530@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Ying Zhang authored
Due to the nand SPL on some board(e.g. P1022DS)has a size limit, it can not be more than 4K. So, the SPL cannot initialize the DDR with the SPD code. This patch introduces TPL to enable a loader stub that is loaded by the code from the SPL. It initializes the DDR with the SPD or other operations. The TPL's size is sizeable, the maximum size is decided by the memory's size that TPL runs. It initializes the DDR through SPD code, and copys final uboot image to DDR. So there are three stage uboot images: * spl_boot, * tpl_boot, * final uboot image Signed-off-by:
Ying Zhang <b40530@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Ying Zhang authored
Enable p1022ds to start from eSPI with SPL. Signed-off-by:
Ying Zhang <b40530@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Ying Zhang authored
This patch introduces SPL to enable a loader stub that being loaded by the code from the internal on-chip ROM. It loads the final uboot image into DDR, then jump to it to begin execution. The SPL's size is sizeable, the maximum size must not exceed the size of L2 SRAM. It initializes the DDR through SPD code, and copys final uboot image to DDR. So there are two stage uboot images: * spl_boot, 96KB size. The env variables are copied to L2 SRAM, so that ddr spd code can get the interleaving mode setting in env. It loads final uboot image from offset 96KB. * final uboot image, size is variable depends on the functions enabled. Signed-off-by:
Ying Zhang <b40530@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-
Ying Zhang authored
Enable p1022ds to start from eSDHC with SPL. Signed-off-by:
Ying Zhang <b40530@freescale.com> Acked-by:
York Sun <yorksun@freescale.com>
-