Re: [U-Boot] arm: omap: configs: various: Remove references to OMAP34XX_UARTx

2018-08-25 Thread Grazvydas Ignotas
On Sat, Aug 25, 2018 at 7:22 PM, Tom Rini wrote: > On Sat, Aug 25, 2018 at 06:58:19PM +0300, Grazvydas Ignotas wrote: >> On Mon, Aug 20, 2018 at 8:43 PM, Tom Rini wrote: >> > On Mon, Aug 20, 2018 at 07:45:16AM -0500, Adam Ford wrote: >> >> On Mon, Aug 20, 2

[U-Boot] [PATCH] omap3: pandora: Enable DM_SERIAL

2018-08-25 Thread Grazvydas Ignotas
This patch enables DM_SERIAL for the pandora board. Verified that the default kernel can still be booted with this. Signed-off-by: Grazvydas Ignotas --- board/pandora/pandora.c | 14 ++ configs/omap3_pandora_defconfig | 4 +++- include/configs/omap3_pandora.h | 17

Re: [U-Boot] arm: omap: configs: various: Remove references to OMAP34XX_UARTx

2018-08-25 Thread Grazvydas Ignotas
On Mon, Aug 20, 2018 at 8:43 PM, Tom Rini wrote: > On Mon, Aug 20, 2018 at 07:45:16AM -0500, Adam Ford wrote: >> On Mon, Aug 20, 2018 at 6:21 AM Tom Rini wrote: >> > >> > On Tue, Aug 07, 2018 at 07:28:11AM -0500, Adam Ford wrote: >> > >> > > Two boards include a reference to ti_omap3_common.h whi

Re: [U-Boot] [PATCH 2/2] omap3_pandora: Switch to using "load" command to load the autoboot script.

2016-08-29 Thread Grazvydas Ignotas
On Mon, Aug 29, 2016 at 10:56 AM, Vagrant Cascadian wrote: > CONFIG_CMD_FS_GENERIC is enabled; use it to load the autoboot script, > rather than first attempting with fatload and falling back to > ext2load. > > Signed-off-by: Vagrant Cascadian Acked-by: Grazvydas Ignotas >

Re: [U-Boot] [PATCH 1/2] omap3_pandora: Fix mmc loading of autoboot script to use correct syntax.

2016-08-29 Thread Grazvydas Ignotas
. > > Signed-off-by: Vagrant Cascadian Acked-by: Grazvydas Ignotas > --- > > include/configs/omap3_pandora.h | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/include/configs/omap3_pandora.h b/include/configs/omap3_pandora.h > index 380ec12.

[U-Boot] [PATCH v2] omap3: pandora: use common configuration

2015-04-08 Thread Grazvydas Ignotas
This allows to clean up the config a good deal and also converts pandora to Generic Board. Signed-off-by: Grazvydas Ignotas --- v2: dropped unintended "From:" line. include/configs/omap3_pandora.h | 177 1 file changed, 36 insertions(+), 141

[U-Boot] [PATCH] omap3: pandora: use common configuration

2015-04-08 Thread Grazvydas Ignotas
From: notaz This allows to clean up the config a good deal and also converts pandora to Generic Board. Signed-off-by: Grazvydas Ignotas --- include/configs/omap3_pandora.h | 177 1 file changed, 36 insertions(+), 141 deletions(-) diff --git a/include

Re: [U-Boot] [PATCH 3/3] ARM: omap3: remove non-generic boards

2015-04-08 Thread Grazvydas Ignotas
On Wed, Apr 8, 2015 at 12:15 PM, Masahiro Yamada wrote: > Remove board support for sdp3430, pandora, dig297, mcx, and mvblx. If you can hold this off, I'll try updating pandora during this week. Gražvydas ___ U-Boot mailing list U-Boot@lists.denx.de h

[U-Boot] [PATCH] OMAP3: pandora: drop console kernel argument

2012-03-22 Thread Grazvydas Ignotas
As ttyS0 is no longer valid for newer OMAP kernels, and pandora serial cables are not widespread, simply drop console argument. This should allow booting old and new kernels with default arguments, and those who need serial can use a boot script on SD card. Signed-off-by: Grazvydas Ignotas

[U-Boot] [PATCH] OMAP3: pandora: revise GPIO configuration

