On Thu, Oct 09, 2014 at 12:49:06AM +0200, Albert ARIBAUD wrote:
> LaCie Wireless Space has no defined maintainer.
> Set myself as maintainer, since I own one of these.
>
> Signed-off-by: Albert ARIBAUD
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Sat, Oct 11, 2014 at 12:25:46AM +0200, Marek Vasut wrote:
> From: Olaf Mandel
>
> Align the documentation with the include/linux/etherdevice.h ,
> which is where this example comes from. The return value from
> the check was inverted in the documentation.
>
> Signed-off-by: Olaf Mandel
> Si
On Tue, Oct 14, 2014 at 11:16:33AM +0200, Valentin Longchamp wrote:
> Since i2c_init_all always sets the bus back to CONFIG_SYS_SPD_BUS_NUM
> for compatibility reasons, it means that any eeprom not located on this
> CONFIG_SYS_SPD_BUS_NUM is not accessible with the eeprom commands, even
> if you c
On Wed, Oct 15, 2014 at 04:38:30AM -0600, Simon Glass wrote:
> From: Gabe Black
>
> There's a definition in stdint.h (provided by gcc) which will be more correct
> if available.
>
> Define CONFIG_USE_STDINT to use this feature, or USE_STDINT=1 on the 'make'
> commmand.
>
> This adjusts the set
On Wed, Oct 15, 2014 at 04:38:32AM -0600, Simon Glass wrote:
> On 64-bit platforms (like sandbox) 64-bit integers may be 'long' rather
> than 'long long'. Use the inttypes header to avoid compiler warnings.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.as
On Wed, Oct 15, 2014 at 04:38:31AM -0600, Simon Glass wrote:
> From: Gabe Black
>
> inttypes.h defines format specifiers for printf which work with data types of
> particular sizes. stdlib.h is currently just a passthrough to malloc.h which
> has declarations of the various *alloc functions.
>
On Wed, Oct 15, 2014 at 04:38:35AM -0600, Simon Glass wrote:
> Use inttypes.h and uint64_t to correct the code so that it will not issue
> warnings on 64-bit machines where 'uint64_t' is 'unsigned long'.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
D
On Wed, Oct 15, 2014 at 04:38:36AM -0600, Simon Glass wrote:
> Use the inttypes header file to provide this.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing li
On Wed, Oct 15, 2014 at 04:38:37AM -0600, Simon Glass wrote:
> Use the inttypes header file to provide this.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing li
On Wed, Oct 15, 2014 at 04:38:33AM -0600, Simon Glass wrote:
> Unfortunately 'unsigned long long' and 'uint64_t' are not necessarily
> compatible on 64-bit machines. Use the correct typedef instead of
> writing the supposed type out in full.
>
> Signed-off-by: Simon Glass
Applied to u-boot/mast
On Wed, Oct 15, 2014 at 04:38:34AM -0600, Simon Glass wrote:
> Use the correct type required by do_div().
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
On Wed, Oct 15, 2014 at 04:38:38AM -0600, Simon Glass wrote:
> Use the inttypes header file to provide this.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing li
On Wed, Oct 15, 2014 at 04:38:39AM -0600, Simon Glass wrote:
> These types are problematic because they are typically declared in a
> non-standard way in U-Boot. For example, U-Boot uses 'long long' for
> int64_t even on a 64-bit machine whereas stdint.h uses 'long'.
> Similarly, U-Boot always use
On Wed, Oct 15, 2014 at 05:53:11PM +0200, Guillaume GARDET wrote:
> Rename some defines containing FAT in their name to be filesystem generic:
> MMCSD_MODE_FAT => MMCSD_MODE_FS
> CONFIG_SPL_FAT_LOAD_ARGS_NAME => CONFIG_SPL_FS_LOAD_ARGS_NAME
> CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME => CONFIG_SPL_FS_LOAD_
On Fri, Oct 17, 2014 at 01:44:06PM -0700, York Sun wrote:
> Commit 951860634fdb557bbb58e0f99215391bc0c29779 may have changed
> the logic unintentially from "if (!(swfw_sync & (fwmask | swmask)))"
> to "if ((swfw_sync & swmask) && !(swfw_sync & fwmask))". This change
> breaks some e1000 NIC with a
On Mon, Oct 20, 2014 at 05:45:56PM +0900, Masahiro Yamada wrote:
> CONFIG_SPL should not be enabled for boards that do not have SPL.
> CONFIG_SUPPORT_SPL introduced by this commit should be "select"ed
> by boards with SPL support and CONFIG_SPL should depend on it.
>
> Signed-off-by: Masahiro Yam
On Mon, Oct 20, 2014 at 04:14:53PM +0800, Bin Meng wrote:
> Signed-off-by: Bin Meng
> Acked-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://l
On Wed, Oct 15, 2014 at 05:53:15PM +0200, Guillaume GARDET wrote:
> Enable EXT support in SPL for OMAP4 boards.
> Build tested for duovero, omap4_sdp4430 and omap4_panda.
> Run time tested on omap4_panda.
>
> Signed-off-by: Guillaume GARDET
> Cc: Tom Rini
Applied to u-boot/master, thanks!
--
On Wed, Oct 15, 2014 at 05:53:14PM +0200, Guillaume GARDET wrote:
> Do not hang in spl_register_fat_device but return an error value.
> It allows to use both CONFIG_SPL_FAT_SUPPORT and CONFIG_SPL_EXT_SUPPORT.
> If FAT load fails, then EXT load is tried.
>
> Signed-off-by: Guillaume GARDET
> Cc:
On Thu, Oct 16, 2014 at 11:19:36AM +0800, Rob Herring wrote:
> From: Rob Herring
>
> CHUNK_TYPE_DONT_CARE should skip over the specified number of blocks, but
> currently fails to increment the device block address. This results in
> filesystem images getting written incorrectly. Add the missing
On Mon, Oct 20, 2014 at 05:45:57PM +0900, Masahiro Yamada wrote:
> CONFIG_TPL should not be enabled for boards that do not have TPL.
> CONFIG_SUPPORT_TPL introduced by this commit should be "select"ed
> by boards with TPL support and CONFIG_TPL should depend on it.
>
> Signed-off-by: Masahiro Yam
On Tue, Oct 21, 2014 at 04:35:28PM -0400, Robert P. J. Day wrote:
> Signed-off-by: Robert P. J. Day
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx
On Tue, Oct 21, 2014 at 04:44:32PM -0400, Robert P. J. Day wrote:
> Signed-off-by: Robert P. J. Day
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx
On Thu, Oct 23, 2014 at 05:27:30PM +0900, Masahiro Yamada wrote:
> - Do not insert a whitespace between a function name and
>an open paranthesis
> - Fix comment style
> - Do not split an error message into multiple lines
>even if it exceeds 80 columns
> - Do not split "for" statement wh
On Thu, Oct 23, 2014 at 08:50:07PM +0300, Ahmad Draidi wrote:
> This patch makes the following changes:
> - Set kernel entry point correctly
> - Append bootargs from image to global bootargs instead
> of replacing them
> - Return end address instead of size from android_image_get_end()
> -
On Thu, Oct 23, 2014 at 05:04:09PM +0200, Stefan Roese wrote:
> This file should contain the bin_hdr generated by the original Marvell
> U-Boot implementation. As this is currently not included in this
> U-Boot version, we have added this placeholder, so that the U-Boot
> image can be generated wi
On Sat, Oct 25, 2014 at 02:54:55AM +0200, Andreas Bießmann wrote:
> From: Andreas Bießmann
>
> Commit ae83d882f5fdf7aa7c5aec09cfafb593153c25d6 moved the fixed size mentioned
> in the comment but missed the comment.
>
> Signed-off-by: Andreas Bießmann
Applied to u-boot/master, thanks!
--
Tom
On Fri, Oct 24, 2014 at 08:13:51PM +0200, Anatolij Gustschin wrote:
> Some boards still use xstr(). Replace remaining occurrences
> of xstr() by commonly used __stringify().
>
> Signed-off-by: Anatolij Gustschin
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital sig
On Thu, Oct 23, 2014 at 05:46:24PM +0900, Masahiro Yamada wrote:
> Actually, unmap_sysmem() does nothing. Just in case.
>
> Signed-off-by: Masahiro Yamada
> Cc: Simon Glass
> Acked-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
_
On Fri, Oct 24, 2014 at 12:44:40PM +0200, Matthias Fuchs wrote:
> - switch to GENERIC_BOARD
> - fix env support from eeprom
>
> Signed-off-by: Matthias Fuchs
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Mon, Oct 27, 2014 at 02:10:34PM +0100, Przemyslaw Marczak wrote:
> This adds custodian to the pmic subsystem.
>
> Signed-off-by: Przemyslaw Marczak
> Cc: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
__
On Sat, Oct 25, 2014 at 02:58:50AM +0200, Andreas Bießmann wrote:
> From: Andreas Bießmann
>
> Signed-off-by: Andreas Bießmann
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@li
On Wed, Oct 15, 2014 at 05:53:12PM +0200, Guillaume GARDET wrote:
> Add EXT filesystem support to SPL.
>
> Signed-off-by: Guillaume GARDET
> Cc: Tom Rini
With the following change:
diff --git a/common/spl/spl_ext.c b/common/spl/spl_ext.c
index 7342268..7fbf3df 100644
--- a/common/spl/spl_ext.c
On Tue, Oct 21, 2014 at 02:26:36PM +0200, Marcel Ziswiler wrote:
> I finally had a look at the datasheet and spotted an additional
> register address difference between regular E1000 and i210/i211 chips.
> This patch fixes this and now successfully works on programmed
> i210/i211 as well as unprog
On Wed, Oct 22, 2014 at 12:41:49AM +0900, Masahiro Yamada wrote:
> Since commit fe1378a961e5 (ARM: use r9 for gd), r9 register
> is used on ARM to hold global_data.
>
> Signed-off-by: Masahiro Yamada
> Acked-by: Jeroen Hofstee
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Tue, Oct 21, 2014 at 01:27:45PM +0300, Igor Grinberg wrote:
> Fix typo in defconfig file format description.
>
> Signed-off-by: Igor Grinberg
> Cc: Masahiro Yamada
> Acked-by: Masahiro Yamada
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Wed, Oct 15, 2014 at 05:53:13PM +0200, Guillaume GARDET wrote:
> Update documentation according to the EXT SPL support patch set.
>
> Signed-off-by: Guillaume GARDET
> Cc: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
Hi Markus,
On 10/24/2014 02:44 AM, Markus Niebel wrote:
> From: Markus Niebel
>
> for multi instance API we use struct fsl_esdhc_cfg to
> pass the clock rate. Do not set f_max from global data,
> since this is wrong for multi instance case.
>
> Signed-off-by: Markus Niebel
> ---
> drivers/mmc
Hello Nikita,
Commit dc383dd introduces the following clang warning:
drivers/block/dwc_ahsata.c:881:35: warning: use of logical '&&' with
constant operand [-Wconstant-logical-operand]
return readl(&(port_mmio->ssts)) && SATA_PORT_SSTS_DET_MASK;
Hi Albert,
On 26 October 2014 13:07, Albert ARIBAUD wrote:
> Le Tue, 26 Aug 2014 17:33:48 +0200,
> Thierry Reding a écrit :
>
>> From: Thierry Reding
>>
>> This series adds PCIe support for Tegra20, Tegra30 and Tegra124. The
>> size is mostly due to the large number of infrastructure that's add
Hi Hans,
On 24 October 2014 02:38, Hans de Goede wrote:
> Hi,
>
> On 10/23/2014 06:02 AM, Simon Glass wrote:
>> For now we won't want to mess with the existing configurations. Create a
>> new one which will enable device tree and driver model. Note that this
>> brings the device tree binary into
Hi Hans,
On 24 October 2014 03:08, Hans de Goede wrote:
> Hi,
>
> On 10/23/2014 06:02 AM, Simon Glass wrote:
>> This adds driver model support to the sunxi GPIO driver, using the device
>> tree to trigger binding of the driver. The driver will still operate
>> without driver model too.
>>
>> Sign
Hi Ian,
On 24 October 2014 03:42, Ian Campbell wrote:
> On Wed, 2014-10-22 at 22:02 -0600, Simon Glass wrote:
>> Add a driver for the designware serial UART used on sunxi. This just
>> redirects to the normal ns16550 driver.
>>
>> Add a stdout-path to the device tree so that the correct UART is c
Greetings, as this is my first post to the list, I'll quickly introduce
myself. I'm Paul Kocialkowski, lead developer of Replicant: a fully free
version of Android running on several mobile devices. I'm very
interested in embedded devices that can run with fully free software,
hence my interest in
Hi Tom,
On 24 October 2014 12:59, Tom Rini wrote:
>
> On Thu, Oct 23, 2014 at 01:16:01PM -0600, Simon Glass wrote:
>
> > Set up the simple malloc() implementation when requested, in preference to
> > the full malloc().
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > Changes in v2: None
> >
>
Hi Suriyan,
On 27 October 2014 13:48, Suriyan Ramasami wrote:
> The commands fatls/ext4ls give negative values when dealing with files
> greater than 2GB.
> The commands fatsize/ext4size do not update the variable filesize for
> these files.
>
> To deal with this, the fs functions have been modif
Hi Rob,
On 24 October 2014 22:51, Rob Herring wrote:
> On Sat, Oct 25, 2014 at 1:56 AM, Simon Glass wrote:
>> +Tom
>>
>> Hi Rob,
>>
>> On 15 October 2014 03:21, Rob Herring wrote:
>>> From: Rob Herring
>>>
>>> Commit f18295d3837c282f (fdt_support: fix an endian bug of
>>> fdt_fixup_memory_bank
On 24 October 2014 09:44, Przemyslaw Marczak wrote:
> The SD Card slot detection pin should be configured as input.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/l
Hi David,
On 27 October 2014 12:18, Kucharczyk, David wrote:
> Hi, I am in the middle of upgrading u-boot-2009.08 to u-boot-2014.07. Our
> resident u-boot expert is on vacation and I'm running into some issues. After
> working through a ton of compile errors I think I'm getting close.
>
> Our s
Hi Hans,
On 24 October 2014 02:32, Hans de Goede wrote:
> Hi,
>
> On 10/23/2014 06:02 AM, Simon Glass wrote:
>> These are from Linux 3.17-rc7 (commit fe82dcec). U-Boot only uses a small
>> portion of these, but we may as well have something to look forward to.
>>
>> The total compiled size is abo
Hi Jagan,
Now that SPI has support for 2- and 4-bit, fast/slow mode, etc.,
sandbox has fallen behind. I wonder if we could add these features to
sandbox without much difficultly?
Regards,
Simon
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.d
On Mon, 2014-10-27 at 18:19 -0400, Tom Rini wrote:
> Applied to u-boot/master, thanks!
Please excuse my ignorance but I can't quite make this one out on
u-boot/master anywhere. Could you let me know of its commit hash?
___
U-Boot mailing list
U-Boot@lis
On 24 October 2014 09:44, Przemyslaw Marczak wrote:
> This config is required by Odroid, and could be also useful for the other
> boards.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
U-Boot@lists.denx.de
http://l
Hi Przemyslaw,
On 24 October 2014 09:44, Przemyslaw Marczak wrote:
> After remove the offsets in Exynos4/4x12 gpio enums, an addidional gpio base
additional
> addresses are required.
>
> Signed-off-by: Przemyslaw Marczak
> ---
> arch/arm/include/asm/arch-exynos/cpu.h | 9 +
> 1 file c
Hi,
On 24 October 2014 09:44, Przemyslaw Marczak wrote:
> This patch adds extra gpio part addresses to exynos4/4x12_gpio_data arrays,
> which are required since the gpio enum lists are linear
>
> Signed-off-by: Przemyslaw Marczak
> ---
> arch/arm/include/asm/arch-exynos/gpio.h | 59
> +
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> The pinctrl dts was imported from the kernel, but the order
> of GPM and GPY is wrong. The gpio enum in: asm/arch/gpio.h
> is proper.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> The gpf0 offset was bad and it's now fixed.
> After fix gpio order in *pinctrl.dts , the gpy0 offset is not required now.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mail
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> The gpy0 don't need any additional register offset,
> but the gpx0 does, so now it is fixed.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
U-Boot@lists.denx.de
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> There is no gaps in exynos gpio enum after rework, so the gpio
> numbers should be adjusted to the new numbering.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> There is no gaps in exynos gpio enum after rework, so the gpio
> numbers should be adjusted to the new numbering.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> There is no gaps in exynos gpio enum after rework, so the gpio
> numbers should be adjusted to the new numbering.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> There is no gaps in exynos gpio enum after rework, so the gpio
> numbers should be adjusted to the new numbering.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> Odroid is based on Exynos4412.
>
> Signed-off-by: Przemyslaw Marczak
Acked-by: Simon Glass
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Sorry, Tom. Found another one that hasn't quite made it in yet (;-p).
On Thu, 2014-10-02 at 18:23 +0200, Marcel Ziswiler wrote:
> Signed-off-by: Marcel Ziswiler
> ---
> arch/arm/dts/tegra30-colibri.dts | 12
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/arch/ar
Hi,
On 24 October 2014 09:45, Przemyslaw Marczak wrote:
> Setting gpio value before dm gpio init has no effect,
> so now, odroid gpio settings are moved after the gpio uclass init.
>
> Using non-requested gpio pin cases printing error messages.
> To avoid this, gpio_request() is added for those g
Hi Tom,
On 27 October 2014 19:01, Simon Glass wrote:
> On 24 October 2014 09:44, Przemyslaw Marczak wrote:
>> The SD Card slot detection pin should be configured as input.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
As this directly relates to fixes for the driver model
Hi Jegan,
On Tue, Oct 28, 2014 at 2:08 AM, Jagan Teki wrote:
> What is this, by defining RD_EXTN the fastest read cmd will pick based
> on controller mode_rx
> Why this RD_SLOW again? does this means the specific flash part will
> only support slow read?
Correct, the SST25* (except SST25VF064C)
On 27 October 2014 19:11, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> The gpy0 don't need any additional register offset,
>> but the gpx0 does, so now it is fixed.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to u-boot-dm, thanks!
__
On 27 October 2014 19:11, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> The gpf0 offset was bad and it's now fixed.
>> After fix gpio order in *pinctrl.dts , the gpy0 offset is not required now.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
App
On 27 October 2014 19:15, Simon Glass wrote:
> Hi Tom,
>
> On 27 October 2014 19:01, Simon Glass wrote:
>> On 24 October 2014 09:44, Przemyslaw Marczak wrote:
>>> The SD Card slot detection pin should be configured as input.
>>>
>>> Signed-off-by: Przemyslaw Marczak
>>
>> Acked-by: Simon Glass
On 27 October 2014 19:11, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> The pinctrl dts was imported from the kernel, but the order
>> of GPM and GPY is wrong. The gpio enum in: asm/arch/gpio.h
>> is proper.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simo
On 27 October 2014 19:09, Simon Glass wrote:
> On 24 October 2014 09:44, Przemyslaw Marczak wrote:
>> This config is required by Odroid, and could be also useful for the other
>> boards.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to u-boot-dm, thanks!
___
2014-10-27 19:12 GMT-06:00 Simon Glass :
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to u-boot-dm, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.
On 27 October 2014 19:12, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> There is no gaps in exynos gpio enum after rework, so the gpio
>> numbers should be adjusted to the new numbering.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to
Hi Tom,
Here are the DM fixes for exynos boards. I am bring these through the
DM tree since they directly relate to the GPIO conversion recently
done through that tree.
There are three more patches to come, but I have requested changes.
Przemyslaw please can you base the v2 of those patches on dm
On 27 October 2014 19:12, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> Odroid is based on Exynos4412.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to u-boot-dm, thanks!
___
U-Boot mailing li
On 27 October 2014 19:12, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> There is no gaps in exynos gpio enum after rework, so the gpio
>> numbers should be adjusted to the new numbering.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to
On 27 October 2014 19:12, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> There is no gaps in exynos gpio enum after rework, so the gpio
>> numbers should be adjusted to the new numbering.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to
On 27 October 2014 19:12, Simon Glass wrote:
> On 24 October 2014 09:45, Przemyslaw Marczak wrote:
>> There is no gaps in exynos gpio enum after rework, so the gpio
>> numbers should be adjusted to the new numbering.
>>
>> Signed-off-by: Przemyslaw Marczak
>
> Acked-by: Simon Glass
Applied to
Hi Prezemyslaw,
On 27 October 2014 12:48, Simon Glass wrote:
> Hi Przemyslaw,
>
> On 24 October 2014 09:44, Przemyslaw Marczak wrote:
>> Hello Simon, Tom,
>>
>> The last driver-model changes was merged too fast and I was not able
>> to test it well on all my boards. It was worked well for the fi
Hi Jegan,
On Tue, Oct 28, 2014 at 2:00 AM, Jagan Teki wrote:
> I believe byte write is already been used within the sst_write_wp -
> please check.
>
Yes, byte write is used within sst_write_wp, however that does not
mean sst_write_wp is doing the correct thing for byte program (02h).
The sst_wri
Hello, Albert,
> On Fri, 17 Oct 2014 16:00:30 +0800, Alison Wang
> wrote:
> > To support interactive DDR debugger, cli_simple.o, cli.o,
> > cli_readline.o, command.o, s_record.o, xyzModem.o and cmd_disk.o are
> > all needed for drivers/ddr/fsl/interactive.c.
> >
> > In current common/Makefile, th
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: Monday, October 27, 2014 5:42 PM
> To: Tang Yuantian-B29983
> Cc: Sun York-R58495; u-boot@lists.denx.de; Jin Zhengxiong-R64188
> Subject: Re: [PATCH 2/4] ARM: HYP/non-sec: Make armv7_init_nonsec() usable
Hi,
On Tue, Oct 28, 2014 at 8:05 AM, Simon Glass wrote:
> Hi Hans,
>
> On 24 October 2014 03:08, Hans de Goede wrote:
>> Hi,
>>
>> On 10/23/2014 06:02 AM, Simon Glass wrote:
>>> This adds driver model support to the sunxi GPIO driver, using the device
>>> tree to trigger binding of the driver. T
Hi Chen-Yu,
On 27 October 2014 20:53, Chen-Yu Tsai wrote:
> Hi,
>
> On Tue, Oct 28, 2014 at 8:05 AM, Simon Glass wrote:
>> Hi Hans,
>>
>> On 24 October 2014 03:08, Hans de Goede wrote:
>>> Hi,
>>>
>>> On 10/23/2014 06:02 AM, Simon Glass wrote:
This adds driver model support to the sunxi GP
Hi,
On Tue, Oct 28, 2014 at 11:29 AM, Simon Glass wrote:
> Hi Chen-Yu,
>
> On 27 October 2014 20:53, Chen-Yu Tsai wrote:
>> Hi,
>>
>> On Tue, Oct 28, 2014 at 8:05 AM, Simon Glass wrote:
>>> Hi Hans,
>>>
>>> On 24 October 2014 03:08, Hans de Goede wrote:
Hi,
On 10/23/2014 06:02 A
Hi, Przemyslaw.
On 10/25/2014 12:44 AM, Przemyslaw Marczak wrote:
> The SD Card slot detection pin should be configured as input.
>
> Signed-off-by: Przemyslaw Marczak
> ---
> drivers/mmc/s5p_sdhci.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/s5p_sdhci
Hello Yuantian,
On Tue, 28 Oct 2014 02:24:10 +, Yuantian Tang
wrote:
>
> > -Original Message-
> > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> > Sent: Monday, October 27, 2014 5:42 PM
> > To: Tang Yuantian-B29983
> > Cc: Sun York-R58495; u-boot@lists.denx.de; Jin Zhengxi
Hello Masahiro,
On Tue, 28 Oct 2014 02:13:46 +0900, Masahiro YAMADA
wrote:
> I am thinking [2] is better.
Agreed. Plus it will help prune out really unsupported boards.
Amicalement,
--
Albert.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://list
Hello Yehuda,
On Mon, 27 Oct 2014 14:07:16 +0200, Yehuda Yitschak
wrote:
> a hexadicemal value was missing the "0x" prefix which caused
> assembler error
>
> Signed-off-by: Yehuda Yitschak
> ---
> arch/arm/include/asm/macro.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
101 - 191 of 191 matches
Mail list logo