Re: [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-04 Thread Tom Warren
Lucas, On Tue, Dec 4, 2012 at 1:40 PM, Lucas Stach wrote: > Hi Tom, > > Am Dienstag, den 04.12.2012, 13:22 -0700 schrieb Tom Warren: > [...] >> >> > >> >> +#define V_NS16550_CLK21600 /* 216MHz >> >> (pllp_

Re: [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-05 Thread Tom Warren
On Tue, Dec 4, 2012 at 3:43 PM, Stephen Warren wrote: > On 12/04/2012 01:22 PM, Tom Warren wrote: >> Stephen, >> >> On Mon, Dec 3, 2012 at 5:53 PM, Stephen Warren wrote: >>> On 12/03/2012 04:45 PM, Tom Warren wrote: >>>> This build is stripped down. It

Re: [U-Boot] [PATCH V2 4/7] Tegra30: Add common CPU (shared) files

2012-12-05 Thread Tom Warren
Stephen, On Wed, Dec 5, 2012 at 1:37 PM, Stephen Warren wrote: > On 12/03/2012 04:45 PM, Tom Warren wrote: >> These files are used by both SPL and main U-Boot. >> Also made minor changes to shared Tegra code to support >> T30 differences. > >> diff --git a/arch/ar

Re: [U-Boot] [PATCH V2 4/7] Tegra30: Add common CPU (shared) files

2012-12-05 Thread Tom Warren
On Wed, Dec 5, 2012 at 2:38 PM, Stephen Warren wrote: > On 12/05/2012 02:32 PM, Tom Warren wrote: >> On Wed, Dec 5, 2012 at 1:37 PM, Stephen Warren wrote: >>> On 12/03/2012 04:45 PM, Tom Warren wrote: >>>> These files are used by both SPL and main U-Boot. >>

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Will do. On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD wrote: > Hello, > > It seems like two commits 5ddcc38b (in u-boot, committed by Marek) > 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra) are > conflicting on the seaboard configuration header file for USB (and > possibly other

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Albert, On Mon, Dec 10, 2012 at 9:25 AM, Tom Warren wrote: > Will do. > > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD > wrote: >> Hello, >> >> It seems like two commits 5ddcc38b (in u-boot, committed by Marek) >> 29f3e3f2 (in u-boot-arm, com

Re: [U-Boot] [PATCH v2 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-10 Thread Tom Warren
Simon, On Sat, Dec 8, 2012 at 1:00 PM, Simon Glass wrote: > Hi, > > On Tue, Dec 4, 2012 at 2:41 PM, Stephen Warren wrote: >> On 12/04/2012 01:40 PM, Lucas Stach wrote: >>> Hi Tom, >>> >>> Am Dienstag, den 04.12.2012, 13:22 -0700 schrieb Tom Wa

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
take to do the same. Thanks, Tom On Mon, Dec 10, 2012 at 12:25 PM, Allen Martin wrote: > On Mon, Dec 10, 2012 at 08:59:59AM -0800, Tom Warren wrote: >> Albert, >> >> On Mon, Dec 10, 2012 at 9:25 AM, Tom Warren wrote: >> > Will do. >> > >> > On Sa

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-10 Thread Tom Warren
Albert, > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD > wrote: >> Hello, >> >> It seems like two commits 5ddcc38b (in u-boot, committed by Marek) >> 29f3e3f2 (in u-boot-arm, committed by Tom from u-boot-tegra) are >> conflicting on the seaboard configuration header file for USB (and >> possib

[U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-11 Thread Tom Warren
files further Tom Warren (7): Tegra30: Add arch-tegra30 include files Tegra30: Add AVP (arm720t) files Tegra30: Add CPU (armv7) files Tegra30: Add common CPU (shared) files Tegra30: Cardhu: Add DT files Tegra30: Add generic Tegra30 build support Tegra30: Add/enable Cardhu build (T30

[U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-11 Thread Tom Warren
This provides SPL support for T30 boards - AVP early init, plus CPU (A9) init/jump to main U-Boot. Some changes were made to Tegra20 cpu.c to move common routines into tegra-common/cpu.c and reduce code duplication. Signed-off-by: Tom Warren --- V2: * Move common CPU init code to tegra-common

[U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-11 Thread Tom Warren
, also. Signed-off-by: Tom Warren --- V2: * Created common header files in arch-tegra. * Reworked pmux func name enums, RSVDx values to end of list. * Added spl.h for T30, removed emc.h. V3: * Use 408MHz for PLLP. arch/arm/include/asm/arch-tegra/clk_rst.h| 148 +- arch/arm/include/asm

[U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-11 Thread Tom Warren
These files are used by both SPL and main U-Boot. Also made minor changes to shared Tegra code to support T30 differences. Signed-off-by: Tom Warren --- V2: * Differentiate between T20 and T30 in ODMDATA and query_sdram_size. * Fix numerous func entries in pingroup table as per Stephen. * Added

[U-Boot] [PATCH V3 5/7] Tegra30: Cardhu: Add DT files

2012-12-11 Thread Tom Warren
These are stripped down for bringup, They'll be filled out later to match-up with the kernel DT contents, and/or as devices are brought up (mmc, usb, spi, etc.). Signed-off-by: Tom Warren --- V2: Reduce to the minimum needed to build/boot to cmd prompt V3: Remove model= from .dtsi, fix m

[U-Boot] [PATCH V3 6/7] Tegra30: Add generic Tegra30 build support

2012-12-11 Thread Tom Warren
This patch adds basic Tegra30 (T30) build support - no specific board is targeted. Signed-off-by: Tom Warren --- V2: * Use generic CONFIG_TEGRA in Makefile instead of specific SOC test * Cleanup a couple of include files due to T20/T30 build differences * Move pinmux_init to board code V3: * No

[U-Boot] [PATCH V3 7/7] Tegra30: Add/enable Cardhu build (T30 reference board)

2012-12-11 Thread Tom Warren
This build is stripped down. It boots to the command prompt. GPIO is the only peripheral supported. Others TBD. include/configs/tegra-common.h now holds common config options for Tegra SoCs. Signed-off-by: Tom Warren --- --- V2: * Move pinmux_init to cardhu.c, move pinmux-config header here

[U-Boot] [PATCH V3 3/7] Tegra30: Add CPU (armv7) files

2012-12-11 Thread Tom Warren
These files are for code that runs on the CPU (A9) on T30 boards. At this time, there are no T30-specific ARMV7 files. As T30-specific run-time code is added, it'll go here. Signed-off-by: Tom Warren --- V2: Cleanup whitespace issues V3: Change commit msg arch/arm/cpu/armv7/tegra30/Mak

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Tom Warren
Allen, On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote: > On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote: >> These files are used by both SPL and main U-Boot. >> Also made minor changes to shared Tegra code to support >> T30 differences. >> &

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Tom Warren
Stephen, On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> Common Tegra files are in arch-tegra, shared between T20 and T30. >> Tegra30-specific headers are in arch-tegra30. Note that some of >> these will be filled in a

Re: [U-Boot] [PATCH V3 2/7] Tegra30: Add AVP (arm720t) files

2012-12-12 Thread Tom Warren
Stephen, On Tue, Dec 11, 2012 at 5:40 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> This provides SPL support for T30 boards - AVP early init, plus >> CPU (A9) init/jump to main U-Boot. >> >> Some changes were made to Tegra20 cpu.c to move co

Re: [U-Boot] [PATCH V3 1/7] Tegra30: Add arch-tegra30 include files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:02 PM, Stephen Warren wrote: > On 12/12/2012 09:23 AM, Tom Warren wrote: >> Stephen, >> >> On Tue, Dec 11, 2012 at 5:36 PM, Stephen Warren >> wrote: >>> On 12/11/2012 04:34 PM, Tom Warren wrote: >>>> Common T

Re: [U-Boot] [PATCH V3 4/7] Tegra30: Add common CPU (shared) files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:06 PM, Stephen Warren wrote: > On 12/12/2012 09:14 AM, Tom Warren wrote: >> Allen, >> >> On Tue, Dec 11, 2012 at 5:45 PM, Allen Martin wrote: >>> On Tue, Dec 11, 2012 at 03:34:15PM -0800, Tom Warren wrote: >>>> These

Re: [U-Boot] [PATCH V3 5/7] Tegra30: Cardhu: Add DT files

2012-12-12 Thread Tom Warren
Stephen, On Wed, Dec 12, 2012 at 3:10 PM, Stephen Warren wrote: > On 12/11/2012 04:34 PM, Tom Warren wrote: >> These are stripped down for bringup, They'll be filled out later >> to match-up with the kernel DT contents, and/or as devices are >> brought up (mmc, usb, spi

Re: [U-Boot] [PATCH V3 0/7] Add support for NVIDIA Tegra30 SoC

2012-12-12 Thread Tom Warren
Simon, On Wed, Dec 12, 2012 at 3:40 PM, Simon Glass wrote: > Hi Tom, > > On Tue, Dec 11, 2012 at 7:05 PM, Allen Martin wrote: >> On Tue, Dec 11, 2012 at 03:34:11PM -0800, Tom Warren wrote: >>> This patch series adds basic (boot to cmd prompt) support for Tegra30.

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-14 Thread Tom Warren
Albert, On Thu, Dec 13, 2012 at 12:20 PM, Albert ARIBAUD wrote: > Hi Tom, > > On Mon, 10 Dec 2012 14:15:10 -0700, Tom Warren > wrote: >> u-boot-arm/master and u-boot-tegra/next should have the same base >> commit (b8a7c46), so merging them isn't a big deal, and

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-17 Thread Tom Warren
11:02:09 -0800, Allen Martin > wrote: >> On Mon, Dec 10, 2012 at 01:51:40PM -0800, Tom Warren wrote: >> > Albert, >> > >> > > On Sat, Dec 8, 2012 at 11:03 PM, Albert ARIBAUD >> > > wrote: >> > >> Hello, >> > >> >>

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-18 Thread Tom Warren
Allen, On Mon, Dec 17, 2012 at 3:22 PM, Allen Martin wrote: > On Mon, Dec 17, 2012 at 02:13:29PM -0800, Tom Warren wrote: >> Allen, >> >> If you come up with patches to fix the seaboard config files, I can >> add them to my copy of u-boot-tegra/master, push it to d

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-18 Thread Tom Warren
Allen, On Tue, Dec 18, 2012 at 11:06 AM, Allen Martin wrote: > On Tue, Dec 18, 2012 at 08:43:18AM -0800, Tom Warren wrote: >> Allen, >> >> On Mon, Dec 17, 2012 at 3:22 PM, Allen Martin wrote: >> > On Mon, Dec 17, 2012 at 02:13:29PM -0800, Tom Warren wrote: >&g

Re: [U-Boot] Conflicting commits for seaboard USB keyboard handling

2012-12-20 Thread Tom Warren
On Wed, Dec 19, 2012 at 5:32 PM, Allen Martin wrote: > On Wed, Dec 19, 2012 at 02:42:24PM -0800, Albert ARIBAUD wrote: >> Hi Allen, >> >> > Hi Albert, I did a merge of u-boot/master into u-boot-arm/master and >> > resolved the conflicts and I've pushed the result to: >> > >> > git://github.com/ar

[U-Boot] [PATCH 3/3] Tegra30: I2C: Enable I2C driver on Cardhu

2012-12-21 Thread Tom Warren
Tested all 5 'buses', i2c probe enumerates device addresses on all but dev 4 (I2C4) [no devices on that bus on my Cardhu]. Note that this uses the extant tegra_i2c.c driver w/o modification. Signed-off-by: Tom Warren --- include/configs/cardhu.h |9 + inclu

[U-Boot] [PATCH 2/3] Tegra30: fdt: Update DT files with I2C info for T30/Cardhu

2012-12-21 Thread Tom Warren
ll as the audio codec, temp sensor, and fuel gauge devices from the OS. Signed-off-by: Tom Warren --- arch/arm/dts/tegra30.dtsi | 61 +++ board/nvidia/dts/tegra30-cardhu.dts | 41 +++ 2 files changed, 102 insertions(+), 0 dele

[U-Boot] [PATCH 0/3] Add I2C driver for Tegra30 Cardhu

2012-12-21 Thread Tom Warren
Add/update clock tables and enable I2C driver support for the Tegra30 Cardhu board. This uses the standard Tegra I2C driver. 5 controllers are supported, although all may not have devices behind them on every board. Tom Warren (3): Tegra30: clocks: Fix clock tables for I2C and other periphs

[U-Boot] [PATCH 1/3] Tegra30: clocks: Fix clock tables for I2C and other periphs

2012-12-21 Thread Tom Warren
Add 16-bit divider support (I2C) to periph table, annotate and correct some entries, and fix clk_id lookup function. Signed-off-by: Tom Warren --- arch/arm/cpu/tegra30-common/clock.c | 78 -- arch/arm/include/asm/arch-tegra30/clock-tables.h |4 + 2 files

Re: [U-Boot] [PATCH 1/3] Tegra30: clocks: Fix clock tables for I2C and other periphs

2013-01-02 Thread Tom Warren
rote: > On 12/21/2012 05:16 PM, Tom Warren wrote: >> Add 16-bit divider support (I2C) to periph table, annotate and >> correct some entries, and fix clk_id lookup function. > >> diff --git a/arch/arm/cpu/tegra30-common/clock.c >> b/arch/arm/cpu/tegra30-common

Re: [U-Boot] [PATCH 2/3] Tegra30: fdt: Update DT files with I2C info for T30/Cardhu

2013-01-02 Thread Tom Warren
ote: > On 12/21/2012 05:16 PM, Tom Warren wrote: >> Note that T30 does not have a separate/different DVC (power I2C) >> controller like T20 - all 5 I2C controllers are identical, but >> DVC_I2C is still used to designate the controller intended for >> power control (PWR_I2

[U-Boot] pull request for u-boot-tegra/master

2012-08-17 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into ARM/master. Please ignore previous pull requests for these patches (Tegra20 SPL from Allen Martin), as some additional work was needed to make them viable for all compilers & chips. Also, I've included Tom Rini's latest 2 lowlevel_init fixes, as Allen'

Re: [U-Boot] [PATCH v10 00/16] split tegra20 arm7 code into separate SPL

2012-08-29 Thread Tom Warren
Allen/Albert, > -Original Message- > From: Allen Martin [mailto:amar...@nvidia.com] > Sent: Tuesday, August 28, 2012 5:08 PM > To: Tom Warren; swar...@wwwdotorg.org; s...@chromium.org; > thierry.red...@avionic-design.de; d...@lynxeye.de > Cc: u-boot@lists.denx.de; Alle

Re: [U-Boot] [PATCH v10 00/16] split tegra20 arm7 code into separate SPL

2012-08-30 Thread Tom Warren
Albert, > -Original Message- > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] > Sent: Thursday, August 30, 2012 1:41 AM > To: Tom Warren > Cc: Lucas Stach; Allen Martin; swar...@wwwdotorg.org; s...@chromium.org; > thierry.red...@avionic-design.de; u-boot@lists

[U-Boot] pull request for u-boot-tegra/master

2012-08-31 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into arm/master. Hopefully this is the final request for Allen's SPL patchset. Thanks! The following changes since commit 092592c3b79aa3974ea12ae4f408db7679e6a109: Stephen Warren (1): ARM: add Raspberry Pi model B board, using BCM2835 SoC are ava

Re: [U-Boot] [PATCH v2 4/5] usb: ulpi: add indicator configuration function

2012-09-05 Thread Tom Warren
Igor/Marek, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Wednesday, September 05, 2012 1:52 AM > To: Igor Grinberg > Cc: Lucas Stach; u-boot@lists.denx.de; Stephen Warren; Tom Warren > Subject: Re: [PATCH v2 4/5] usb: ulpi: add indicator conf

[U-Boot] [PATCH] Tegra: Change Tegra20 to Tegra in common code, prep for T30

2012-09-06 Thread Tom Warren
Convert TEGRA20_ defines to either TEGRA_ or NV_PA_ where appropriate. Convert tegra20_ source file and function names to tegra_, also. Upcoming Tegra30 port will use common code/defines/names where possible. Signed-off-by: Tom Warren --- arch/arm/cpu/arm720t/tegra20/cpu.c

Re: [U-Boot] [PATCH] Tegra: Change Tegra20 to Tegra in common code, prep for T30

2012-09-07 Thread Tom Warren
Stephen, On Thu, Sep 6, 2012 at 7:49 PM, Stephen Warren wrote: > On 09/06/2012 03:27 PM, Tom Warren wrote: >> Convert TEGRA20_ defines to either TEGRA_ or NV_PA_ where appropriate. >> Convert tegra20_ source file and function names to tegra_, also. >> >> Upcoming T

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Sunday, July 29, 2012 11:53 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > Subject: [PATCH v4 1/6] nand: Try to align the default buffers > &

Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers

2012-09-07 Thread Tom Warren
Marek, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Friday, September 07, 2012 11:43 AM > To: u-boot@lists.denx.de > Cc: Tom Warren; Simon Glass; Scott Wood > Subject: Re: [U-Boot] [PATCH v4 1/6] nand: Try to align the default buffers &g

Re: [U-Boot] [PATCH v4 0/6] tegra: Add NAND flash support

2012-09-07 Thread Tom Warren
Simon, > -Original Message- > From: Simon Glass [mailto:s...@chromium.org] > Sent: Sunday, July 29, 2012 11:53 PM > To: U-Boot Mailing List > Cc: Tom Warren; Stephen Warren; Scott Wood; Simon Glass > Subject: [PATCH v4 0/6] tegra: Add NAND flash support > > Thi

Re: [U-Boot] [PATCH 1/2] ARM: tegra: remove redundant mkdirs from board Makefiles

2012-09-07 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Friday, August 03, 2012 9:55 AM > To: Tom Warren > Cc: Allen Martin; Thierry Reding; Simon Glass; U-Boot Mailing List; Stephen > Warren > Subject: [PATCH 1/2] ARM: tegra: re

Re: [U-Boot] [PATCH 3/3] tegra: put eMMC environment into the boot sectors

2012-09-07 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Monday, July 30, 2012 1:56 PM > To: Tom Warren; Andy Fleming > Cc: U-Boot Mailing List; Stephen Warren > Subject: [PATCH 3/3] tegra: put eMMC environment into the boot sectors

Re: [U-Boot] [PATCH 1/2] cmd_nand: dump: Align data and OOB buffers

2012-09-07 Thread Tom Warren
Thierry, On Mon, Jul 30, 2012 at 11:21 PM, Thierry Reding wrote: > In order for cache invalidation and flushing to work properly, the data > and OOB buffers must be aligned to full cache lines. > > Signed-off-by: Thierry Reding This patch, along with the Tegra: 'Enable NAND on TEC' patch, appli

[U-Boot] [PATCH] NAND: MXS: include common.h first so cache.h is included in correct order

2012-09-10 Thread Tom Warren
With Simon Glass's include/nand.h alignment changes, some mxs builds were generating errors. Fix is to ensure asm/cache.h is included before linux/mtd/nand.h. Moving common.h to top of include list does that. Signed-off-by: Tom Warren --- drivers/mtd/nand/mxs_nand.c |2 +- 1 files ch

Re: [U-Boot] [PATCH 2/2] tegra: enable lp0 on paz00

2012-09-10 Thread Tom Warren
Marc, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Monday, September 10, 2012 12:08 PM > To: Marc Dietrich > Cc: u-boot@lists.denx.de; Tom Warren > Subject: Re: [PATCH 2/2] tegra: enable lp0 on paz00 > > On 09/10/2012 12:51

Re: [U-Boot] [PATCH] NAND: MXS: include common.h first so cache.h is included in correct order

2012-09-10 Thread Tom Warren
Marek/Simon, > -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Monday, September 10, 2012 9:19 AM > To: Tom Warren; s...@chromium.org > Cc: u-boot@lists.denx.de; scottw...@freescale.com; Tom Warren; > sba...@denx.de > Subject: Re: [PATCH] NAND:

[U-Boot] Please pull u-boot-tegra/master into ARM/master

2012-09-10 Thread Tom Warren
ra: Enable NAND on TEC Tom Warren (2): Tegra: Change Tegra20 to Tegra in common code, prep for T30 NAND: MXS: include common.h first so cache.h is included in correct order arch/arm/cpu/arm720t/tegra20/cpu.c |8 +- arch/arm/cpu/armv7/tegra20/cmd_enterrcm.c

[U-Boot] Cache alignment warnings on Tegra (ARM)

2012-09-12 Thread Tom Warren
Folks, Stephen Warren has posted an internal bug regarding the cache alignment 'warnings' seen on Tegra20 boards when accessing MMC. Here's the gist: Executing "mmc dev 0" still yields cache warnings: Tegra20 (Harmony) # mmc dev 0 ERROR: v7_dcache_inval_range- stop address is not aligned- 0x3fb6

[U-Boot] [PATCH 0/9] Add basic Tegra30 (T30) support

2012-09-12 Thread Tom Warren
/drivers for MMC, USB, I2C, SPI, NAND, and other peripherals. The Cardhu T30 board is supported initially. Tom Warren (9): Tegra: T30: Add include files Tegra: T30: Add AVP (arm720t) files Tegra: T30: Add CPU (armv7) files Tegra: T30: Add common Tegra30 CPU files Tegra: DT: Add preliminary

[U-Boot] [PATCH 2/9] Tegra: T30: Add AVP (arm720t) files

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- arch/arm/cpu/arm720t/tegra30/Makefile | 48 +++ arch/arm/cpu/arm720t/tegra30/board.h | 25 ++ arch/arm/cpu/arm720t/tegra30/config.mk | 26 ++ arch/arm/cpu/arm720t/tegra30/cpu.c | 570 arch/arm/cpu/arm720t/tegra30/cpu.h

[U-Boot] [PATCH 3/9] Tegra: T30: Add CPU (armv7) files

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- arch/arm/cpu/armv7/tegra30/Makefile | 48 + arch/arm/cpu/armv7/tegra30/cmd_enterrcm.c | 65 + arch/arm/cpu/armv7/tegra30/config.mk | 26 +++ 3 files changed, 139 insertions(+), 0 deletions

[U-Boot] [PATCH 5/9] Tegra: DT: Add preliminary device tree files for T30 Cardhu

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- arch/arm/dts/tegra30.dtsi | 280 +++ board/nvidia/dts/tegra30-cardhu.dts | 92 2 files changed, 372 insertions(+), 0 deletions(-) create mode 100644 arch/arm/dts/tegra30.dtsi create mode 100644 board/nvidia

[U-Boot] [PATCH 6/9] Tegra30: Add Cardhu board files

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- board/nvidia/cardhu/Makefile | 48 board/nvidia/cardhu/cardhu.c | 87 +++ board/nvidia/cardhu/pinmux-config-common.h | 346 3 files changed, 481 insertions(+), 0 deletions(-) create mode 100644

[U-Boot] [PATCH 8/9] Tegra30: Add common pinmux config in board_early_init_f

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- board/nvidia/common/board.c | 27 ++- 1 files changed, 26 insertions(+), 1 deletions(-) diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index afe832a..4a86c30 100644 --- a/board/nvidia/common/board.c +++ b/board

[U-Boot] [PATCH 9/9] Tegra30: Enable Cardhu build (SPL)

2012-09-12 Thread Tom Warren
This builds & boots to the command prompt on a Cardhu (T30) board. This is a barebones binary - no I2C, USB, MMC, SPI, etc. Drivers for those peripherals to follow. Signed-off-by: Tom Warren --- Makefile| 23 +++ arch/arm/cpu/armv7/Makefile |

[U-Boot] [PATCH 7/9] Tegra30: Add config files (common and Cardhu)

2012-09-12 Thread Tom Warren
Signed-off-by: Tom Warren --- include/configs/cardhu.h | 52 +++ include/configs/tegra30-common.h | 188 ++ 2 files changed, 240 insertions(+), 0 deletions(-) create mode 100644 include/configs/cardhu.h create mode 100644 include/configs

Re: [U-Boot] [PATCH 9/9] Tegra30: Enable Cardhu build (SPL)

2012-09-13 Thread Tom Warren
Tom, On Thu, Sep 13, 2012 at 11:00 AM, Tom Rini wrote: > On 09/12/2012 03:10 PM, Tom Warren wrote: >> This builds & boots to the command prompt on a Cardhu (T30) board. >> This is a barebones binary - no I2C, USB, MMC, SPI, etc. >> Drivers for those peripherals to fo

Re: [U-Boot] [PATCH 3/9] Tegra: T30: Add CPU (armv7) files

2012-09-13 Thread Tom Warren
Stephen, On Thu, Sep 13, 2012 at 1:03 PM, Stephen Warren wrote: > On 09/12/2012 04:10 PM, Tom Warren wrote: > >> diff --git a/arch/arm/cpu/armv7/tegra30/cmd_enterrcm.c >> b/arch/arm/cpu/armv7/tegra30/cmd_enterrcm.c > > This whole file is definitely common with Tegra20.

Re: [U-Boot] [PATCH 1/9] Tegra: T30: Add include files

2012-09-13 Thread Tom Warren
Stephen, On Thu, Sep 13, 2012 at 12:35 PM, Stephen Warren wrote: > On 09/12/2012 04:10 PM, Tom Warren wrote: >> Signed-off-by: Tom Warren > > Hmm. This is rather large to review, but I tried to at least glance > through it all and spot obvious issues... > >> diff -

Re: [U-Boot] [PATCH 2/9] Tegra: T30: Add AVP (arm720t) files

2012-09-13 Thread Tom Warren
Stephen, On Thu, Sep 13, 2012 at 1:02 PM, Stephen Warren wrote: > On 09/12/2012 04:10 PM, Tom Warren wrote: > > Patch descriptions would be nice. Sure, sorry. Not sure how much more info I can add beyond what's in the commit msg, though, at least for this patch. > >> di

Re: [U-Boot] [PATCH 1/9] Tegra: T30: Add include files

2012-09-13 Thread Tom Warren
Tom, On Thu, Sep 13, 2012 at 11:06 AM, Tom Rini wrote: > On Wed, Sep 12, 2012 at 03:10:47PM -0700, Tom Warren wrote: > >> Signed-off-by: Tom Warren > > A few things: > - I see some #define FOO[space][space]val that should be [tab] Probably copied over from Tegra2

Re: [U-Boot] [PATCH 3/9] Tegra: T30: Add CPU (armv7) files

2012-09-13 Thread Tom Warren
Tom, On Thu, Sep 13, 2012 at 1:33 PM, Tom Rini wrote: > On 09/13/2012 01:30 PM, Stephen Warren wrote: >> On 09/13/2012 02:16 PM, Tom Warren wrote: >>> Stephen, >>> >>> On Thu, Sep 13, 2012 at 1:03 PM, Stephen Warren >>> wrote: >>>>

Re: [U-Boot] [PATCH 0/9] Add basic Tegra30 (T30) support

2012-09-13 Thread Tom Warren
Tom, On Thu, Sep 13, 2012 at 2:04 PM, Tom Rini wrote: > On Wed, Sep 12, 2012 at 03:10:46PM -0700, Tom Warren wrote: > >> This patch series adds basic (boot to cmd prompt) support for Tegra30. >> This is based on the Tegra20 SPL, which initializes the AVP (ARM7TDMI >>

Re: [U-Boot] [PATCH 2/9] Tegra: T30: Add AVP (arm720t) files

2012-09-13 Thread Tom Warren
Lucas, On Thu, Sep 13, 2012 at 2:47 PM, Lucas Stach wrote: > Hi Tom, > > Am Donnerstag, den 13.09.2012, 14:00 -0700 schrieb Tom Warren: > [...] >> >> >> diff --git a/arch/arm/cpu/arm720t/tegra30/spl.c >> >> b/arch/arm/cpu/arm720t/tegra30/spl.c

Re: [U-Boot] [PATCH 3/9] Tegra: T30: Add CPU (armv7) files

2012-09-13 Thread Tom Warren
Tom, On Thu, Sep 13, 2012 at 3:04 PM, Tom Rini wrote: > On Thu, Sep 13, 2012 at 02:21:54PM -0700, Tom Warren wrote: >> Tom, >> >> On Thu, Sep 13, 2012 at 1:33 PM, Tom Rini wrote: >> > On 09/13/2012 01:30 PM, Stephen Warren wrote: >> >> On 09/13/2012

Re: [U-Boot] [PATCH 2/2] tegra: enable lp0 on paz00

2012-09-17 Thread Tom Warren
Marc, > -Original Message- > From: Marc Dietrich [mailto:marvi...@gmx.de] > Sent: Sunday, September 16, 2012 9:17 AM > To: Tom Warren > Cc: Stephen Warren; u-boot@lists.denx.de > Subject: Re: [PATCH 2/2] tegra: enable lp0 on paz00 > > Tom, > > On Monday

Re: [U-Boot] [PATCH 1/9] Tegra: T30: Add include files

2012-09-18 Thread Tom Warren
Simon, On Tue, Sep 18, 2012 at 12:29 PM, Simon Glass wrote: > Hi Tom, > > On Thu, Sep 13, 2012 at 2:10 PM, Tom Warren wrote: >> Tom, >> >> On Thu, Sep 13, 2012 at 11:06 AM, Tom Rini wrote: >>> On Wed, Sep 12, 2012 at 03:10:47PM -0700, Tom Warren wrote

Re: [U-Boot] [PATCH 2/9] Tegra: T30: Add AVP (arm720t) files

2012-09-18 Thread Tom Warren
Simon, On Tue, Sep 18, 2012 at 12:37 PM, Simon Glass wrote: > Hi Tom, > > On Wed, Sep 12, 2012 at 3:10 PM, Tom Warren wrote: >> Signed-off-by: Tom Warren >> --- >> arch/arm/cpu/arm720t/tegra30/Makefile | 48 +++ >> arch/arm/cpu/arm720t/tegra30/board.h |

Re: [U-Boot] [PATCH 7/9] Tegra30: Add config files (common and Cardhu)

2012-09-18 Thread Tom Warren
Simon, On Tue, Sep 18, 2012 at 12:46 PM, Simon Glass wrote: > Hi Tom, > > On Wed, Sep 12, 2012 at 3:10 PM, Tom Warren wrote: >> Signed-off-by: Tom Warren >> --- >> include/configs/cardhu.h | 52 +++ >> includ

Re: [U-Boot] [PATCH 8/9] Tegra30: Add common pinmux config in board_early_init_f

2012-09-18 Thread Tom Warren
Simon, On Tue, Sep 18, 2012 at 12:53 PM, Simon Glass wrote: > Hi, > > On Thu, Sep 13, 2012 at 3:37 PM, Stephen Warren wrote: >> On 09/12/2012 04:10 PM, Tom Warren wrote: >>> Signed-off-by: Tom Warren >>> --- >>> board/nvidia/common/board.c | 2

Re: [U-Boot] [PATCH v4 10/11] Add u-boot-pad.bin target to the Makefile

2012-09-20 Thread Tom Warren
> -Original Message- > From: Tom Rini [mailto:tr...@ti.com] > Sent: Wednesday, September 19, 2012 6:29 PM > To: José Miguel Gonçalves > Cc: Scott Wood; u-boot@lists.denx.de; ma...@denx.de; mk7.k...@samsung.com; > Tom Warren > Subject: Re: [PATCH v4 10/11] Add u-boot-

Re: [U-Boot] [PATCH 1/2] tegra: Update Avionic Design vendor prefix

2012-09-20 Thread Tom Warren
Thierry, > -Original Message- > From: Thierry Reding [mailto:thierry.red...@avionic-design.de] > Sent: Wednesday, September 19, 2012 3:37 AM > To: Tom Warren > Cc: u-boot@lists.denx.de > Subject: [PATCH 1/2] tegra: Update Avionic Design vendor prefix > This series

Re: [U-Boot] [PATCH v4 10/11] Add u-boot-pad.bin target to the Makefile

2012-09-20 Thread Tom Warren
Tom, > -Original Message- > From: Tom Rini [mailto:tr...@ti.com] > Sent: Thursday, September 20, 2012 9:23 AM > To: Tom Warren > Cc: José Miguel Gonçalves; Scott Wood; u-boot@lists.denx.de; ma...@denx.de; > mk7.k...@samsung.com > Subject: Re: [PATCH v4 10/11] Add u-b

[U-Boot] [PATCH 1/2] Tegra20: Move some code files to common directories for upcoming Tegra30 patches.

2012-09-21 Thread Tom Warren
#x27;common' files should need only minor changes. Include files (arch/arm/include/asm/arch-tegra/tegra20) will be done in a follow-on patch. Builds fine w/MAKEALL -s tegra20. Checkpatch.pl is clean. Signed-off-by: Tom Warren --- Makefile |

[U-Boot] [PATCH 0/2] Move Tegra20 files to common subdirs, prep for T30

2012-09-21 Thread Tom Warren
tegra20 is OK, as is checkpatch.pl. Tom Warren (2): Tegra20: Move some code files to common directories for upcoming Tegra30 patches. Tegra20: Move some include files to arch-tegra for sharing with Tegra30 Makefile |2 + .../cpu/arm720t

[U-Boot] [PATCH 2/2] Tegra20: Move some include files to arch-tegra for sharing with Tegra30

2012-09-21 Thread Tom Warren
the 'arch-tegra20' 'root' file. All boards build OK w/MAKEALL -s tegra20. Checkpatch.pl runs clean. Seaboard works OK. Signed-off-by: Tom Warren --- arch/arm/cpu/arm720t/tegra-common/spl.c| 12 +- arch/arm/cpu/arm720t/tegra20/cpu.c | 10 +- ar

Re: [U-Boot] [PATCH v4 0/6] tegra: Add NAND flash support

2012-09-21 Thread Tom Warren
Simon, > -Original Message- > From: s...@google.com [mailto:s...@google.com] On Behalf Of Simon Glass > Sent: Friday, September 07, 2012 2:33 PM > To: Tom Warren > Cc: U-Boot Mailing List; Stephen Warren; Scott Wood; Marek Vasut > Subject: Re: [PATCH v4 0/6] tegra: Add

Re: [U-Boot] [PATCH 1/2] Tegra20: Move some code files to common directories for upcoming Tegra30 patches.

2012-09-24 Thread Tom Warren
Stephen, On Mon, Sep 24, 2012 at 10:54 AM, Stephen Warren wrote: > On 09/21/2012 02:42 PM, Tom Warren wrote: >> Move files that are going to be common between T20 and T30 into >> 'tegra-common' >> subdirs in AVP (arm720t), CPU (armv7), and shared (arch/arm/cpu/

Re: [U-Boot] [PATCH 2/2] Tegra20: Move some include files to arch-tegra for sharing with Tegra30

2012-09-24 Thread Tom Warren
Stephen, On Mon, Sep 24, 2012 at 11:04 AM, Stephen Warren wrote: > On 09/21/2012 02:42 PM, Tom Warren wrote: >> The move is pretty straight-forward. ap20.h and tegra20.h were renamed to >> ap.h and tegra.h. >> Some files remain in arch-tegra20 but 'include&#x

Re: [U-Boot] [PATCH resend 1/3] tegra20: complete periph_id enum

2012-09-27 Thread Tom Warren
Lucas, On Wed, Sep 26, 2012 at 9:19 AM, Tom Warren wrote: > Lucas, > >> -Original Message- >> From: Lucas Stach [mailto:d...@lynxeye.de] >> Sent: Tuesday, September 25, 2012 11:21 PM >> To: Tom Warren >> Cc: u-boot@lists.denx.de >> Subject: [PAT

Re: [U-Boot] [PATCH] tegra: enable CONFIG_CMD_PART

2012-09-27 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Tuesday, September 25, 2012 4:32 PM > To: Tom Warren > Cc: u-boot@lists.denx.de; Stephen Warren > Subject: [PATCH] tegra: enable CONFIG_CMD_PART > > From: Stephen Warren

[U-Boot] [PATCH 0/7] Add support for NVIDIA Tegra114 SoC

2013-01-16 Thread Tom Warren
, SPI, MMC, USB, etc. The Dalmore (E1611) T114 board is supported initially. Tom Warren (7): Tegra114: Add arch-tegra114 include files Tegra114: Add AVP (arm720t) files Tegra114: Add CPU (armv7) files Tegra114: Add common CPU (shared) files Tegra114: Dalmore: Add DT files Tegra114: Add

[U-Boot] [PATCH 2/7] Tegra114: Add AVP (arm720t) files

2013-01-16 Thread Tom Warren
This provides SPL support for T114 boards - AVP early init, plus CPU (A15) init/jump to main U-Boot. Signed-off-by: Tom Warren --- arch/arm/cpu/arm720t/tegra-common/cpu.c | 23 ++- arch/arm/cpu/arm720t/tegra-common/cpu.h | 13 +- arch/arm/cpu/arm720t/tegra114/Makefile | 42 arch/arm

[U-Boot] [PATCH 3/7] Tegra114: Add CPU (armv7) files

2013-01-16 Thread Tom Warren
These files are for code that runs on the CPU (A15) on T114 boards. At this time, there is no A15-specific code here. As T114-specific run-time code is added, it'll go here. Signed-off-by: Tom Warren --- arch/arm/cpu/armv7/tegra114/Makefile | 40 + arc

[U-Boot] [PATCH 1/7] Tegra114: Add arch-tegra114 include files

2013-01-16 Thread Tom Warren
Common Tegra files are in arch-tegra, shared between T20/T30/T114. Tegra114-specific headers are in arch-tegra114. Note that some of these will be filled in as more T114 support is added (drivers, WB/LP0 support, etc.). Signed-off-by: Tom Warren --- arch/arm/include/asm/arch-tegra/clk_rst.h

[U-Boot] [PATCH 5/7] Tegra114: Dalmore: Add DT files

2013-01-16 Thread Tom Warren
These are stripped down for bringup, They'll be filled out later to match-up with the kernel DT contents, and/or as devices are brought up (mmc, usb, spi, etc.). Signed-off-by: Tom Warren --- arch/arm/dts/tegra114.dtsi|5 + board/nvidia/dts/tegra114-dalmore.dts |

[U-Boot] [PATCH 7/7] Tegra114: Add/enable Dalmore build (T114 reference board)

2013-01-16 Thread Tom Warren
This build is stripped down. It boots to the command prompt. GPIO is the only peripheral supported. Others TBD. Signed-off-by: Tom Warren --- board/nvidia/dalmore/Makefile| 44 + board/nvidia/dalmore/dalmore.c | 39 board/nvidia/dalmore/pinmux-config

[U-Boot] [PATCH 6/7] Tegra114: Add generic Tegra114 build support

2013-01-16 Thread Tom Warren
This patch adds basic Tegra114 (T114) build support - no specific board is targeted. Signed-off-by: Tom Warren --- board/nvidia/common/board.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index a4af539

Re: [U-Boot] [PATCH 1/7] Tegra114: Add arch-tegra114 include files

2013-01-17 Thread Tom Warren
Allen, On Wed, Jan 16, 2013 at 3:39 PM, Allen Martin wrote: > On Wed, Jan 16, 2013 at 01:14:02PM -0800, Tom Warren wrote: >> Common Tegra files are in arch-tegra, shared between T20/T30/T114. >> Tegra114-specific headers are in arch-tegra114. Note that some of >> these will

Re: [U-Boot] [PATCH 4/7] Tegra114: Add common CPU (shared) files

2013-01-17 Thread Tom Warren
Stephen, On Wed, Jan 16, 2013 at 3:46 PM, Stephen Warren wrote: > On 01/16/2013 02:14 PM, Tom Warren wrote: >> These files are used by both SPL and main U-Boot. > >> diff --git a/arch/arm/cpu/tegra-common/board.c >> b/arch/arm/cpu/tegra-common/board.c > >&g

Re: [U-Boot] [PATCH 1/7] Tegra114: Add arch-tegra114 include files

2013-01-17 Thread Tom Warren
Stephen, On Wed, Jan 16, 2013 at 3:32 PM, Stephen Warren wrote: > On 01/16/2013 02:14 PM, Tom Warren wrote: >> Common Tegra files are in arch-tegra, shared between T20/T30/T114. >> Tegra114-specific headers are in arch-tegra114. Note that some of >> these will be filled in

Re: [U-Boot] [PATCH 5/7] Tegra114: Dalmore: Add DT files

2013-01-17 Thread Tom Warren
Stephen, On Wed, Jan 16, 2013 at 3:47 PM, Stephen Warren wrote: > On 01/16/2013 02:14 PM, Tom Warren wrote: >> These are stripped down for bringup, They'll be filled out later >> to match-up with the kernel DT contents, and/or as devices are >> brought up (mmc, usb, spi

Re: [U-Boot] [PATCH 7/7] Tegra114: Add/enable Dalmore build (T114 reference board)

2013-01-17 Thread Tom Warren
Stephen, On Wed, Jan 16, 2013 at 3:51 PM, Stephen Warren wrote: > On 01/16/2013 02:14 PM, Tom Warren wrote: >> This build is stripped down. It boots to the command prompt. >> GPIO is the only peripheral supported. Others TBD. > >> diff --git a/board/nvidia/dalmore/

Re: [U-Boot] [PATCH 2/7] Tegra114: Add AVP (arm720t) files

2013-01-17 Thread Tom Warren
Stephen, On Wed, Jan 16, 2013 at 3:42 PM, Stephen Warren wrote: > On 01/16/2013 02:14 PM, Tom Warren wrote: >> This provides SPL support for T114 boards - AVP early init, plus >> CPU (A15) init/jump to main U-Boot. > >> diff --git a/arch/arm/cpu/arm720t/tegra-common/

Re: [U-Boot] [PATCH 2/7] Tegra114: Add AVP (arm720t) files

2013-01-17 Thread Tom Warren
Allen, On Wed, Jan 16, 2013 at 4:01 PM, Allen Martin wrote: > On Wed, Jan 16, 2013 at 01:14:03PM -0800, Tom Warren wrote: >> This provides SPL support for T114 boards - AVP early init, plus >> CPU (A15) init/jump to main U-Boot. >> >> Signed-off-by: Tom Warren >

<    1   2   3   4   5   6   7   8   9   10   >