2012-03-22 Thread Grazvydas Ignotas
reset pulse as recommended by wifi chip's manufacturer - drop configuration of GPIOs that u-boot doesn't need Signed-off-by: Grazvydas Ignotas --- board/pandora/pandora.c | 54 +++--- 1 files changed, 41 insertions(+), 13 deletions(-) diff --git

[U-Boot] [PATCH] OMAP3: pandora: pin mux updates for DM3730 board variant

2012-03-22 Thread Grazvydas Ignotas
DM3730 needs some additional pin mux configuration for GPIOs 126-129 to work, add it. Signed-off-by: Grazvydas Ignotas --- arch/arm/include/asm/arch-omap3/mux.h |6 ++ board/pandora/pandora.c |3 +++ board/pandora/pandora.h |6 ++ 3 files changed

Re: [U-Boot] [PATCH] ARM: OMAP3: pandora: re-enable NAND soft ECC

2012-03-19 Thread Grazvydas Ignotas
On Tue, Mar 20, 2012 at 12:16 AM, Tom Rini wrote: > On 03/19/2012 03:12 PM, Grazvydas Ignotas wrote: >> >> Commin 4fee6c2f295f9 "nand: make 1-bit software ECC configurable" >> disabled software ECC by default, but pandora always used (and still >> does use) so

[U-Boot] [PATCH] ARM: OMAP3: pandora: re-enable NAND soft ECC

2012-03-19 Thread Grazvydas Ignotas
Commin 4fee6c2f295f9 "nand: make 1-bit software ECC configurable" disabled software ECC by default, but pandora always used (and still does use) software ECC to store it's firmware, so enable it in board file. Signed-off-by: Grazvydas Ignotas --- include/configs/omap3_pandor

[U-Boot] [PATCH] mmc: omap: handle controller errors properly

2012-03-19 Thread Grazvydas Ignotas
some cards that won't work with a message printed multiple times: timedout waiting on cmd inhibit to clear Code loosely based on Linux omap_hsmmc driver. Signed-off-by: Grazvydas Ignotas --- drivers/mmc/omap_hsmmc.c | 36 ++-- 1 files changed, 34 inser

[U-Boot] [PATCH] mmc: omap: improve stat wait message

2012-03-19 Thread Grazvydas Ignotas
The message didn't state that it's waiting for STAT to _clear_, and printing the STAT value itself can help to identify problems. Signed-off-by: Grazvydas Ignotas --- drivers/mmc/omap_hsmmc.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/mmc/omap

Re: [U-Boot] [PATCH] mmc: omap: follow TRM procedure to power on cards

