On Wed, 7 Nov 2012 23:38:32 -0700
Stephen Warren wrote:
> When an LCD driver is actually driving a regular external display, e.g.
> an HDMI monitor, the display resolution might not be known until the
> display controller has initialized, i.e. during lcd_ctrl_init(). However,
> lcd.c calculates
On Wed, 7 Nov 2012 23:38:33 -0700
Stephen Warren wrote:
> The firmware running on the bcm2835 SoC's VideoCore CPU manages the
> display controller. Add a simple "LCD" driver that communicates with the
> firmware using the property mailbox protocol. This configures the
> display and frame-buffer
From: Lukasz Majewski
The ustrtoul shall convert string defined size (e.g. 1GiB) to unsigned
long type (as its name implies).
Up till now it had returned int, which might cause problems with large
numbers (GiB range), when interpreted as U2 signed numbers.
Signed-off-by: Lukasz Majewski
Signed
From: Lukasz Majewski
This move is necessary to export gpt header and GPT partition entries to be
used with other commands or subsystems (like DFU in the future)
Additionally the part_efi.h file has been cleaned-up to supress checkpatch's
warnings.
Signed-off-by: Lukasz Majewski
Signed-off-by:
This patch series provides a new command - "gpt" for eMMC partition table
(in the GPT format) restoration.
As a pre-work, some cleanup at the part_efi.c file was performed to
remove custom macros and make GPT related structures more readable.
Moreover the part_efi.h file has been moved to ./inclu
From: Lukasz Majewski
Documentation of the GPT format.
Signed-off-by: Lukasz Majewski
Signed-off-by: Kyungmin Park
---
Changes for v2:
- Typos correction.
- Adding guidlines about GPT restoration.
- Adding information about GUID generator
Changes for v3:
- None
Changes for v4:
- Updated docu
From: Lukasz Majewski
The restoration of GPT table (both primary and secondary) is now possible.
Simple GUID generation is supported.
Signed-off-by: Lukasz Majewski
Signed-off-by: Piotr Wilczek
Signed-off-by: Kyungmin Park
---
Changes for v2:
- Move GPT Header and Page Table Entries generatio
From: Chang Hyun Park
Custom definitions of le_XX_to_int functions have been replaced with
standard ones, defined at
Replacement of several GPT related structures members with ones
indicating its endianness and proper size.
Signed-off-by: Chang Hyun Park
Signed-off-by: Lukasz Majewski
Signed
New command - "gpt" is supported. It restores the GPT partition table.
It looks into the "partitions" environment variable for partitions definition.
It can be enabled at target configuration file with CONFIG_CMD_GPT.
Simple UUID generator has been implemented. It uses the the gd->start_addr_sp
for
From: Lukasz Majewski
Enable support for GPT partition table restoration at Samsung's Trats
development board.
Signed-off-by: Lukasz Majewski
Signed-off-by: Kyungmin Park
CC: Minkyu Kang
---
Changes for v2:
- New format for default GPT partitions (key=value pairs)
- replace size definitions w
Hi Tom,
please add these 5 patches to u-boot.
Currently microblaze can't be compiled and this patch
"microblaze: Remove asm/bitops.h from asm/posix_types.h"
fixed it.
Thanks,
Michal
The following changes since commit 1cc619be8b73abbee2fd6faf2cd4ade27b516531:
Tom Rini (1):
Merge branc
On 11/09/2012 10:49 AM, Armando Visconti wrote:
> Ciao Stefan, Vipin,
>
>>>
>>> Vipin, would you "volunteer" to eventually become this SPEAr U-Boot
>>> custodian? Or someone else?
>>>
>>
>> Yes, I volunteer to be the SPEAr U-Boot custodian..
>>
>
> I think that no one else could to this custodian
On Fri, Nov 09, 2012 at 12:07:31PM +0100, Michal Simek wrote:
> Hi Tom,
>
> please add these 5 patches to u-boot.
> Currently microblaze can't be compiled and this patch
> "microblaze: Remove asm/bitops.h from asm/posix_types.h"
> fixed it.
>
> Thanks,
> Michal
>
>
> The following changes sinc
Hi Ajoy,
On Thu, 8 Nov 2012 19:26:28 -0800 (PST)
akdas75 wrote:
>
> Hi Anatolij and Wolfgang Denk
>
> I have solved the problem.
> There are some "must" changes in omap3_spi.c to make it working. Otherwise
> it will not be behave in the expected way.
Okay, thanks for reporting.
> There are
a while back, i wrote a few observations about OMAP-related things
in u-boot, and i just went back and updated the page where i put them:
http://www.crashcourse.ca/wiki/index.php/OMAP4_U-Boot_Notes
nothing serious, just possible cleanups, and i'm willing to submit
patches for anything that p
Hello,
During the last U-Boot meeting they "Falcon Mode" has been showed and I'd
like to have more details about it. Where I can find the documentation,
example code and slides?
Regards,
--
Otavio Salvador O.S. Systems
E-mail: ota...@ossystems.com.br http://www.ossy
Hi Otavio,
On Fri, 9 Nov 2012 20:41:10 -0200
Otavio Salvador wrote:
...
> During the last U-Boot meeting they "Falcon Mode" has been showed and I'd
> like to have more details about it. Where I can find the documentation,
> example code and slides?
Some documentation is in README (SPL framework)
Hi Lukasz,
On Fri, 09 Nov 2012 08:42:09 +0100
Lukasz Majewski wrote:
...
> diff --git a/board/davedenx/qong/qong.c b/board/davedenx/qong/qong.c
> index c41f11d..e8c23f8 100644
> --- a/board/davedenx/qong/qong.c
> +++ b/board/davedenx/qong/qong.c
> @@ -28,7 +28,7 @@
> #include
> #include
> #i
Hi Lukasz,
On Fri, 09 Nov 2012 08:42:15 +0100
Lukasz Majewski wrote:
...
> +int power_bat_init(unsigned char bus)
> +{
> + struct pmic *p = pmic_alloc();
> + static const char name[] = "BAT_TRATS";
> +
> + debug("Board BAT init\n");
> +
> + p->interface = PMIC_NONE;
> + p->nam
On Fri, 09 Nov 2012 08:42:16 +0100
Lukasz Majewski wrote:
...
> +int power_muic_init(unsigned int bus)
> +{
> + struct pmic *p = pmic_alloc();
> + static const char name[] = "MAX8997_MUIC";
> +
> + debug("Board Micro USB Interface Controller init\n");
> +
> + p->name = name;
> +
Dear Anatolij Gustschin,
> Hi Otavio,
>
> On Fri, 9 Nov 2012 20:41:10 -0200
> Otavio Salvador wrote:
> ...
>
> > During the last U-Boot meeting they "Falcon Mode" has been showed and I'd
> > like to have more details about it. Where I can find the documentation,
> > example code and slides?
>
On 09/11/2012 23:41, Otavio Salvador wrote:
> Hello,
>
Hi Otavio,
> During the last U-Boot meeting they "Falcon Mode" has been showed and
> I'd like to have more details about it. Where I can find the
> documentation, example code and slides?
You can find the slides of the presentation at the l
Hello,
Subject pretty much says it all; ARM custodians / maintainers / devs
can safely assume that any commit from u-boot/master up to 59852d03
that they depend on is already in ARM.
Amicalement,
--
Albert.
___
U-Boot mailing list
U-Boot@lists.denx.de
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: 05 November 2012 05:02
> To: U-Boot
> Cc: Prafulla Wadaskar; Simon Guinot; Albert ARIBAUD
> Subject: [PATCH v4 3/4] kirkwood: make MPP arrays static const
>
> This saves stack and code memory for local
On 23/10/2012 22:57, Troy Kisky wrote:
> Use CONFIG_MX6 when the particular processor
> variant isn't important.
>
> Reserve the use of CONFIG_MX6Q to
> specifically test for quad cores variant.
>
> Signed-off-by: Troy Kisky
> ---
Applied to -u-boot-imx, thanks.
Best regards,
Stefano Babi
-
On 23/10/2012 22:57, Troy Kisky wrote:
> Read memory setup registers to determine size
> of available ram. This routine works for mx53/mx6x
>
> I need this because when mx6solo called get_ram_size
> with a too large maximum size, the system hanged.
>
> Signed-off-by: Troy Kisky
>
Applied to -u
On 23/10/2012 22:57, Troy Kisky wrote:
> Only the values used in the sabrelite board are
> added currently. Add more as other boards use them.
>
> Signed-off-by: Troy Kisky
> ---
Applied to -u-boot-imx, thanks.
Best regards,
Stefano Babic
--
==
On 23/10/2012 22:57, Troy Kisky wrote:
> Previously, the same value was returned for both mx6dl and mx6solo.
> Check number of processors to differeniate.
> Also, a freescale patch says that sololite has its cpu/rev
> stored at 0x280 instead of 0x260.
> I don't have a sololite to verify.
>
> Signe
> -Original Message-
> From: u-boot-boun...@lists.denx.de [mailto:u-boot-
> boun...@lists.denx.de] On Behalf Of Sambul
> Sent: 04 November 2012 18:28
> To: u-boot@lists.denx.de
> Subject: Re: [U-Boot] kwboot: Boot Marvell Kirkwood SoCs over a serial
> link.
>
> Wolfgang Denk denx.de> wr
On 23/10/2012 22:57, Troy Kisky wrote:
> The '#' used as comments in the files cause the preprocessor
> trouble, so change to /* */.
>
> Signed-off-by: Troy Kisky
> ---
Hi Troy,
> .gitignore |1 +
> Makefile | 11 +-
>
> -Original Message-
> From: Holger Brunck [mailto:holger.bru...@keymile.com]
> Sent: 02 November 2012 15:45
> To: u-boot@lists.denx.de
> Cc: Holger Brunck; Valentin Longchamp; Prafulla Wadaskar
> Subject: [PATCH 3/4] km/common: cosmetic change reported from
> checkpatch
>
> Signed-off-b
On 23/10/2012 04:40, Troy Kisky wrote:
> This series tries to separate the mii regsisters
> from the ethernet registers as suggested by
> Andy Fleming. Then, mx6qsabrelite is changed
> to find the phy address from the possibles 4-7.
>
> The V3 series is very different from V2.
>
> Troy Kisky (9):
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: 05 November 2012 05:02
> To: U-Boot
> Cc: Prafulla Wadaskar; Simon Guinot; Albert ARIBAUD
> Subject: [PATCH v4 1/4] mvgbe: allow non-sequential PHY addresses
>
> Signed-off-by: Albert ARIBAUD
> ---
>
On 08/11/2012 21:27, Benoît Thébaudeau wrote:
> The EHCI definitions in i.MX31's imx-regs.h are MXC-generic, so move them to
> ehci-fsl.h so that all MXC SoCs can use them.
>
> Signed-off-by: Benoît Thébaudeau
> Cc: Marek Vasut
> Cc: Stefano Babic
> ---
Hi Benoît,
> Changes for v2: None.
>
>
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: 05 November 2012 05:02
> To: U-Boot
> Cc: Prafulla Wadaskar; Simon Guinot; Albert ARIBAUD;
> joe.hershber...@gmail.com
> Subject: [PATCH v4 2/4] mv88e61xx: refactor PHY and SWITCH level-code
>
>
> Signe
> -Original Message-
> From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net]
> Sent: 05 November 2012 05:02
> To: U-Boot
> Cc: Prafulla Wadaskar; Simon Guinot; Albert ARIBAUD
> Subject: [PATCH v4 4/4] ARM: lacie_kw: add support for WIRELESS_SPACE
>
> Signed-off-by: Albert ARIBAUD
> ---
> -Original Message-
> From: Holger Brunck [mailto:holger.bru...@keymile.com]
> Sent: 02 November 2012 15:45
> To: u-boot@lists.denx.de
> Cc: Holger Brunck; Valentin Longchamp; Prafulla Wadaskar
> Subject: [PATCH 1/4] arm/km: fix memory settings
>
> On kmcoge5un we faced some serious pro
> -Original Message-
> From: Holger Brunck [mailto:holger.bru...@keymile.com]
> Sent: 02 November 2012 15:45
> To: u-boot@lists.denx.de
> Cc: Valentin Longchamp; Holger Brunck; Prafulla Wadaskar
> Subject: [PATCH 4/4] arm/km: remove duplicate code
>
> From: Valentin Longchamp
>
> This
Hi Albert,
please pull from u-boot-imx, thanks.
The following changes since commit 59852d03867108217fe88e3bfc3e1e9cedfe63c5:
Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
(2012-11-09 08:47:25 -0700)
are available in the git repository at:
git://www.denx.de/git/u-boot-im
39 matches
Mail list logo