Hi,
On Tue, 30 Jul 2013 23:37:57 +0200
Marek Vasut wrote:
> This patch moves all the font configuration values into video_font_data.h
> so they are all in the right place with the font. The video_font.h now only
> includes video_font_data.h and will allow us to select and include different
> fon
On Tue, 30 Jul 2013 23:37:59 +0200
Marek Vasut wrote:
> The cfb_console can't handle 4-bit wide font properly, since with
> 4-bit wide font, all 8 bits are drawn. Unbreak the video_drawchars()
> function to correctly render 4-bits only on such fonts.
>
> Signed-off-by: Marek Vasut
> Cc: Anatoli
On Wed, 31 Jul 2013 17:25:34 +0900
Hyungwon Hwang wrote:
> This is u-boot driver for L5F31188 panel.
> I tested it in the board based on MIPI DSI with EXYNOS4 series, and it worked
> well.
>
> Changes in V2:
> - Replaced license header by SPDX-License-Identifier.
>
> Signed-off-by: Hyung
On Sat, 3 Aug 2013 07:22:49 +0200
Heiko Schocher wrote:
> the clk_get() function is needed for the da8xx-fb video driver,
> which is used on the am3xx based siemens boards.
>
> Signed-off-by: Heiko Schocher
> Cc: Tom Rini
> ---
> arch/arm/include/asm/arch-am33xx/hardware.h | 1 +
> 1 Datei g
On Sat, 3 Aug 2013 07:22:48 +0200
Heiko Schocher wrote:
> the da8xx-fb driver works also on am335x boards. So move
> the da8xx-fb.h file from arch/arm/include/asm/arch-davinci
> to drivers/video, so this driver can used from am335x
> based boards. Also add WVGA panel_type.
>
> Signed-off-by: He
On Sat, 3 Aug 2013 07:22:51 +0200
Heiko Schocher wrote:
> without this patch the bdinfo command shows:
> U-Boot# bd
> arch_number = 0x10DC
> [...]
> sp start= 0x8EF32F20
> FB base = 0x
>
> with this patch it shows the address where the framebuffer
> for this video driver sta
On Sat, 3 Aug 2013 07:22:50 +0200
Heiko Schocher wrote:
> to use this driver also on am335x based boards, the following
> changes are made:
>
> - struct lcd_ctrl_config lcd_cfg is now configurable
> through board code
>
> - controller base is configurable through define
> DA8XX_LCD_CNTL_BA
On Sat, 3 Aug 2013 07:22:52 +0200
Heiko Schocher wrote:
> when generating the bmp_logo_bitmap, the index is casted
> as an uint16_t. So bigger logos as 65535 bytes are converted wrong
> Fix this.
>
> Signed-off-by: Heiko Schocher
> Cc: Anatolij Gustschin
> ---
> tools/bmp_logo.c | 2 +-
> 1
On Sat, 3 Aug 2013 07:22:53 +0200
Heiko Schocher wrote:
> This patch add an option to skip cfb console init for boards
> who want to show a logo, but not use the cfb console. This is
> needed for the siemens boards, which have a bmp bootlogo, but
> do not need the cfb console.
>
> Signed-off-by
Dear Stephen Warren,
In message <5205748d.7060...@wwwdotorg.org> you wrote:
>
> > It appears boot time and increased complexity are no concern to you?
>
> I don't think this is any different than a BIOS booting grub on x86.
Probably not. But do we really have to chose the worst possible
example
On Fri, Aug 9, 2013 at 8:25 PM, Tom Rini wrote:
> On Thu, Aug 08, 2013 at 01:39:33AM +0530, Jagannadha Sutradharudu Teki wrote:
>
>> This is v2 series for past read/write instruction support.
>> this series also includes zynq qspi driver patch set for knowing
>> usage of these extended/quad read a
Hi All,
On Tue, Aug 6, 2013 at 9:47 PM, Jagannadha Sutradharudu Teki
wrote:
> Hi All,
>
> This is a v2 series for "sf: Add common probe support"
>
> I am u-boot/spi custodian, I removed all flash drivers files(except ramtron,
> handled in a separate driver) and implemented a common probe support.
Hi Tom,
Pull request has more likely a cleanup and one bug fixe.
Please let me know for any issues/concerns.
Thanks,
Jagan.
The following changes since commit d05bfd0586ccebe96e31976459c8ef45ec65e109:
Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-08-06 09:49:06
-0400)
are avai
Dear Albert,
In message <20130810084118.2d6c9804@lilith> you wrote:
>
> Board omap1510inn is marked orphaned.
...
> Should I try and clean this within my start.S commonalization effort
> (first submission tonight, BTW) and move the signature generation
> in ./Makefile as a new image rule, or shou
Note: This is the license header change from Roger Meier (thanks), acked
by Wolfgang. While this will diverge our source a bit from the dtc
upstream, I'm willing to live with that for now and indefinitely if
necessary.
I would like to start a dialog with David Gibson and Jon Loeliger to see
The __* keywords are reserved. On FreeBSD __unused evaluates
to the attribute unused, causing a compilation failure.
Just use unused instead.
Signed-off-by: Jeroen Hofstee
cc: joe.hershber...@gmail.com
---
include/net.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/
gcc allows extensions to be non compiler specific by defining
__* macros for the attributes supported by gcc. Having a
different definition causes many warnings during the build
(cdefs.h on FreeBSD uses __attribute((__pure__)) where u-boot
uses __attribute__((pure)) for example). Do not redefine
th
Fix size calculation in copy of go_to_speed into SRAM.
Use SRAM_CLK_CODE in call to SRAM-based go_to_speed.
Signed-off-by: Albert ARIBAUD
---
Patch history:
- V2: also remove _end_vect and _start declarations in clock.h
- V1: initial version
arch/arm/cpu/armv7/omap3/clock.c | 6 ++
On Sat, Aug 10, 2013 at 12:11:38PM +0200, Wolfgang Denk wrote:
>
> Why should the boot process take a minute or more when it could be
> done in a few seconds instead?
It takes your x86 kit a minute to load grub? Hyperbole doesn't
help advance technical discussions. Chaining another bootloader
i
On Thu, 8 Aug 2013 11:26:37 -0400
Tom Rini wrote:
> On Wed, Aug 07, 2013 at 06:04:23PM -0500, Dennis Gilmore wrote:
> > On Wed, 7 Aug 2013 09:19:21 -0400
> > Tom Rini wrote:
> >
> > > On Tue, Aug 06, 2013 at 06:11:25PM -0500, Dennis Gilmore wrote:
> > > > On Tue, 6 Aug 2013 17:42:31 -0400
> > >
On Thu, 8 Aug 2013 20:48:24 +0200
Dirk Müller wrote:
> Hi Dennis,
>
> > right or wrong we want things to be simple for the user and to
> > largely look like a linux system on x86 would. The user and distro
> > should never need to worry about memory locations
> >
> > so this would mean similar p
On Fri, 09 Aug 2013 16:20:06 -0600
Stephen Warren wrote:
> On 08/03/2013 01:11 AM, Dennis Gilmore wrote:
> > Hi all,
> >
> > I wanted to start a discussion on defining a unified feature set
> > that makes it simpler for the different distros to support ARM
> > systems using u-boot. I have based
On Fri, 09 Aug 2013 22:35:08 -0600
Stephen Warren wrote:
> On 08/09/2013 05:00 PM, Stephen Warren wrote:
> > On 08/09/2013 04:49 PM, Wolfgang Denk wrote:
> >> Dear Stephen Warren,
> >>
> >> In message <52056b16.7050...@wwwdotorg.org> you wrote:
> >>>
> >>> There's also the possibility of chain-lo
Simon,
From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass
Sent: Friday, August 09, 2013 9:04 PM
To: Stephen Warren
Cc: U-Boot Mailing List; Tom Warren; Stephen Warren; tr...@ti.com
Subject: Re: [PATCH] RFC: tegra: Avoid using I2C prior to relocation
+Tom Rini
Hi Stephen,
On
24 matches
Mail list logo