2012-03-19 Thread Grazvydas Ignotas
On Mon, Mar 19, 2012 at 6:44 PM, Tom Rini wrote: > On 03/19/2012 06:50 AM, Grazvydas Ignotas wrote: >> >> According to OMAP3 TRM, PBIASLITEPWRDNZ bits must be cleared while MMC >> power supply is being enabled and is ramping up (those bits might be >> left set by t

[U-Boot] [PATCH] mmc: omap: follow TRM procedure to power on cards

2012-03-19 Thread Grazvydas Ignotas
uired. Signed-off-by: Grazvydas Ignotas --- drivers/mmc/omap_hsmmc.c | 16 +++- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/omap_hsmmc.c b/drivers/mmc/omap_hsmmc.c index 12ff0a2..e9e1d2a 100644 --- a/drivers/mmc/omap_hsmmc.c +++ b/drivers/mmc/omap_hs

[U-Boot] [PATCH] twl4030: fix potential power supply handling issues

2012-03-19 Thread Grazvydas Ignotas
. Also introduce error checking to not enable the supply if we failed to set the voltage, and start logging errors as power supply problems are usually important. Signed-off-by: Grazvydas Ignotas --- drivers/power/twl4030.c | 18 ++ 1 files changed, 14 insertions(+), 4 deletions

Re: [U-Boot] MMC broken after a7778f8fbee098c78b1fa1e1331313a7e217fb30

2012-03-18 Thread Grazvydas Ignotas
On Sun, Mar 4, 2012 at 10:06 PM, Pali Rohár wrote: > Hi, > > this commit is breaking MMC support on Nokia N900: > a7778f8fbee098c78b1fa1e1331313a7e217fb30 omap_hsmmc: Wait for CMDI to be clear > > I'm geting only error message "timedout waiting on cmd inhibit to clear" and I > cannot read files fr

Re: [U-Boot] [PATCH v2 2/3] OMAP3: pandora: remove unused config macros

2010-11-19 Thread Grazvydas Ignotas
in the code or are used by drivers that >> >> are not enabled. Remove them. >> >> >> >> Signed-off-by: Grazvydas Ignotas >> >> --- >> >> Alternatively this old patch can be applied to clean up more OMAP >> boards: >> >&

Re: [U-Boot] patches added to u-boot-ti

2010-11-05 Thread Grazvydas Ignotas
On Thu, Nov 4, 2010 at 10:25 PM, Paulraj, Sandeep wrote: > I have added quite a few patches to u-boot-ti but MAKEALL returns several > errors. > > I think most boards have not been updated since the ARM relocation patch. Just sent patches to fix up OMAP3 pandora,

[U-Boot] [PATCH v2 3/3] OMAP3: pandora: update config for production

2010-11-05 Thread Grazvydas Ignotas
Update pandora's config so that it can boot production kernels from NAND. This enables UBI, USB, sets up NAND layout and default boot command. It also expands malloc area so that UBI works. Signed-off-by: Grazvydas Ignotas --- include/configs/omap3_pandora.h |

[U-Boot] [PATCH v2 2/3] OMAP3: pandora: remove unused config macros

2010-11-05 Thread Grazvydas Ignotas
Pandora's config has various flash related macros that are either not referenced anywhere in the code or are used by drivers that are not enabled. Remove them. Signed-off-by: Grazvydas Ignotas --- Alternatively this old patch can be applied to clean up more OMAP boards: http://lists.de

[U-Boot] [PATCH v2 1/3] OMAP3: pandora: fix relocation and init memory map

2010-11-05 Thread Grazvydas Ignotas
Fix the build breakage introduced by the recent relocation and memory layout changes for ARM. Signed-off-by: Grazvydas Ignotas --- board/pandora/config.mk | 33 - include/configs/omap3_pandora.h |8 2 files changed, 8 insertions(+), 33

[U-Boot] [PATCH v2 0/3] Pandora config fixes and updates

2010-11-05 Thread Grazvydas Ignotas
ine u-boot. Grazvydas Ignotas (3): OMAP3: pandora: fix relocation and init memory map OMAP3: pandora: remove unused config macros OMAP3: pandora: update config for production board/pandora/config.mk | 33 --- include/configs/omap3_pandora.h |

[U-Boot] [PATCH 2/3] ARMV7: OMAP3: pandora: remove unused config macros

2010-10-20 Thread Grazvydas Ignotas
Pandora's config has various flash related macros that are either not referenced anywhere in the code or are used by drivers that are not enabled. Remove them. Signed-off-by: Grazvydas Ignotas --- Alternatively this old patch can be applied to clean up more OMAP boards: http://lists.de

[U-Boot] [PATCH 0/3] Pandora config updates

2010-10-20 Thread Grazvydas Ignotas
These patches update pandora's config for relocations and syncs it with one shipped on production units. Patches generated on top of u-boot-arm. Grazvydas Ignotas (3): ARMV7: OMAP3: pandora: implement relocation ARMV7: OMAP3: pandora: remove unused config macros ARMV7: OMAP3: pa

[U-Boot] [PATCH 3/3] ARMV7: OMAP3: pandora: update config for production

2010-10-20 Thread Grazvydas Ignotas
Update pandora's config so that it can boot production kernels from NAND. This enables UBI, USB, sets up NAND layout and default boot command. It also expands malloc area so that UBI works. Signed-off-by: Grazvydas Ignotas --- include/configs/omap3_pandora.h |

[U-Boot] [PATCH 1/3] ARMV7: OMAP3: pandora: implement relocation

2010-10-20 Thread Grazvydas Ignotas
Fixes the build breakage introduced by the recent relocation changes for ARMV7. Signed-off-by: Grazvydas Ignotas --- board/pandora/config.mk |2 +- include/configs/omap3_pandora.h |3 +++ 2 files changed, 4 insertions(+), 1 deletions(-) diff --git a/board/pandora/config.mk b

Re: [U-Boot] [PATCH] OMAP3: remove unused config macros

2010-08-13 Thread Grazvydas Ignotas
this? Those defines are mostly dead code. > > Not pushed yet. > > I have cc'ed all the concerned board maintainers in case they have an > objection. > > >> >> On Thu, Apr 29, 2010 at 5:19 PM, Grazvydas Ignotas >> wrote: >> > Most OMAP3 boards

Re: [U-Boot] [PATCH 1/2] mmc: omap3: make local symbols static

2010-08-13 Thread Grazvydas Ignotas
>> Unfortunately the patches didn't apply cleanly, but the fixes were >> simple.  I have the modified patches in the omap4-next-upstream branch >> of my repo for convenience: >> >> http://www.sakoman.com/cgi-bin/gitweb.cgi?p=u- >> boot.git;a=shortlog;h=refs/heads/omap4-next-upstream >> >> Regards,

Re: [U-Boot] Building omap3_sdp3430 fails with older compilers

2010-06-18 Thread Grazvydas Ignotas
On Fri, Jun 18, 2010 at 12:25 PM, Wolfgang Denk wrote: > The changes introduced by this commit: > >        commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1 >        Author: Tom Rix >        Date:   Thu Sep 10 15:27:57 2009 -0400 > >            OMAP3 Move cache routine to cache.S > > added, among o

Re: [U-Boot] [PATCH v2 01/10] ARM: Rename arch/arm/cpu/arm_cortexa8 to armv7

2010-06-18 Thread Grazvydas Ignotas
On Fri, Jun 18, 2010 at 1:17 AM, Steve Sakoman wrote: > The purpose of this patch is to prepare for adding the OMAP4 architecture, > which is Cortex A9 > > Cortex A8 and A9 both belong to the armv7 architecture, hence the name change. > > The two architectures are similar enough that substantial

[U-Boot] [PATCH 1/2] mmc: omap3: make local symbols static

2010-06-16 Thread Grazvydas Ignotas
Make driver local variables and functions static and remove them from the arch header. Signed-off-by: Grazvydas Ignotas --- arch/arm/include/asm/arch-omap3/mmc.h |9 - drivers/mmc/omap3_mmc.c | 33 + 2 files changed, 17 insertions

[U-Boot] [PATCH 2/2] mmc: omap3: fix block read function

2010-06-16 Thread Grazvydas Ignotas
: Grazvydas Ignotas --- drivers/mmc/omap3_mmc.c | 47 +-- 1 files changed, 21 insertions(+), 26 deletions(-) diff --git a/drivers/mmc/omap3_mmc.c b/drivers/mmc/omap3_mmc.c index dc331a0..af74997 100644 --- a/drivers/mmc/omap3_mmc.c +++ b/drivers/mmc

Re: [U-Boot] [PATCH] OMAP3: pandora: enable battery backup capacitor

2010-06-08 Thread Grazvydas Ignotas
CCing Sandeep. On Thu, Apr 29, 2010 at 5:52 PM, Grazvydas Ignotas wrote: > Pandora has a capacitor connected as backup battery, which allows > retaining RTC for some time while main battery is removed. Enable backup > battery charge function to charge that capacitor. > > Signed-of

Re: [U-Boot] [PATCH] OMAP3: remove unused config macros

2010-06-08 Thread Grazvydas Ignotas
Just a ping. Sandeep, maybe you could pick this? Those defines are mostly dead code. On Thu, Apr 29, 2010 at 5:19 PM, Grazvydas Ignotas wrote: > Most OMAP3 boards have various flash related macros in their configs > that are either not referenced anywhere in the code or are used by >

[U-Boot] [PATCH] OMAP3: pandora: enable battery backup capacitor

2010-04-29 Thread Grazvydas Ignotas
Pandora has a capacitor connected as backup battery, which allows retaining RTC for some time while main battery is removed. Enable backup battery charge function to charge that capacitor. Signed-off-by: Grazvydas Ignotas --- board/pandora/pandora.c |9 + 1 files changed, 9

[U-Boot] [PATCH] OMAP3: remove unused config macros

2010-04-29 Thread Grazvydas Ignotas
Most OMAP3 boards have various flash related macros in their configs that are either not referenced anywhere in the code or are used by drivers that are not enabled. Remove them. Signed-off-by: Grazvydas Ignotas --- include/configs/omap3_beagle.h | 18 -- include/configs

Re: [U-Boot] [beagleboard] TI:OMAP: [PATCH 4/4] Minimal Display driver for OMAP3

2010-01-11 Thread Grazvydas Ignotas
On Sun, Jan 10, 2010 at 7:46 PM, Khasim Syed Mohammed wrote: > On Sun, Jan 10, 2010 at 9:11 PM, Nishanth Menon > wrote: >> Khasim Syed Mohammed said the following on 01/09/2010 09:16 PM: >>> >>> On Sat, Jan 9, 2010 at 8:18 PM, Nishanth Menon >>> wrote: Khasim Syed Mohammed said the fol

Re: [U-Boot] TI:OMAP: [PATCH] API to select twl4030 voltage and dev group

2010-01-11 Thread Grazvydas Ignotas
On Sat, Jan 9, 2010 at 6:42 AM, Khasim Syed Mohammed wrote: > From cc1b24cb290d428f2e1aefec9c7878b46380f592 Mon Sep 17 00:00:00 2001 > From: Syed Mohammed Khasim > Date: Sat, 9 Jan 2010 09:28:03 +0530 > Subject: [PATCH] API to select twl4030 voltage and dev group > > Adds a new API "twl4030_pmrec

[U-Boot] [PATCH] pandora: don't enable VAUX3, VDAC and VPLL2 regulators

2009-12-11 Thread Grazvydas Ignotas
These regulators are not needed to start the kernel and only cause "incomplete constraints" warnings from kernel, so don't turn them on to save power. Signed-off-by: Grazvydas Ignotas --- this patch depends on "TWL4030: make LEDs selectable for twl4030_led_init()&qu

[U-Boot] [PATCH v3] TWL4030: make LEDs selectable for twl4030_led_init()

2009-12-10 Thread Grazvydas Ignotas
-off-by: Grazvydas Ignotas --- board/logicpd/zoom1/zoom1.c |2 +- board/logicpd/zoom2/zoom2.c |2 +- board/overo/overo.c |2 +- board/pandora/pandora.c |2 +- board/ti/beagle/beagle.c|2 +- board/timll/devkit8000

Re: [U-Boot] [PATCH] TWL4030: make LEDs selectable in twl4030_led_init()

2009-12-02 Thread Grazvydas Ignotas
On Wed, Dec 2, 2009 at 4:55 PM, Tom wrote: > Grazvydas Ignotas wrote: >> >> diff --git a/drivers/misc/twl4030_led.c b/drivers/misc/twl4030_led.c >> index bfdafef..d2cc3c8 100644 >> --- a/drivers/misc/twl4030_led.c >> +++ b/drivers/misc/twl4030_led.c >>

[U-Boot] [PATCH] TWL4030: make LEDs selectable in twl4030_led_init()

2009-12-02 Thread Grazvydas Ignotas
-off-by: Grazvydas Ignotas --- board/logicpd/zoom1/zoom1.c |2 +- board/logicpd/zoom2/zoom2.c |2 +- board/overo/overo.c |2 +- board/pandora/pandora.c |2 +- board/ti/beagle/beagle.c|2 +- board/timll/devkit8000

Re: [U-Boot] [RFC PATCH] TWL4030: make LEDs selectable in twl4030_led_init()

2009-12-01 Thread Grazvydas Ignotas
On Tue, Dec 1, 2009 at 4:24 PM, Tom wrote: > Grazvydas Ignotas wrote: >> >> Not all boards have both LEDs hooked, so enabling both on >> boards with single LED will just waste power. >> > > This looks like a pandora specific change. > Please say somethi

[U-Boot] [RFC PATCH] TWL4030: make LEDs selectable in twl4030_led_init()

2009-11-30 Thread Grazvydas Ignotas
Not all boards have both LEDs hooked, so enabling both on boards with single LED will just waste power. Make it possible to choose LEDs by adding arguments to twl4030_led_init(). Signed-off-by: Grazvydas Ignotas --- board/logicpd/zoom1/zoom1.c |2 +- board/logicpd/zoom2/zoom2.c

Re: [U-Boot] twl4030_power_init cleanup proposal

2009-11-30 Thread Grazvydas Ignotas
On Mon, Nov 30, 2009 at 6:17 PM, Tom wrote: > Grazvydas Ignotas wrote: >> >> hi, >> >> drivers/power/twl4030.c has a twl4030_power_init() function which is >> called by most (all?) OMAP3 boards. What it does is enabling VAUX3, >> VPLL2 and VDAC power sup

[U-Boot] twl4030_power_init cleanup proposal

2009-11-30 Thread Grazvydas Ignotas
hi, drivers/power/twl4030.c has a twl4030_power_init() function which is called by most (all?) OMAP3 boards. What it does is enabling VAUX3, VPLL2 and VDAC power supplies in TWL4030/TPS659x0 chip. However they are all very board specific and in most cases not needed at all, at least for booting th

[U-Boot] [PATCH v2] OMAP3: pandora: fix booting without serial attached

2009-11-12 Thread Grazvydas Ignotas
not prevent serial from working as the internal pullup is weak. Signed-off-by: Grazvydas Ignotas --- It would be nice for this to go in as a fix for 2009.11, else users without serial cable won't be able to boot it. board/pandora/pandora.h |3 ++- 1 files changed, 2 insertions(+), 1 dele

Re: [U-Boot] [PATCH] OMAP3: pandora: fix booting without serial attached

2009-11-11 Thread Grazvydas Ignotas
On Wed, Nov 11, 2009 at 11:14 PM, Tom wrote: > Grazvydas Ignotas wrote: >> >> When the board is booted without serial cable attached (which >> is how most of them will be used) UART RX is left floating and >> sometimes picks noise, which interrupts countdown and enters

[U-Boot] [PATCH] OMAP3: pandora: fix booting without serial attached

2009-11-11 Thread Grazvydas Ignotas
-by: Grazvydas Ignotas --- board/pandora/pandora.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/pandora/pandora.h b/board/pandora/pandora.h index 5bfa0f9..f1e1db9 100644 --- a/board/pandora/pandora.h +++ b/board/pandora/pandora.h @@ -219,7 +219,7 @@ const

Re: [U-Boot] [PATCH 0/4] OMAP3 pandora: pin mux updates

2009-07-09 Thread Grazvydas Ignotas
On Thu, Jul 9, 2009 at 1:44 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 00:29 Wed 08 Jul     , Grazvydas Ignotas wrote: >> This patch series clean up and update pin mux for pandora. >> The update is needed for rev3 or later boards to work properly, >> but older boards

[U-Boot] [PATCH 4/4] OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh

2009-07-07 Thread Grazvydas Ignotas
Pandora is using both SDRC CSes. The MUX setting is needed for the second CS clock signal to allow the 2 RAM parts to be put in self-refresh correctly. Based on similar patch for beagle and overo by Jean Pihet and Steve Sakoman. --- board/omap3/pandora/pandora.h |2 +- 1 files changed, 1 inse

[U-Boot] [PATCH 0/4] OMAP3 pandora: pin mux updates

2009-07-07 Thread Grazvydas Ignotas
This patch series clean up and update pin mux for pandora. The update is needed for rev3 or later boards to work properly, but older boards still work after this. Grazvydas Ignotas (4): OMAP3 pandora: pin mux cleanup OMAP3 pandora: setup pin mux for pins used on rev3 boards OMAP3 pandora

[U-Boot] [PATCH 1/4] OMAP3 pandora: pin mux cleanup

2009-07-07 Thread Grazvydas Ignotas
Remove configuration of not unused pins, effectively leaving them in safe mode. --- board/omap3/pandora/pandora.h | 25 - 1 files changed, 0 insertions(+), 25 deletions(-) diff --git a/board/omap3/pandora/pandora.h b/board/omap3/pandora/pandora.h index 8f0838c..3d04b2a 1

[U-Boot] [PATCH 2/4] OMAP3 pandora: setup pin mux for pins used on rev3 boards

2009-07-07 Thread Grazvydas Ignotas
Setup pin mux for GPIO pins connected on rev3 or later boards. Also change NUB2 IRQ pin. This should not affect older boards because they don't have any nubs (analog controllers) attached to them. --- board/omap3/pandora/pandora.h | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(

[U-Boot] [PATCH 3/4] OMAP3 pandora: setup pulls for various GPIOs

2009-07-07 Thread Grazvydas Ignotas
Set pullups or pulldowns for GPIOs which need them. Disable them for others, which have external pulls. Also make disabled pull setting consistent (some pins had type set to "up" even if pull type selection was disabled). --- board/omap3/pandora/pandora.h | 50 ---

Re: [U-Boot] [PATCH] OMAP3 pandora: update pin mux for rev3 boards

2009-06-28 Thread Grazvydas Ignotas
> when you will be in possession of the old version of a board and just because > few people have the board is remove from the mainline you will not be happy. > So no we will support the both Well old boards *do* actually work after these changes, except one game button and one analog controller (

Re: [U-Boot] [PATCH] OMAP3 pandora: update pin mux for rev3 boards

2009-06-26 Thread Grazvydas Ignotas
On Fri, Jun 26, 2009 at 12:59 AM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 14:57 Mon 08 Jun     , Grazvydas Ignotas wrote: >> The update consists of following changes: >> - remove configuration of not connected pins, effectively >>   leaving them in safe mode. >> -

[U-Boot] [PATCH] OMAP3 pandora: update pin mux for rev3 boards

2009-06-08 Thread Grazvydas Ignotas
recent patch for Beagle and Overo. Old boards are no longer supported, but there was only small number of test boards made. Updated configuration is expected to be used for mass production. CC: Dirk Behme Signed-off-by: Grazvydas Ignotas --- board/omap3/pandora/pandora.h | 92

Re: [U-Boot] [PATCH 6/7 v2] OMAP3: Add OMAP3 core changes for MUSB

2009-02-23 Thread Grazvydas Ignotas
On Sun, Feb 22, 2009 at 6:22 PM, Dirk Behme wrote: > Dear Jean-Christophe, > > Jean-Christophe PLAGNIOL-VILLARD wrote: >> On 19:55 Thu 12 Feb , Dirk Behme wrote: >>> OMAP3 core changes necessary for MUSB >>> >>> Signed-off-by: Dirk Behme >>> >>> --- >>> Note: OMAP3 USB code will be sent later

Re: [U-Boot] [PATCH 4/7] OMAP3: Pandora: Update pin mux

2009-02-05 Thread Grazvydas Ignotas
Here is a patch with better commit message. Hope it helps. >From ee8002fe14789ad22cca153727d1677c5aa4d254 Mon Sep 17 00:00:00 2001 From: Grazvydas Ignotas Date: Thu, 5 Feb 2009 22:29:58 +0200 Subject: [PATCH 4/7] OMAP3: Update pandora pin mux Clock pin must have input enabled for MMC3 to w

Re: [U-Boot] [PATCH 15/15 v6] OMAP3: Add Pandora config, main Makefile, README, MAKEALL and MAINTAINERS

2009-01-19 Thread Grazvydas Ignotas
On Sat, Jan 17, 2009 at 8:34 PM, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 09:47 Sun 14 Dec , Dirk Behme wrote: >> Add Pandora config, main Makefile, README, MAKEALL and MAINTAINERS >> >> Signed-off-by: Dirk Behme >> >> --- >> MAINTAINERS | 20 ++ >> MAKEALL

[U-Boot] OMAP3 patch series

2009-01-14 Thread Grazvydas Ignotas
Hello, a month has passed since v6 OMAP3 patches were submitted to this ML [1]. So far they have not been reviewed nor accepted. Are there any estimates when that is going to happen? I.e. "when we have time", "never" or "we don't like OMAP3" would be good answers. Thanks, Grazvydas [1] http://li

[U-Boot] [PATCH-OMAP3 2/2] OMAP3: Add Pandora configuration

2008-11-25 Thread Grazvydas Ignotas
This patch adds configuration file for OMAP3 Pandora. Signed-off-by: Grazvydas Ignotas <[EMAIL PROTECTED]> --- include/configs/omap3_pandora.h | 302 +++ 1 files changed, 302 insertions(+), 0 deletions(-) create mode 100644 include/configs/omap3_pan

[U-Boot] [PATCH-OMAP3 1/2] OMAP3: Add Pandora board files

2008-11-25 Thread Grazvydas Ignotas
This patch adds support for OMAP3 based Pandora board. Signed-off-by: Grazvydas Ignotas <[EMAIL PROTECTED]> --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + board/omap3/pandora/Makefile | 49 + board

[U-Boot] [PATCH-OMAP3 0/2] OMAP3: Add support for OMAP3 based Pandora board

2008-11-25 Thread Grazvydas Ignotas
Pandora is open handheld gaming console, which uses Texas Instruments OMAP 3530 SoC. More information can be found at http://openpandora.org/. The following two patches are to be applied on u-boot-arm/omap3 branch, and should match style currently used there. __