Define U_BOOT_TZ alongside U_BOOT_TIME and U_BOOT_DATE and use it to
include the timezone in the version output.
Acked-by: Simon Glass
Signed-off-by: Chris Packham
---
As per feedback from Tom I've switched to '%z' so that any size increase
as a result of the timezone information is constant.
C
On Fri 2015-05-01 19:26:34, Marek Vasut wrote:
> On Friday, May 01, 2015 at 04:49:37 PM, Pavel Machek wrote:
> > On Fri 2015-05-01 16:24:45, Marek Vasut wrote:
> > > On Friday, May 01, 2015 at 11:01:09 AM, Pavel Machek wrote:
> > > > diff --git a/drivers/mtd/spi/sf_probe.c b/drivers/mtd/spi/sf_prob
Hi,
On 06-05-15 01:01, Marek Vasut wrote:
On Tuesday, May 05, 2015 at 11:56:16 PM, Hans de Goede wrote:
The common usb_hub code already waits a full second after powering up
ports, so there is no need for additional delays inside the hcd code.
Signed-off-by: Hans de Goede
This makes a drive
Add reset for N25Q256A SPI NOR, as U-Boot SPL 2013-socfpga (only
version working on that board) sets 4-byte addressing mode.
Signed-off-by: Pavel Machek
---
Diff to v2: Add README.
diff --git a/README b/README
index ee65fdb..69f9e5b 100644
--- a/README
+++ b/README
@@ -2775,6 +2775,10 @@ CBFS (
Hi Tom,
On Sat, May 9, 2015 at 9:05 AM, Tom Rini wrote:
> On Thu, Apr 30, 2015 at 12:38:22PM +1200, Chris Packham wrote:
>> Hi,
>>
>>
>> Recently an eagle-eyed tester pointed out to me that the build time
>> reported in my u-boot build did not match the file timestamp on the
>> server it was stor
On Sunday, May 10, 2015 at 11:10:00 AM, Hans de Goede wrote:
> Hi,
Hi!
> On 06-05-15 01:01, Marek Vasut wrote:
> > On Tuesday, May 05, 2015 at 11:56:16 PM, Hans de Goede wrote:
> >> The common usb_hub code already waits a full second after powering up
> >> ports, so there is no need for additiona
On Sunday, May 10, 2015 at 11:07:38 AM, Pavel Machek wrote:
> On Fri 2015-05-01 19:26:34, Marek Vasut wrote:
> > On Friday, May 01, 2015 at 04:49:37 PM, Pavel Machek wrote:
> > > On Fri 2015-05-01 16:24:45, Marek Vasut wrote:
> > > > On Friday, May 01, 2015 at 11:01:09 AM, Pavel Machek wrote:
> > >
On Sunday, May 10, 2015 at 11:15:41 AM, Pavel Machek wrote:
> Add reset for N25Q256A SPI NOR, as U-Boot SPL 2013-socfpga (only
> version working on that board) sets 4-byte addressing mode.
>
> Signed-off-by: Pavel Machek
I'm still convinced this should be MICRON specific, not N25Q256 specific .
Hi,
On 06-05-15 02:02, Laurent Itti wrote:
Add support for UART2 (2-pin version but note that RTS/CTS pins are available
pn that port for possible future use), can be selected in config
by using CONFIG_CONS_INDEX=3
Signed-off-by: Laurent Itti
Thanks I've added this to my sunxi-wip branch min
On Sun 2015-05-10 11:15:41, Pavel Machek wrote:
Add reset for N25Q256A SPI NOR, as U-Boot SPL 2013-socfpga (only
version working on that board) sets 4-byte addressing mode.
Signed-off-by: Pavel Machek
---
Diff to v3: Marek insists this is Micron specific, so lets rename the
config option.
diff
Propagate the error returned by submit_control_msg() ratehr then always
returning -EIO when the hcd code indicates an error.
Signed-off-by: Hans de Goede
---
common/usb.c | 6 --
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/common/usb.c b/common/usb.c
index 1b26bfa..20c614c
Interrupt endpoints typically are polled for a long time by the usb
controller before they return anything, so calls to submit_int_msg() can
take a long time to complete this.
To avoid this the u-boot code has the an interrupt queue mechanism / API,
add support for this to the driver-model usb cod
Hi All,
Here is a new series which applies on top of u-boot-dm/master, this contains
all my usb (dm) ohci / ehci / sunxi patches which have been posted before
and not yet merged. The series is at v5 because for a couple of patches from
my first posting of the ehci sunxi dm series this is the 5th p
Actually check for usb_set_port_feature() errors and propagate these if they
happen.
Signed-off-by: Hans de Goede
---
common/usb_hub.c | 6 --
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/common/usb_hub.c b/common/usb_hub.c
index c9be530..7aac220 100644
--- a/common/usb_hub.
When after a reset the port status connection bit is still set and the enable
bit is not then we're dealing with a full-speed device and should hand it over
to the companion controller.
Signed-off-by: Hans de Goede
---
drivers/usb/host/ehci-hcd.c | 16 +---
1 file changed, 13 inserti
The u-boot usb code uses polling for all endpoints, including interrupt
endpoints, so urbs should never be automatically resubmitted.
This also fixes a leak of the urb, as submit_int_msg() did not check if
an already re-submitted urb exists before creating a new one.
Signed-off-by: Hans de Goede
Short circuit the retry loop in legacy_hub_port_reset() by returning an
error from usb_control_msg() when a device was handed over to a companion
by the ehci code. This avoids trying to reset low / fullspeed devices 5
times needlessly. Also do not print an error when a device has been handed
over.
The usb spec says that we must wait a minimum amount of time after port
power on (exact time is in the hub descriptor), this is something which
we must not only do for root ports but also for external hub ports, which
is why the common usb_hub code already waits a full second after powering
up port
Move printing of usb scan status to usb_scan_bus().
This is a preparation patch for adding companion controller support to the
usb uclass.
Signed-off-by: Hans de Goede
Acked-by: Simon Glass
---
drivers/usb/host/usb-uclass.c | 22 +-
1 file changed, 9 insertions(+), 13 delet
For some reason the ohci code is full with:
#ifdef DEBUG
pkt_print(...)
#else
mdelay(1);
#endif
AFAICT there is no reason for the mdelay(1) calls. This commit disables them
when building the ohci code for new driver-model using boards. It leaves
the mdelay(1) ca
This is a preparation patch for adding interrupt-queue support to the
ehci dm code.
Signed-off-by: Hans de Goede
Acked-by: Simon Glass
---
drivers/usb/host/ehci-hcd.c | 31 +--
1 file changed, 25 insertions(+), 6 deletions(-)
diff --git a/drivers/usb/host/ehci-hcd.c
USB scanning is slow, and there is no need to scan the companion buses
if no usb devices where handed over to the companinon controllers by any
of the main controllers.
This saves e.g. 2 seconds when booting a A10 OLinuxIno Lime with no USB-1
devices plugged into the root usb ports.
Signed-off-by
Convert sunxi-boards which use the sunxi-ehci code to the driver-model.
Signed-off-by: Hans de Goede
Acked-by: Simon Glass
---
board/sunxi/Kconfig | 3 ++
drivers/usb/host/ehci-sunxi.c | 93 +--
2 files changed, 67 insertions(+), 29 deletions(-
USB companion controllers must be scanned after the main controller has
been scanned, so that any devices which the main controller which to hand
over to the companion have actually been handed over before we scan the
companion.
As there are no guarantees that this will magically happen in the rig
Add driver-model support to the ohci code.
Signed-off-by: Hans de Goede
Reviewed-by: Marek Vasut
---
drivers/usb/host/ohci-hcd.c | 84 +
drivers/usb/host/ohci.h | 7
2 files changed, 91 insertions(+)
diff --git a/drivers/usb/host/ohci-hcd.c
This commit adds support for the OHCI companion controller, which makes
usb-1 devices directly plugged into to usb root port work.
Note for now this switches usb-keyboard support for sunxi back from int-queue
support to the old interrupt polling method. Adding int-queue support to the
ohci code an
On Sun, 2015-05-10 at 14:10 +0200, Hans de Goede wrote:
> Convert sunxi-boards which use the sunxi-ehci code to the driver-model.
>
> Signed-off-by: Hans de Goede
> Acked-by: Simon Glass
Acked-by: Ian Campbell
___
U-Boot mailing list
U-Boot@lists.d
On 10 May 2015 at 16:19, Pavel Machek wrote:
> On Sun 2015-05-10 11:15:41, Pavel Machek wrote:
> Add reset for N25Q256A SPI NOR, as U-Boot SPL 2013-socfpga (only
> version working on that board) sets 4-byte addressing mode.
>
> Signed-off-by: Pavel Machek
>
> ---
> Diff to v3: Marek insists this
On 8 May 2015 at 13:51, haikun.w...@freescale.com
wrote:
> On 5/8/2015 1:53 PM, Jagan Teki wrote:
>> On 8 May 2015 at 08:14, haikun.w...@freescale.com
>> wrote:
>>> On 5/7/2015 7:44 PM, Jagan Teki wrote:
On 6 May 2015 at 02:30, Simon Glass wrote:
> On 5 May 2015 at 05:37, haikun.w...@fr
Hi Bin,
On 8 May 2015 at 21:39, Bin Meng wrote:
> Hi Simon,
>
> On Sat, May 9, 2015 at 4:43 AM, Simon Glass wrote:
>> Hi Bin,
>>
>> On 6 May 2015 at 03:34, Bin Meng wrote:
>>> It turns out that QEMU x86 emulated graphic card has an built-in
>>> option ROM which can be run perfectly under native
Hi Tim,
On 05/08/2015 10:26 PM, Tim Harvey wrote:
On Fri, May 8, 2015 at 10:35 AM, Nikolay Dimitrov
wrote:
Hi Tim,
On 05/08/2015 06:42 PM, Tim Harvey wrote:
Your right - There is no indication in the IMX6SDLRM that OTP
indicates either temperature grade 'or' speed grade, however my
tes
On 05/10/2015 04:46 PM, Nikolay Dimitrov wrote:
Hi Tim,
On 05/08/2015 10:26 PM, Tim Harvey wrote:
On Fri, May 8, 2015 at 10:35 AM, Nikolay Dimitrov
wrote:
Hi Tim,
On 05/08/2015 06:42 PM, Tim Harvey wrote:
Your right - There is no indication in the IMX6SDLRM that OTP
indicates either t
Hi Bin,
On 8 May 2015 at 22:26, Bin Meng wrote:
> Hi Simon,
>
> On Sat, May 9, 2015 at 5:44 AM, Simon Glass wrote:
>> Hi Bin,
>>
>> On 6 May 2015 at 03:34, Bin Meng wrote:
>>> There are two places in the cfb_console driver that test whether
>>> CONFIG_VGA_AS_SINGLE_DEVICE is defined or not, but
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This update includes:
> - add implementation of pmic_reg_count() method
> - pmic_bind_children() - update function call name
> - Kconfig: add new line at the end of file
>
> Signed-off-by: Przemyslaw Marczak
> ---
> drivers/power/pmic/Kconfig
Hi Przemyslaw,
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> The cleanup includes:
> - pmic.h - fix mistakes in a few comments
> - pmic operations: value 'reg_count' - redefine as function call
> - fix function name: pmic_bind_childs() -> pmic_bind_children()
> - pmic_bind_children: increme
Hi Przemyslaw,
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> Hello!
> This patchset cleanups the POWER framework V4, which is applied into
> u-boot-dm/next tree.
>
> The main changes:
> - pmic/regulator uclasses cleanup - each commit message describes
>the changes in details.
> - added
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit cleanups the regulator command.
> The first change, is adjusting "regulator dev" command to use
> "regulator-name" constraint, for setting the operating device.
> Thanks to this, the regulator_get() function is removed.
>
> This also
Hi Przemyslaw,
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> Signed-off-by: Przemyslaw Marczak
> ---
> board/samsung/odroid/odroid.c | 9 -
> 1 file changed, 4 insertions(+), 5 deletions(-)
>
> diff --git a/board/samsung/odroid/odroid.c b/board/samsung/odroid/odroid.c
> index 29de
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit cleanups the use of function: failed().
> The new function name is: failure(), and it is used
> for print errno and the errno-related message only.
>
> The second change is choosing PMIC device by it's name,
> instead of seq number. T
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This cleanup includes:
> - remove of the preprocessor macros which pointed to long name functions
> - update of the names of some regulator uclass driver functions
> - cleanup of the function regulator_autoset()
> - reword of some comments of reg
Hi Przemyslaw,
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit adds emulation of sandbox PMIC device, which includes:
> - PMIC I2C emulation driver
> - PMIC I/O driver (UCLASS_PMIC)
> - PMIC regulator driver (UCLASS_REGULATOR)
>
> The sandbox PMIC has 12 significant registers and
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit enables:
> - emulated i2c PMIC driver
> - sandbox PMIC I/O driver
> - sandbox PMIC's regulator driver
>
> Signed-off-by: Przemyslaw Marczak
> ---
> configs/sandbox_defconfig | 7 +++
> 1 file changed, 7 insertions(+)
Acked-by:
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> The function get_emul() in sandbox i2c bus driver, always returns
> first child as i2c emul device. This may only work for i2c devices
> with a single child, which is an only i2c emul device.
>
> In case when i2c device has more than one child (e
Hi Przemyslaw,
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This change adds new file to sandbox driver model test environment.
> The file is: test/dm/power.c, and it includes tests for PMIC framework,
> which includes PMIC uclass and REGULATOR uclass.
>
> All tests are based od Sandbox PM
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit cleanups the PMIC framework documentation.
>
> Signed-off-by: Przemyslaw Marczak
> ---
> doc/driver-model/pmic-framework.txt | 20 +---
> 1 file changed, 9 insertions(+), 11 deletions(-)
Acked-by: Simon Glass
_
On 8 May 2015 at 10:20, Przemyslaw Marczak wrote:
> This commit adds sandbox PMIC subnode to sandbox i2c bus 0.
>
> The PMIC's node includes:
> - 2x BUCK
> - 2x LDO
>
> Each regulator node include proper constraints:
> - min, max micro Volts
> - min, max micro Amps (only first of each type)
> - al
On Tue, Apr 28, 2015 at 04:17:55PM -0700, Ash Charles wrote:
> From: Arun Bharadwaj
>
> Overo boards with board revision 0 use a 256MB RAM + 256MB NAND chip.
> For an unknown reason, these boards fail to boot a 3.17.8 kernel based
> on the RAM size configuration in u-boot. As a workaround, fake
On Tue, May 05, 2015 at 01:21:07PM +0200, Hans de Goede wrote:
> On my A10 OlinuxIno Lime I noticed a huge (5+ seconds) delay coming from
> console_init_r. This turns out to be caused by the preconsole buffer flushing
> to the cfb_console. The Lime only has a 16 bit memory bus and that is already
On Thu, May 07, 2015 at 10:01:36PM -0600, Simon Glass wrote:
> Hi Tom,
>
> This includes the real-time-clock uclass, a driver model test suite
> speed-up and part of Han's USB work (the rest need to wait for some patch
> respins).
>
>
> The following changes since commit 905e8f9e53766e606bd4a0e
On Fri, May 08, 2015 at 12:58:47AM +0200, Marek Vasut wrote:
> The following changes since commit 905e8f9e53766e606bd4a0ed46d804889e613f32:
>
> Prepare v2015.07-rc1 (2015-05-05 19:52:15 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-socfpga.git HEAD
>
> for
On Thu, Mar 12, 2015 at 11:22:46AM +0100, Stefan Roese wrote:
> This patch adds a driver for the PCA9551 LED controller.
>
> Originated-by: Timo Herbrecher
> Signed-off-by: Stefan Roese
> Reviewed-by: Tom Rini
> Cc: Fabio Estevam
> Reviewed-by: Fabio Estevam
Applied to u-boot/master, thanks
On Tue, Apr 21, 2015 at 07:51:04AM -0500, Cooper Jr., Franklin wrote:
> Across several devices network environment variables are duplicated.
> Move these variables to a common include file which insures the environment
> variables are reused and insures devices across product lines share the same
On Thu, Apr 23, 2015 at 09:10:36AM +0200, Pavel Machek wrote:
> I checked with Detlev, and sadly removing that maintainers entry is
> right thing to do.
>
> Signed-off-by: Pavel Machek
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 067fb22..a8394f3 100644
Applied to u-boot/master, thanks!
On Fri, Apr 24, 2015 at 02:49:35PM +0200, Hannes Petermaier wrote:
> We take use of the new LCD_ROTATION feature.
> The information about how the display is rotated is taken from B&R specific
> (/factory-settings/rotation) information in the devicetree.
>
> The information there is stored as stri
On Tue, Apr 21, 2015 at 05:02:42PM -0500, Joe Hershberger wrote:
> Having this as a Kconfig allows it to be a dependent feature.
>
> Signed-off-by: Joe Hershberger
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
_
On Wed, Apr 22, 2015 at 09:36:22PM +0200, Jörg Krause wrote:
> This patch fixes cross-compiling U-Boot tools with the musl C library:
> * including is needed for ulong
> * defining _GNU_SOURCE is needed for loff_t
>
> Tested for target at91sam9261ek_dataflash_cs3.
>
> Signed-off-by: Jörg Kr
On Fri, Apr 24, 2015 at 02:49:36PM +0200, Hannes Petermaier wrote:
> the CONFIG_LCD_NOSTDOUT feature never had become mainline in uboot due to the
> fact that the problem of "not writing out whole console to lcd" can be solved
> with another way.
>
> So we remove this unnary define.
>
> Signed-o
On Fri, Apr 24, 2015 at 12:53:12PM +0200, Maxime Ripard wrote:
> The two tools that create android boot images, mkbootimg and the fastboot
> client, set the kernel address by default to 0x10008000.
>
> U-boot always honors this field, and will try to relocate the kernel to
> whatever value is set
On Sun, Apr 26, 2015 at 10:32:36AM +0800, Axel Lin wrote:
> Use clrsetbits_le32() to replace clrbits_le32() + setbits_le32().
>
> Signed-off-by: Axel Lin
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-B
On Mon, Apr 27, 2015 at 10:20:22AM +0200, Paul Kocialkowski wrote:
> This refactors spl_mmc_load_image to use a switch/case structure and easier
> to understand spl_start_uboot checks. This also introduces some more automatic
> fallback on the next mmc boot mode as long as it keeps failing.
>
> L
On Fri, Apr 24, 2015 at 02:49:37PM +0200, Hannes Petermaier wrote:
> Since the used AM3352 SoC doesn't have GPU it isn't allways necessary to build
> in complete drm-stuff into linux kernel. In very small applications only we
> use
> the simple-framebuffer.
>
> So we have 2 use-cases:
> - device
On Fri, Apr 24, 2015 at 02:49:38PM +0200, Hannes Petermaier wrote:
> Since we display in future the splash screen out of linux-os, we don't need
> this support anymore within the common section.
>
> But kwb-target is still using BMP_DISPLAY feature, so we move the related
> from the common sectio
On Fri, Apr 24, 2015 at 02:49:39PM +0200, Hannes Petermaier wrote:
> usbupdate in real does allways load some script from usb-storage and execute
> it, on all B&R targets.
>
> So we do following 2 things:
> - rename it to what it really does
> - move it from boards to common environment
>
> Sign
On Tue, Apr 28, 2015 at 02:25:45AM +0800, kunhuahuang wrote:
> This patch fix the serial output.
> The source is from Kamil Lulko's "stm32f429-discovery board support"
>
> Thanks, Varcain. I learned a lot.
>
> Signed-off-by: kunhuahuang
Applied to u-boot/master, thanks!
--
Tom
signature.as
On Sat, Apr 25, 2015 at 06:53:10PM -0300, Fabio Estevam wrote:
> From: Fabio Estevam
>
> Signed-off-by: Fabio Estevam
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailin
On Tue, Apr 28, 2015 at 04:17:51PM -0700, Ash Charles wrote:
> From: Arun Bharadwaj
>
> Signed-off-by: Arun Bharadwaj
> Signed-off-by: Ash Charles
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot m
On Tue, Apr 28, 2015 at 04:17:50PM -0700, Ash Charles wrote:
> The Gumstix Arbor43C expansion board [1] uses a customized device tree
> file. When this expansion board is detected, load this file.
>
> [1] https://store.gumstix.com/index.php/products/635/
>
> Signed-off-by: Ash Charles
Applied
On Tue, Apr 28, 2015 at 01:44:58AM +0200, maxin.j...@enea.com wrote:
> Fix the usage info from:
> part part uuid :
> to
> part uuid :
>
> Signed-off-by: Maxin B. John
> Reviewed-By: Sjoerd Simons
signature.asc
Description: Digital signature
___
U-B
On Mon, Apr 27, 2015 at 10:20:23AM +0200, Paul Kocialkowski wrote:
> This adds support for providing a partition number instead of a sector for
> eMMC.
>
> Signed-off-by: Paul Kocialkowski
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Tue, Apr 28, 2015 at 03:01:19AM +0800, kunhuahuang wrote:
> Add the stm32F4 board's serial ports support.
> User can use it easily.
> The user only need to edit the number of the usart.
> The patch also fix the serial print out.
>
> Last, this version of patch fix the first patch checkpatch.pl
On Wed, Apr 29, 2015 at 09:05:57AM +1000, Peter Howard wrote:
> Signed-off-by: Peter Howard
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mail
On Tue, Apr 28, 2015 at 04:17:53PM -0700, Ash Charles wrote:
> Overo COMs have NAND flash that requires 4-bit ECC or better except for
> the first sector which can use 1-bit ECC. The boot ROM expects to load
> a payload from NAND written using 1-bit hardware-based ECC. In short,
> write SPL to N
On Tue, Apr 28, 2015 at 04:17:52PM -0700, Ash Charles wrote:
> Signed-off-by: Ash Charles
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailma
On Tue, May 05, 2015 at 12:23:52PM -0500, Joe Hershberger wrote:
> Introduced in change d20a40de9db07de1f1f06a79a4da1cdda5379b75
> "Roll crc32 into hash infrastructure"
>
> Use a consistent define to enable the verify feature in crc32 command.
>
> Signed-off-by: Joe Hershberger
> Acked-by: Simo
On Sun, May 03, 2015 at 02:10:35PM -0700, Vikas Manocha wrote:
> This patch ignores the serial port static platform data at compilation time
> in case of device tree control.
>
> Signed-off-by: Vikas Manocha
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
On Tue, Apr 28, 2015 at 04:55:30PM -0700, Arun Bharadwaj wrote:
> This is because the gd pointer is not set early enough anymore,
> such that the i2c_set_bus_num in get_board_revision can safely
> execute. This results in a console hang at SPL and the boot does
> not proceed.
>
> This piece of co
On Sun, May 03, 2015 at 02:10:34PM -0700, Vikas Manocha wrote:
> This patch adds device tree for the ST Micro stv0991 board & enables
> device tree control. Progressively device tree support for the drivers
> being used will also be added.
>
> Signed-off-by: Vikas Manocha
> Reviewed-by: Simon Gl
On Mon, May 04, 2015 at 06:26:53AM -0700, Du Huanpeng wrote:
> Signed-off-by: Du Huanpeng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailma
On Tue, Apr 28, 2015 at 04:17:54PM -0700, Ash Charles wrote:
> If regular NAND booting fails to find a valid uImage in the
> kernel partition in NAND, try to boot using a zImage and dtb found
> in a UBI volume in the rootfs partition. This is the NAND analog
> of mmc zImage booting for device-tre
On Tue, May 05, 2015 at 12:23:53PM -0500, Joe Hershberger wrote:
> Introduced in change d20a40de9db07de1f1f06a79a4da1cdda5379b75
> "Roll crc32 into hash infrastructure"
>
> The crc32 command with no -v expects an optional 3rd argument to be an
> address to store the result in. With the -v switch,
On Tue, Apr 28, 2015 at 04:55:29PM -0700, Arun Bharadwaj wrote:
> The code is split up into spl.c, overo.c and common.c (which
> has the code common to both)
>
> Signed-off-by: Arun Bharadwaj
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
_
On Thu, May 07, 2015 at 01:00:23PM +0200, Stefan Roese wrote:
> As this board seems to be unmaintained for quite some time, and its
> not moved to the generic board ingrastructure, lets remove it.
>
> This will also enable us to remove the CONFIG_AUTOBOOT_DELAY_STR2
> and CONFIG_AUTOBOOT_STOP_STR
On Wed, May 06, 2015 at 11:46:29AM -0700, Vikas Manocha wrote:
> This patch adds device tree support for arm pl010/pl011 driver.
>
> Signed-off-by: Vikas Manocha
> Acked-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
__
Hi Stefan,
On 8 May 2015 at 01:52, Stefan Roese wrote:
> This patch adds the feature to only stop the autobooting, and therefor
> boot into the U-Boot prompt, when the input string / password matches
> a values that is encypted via a SHA256 hash and saved in the environment.
>
> This feature is e
Hi Stefan,
On 7 May 2015 at 06:13, Stefan Roese wrote:
> I might have missed something, but I failed to use the escape char '\'
> in strings. To pass a printf format string like "foo %d bar\n" via
> Kconfig to the code.
>
> Right now its not possible to use the escape character '\' in Kconfig
> s
Hi Tim,
On Tue, Apr 28, 2015 at 12:44 PM, Tim Harvey wrote:
> +#if defined(CONFIG_IMX6_THERMAL)
> + switch (get_cpu_temp_grade(&minc, &maxc)) {
> + case TEMP_AUTOMOTIVE:
> + puts(" automotive");
> + break;
> +
No minor updates on code.
Changes for v2:
- One change suggested from Simon to use dev_get_parent
thanks!
Jagan.
Jagan Teki (17):
spi: Zap andes_spi driver
spi: Zap ftssp010_spi driver
spi: Zap oc_tiny_spi driver
spi: xilinx_spi: Move header code to driver
spi: xilinx_spi: Driv
Zap andes_spi driver since the boards used this driver
is no longer been active.
Signed-off-by: Jagan Teki
Cc: Macpaul Lin
---
drivers/spi/Makefile| 1 -
drivers/spi/andes_spi.c | 284
drivers/spi/andes_spi.h | 115
3 f
Move the header code into driver for more readable and
easy to access it.
Signed-off-by: Jagan Teki
Cc: Rex Chang
Cc: Murali Karicheri
---
drivers/spi/davinci_spi.c | 110 -
drivers/spi/davinci_spi.h | 121 --
Zap oc_tiny_spi driver since the boards used this driver
is no longer been active.
Signed-off-by: Jagan Teki
Cc: Thomas Chou
---
drivers/spi/Makefile | 1 -
drivers/spi/oc_tiny_spi.c | 245 --
2 files changed, 246 deletions(-)
delete mode 1006
Zap ftssp010_spi driver since the boards used this driver
is no longer been active.
Signed-off-by: Jagan Teki
Cc: Kuo-Jung Su
Cc: Axel Lin
---
drivers/spi/Makefile | 1 -
drivers/spi/ftssp010_spi.c | 498 -
2 files changed, 499 deletions(-)
Move the header code into driver for more readable and
easy to access it.
Signed-off-by: Jagan Teki
Acked-by: Michal Simek
---
drivers/spi/xilinx_spi.c | 113 +-
drivers/spi/xilinx_spi.h | 138 ---
2 files changed,
- Zap unneeded macros
- Re-arrange the code
- Removed __attribute__((weak))
- Replace __func__ macro with func names to save macro transition.
- Re-arranged comment lines.
- Arrange driver code in more readable format[1]
[1] http://patchwork.ozlabs.org/patch/265683/
Signed-off-by: Jagan Teki
Ac
- Adjust tab spaces
- Add comments
Signed-off-by: Jagan Teki
---
drivers/mtd/spi/sf_internal.h | 18 +-
include/spi.h | 2 +-
include/spi_flash.h | 10 ++
3 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/drivers/mtd/spi/sf_intern
Arrange driver code in more readable format[1] for easy accessing
and readable.
[1] http://patchwork.ozlabs.org/patch/265683/
Signed-off-by: Jagan Teki
Cc: Rex Chang
Cc: Murali Karicheri
---
drivers/spi/davinci_spi.c | 343 +++---
1 file changed, 173 ins
This converts the zynq spi driver to use the driver model.
Minimal functional changes like using meaningful name on
structure members wrt mainlined dm spi drivers.
- input_hz -> frequency
- req_hz -> freq
- base -> regs
Signed-off-by: Jagan Teki
Acked-by: Simon Glass
Cc: Michal Simek
Cc: Siva
Enabled CONFIG_DM_SPI and CONFIG_DM_SPI_FLASH for zynq soc.
Signed-off-by: Jagan Teki
Acked-by: Simon Glass
Cc: Michal Simek
Cc: Siva Durga Prasad Paladugu
---
arch/arm/Kconfig | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 49bcad1..fd6fee0 100
This patch includes asm/io.h for readl and writel calls.
build errors:
drivers/spi/xilinx_spi.c: In function 'xilinx_spi_probe':
drivers/spi/xilinx_spi.c:119:2: warning: implicit declaration of function
'writel' [-Wimplicit-function-declaration]
drivers/spi/xilinx_spi.c: In function 'xilinx_spi_x
Now zynq spi driver platform data is controlled by devicetree,
enable the status by saying "okay" on respective board dts to use
the devicetree generated platdata.
Ex:
&spi1 {
status = "okay";
};
Signed-off-by: Jagan Teki
Acked-by: Simon Glass
Cc: Michal Simek
Cc: Siva Durga Prasad Pal
This patch adds zynq spi controller nodes in zynq-7000.dtsi.
Signed-off-by: Jagan Teki
Acked-by: Simon Glass
Cc: Michal Simek
Cc: Siva Durga Prasad Paladugu
---
arch/arm/dts/zynq-7000.dtsi | 24
doc/device-tree-bindings/spi/spi-zynq.txt | 27
1 - 100 of 151 matches
Mail list logo