> -Original Message-
> From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de]
> On Behalf Of bhupesh.sha...@freescale.com
> Sent: Friday, January 10, 2014 12:59 PM
> To: 'tiger...@viatech.com.cn'; 'u-boot@lists.denx.de'
> Subject: Re: [U-Boot] [U-boot] Uboot's plan for ARM
Currently we have similar code for (txp && rxp), (txp && !rxp), (!rxp & txp),
and (!txp && !rxp) cases. This patch refactors the code a bit to avoid
duplicate similar code.
Signed-off-by: Axel Lin
---
Hi Thomas,
This path is similar to the patch I sent for spi-oc-tiny.c linux driver.
I'd apprecia
Hi Heiko,
> Preprocessor definitions and hardcoded implementation selection in
> g_dnl core were replaced by a linker list made of {usb_function_name,
> bind_callback) pairs.
Could you test those g_dnl related patches?
You would probably need to apply the whole series for testing.
Thanks in adv
Hi tiger...@viatech.com.cn,
On Fri, 10 Jan 2014 09:58:11 +0800, wrote:
> Hi, Albtert:
> How to download u-boot source code with arm64 patch code.
> Such as :
> Include arch/arm/cpu/armv8 directory.
>
> I used "git clone git://www.denx.de/git/u-boot.git" to download source
> code.
> But not fin
Hi feng...@phytium.com.cn,
On Sat, 14 Dec 2013 11:47:28 +0800, feng...@phytium.com.cn wrote:
> From: David Feng
>
> Changes for v16:
> - make the patches work with latest recently u-boot.
> add rela relocation type to OBJCFLAGS definition
> at arm/config.mk.
Applied to u-boot-arm, wi
Hi Tom,
On Thu, 9 Jan 2014 15:11:27 -0500, Tom Rini wrote:
> The toolchain sets __aarch64__ for both LE and BE. In the case of
> posix_types.h we cannot reliably use config.h as that will lead to
> problems. In the case of byteorder.h it's clearer to check the EB flag
> being set in either ca
Hi, Marczak
On Thu, 09 Jan 2014 12:23:10 +0100
Przemyslaw Marczak wrote:
> This is big size patch. Please follow the link:
>
> http://www.denx.de/wiki/pub/U-Boot/TooBigPatches/0006-lib-tizen-change-Tizen-logo-with-the-new-one.patch
>
I tested it on M0 board, and the image shows center-aligned
The vexpress_aemv8a is the first aarch64 board in U-Boot.
As it was introduced, it gets built when "MAKEALL -a arm"
is invoked, and fails as this command is run with a 32-bit,
not 64-bit, toolchain as the cross-compiler.
Introduce 'arch64' as a valid 'MAKEALL -a' argument, treated
as 'arm' for all
Hello Hyungwon,
On 01/10/2014 07:45 AM, Hyungwon Hwang wrote:
Hi Marczak,
On Thu, 09 Jan 2014 12:23:04 +0100
Przemyslaw Marczak wrote:
This patch set includes changes required to:
- properly use of all gpios
- introduce common file for Samsung misc code
- keys support (PWR, VOL:UP,DOWN)
- co
Hi Hyungwon,
On 01/10/2014 10:26 AM, Hyungwon Hwang wrote:
Hi, Marczak
On Thu, 09 Jan 2014 12:23:10 +0100
Przemyslaw Marczak wrote:
This is big size patch. Please follow the link:
http://www.denx.de/wiki/pub/U-Boot/TooBigPatches/0006-lib-tizen-change-Tizen-logo-with-the-new-one.patch
I t
Hello Minkyu,
On 01/10/2014 02:37 AM, Minkyu Kang wrote:
On 09/01/14 20:23, Przemyslaw Marczak wrote:
This simple LCD menu allows run one of download mode on device
without writing on console or for fast and easy upgrade.
This feature check user keys combination at boot:
- power key + volume up
On 10/01/14 18:37, Przemyslaw Marczak wrote:
> Hello Minkyu,
>
> On 01/10/2014 02:37 AM, Minkyu Kang wrote:
>> On 09/01/14 20:23, Przemyslaw Marczak wrote:
>>> This simple LCD menu allows run one of download mode on device
>>> without writing on console or for fast and easy upgrade.
>>> This featu
On 01/10/2014 10:43 AM, Minkyu Kang wrote:
On 10/01/14 18:37, Przemyslaw Marczak wrote:
Hello Minkyu,
On 01/10/2014 02:37 AM, Minkyu Kang wrote:
On 09/01/14 20:23, Przemyslaw Marczak wrote:
This simple LCD menu allows run one of download mode on device
without writing on console or for fast a
Dear Albert,
In message <1389346096-26870-1-git-send-email-albert.u.b...@aribaud.net> you
wrote:
> The vexpress_aemv8a is the first aarch64 board in U-Boot.
> As it was introduced, it gets built when "MAKEALL -a arm"
> is invoked, and fails as this command is run with a 32-bit,
> not 64-bit, tool
Hi Wolfgang,
On Fri, 10 Jan 2014 12:49:27 +0100, Wolfgang Denk wrote:
> Dear Albert,
>
> In message <1389346096-26870-1-git-send-email-albert.u.b...@aribaud.net> you
> wrote:
> > The vexpress_aemv8a is the first aarch64 board in U-Boot.
> > As it was introduced, it gets built when "MAKEALL -a
Add SPL support to be able to detect a USB Mass Storage device
connected to a USB host. Once a USB Mass storage device is detected
the SPL will load the u-boot.img from a FAT partition to target address.
Signed-off-by: Dan Murphy
---
arch/arm/include/asm/arch-am33xx/spl.h | 14 ++--
commo
The spl directory is ignored by git as these objects are created
during spl creation. The only file not created is the Makefile.
This file can be modified and checked in via git.
Due to the order of rule precedence having the whole directory
ignored first then indicating not to ignore the Makefi
Move the FAT functions to a common location for reuse.
Signed-off-by: Dan Murphy
---
common/spl/Makefile |1 +
common/spl/spl_fat.c | 96 ++
common/spl/spl_mmc.c | 68 ---
include/spl.h|5 +++
4
On Fri, Jan 10, 2014 at 10:28 +0100, Albert ARIBAUD wrote:
>
> The vexpress_aemv8a is the first aarch64 board in U-Boot.
> As it was introduced, it gets built when "MAKEALL -a arm"
> is invoked, and fails as this command is run with a 32-bit,
> not 64-bit, toolchain as the cross-compiler.
>
> Int
Hi Albert,
On Fri, 10 Jan 2014 10:28:16 +0100, Albert ARIBAUD
wrote:
> The vexpress_aemv8a is the first aarch64 board in U-Boot.
> As it was introduced, it gets built when "MAKEALL -a arm"
> is invoked, and fails as this command is run with a 32-bit,
> not 64-bit, toolchain as the cross-compiler
On Fri, Jan 10, 2014 at 11:02:43AM +0800, tiger...@viatech.com.cn wrote:
> Hi, experts:
>
> Does U-boot have any plan to support ARMv8 SOC?
I think the short answere here is that it's not quick to merge in brand
new arch support (it's more than just adding a new SoC family, it's
adding in a new
On Fri, Jan 10, 2014 at 15:44 +0900, Masahiro Yamada wrote:
>
> - Move "easylogo", "env", "gdb" tagets to tools/Makefile
> - Delete "gdbtools" target (same as "gdb")
This appears to be an "incompatible" change with regards to how
users can compile these tools. Please see tools/env/README and
u
Old s5p gpio coding method was not clean and was not working properly
for all parts and banks. New method is clean and easy to extend.
Gpio coding mask:
0x00ff - pin number
0x0000 - bank offset
0xff00 - part number
Signed-off-by: Przemyslaw Marczak
---
Changes v2:
- none
Changes v3:
Now fimd BPP color mode depends on vl_bpp value in struct "panel_info".
There is only 16BPP mode check, default mode is 24BPP.
Other fimd modes are usually unneeded and also needs some fimd driver
modifications and tests.
Signed-off-by: Przemyslaw Marczak
---
Changes v2:
- check panel_info vl_bp
Changes:
- le16_to_cpu() to get_unaligned_le16()
- le32_to_cpu() to get_unaligned_le32()
when access fields in struct bmp header.
This changes avoids data abort exception caused by unaligned data access.
Signed-off-by: Przemyslaw Marczak
Acked-by: Anatolij Gustschin
---
Changes v2:
- new patch
Config: CONFIG_MISC_INIT_R enables implementation of misc_init_r()
in common file::
- board/samsung/common/misc.c
Signed-off-by: Przemyslaw Marczak
Acked-by: Jaehoon Chung
---
Changes v2:
- change CONFIG_SAMSUNG to CONFIG_MISC_INIT_R
Changes v3:
- fix merge conflict in board/samsung/common/Make
Signed-off-by: Przemyslaw Marczak
---
changes v2:
- add definitions for check keys
- cleanup config definitions
Changes v3:
- remove CONFIG_BOARD_NAME from include/configs/5pc210_universal.h
Changes v4:
- none
Changes v5:
- none
include/configs/s5pc210_universal.h | 22 +
This is big size patch. PLease follow the link:
http://www.denx.de/wiki/pub/U-Boot/TooBigPatches/0006-lib-tizen-change-Tizen-logo.patch
--
1.7.9.5
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
board/samsung/common/misc.c:
- move draw_logo() function from exynos_fb.c
- add get_tizen_logo_info() function call removed from board files
boards:
- update board files
- add CONFIG_MISC_INIT_R to Universal, Trats and Trats2
Signed-off-by: Przemyslaw Marczak
Tested-by: Hyungwon Hwang
---
chang
Remove wrong and unused env variables
Trats2 is not as GT-I8800.
Signed-off-by: Przemyslaw Marczak
Acked-by: Jaehoon Chung
Cc: Piotr Wilczek
---
Changes v2:
- none
Changes v3:
- none
Changes v4:
- add "include pmic.h" to "max77686_pmic.h"
Changes v5:
- add acked-by
board/samsung/trats2/tra
This simple LCD menu allows run one of download mode on device
without writing on console or for fast and easy upgrade.
This feature check user keys combination at boot:
- power key + volume up - download menu
- power key + volume down - thor mode (without menu)
New configs:
- CONFIG_LCD_MENU
- CO
16 bpp mode is required by LCD console mode.
This change updates exynos board files.
Signed-off-by: Przemyslaw Marczak
---
Changes v2:
-- new patch
Changes v3:
- none
Changes v4:
- none
Changes v5:
- none
board/samsung/trats/trats.c |2 +-
board/samsung/trats2/trats2.c
Signed-off-by: Przemyslaw Marczak
Acked-by: Lukasz Majewski
---
changes v2:
- add definitions to check keys
- cleanup config definitions
- add acked-by
Changes v3:
- remove CONFIG_BOARD_NAME from include/configs/trats.h
Changes v4:
- none
Changes v5:
- none
include/configs/trats.h | 22 ++
Signed-off-by: Przemyslaw Marczak
---
changes v2:
- add definitions for check keys
- cleanup config definitions
Changes v3:
- remove CONFIG_BOARD_NAME from include/configs/trats2.h
Changes v4:
- remove include of pmic.h from trats2.h
- remove include of common.h from pmic.h
Changes v5:
- none
This patch set includes changes required to:
- properly use of all gpios
- introduce common file for Samsung misc code
- keys support (PWR, VOL:UP,DOWN)
- console support on LCD
- 16bpp logo support
- introduce LCD menu on Samsung devices
Each version changes are described in each patch commit msg
Hi Jagannadha,
On Thu, 9 Jan 2014 01:48:01 +0530, Jagannadha Sutradharudu Teki
wrote:
> These changes are from u-boot-xlnx.git repo from git.xilinx.com
> and in addition of basic fdt support. This repo is well tested
> on xilinx zynq platform, hence pushing the same on upstream.
>
> Excluded qs
Hello Tom,
The following changes since commit 4b210ad34282bfd9fc982a8e3c9a9126f4094cdb:
Merge branch 'master' of git://git.denx.de/u-boot-arm (2013-12-10 17:15:18
-0500)
are available in the git repository at:
git://git.denx.de/u-boot-arm master
for you to fetch changes up to 10a147bc665
In "common/Makefile" "miiphyutil.o" gets built if any of the following
items enabled:
* CONFIG_PHYLIB
* CONFIG_MII
* CONFIG_CMD_MII
So it's possible to not define CONFIG_MII or CONFIG_CMD_MII and still
use functions like "miiphy_get_dev_by_name".
In its turn "miiphy_get_dev_by_name" traverses
To add the Cadence SPI driver support for Altera SOCFPGA. It
required information such as clocks and timing from platform's
configuration header file within include/configs folder
Signed-off-by: Chin Liang See
Cc: Jagan Teki
Cc: Gerhard Sittig
---
Changes for v3
- Moved the documentation from d
On Fri, 2014-01-10 at 10:10 +0800, Po Liu wrote:
> Using the TPL method for nand boot by sram was already
> supported. Here add some code for mpc85xx ifc nand boot.
>
> - For ifc, elbc, esdhc, espi, all need the SPL without
> section .resetvec.
> - Use a clear function name for n
On Fri, Jan 10, 2014 at 04:43:51PM +0100, Albert ARIBAUD wrote:
> Hello Tom,
>
> The following changes since commit 4b210ad34282bfd9fc982a8e3c9a9126f4094cdb:
>
> Merge branch 'master' of git://git.denx.de/u-boot-arm (2013-12-10 17:15:18
> -0500)
>
> are available in the git repository at:
>
On Wed, Jan 08, 2014 at 07:28:12PM -0700, Simon Glass wrote:
> Hi Tom,
>
> These are the first half of the sandbox enhancements. The second half
> may not make it before the release as I have found a few grey areas I
> want to check.
>
>
> ./tools/buildman/buildman -b x86-push -s
> Summary of 1
On Thu, Jan 09, 2014 at 01:49:19PM +0900, Nobuhiro Iwamatsu wrote:
> Dear Tom Rini.
>
> Please pull u-boot-sh master branch.
>
> The following changes since commit e7be18225fbea76d1f0034b224f0d1e60f07cfcf:
>
> Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
> (2014-01-06 14:07:08 -0
On Thu, Jan 09, 2014 at 01:22:58PM +0200, Pantelis Antoniou wrote:
> Hi Tom,
>
> The following changes since commit e7be18225fbea76d1f0034b224f0d1e60f07cfcf:
>
> Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2014-01-06
> 14:07:08 -0500)
>
> are available in the git repository at
On Fri, Jan 10, 2014 at 9:58 AM, Alexey Brodkin
wrote:
> In "common/Makefile" "miiphyutil.o" gets built if any of the following
> items enabled:
> * CONFIG_PHYLIB
> * CONFIG_MII
> * CONFIG_CMD_MII
>
> So it's possible to not define CONFIG_MII or CONFIG_CMD_MII and still
> use functions like "mi
Hi Christian,
On 01/08/2014 12:24 AM, Christian Gmeiner wrote:
There may be some custom boards in the field which have
an seperate eeprom chip to store edid informations in it.
To make use of those edid information in the board code
this patch add a function to convert edid to fb_videomode.
Sig
>From: abraham.varric...@vvdntech.com
>Hello,
>
>Thanks to the help I obtained on this mailing list, I've been able to
>customize u-boot (2013.10 release) to work on a custom omap4460 board.
>Schematically, it's similar to the pandaboard, but uses the twl6032
>pmic and has a NAND memory from micro
On Sat, Jan 11, 2014 at 3:45 AM, Gupta, Pekon wrote:
>
> >From: abraham.varric...@vvdntech.com
> >Hello,
> >
> >Thanks to the help I obtained on this mailing list, I've been able to
> >customize u-boot (2013.10 release) to work on a custom omap4460 board.
> >Schematically, it's similar to the pand
Hi
On Sat, Jan 11, 2014 at 2:35 AM, Abraham Varricatt
wrote:
> On Sat, Jan 11, 2014 at 3:45 AM, Gupta, Pekon wrote:
>>
>> >From: abraham.varric...@vvdntech.com
>> >Hello,
>> >
>> >Thanks to the help I obtained on this mailing list, I've been able to
>> >customize u-boot (2013.10 release) to work
hi Tiger,
Sorry! It's a little late.
Albert has merged arm64 patch set. I have tested and it works fine on
Foundation Model.
So, you could get it from git tree of u-boot-arm branch.
Regards,
David
> Hi, fenghua:
> How to get u-boot code with arch/arm/cpu/armv8 directory?
> I used
On Sat, Jan 11, 2014 at 12:14 PM, FengHua wrote:
> hi Tiger,
> Sorry! It's a little late.
> Albert has merged arm64 patch set. I have tested and it works fine on
> Foundation Model.
> So, you could get it from git tree of u-boot-arm branch.
>
> Regards,
> David
>
>> Hi, fenghua:
>>
51 matches
Mail list logo