- May 09, 2013
-
-
Simon Glass authored
Conflicting tags can prevent buildman from building two series which exist one after the other in a branch. There is no reason not to allow this sort of workflow with buildman, so ignore conflicting tags in buildman. Change-Id: I2231d04d8684fe0f8fe77f8ea107e5899a3da5e8 Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Tom Rini <trini@ti.com>
-
Michal Simek authored
Microblaze uses gpio which is connected to the system reset. Currently gpio subsystem wasn't used for it. Add gpio driver and change Microblaze reset logic to be done via gpio subsystem. There are various configurations which Microblaze can have that's why gpio_alloc/gpio_alloc_dual(for dual channel) function has been introduced and gpio can be allocated dynamically. Adding several gpios IP is also possible and supported. For listing gpio configuration please use "gpio status" command This patch also remove one compilation warning: microblaze-generic.c: In function 'do_reset': microblaze-generic.c:38:47: warning: operation on '*1073741824u' may be undefined [-Wsequence-point] Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
fdt_initrd add additional information to DTB about initrd addresses which are later used by kernel. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Prepare place for new patch. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
- May 08, 2013
-
-
Kuan-Yu Kuo authored
Include this header to get access to link symbols, which are otherwise removed. Signed-off-by:
Kuan-Yu Kuo <ken.kuoky@gmail.com> Cc: Macpaul Lin <macpaul@gmail.com>
-
- May 07, 2013
-
-
git://www.denx.de/git/u-boot-mmcTom Rini authored
-
- May 06, 2013
-
-
Fabio Estevam authored
A malloc() followed by memset() can be simply replaced by calloc(). Signed-off-by:
Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Jaehoon Chung authored
If failed the add_host(), it is reasonable that return value of add_sdhci(). Signed-off-by:
Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Vipin Kumar authored
Signed-off-by:
Vipin Kumar <vipin.kumar@st.com> Acked-by:
Stefan Roese <sr@denx.de> Acked-by:
Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Davide Bonfanti authored
Without this additional delay, some eMMC don't negotiate properly bus width Tested on: - Toshiba THGBM2G8D8FBAIB - Toshiba THGBM4G4D1HBAR - Micron MTFC4GMVEA (the one giving the problem) - Hynix H26M64002BNR - SanDisk SDIN5E1-32G Signed-off-by:
Davide Bonfanti <davide.bonfanti@bticino.it> Acked-by:
Tom Rini <trini@ti.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Che-Liang Chiou authored
Most of time that MMC driver spends on initializing a device is polling OCR (operation conditions register). To decouple this polling loop, device init is split into two parts: The first part fires the OCR query command, and the second part polls the result. So the caller is now no longer bound to the OCR-polling delay; he may fire the query, go somewhere and then come back later for the result. To use this, call mmc_set_preinit() on any device which needs this. This can save significant amounts of time on boot (e.g. 200ms) by hiding the MMC init time behind other init. Signed-off-by:
Che-Liang Chiou <clchiou@chromium.org> Signed-off-by:
Simon Glass <sjg@chromium.org> Acked-by:
Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Vivek Gautam authored
We can use a common global method for calculating minimum of 3 numbers. Put the same in 'common header' and let 'ehci' use it. Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com> Acked-by:
Tom Rini <trini@ti.com>
-
Vivek Gautam authored
Fix the Port status bit constants and Port feature number constants as a part of USB 2.0 and USB 3.0 Hub class. Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
Vivek Gautam authored
Untill now we power-cycle (aka: disable power on a port and re-enabling again) one port at a time. Delay of 20ms for Port-power to change multiplies with number of ports in this case. So better we parallelize this process: disable power on all ports, wait for port-power to stabilize and then re-enable the power subsequently. Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
- May 05, 2013
-
-
Bo Shen authored
The at91sam9g10 need to configure HCK0 to make OHCI work Signed-off-by:
Bo Shen <voice.shen@atmel.com>
-
Vivek Gautam authored
This adds usb framework support for super-speed usb, which will further facilitate to add stack support for xHCI. Signed-off-by:
Vikas C Sajjan <vikas.sajjan@samsung.com> Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
Vivek Gautam authored
Patch b6d7852c increases timeout for enumeration, taking worst case to be 10 sec. get_timer() api returns timestamp in milliseconds, which is what we are checking in the do-while() loop in usb_hub_configure() (get_timer(start) < CONFIG_SYS_HZ * 10). This should give us a required check for 10 seconds, and thereby we don't need to add additional mdelay of 100 microseconds in each cycle. Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com> Reviewed-by:
Vipin Kumar <vipin.kumar@st.com>
-
Vivek Gautam authored
Fetch the device class into usb device's dwcriptors, so that the host controller's driver can use this info to differentiate between HUB and DEVICE. Signed-off-by:
Amar <amarendra.xt@samsung.com>
-
Vivek Gautam authored
XHCI ports are powered on after a H/W reset, however EHCI ports are not. So disabling and re-enabling power on all ports invariably. Signed-off-by:
Amar <amarendra.xt@samsung.com> Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
Vivek Gautam authored
Some cleanup in usb framework, nothing much on feature side. Signed-off-by:
Vikas C Sajjan <vikas.sajjan@samsung.com> Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
Vivek Gautam authored
USB_PRINTF, USB_HUB_PRINTF, USB_STOR_PRINTF, USB_KBD_PRINTF are nothing but conditional debug prints, depending on DEBUG. So better remove them and use debug() simply. Signed-off-by:
Vivek Gautam <gautam.vivek@samsung.com>
-
Julius Werner authored
This patch adds a new 'usb test' command, that will set a port to a USB 2.0 test mode (see USB 2.0 spec 7.1.20). It supports all five test modes on both downstream hub ports and ordinary device's upstream ports. In addition, it supports EHCI root hub ports. Signed-off-by:
Julius Werner <jwerner@chromium.org>
-
Jim Lin authored
Add ehci_get_port_speed() and ehci_set_usbmode() weak functions for platform driver to support new chip. Signed-off-by:
Jim Lin <jilin@nvidia.com>
-
- May 03, 2013
-
-
Tom Rini authored
With the u-boot-with-spl.bin rule calling $(OBJCOPY) with CONFIG_SPL_PAD_TO, and CONFIG_SPL_PAD_TO defaulting to CONFIG_SPL_MAX_SIZE we cannot use math here, so set it to 4096 rather than 4 * 1024. Signed-off-by:
Tom Rini <trini@ti.com>
-
- May 02, 2013
-
-
git://git.denx.de/u-boot-mpc85xxTom Rini authored
-
Shaohui Xie authored
The Hydra and Superhydra (P3041DS, P5020DS, and P5040DS) boards have a second USB port that can be configured in either host, peripheral (aka device), or OTG (on-the-go) mode. When configured in host mode, if the port is connected to another USB host, damage to the board can occur. To avoid this, we change the default setting to peripheral mode. Ideally, we'd set it to OTG mode, but currently there is no OTG support for these boards. Setting the hwconfig variable will also update the device tree, and so Linux will configure the port for peripheral mode as well. Signed-off-by:
Shaohui Xie <Shaohui.Xie@freescale.com> Signed-off-by:
Timur Tabi <timur@tabi.org> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Xu Jiucheng authored
When P1021RDB-PC reboot system, the board will hung at uboot DDR configuration. For P1021RDB-PC DDR reset pin is multiplex with QE, so uboot will reserve this pin for QE and skip DDR reset. Other platforms without QE will do this reset. This patch adds a slight code to reset DDR chip by QE CE_PB8 pin for NAND and NOR FLASH boot. For booting from SPI FALSH and SD card, it seems possible to use the rom on chip to write to the GPIO pins before configuring the DDR. Signed-off-by:
Xu Jiucheng <B37781@freescale.com> Signed-off-by:
Xie Xiaobo <X.Xie@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Cristian Sovaiala authored
Extending LIODN offset range from 1-5 to 1-10 While using a qman portal with a higher index the LIODN offset is incorrectly set, thus extending the range of offsets covers all 10 qman portals Signed-off-by:
Cristian Sovaiala <cristian.sovaiala@freescale.com> Acked-by:
Haiying Wang <Haiying.Wang@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
York Sun authored
Erratum DDR_A003 applies to P5020, P3041, P4080, P3060, P2041, P5040. Signed-off-by:
York Sun <yorksun@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Shengzhou Liu authored
Signed-off-by:
Shengzhou Liu <Shengzhou.Liu@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Shengzhou Liu authored
Change flexcan compatible string from "fsl,flexcan-v1.0" to "fsl,p1010-flexcan" to match the device tree. Signed-off-by:
Shengzhou Liu <Shengzhou.Liu@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Timur Tabi authored
Only some chips have four SerDes banks, so don't define lanes for a bank that doesn't exist. Signed-off-by:
Timur Tabi <timur@tabi.org> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Zhicheng Fan authored
Resolve P1020 second USB controller multiplexing with eLBC - mandatory to mention USB2 in hwconfig string to select it over eLBC, otherwise USB2 node is removed - works only for SPI and SD boot Signed-off-by:
Ramneek Mehresh <ramneek.mehresh@freescale.com> Signed-off-by:
Kumar Gala <galak@kernel.crashing.org> Signed-off-by:
Zhicheng Fan <B32736@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Poonam Aggrwal authored
There could be scenarios where the user would like to manually(via JTAG) configure the DDR/L2SRAM and load the bootloader binary onto DDR/L2SRAM. This document explains thse usecases and the detailed explanation of what needs to be done to use it. Most of the code from CONFIG_SYS_RAMBOOT will be used except for small changes of CCSRBAR etc. The changes are not very large, but it is good to document them so that user can get it working at once. Signed-off-by:
Poonam Aggrwal <poonam.aggrwal@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Prabhakar Kushwaha authored
As per Errata list of BSC9131 and BSC9132, IFC Errata A003399 is no more valid. So donot compile its workaround. Signed-off-by:
Prabhakar Kushwaha <prabhakar@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Horst Kronstorfer authored
cpu.c:288:2: warning: implicit declaration of function 'reset_85xx_watchdog' [-Wimplicit-function-declaration] Signed-off-by:
Horst Kronstorfer <hkronsto@frequentis.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Xulei authored
On P204x/P304x/P50x0 Rev1.0, USB transmit will result in false internal multi-bit ECC errors, which has impact on performance, so software should disable all ECC reporting from USB1 and USB2. In formal release document, the errata number should be USB14 instead of USB138. Signed-off-by:
xulei <Lei.Xu@freescale.com> Signed-off-by:
Roy Zang <tie-fei.zang@freescale.com> Signed-off-by:
Kumar Gala <galak@kernel.crashing.org> Signed-off-by:
xulei <B33228@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Liu Gang authored
Add the tlb entries based on the configuration of the SRIO interfaces. Every SRIO interface has 256M space: #define CONFIG_SYS_SRIO1_MEM_VIRT 0xa0000000 #define CONFIG_SYS_SRIO1_MEM_PHYS 0xc20000000ull #define CONFIG_SYS_SRIO2_MEM_VIRT 0xb0000000 #define CONFIG_SYS_SRIO2_MEM_PHYS 0xc30000000ull Signed-off-by:
Liu Gang <Gang.Liu@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Zang Roy-R61911 authored
Some legacy RGMII phys don't have in band signaling for the speed information. so set the RGMII MAC mode according to the speed got from PHY. Signed-off-by:
Roy Zang <tie-fei.zang@freescale.com> Reported-by:
John Traill <john.traill@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Tang Yuantian authored
For T4/B4, the clockgen node compatible string is updated to version 2. Add clock-frequency setting for this new version. Signed-off-by:
Tang Yuantian <Yuantian.Tang@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-