* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
@ 2004-07-20 18:04 Michael Bendzick
2004-07-20 19:31 ` 'George G. Davis'
0 siblings, 1 reply; 11+ messages in thread
From: Michael Bendzick @ 2004-07-20 18:04 UTC (permalink / raw)
To: u-boot
George-
Those two added lines do look good. It would be handy to have access to the
second chip of user flash. Do you think it would be good to add some kind
of support for the AMD boot flash? It claims to be CFI compliant, though
tracking it as it moves through the memory map as the DIP switches are
changed would be a bit tough. Perhaps if we updated the config file with
#define's for the DIP switch settings, and based on that, it reasons out the
correct memory settings for you?
-Michael Bendzick
-----Original Message-----
From: 'George G. Davis' [mailto:gdavis at mvista.com]
Sent: Tuesday, July 20, 2004 10:38 AM
To: Michael Bendzick
Cc: U-Boot-Users (E-mail)
Subject: Re: [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
On Mon, Jul 19, 2004 at 04:35:23PM -0500, Michael Bendzick wrote:
> Attached is a patch that makes the omap1510inn board use the
> drivers/cfi_flash.c flash driver.
>
> NOTE to Wolfgang: This patch is NOT for CVS yet.
>
> Instead, it is for testing by other people to make sure this looks like a
> good change to make to this board configuration. If reports are positive,
I
> will submit a patch for real.
It seems to work ok for me. How about adding this:
diff -u include/configs/omap1510inn.h include/configs/omap1510inn.h
--- include/configs/omap1510inn.h 19 Jul 2004 20:50:28 -0000
+++ include/configs/omap1510inn.h 20 Jul 2004 15:18:48 -0000
@@ -159,7 +159,7 @@
/*-----------------------------------------------------------------------
* FLASH and environment organization
*/
-#define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */
+#define CFG_MAX_FLASH_BANKS 2 /* max number of memory banks */
#define PHYS_FLASH_SIZE 0x01000000 /* 16MB */
#define CFG_MAX_FLASH_SECT (128) /* max number of sectors on one chip
*/
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x020000) /* addr of
environment */
@@ -168,6 +168,7 @@
#define CFG_FLASH_USE_BUFFER_WRITE 1 /* Use buffered writes (10x
faster) */
#define CFG_MONITOR_BASE CFG_FLASH_BASE /* Monitor at beginning of
flash */
#define CFG_MONITOR_LEN (128 << 10) /* Reserve 128kB
*/
+#define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE, CFG_FLASH_BASE +
PHYS_FLASH_SIZE }
/* timeout values are in ticks */
#ifndef CFG_FLASH_CFI_DRIVER
FWIW, I'm having problems running U-Boot CVS HEAD on Innovator/OMAP1510
lately.
The target hangs during early init. I haven't figured out what's wrong but
I'm
only able to use U-Boot CVS HEAD on Innovator/OMAP1510 while the BDI2000 is
connected. If I disconnect the BDI2000, the darn target hangs during early
init. Unfortunately I've no time to debug the early hang problem. But that
problem is independent from your CFI patch anyway.
Thanks!
<snip>
--
Regards,
George
^ permalink raw reply [flat|nested] 11+ messages in thread* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-20 18:04 [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer? Michael Bendzick
@ 2004-07-20 19:31 ` 'George G. Davis'
2004-07-20 20:46 ` 'George G. Davis'
0 siblings, 1 reply; 11+ messages in thread
From: 'George G. Davis' @ 2004-07-20 19:31 UTC (permalink / raw)
To: u-boot
On Tue, Jul 20, 2004 at 01:04:28PM -0500, Michael Bendzick wrote:
> George-
>
> Those two added lines do look good. It would be handy to have access to the
> second chip of user flash. Do you think it would be good to add some kind
> of support for the AMD boot flash?
I gave it a quick try just now. Although the AMD flash bank is detected,
it appears that the common CFI flash driver is incapable of dealing with
heterogenous flash configs, i.e. the AMD flash bank appears to inherit
the same size and number of flank banks as the two (identical) Intel banks,
16MiB and 128 sectors. So it's probably not a good idea to enable support
for the AMD flash bank yet. Also, FWIW, it's not supported in the linux MTD
MAP driver yet and is typically only ever used for TI IBoot firmware, IIUC.
So I wouldn't want to corrupt the IBoot firmware inadvertantly by enabling
support for it. But some other folks may find it useful if it is properly
supported.
> It claims to be CFI compliant, though
> tracking it as it moves through the memory map as the DIP switches are
> changed would be a bit tough. Perhaps if we updated the config file with
> #define's for the DIP switch settings, and based on that, it reasons out the
> correct memory settings for you?
I would prefer to see auto detection of flash bank locations based on
those DIP switch settings. But if we include all four possible flash
bank locations in CFG_FLASH_BANKS_LIST _and_ the common CFI flash driver
is enhanced to support heterogenous flash configs, then we probably can
ignore those DIP switch setup issues altogther.
<snip>
--
Regards,
George
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-20 19:31 ` 'George G. Davis'
@ 2004-07-20 20:46 ` 'George G. Davis'
0 siblings, 0 replies; 11+ messages in thread
From: 'George G. Davis' @ 2004-07-20 20:46 UTC (permalink / raw)
To: u-boot
On Tue, Jul 20, 2004 at 03:31:41PM -0400, 'George G. Davis' wrote:
> On Tue, Jul 20, 2004 at 01:04:28PM -0500, Michael Bendzick wrote:
> > George-
> >
> > Those two added lines do look good. It would be handy to have access to the
> > second chip of user flash. Do you think it would be good to add some kind
> > of support for the AMD boot flash?
>
> I gave it a quick try just now. Although the AMD flash bank is detected,
> it appears that the common CFI flash driver is incapable of dealing with
> heterogenous flash configs, i.e. the AMD flash bank appears to inherit
> the same size and number of flank banks as the two (identical) Intel banks,
> 16MiB and 128 sectors.
Oops, nevermind, I typoed the AMD flash bank address and wound up detecting
an intel flash part a second time as the third bank. : P After fixing that
typo, the AMD flash bank is in fact correctly detected. This seem to work
ok (with artifacts for the boot RAM bank - warning about Unknown FLASH on
Bank 2):
diff -u include/configs/omap1510inn.h include/configs/omap1510inn.h
--- include/configs/omap1510inn.h 19 Jul 2004 20:50:28 -0000
+++ include/configs/omap1510inn.h 20 Jul 2004 20:27:57 -0000
@@ -26,6 +26,8 @@
#ifndef __CONFIG_H
#define __CONFIG_H
+#undef DEBUG
+
/*
* If we are developing, we might want to start armboot from ram
* so we MUST NOT initialize critical regs like mem-timing ...
@@ -159,7 +161,7 @@
/*-----------------------------------------------------------------------
* FLASH and environment organization
*/
-#define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */
+#define CFG_MAX_FLASH_BANKS 4 /* max number of memory banks */
#define PHYS_FLASH_SIZE 0x01000000 /* 16MB */
#define CFG_MAX_FLASH_SECT (128) /* max number of sectors on one chip */
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x020000) /* addr of environment */
@@ -168,6 +170,13 @@
#define CFG_FLASH_USE_BUFFER_WRITE 1 /* Use buffered writes (10x faster) */
#define CFG_MONITOR_BASE CFG_FLASH_BASE /* Monitor at beginning of flash */
#define CFG_MONITOR_LEN (128 << 10) /* Reserve 128kB */
+#define CFG_FLASH_BANKS_LIST \
+ { \
+ 0x00000000, \
+ 0x01000000, \
+ 0x0c000000, \
+ 0x0c400000 \
+ }
/* timeout values are in ticks */
#ifndef CFG_FLASH_CFI_DRIVER
Of course, there are still other considerations for the various DIP switch
settings as you mentioned previously, e.g. where is the env sector, etc.,.
> So it's probably not a good idea to enable support
> for the AMD flash bank yet. Also, FWIW, it's not supported in the linux MTD
> MAP driver yet and is typically only ever used for TI IBoot firmware, IIUC.
> So I wouldn't want to corrupt the IBoot firmware inadvertantly by enabling
> support for it. But some other folks may find it useful if it is properly
> supported.
I'm still unsure about adding support for these other banks. But I'm sort of
indifferent and it really make little difference to me if someone else finds
it useful.
> > It claims to be CFI compliant, though
> > tracking it as it moves through the memory map as the DIP switches are
> > changed would be a bit tough. Perhaps if we updated the config file with
> > #define's for the DIP switch settings, and based on that, it reasons out the
> > correct memory settings for you?
>
> I would prefer to see auto detection of flash bank locations based on
> those DIP switch settings. But if we include all four possible flash
> bank locations in CFG_FLASH_BANKS_LIST _and_ the common CFI flash driver
> is enhanced to support heterogenous flash configs, then we probably can
> ignore those DIP switch setup issues altogther.
There's still the small problem of what to do about the varied DIP switch
settings and side effects of those changing from the usual OFF OFF ON OFF (1-4
respectively). Meanwhile Linux only supports the OFF OFF ON OFF case anyway.
--
Regards,
George
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
@ 2004-07-19 21:35 Michael Bendzick
2004-07-20 15:37 ` 'George G. Davis'
0 siblings, 1 reply; 11+ messages in thread
From: Michael Bendzick @ 2004-07-19 21:35 UTC (permalink / raw)
To: u-boot
Attached is a patch that makes the omap1510inn board use the
drivers/cfi_flash.c flash driver.
NOTE to Wolfgang: This patch is NOT for CVS yet.
Instead, it is for testing by other people to make sure this looks like a
good change to make to this board configuration. If reports are positive, I
will submit a patch for real.
-Michael Bendzick
-----Original Message-----
From: 'George G. Davis' [mailto:gdavis at mvista.com]
Sent: Friday, July 16, 2004 7:05 PM
To: Michael Bendzick
Cc: U-Boot-Users (E-mail)
Subject: Re: [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
On Fri, Jul 16, 2004 at 05:11:20PM -0500, Michael Bendzick wrote:
> George-
>
> Mostly I was interested in seeing if he would be interested in submitting
a
> patch to the omap1510inn board to use the driver/cfi_flash.c driver. I
> tested that configuration in developing my recent patch for the file, and
> found it worked quite well. I certainly can't complain about writing to
> flash about 10x as fast as before.
Sounds agreeable. Just submit it and we can all give it a try. : )
> If Kshitij is no longer around,
I'm sure he's probably still around but probably quite busy.
> and others are interested in trying it out,
I'll give it a try.
> I can make a patch for the modifications I made to that board
configuration.
Please do send a patch.
> I don't see a reason to stick with the non-central, slow flash writing
code
> for omap1510inn if a better option is available.
Agreed, it sounds good to me to use the common flash driver when/where
possible.
FWIW, the OMAP1610 H2 uses Intel L18 flash parts. I'm not sure if the
common cfi_flash.c driver supports this part yet.
--
Regards,
George
>
> -Michael Bendzick
>
> -----Original Message-----
> From: George G. Davis [mailto:gdavis at mvista.com]
> Sent: Friday, July 16, 2004 4:43 PM
> To: Michael Bendzick
> Cc: 'wd at denx.de'; U-Boot-Users (E-mail)
> Subject: Re: [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
>
>
> On Thu, Jul 15, 2004 at 02:44:35PM -0500, Michael Bendzick wrote:
> > Wolfgang-
> >
> > It appears that Kshitij Gupta, the maintainer for the omap1510inn &
> > omap1610inn, is no longer reachable at his email address listed in the
> > MAINTAINERS file. Is there anyone else that has been closely associated
> > with this board,
>
> I'm casually aquainted with the OMAP1610 H2 and Innovator/OMAP1510.
>
> What's the problem?
>
> > or does anyone know of a new way to contact Kshitij?
>
> Perhaps you can ask questions about those boards here and he or someone
> else may answer eventually? I'm sure he is just as busy as the rest us
are.
>
> --
> Regards,
> George
> >
> > -Michael Bendzick
> > Systems and Software Engineering
> > Logic Product Development
> > michael.b at logicpd.com
> > 612-436-5122
> > www.logicpd.com
> >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email is sponsored by BEA Weblogic Workshop
> > FREE Java Enterprise J2EE developer tools!
> > Get your free copy of BEA WebLogic Workshop 8.1 today.
> > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> > _______________________________________________
> > U-Boot-Users mailing list
> > U-Boot-Users at lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/u-boot-users
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
-------------- next part --------------
A non-text attachment was scrubbed...
Name: omap1510inn-cfi-071904.patch
Type: application/octet-stream
Size: 1755 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20040719/346bf170/attachment.obj
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-19 21:35 Michael Bendzick
@ 2004-07-20 15:37 ` 'George G. Davis'
2004-07-20 16:26 ` 'George G. Davis'
0 siblings, 1 reply; 11+ messages in thread
From: 'George G. Davis' @ 2004-07-20 15:37 UTC (permalink / raw)
To: u-boot
On Mon, Jul 19, 2004 at 04:35:23PM -0500, Michael Bendzick wrote:
> Attached is a patch that makes the omap1510inn board use the
> drivers/cfi_flash.c flash driver.
>
> NOTE to Wolfgang: This patch is NOT for CVS yet.
>
> Instead, it is for testing by other people to make sure this looks like a
> good change to make to this board configuration. If reports are positive, I
> will submit a patch for real.
It seems to work ok for me. How about adding this:
diff -u include/configs/omap1510inn.h include/configs/omap1510inn.h
--- include/configs/omap1510inn.h 19 Jul 2004 20:50:28 -0000
+++ include/configs/omap1510inn.h 20 Jul 2004 15:18:48 -0000
@@ -159,7 +159,7 @@
/*-----------------------------------------------------------------------
* FLASH and environment organization
*/
-#define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */
+#define CFG_MAX_FLASH_BANKS 2 /* max number of memory banks */
#define PHYS_FLASH_SIZE 0x01000000 /* 16MB */
#define CFG_MAX_FLASH_SECT (128) /* max number of sectors on one chip */
#define CFG_ENV_ADDR (CFG_FLASH_BASE + 0x020000) /* addr of environment */
@@ -168,6 +168,7 @@
#define CFG_FLASH_USE_BUFFER_WRITE 1 /* Use buffered writes (10x faster) */
#define CFG_MONITOR_BASE CFG_FLASH_BASE /* Monitor at beginning of flash */
#define CFG_MONITOR_LEN (128 << 10) /* Reserve 128kB */
+#define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE, CFG_FLASH_BASE + PHYS_FLASH_SIZE }
/* timeout values are in ticks */
#ifndef CFG_FLASH_CFI_DRIVER
FWIW, I'm having problems running U-Boot CVS HEAD on Innovator/OMAP1510 lately.
The target hangs during early init. I haven't figured out what's wrong but I'm
only able to use U-Boot CVS HEAD on Innovator/OMAP1510 while the BDI2000 is
connected. If I disconnect the BDI2000, the darn target hangs during early
init. Unfortunately I've no time to debug the early hang problem. But that
problem is independent from your CFI patch anyway.
Thanks!
<snip>
--
Regards,
George
^ permalink raw reply [flat|nested] 11+ messages in thread* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-20 15:37 ` 'George G. Davis'
@ 2004-07-20 16:26 ` 'George G. Davis'
0 siblings, 0 replies; 11+ messages in thread
From: 'George G. Davis' @ 2004-07-20 16:26 UTC (permalink / raw)
To: u-boot
On Tue, Jul 20, 2004 at 11:37:58AM -0400, 'George G. Davis' wrote:
<snip>
> FWIW, I'm having problems running U-Boot CVS HEAD on Innovator/OMAP1510 lately.
> The target hangs during early init. I haven't figured out what's wrong but I'm
> only able to use U-Boot CVS HEAD on Innovator/OMAP1510 while the BDI2000 is
> connected. If I disconnect the BDI2000, the darn target hangs during early
> init. Unfortunately I've no time to debug the early hang problem. But that
> problem is independent from your CFI patch anyway.
Ok, nevermind, it seems to be working OK now w/o the BDI2000. I'll attribute
this flaky behavior to my impatience with the usual POR problems I've had
with this target since the very beginning.
<snip>
--
Regards,
George
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
@ 2004-07-16 22:11 Michael Bendzick
2004-07-17 0:05 ` 'George G. Davis'
0 siblings, 1 reply; 11+ messages in thread
From: Michael Bendzick @ 2004-07-16 22:11 UTC (permalink / raw)
To: u-boot
George-
Mostly I was interested in seeing if he would be interested in submitting a
patch to the omap1510inn board to use the driver/cfi_flash.c driver. I
tested that configuration in developing my recent patch for the file, and
found it worked quite well. I certainly can't complain about writing to
flash about 10x as fast as before.
If Kshitij is no longer around, and others are interested in trying it out,
I can make a patch for the modifications I made to that board configuration.
I don't see a reason to stick with the non-central, slow flash writing code
for omap1510inn if a better option is available.
-Michael Bendzick
-----Original Message-----
From: George G. Davis [mailto:gdavis at mvista.com]
Sent: Friday, July 16, 2004 4:43 PM
To: Michael Bendzick
Cc: 'wd at denx.de'; U-Boot-Users (E-mail)
Subject: Re: [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
On Thu, Jul 15, 2004 at 02:44:35PM -0500, Michael Bendzick wrote:
> Wolfgang-
>
> It appears that Kshitij Gupta, the maintainer for the omap1510inn &
> omap1610inn, is no longer reachable at his email address listed in the
> MAINTAINERS file. Is there anyone else that has been closely associated
> with this board,
I'm casually aquainted with the OMAP1610 H2 and Innovator/OMAP1510.
What's the problem?
> or does anyone know of a new way to contact Kshitij?
Perhaps you can ask questions about those boards here and he or someone
else may answer eventually? I'm sure he is just as busy as the rest us are.
--
Regards,
George
>
> -Michael Bendzick
> Systems and Software Engineering
> Logic Product Development
> michael.b at logicpd.com
> 612-436-5122
> www.logicpd.com
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-16 22:11 Michael Bendzick
@ 2004-07-17 0:05 ` 'George G. Davis'
0 siblings, 0 replies; 11+ messages in thread
From: 'George G. Davis' @ 2004-07-17 0:05 UTC (permalink / raw)
To: u-boot
On Fri, Jul 16, 2004 at 05:11:20PM -0500, Michael Bendzick wrote:
> George-
>
> Mostly I was interested in seeing if he would be interested in submitting a
> patch to the omap1510inn board to use the driver/cfi_flash.c driver. I
> tested that configuration in developing my recent patch for the file, and
> found it worked quite well. I certainly can't complain about writing to
> flash about 10x as fast as before.
Sounds agreeable. Just submit it and we can all give it a try. : )
> If Kshitij is no longer around,
I'm sure he's probably still around but probably quite busy.
> and others are interested in trying it out,
I'll give it a try.
> I can make a patch for the modifications I made to that board configuration.
Please do send a patch.
> I don't see a reason to stick with the non-central, slow flash writing code
> for omap1510inn if a better option is available.
Agreed, it sounds good to me to use the common flash driver when/where
possible.
FWIW, the OMAP1610 H2 uses Intel L18 flash parts. I'm not sure if the
common cfi_flash.c driver supports this part yet.
--
Regards,
George
>
> -Michael Bendzick
>
> -----Original Message-----
> From: George G. Davis [mailto:gdavis at mvista.com]
> Sent: Friday, July 16, 2004 4:43 PM
> To: Michael Bendzick
> Cc: 'wd at denx.de'; U-Boot-Users (E-mail)
> Subject: Re: [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
>
>
> On Thu, Jul 15, 2004 at 02:44:35PM -0500, Michael Bendzick wrote:
> > Wolfgang-
> >
> > It appears that Kshitij Gupta, the maintainer for the omap1510inn &
> > omap1610inn, is no longer reachable at his email address listed in the
> > MAINTAINERS file. Is there anyone else that has been closely associated
> > with this board,
>
> I'm casually aquainted with the OMAP1610 H2 and Innovator/OMAP1510.
>
> What's the problem?
>
> > or does anyone know of a new way to contact Kshitij?
>
> Perhaps you can ask questions about those boards here and he or someone
> else may answer eventually? I'm sure he is just as busy as the rest us are.
>
> --
> Regards,
> George
> >
> > -Michael Bendzick
> > Systems and Software Engineering
> > Logic Product Development
> > michael.b at logicpd.com
> > 612-436-5122
> > www.logicpd.com
> >
> >
> >
> > -------------------------------------------------------
> > This SF.Net email is sponsored by BEA Weblogic Workshop
> > FREE Java Enterprise J2EE developer tools!
> > Get your free copy of BEA WebLogic Workshop 8.1 today.
> > http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> > _______________________________________________
> > U-Boot-Users mailing list
> > U-Boot-Users at lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/u-boot-users
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
@ 2004-07-15 19:44 Michael Bendzick
2004-07-15 20:14 ` Wolfgang Denk
2004-07-16 21:43 ` George G. Davis
0 siblings, 2 replies; 11+ messages in thread
From: Michael Bendzick @ 2004-07-15 19:44 UTC (permalink / raw)
To: u-boot
Wolfgang-
It appears that Kshitij Gupta, the maintainer for the omap1510inn &
omap1610inn, is no longer reachable at his email address listed in the
MAINTAINERS file. Is there anyone else that has been closely associated
with this board, or does anyone know of a new way to contact Kshitij?
-Michael Bendzick
Systems and Software Engineering
Logic Product Development
michael.b at logicpd.com
612-436-5122
www.logicpd.com
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-15 19:44 Michael Bendzick
@ 2004-07-15 20:14 ` Wolfgang Denk
2004-07-16 21:43 ` George G. Davis
1 sibling, 0 replies; 11+ messages in thread
From: Wolfgang Denk @ 2004-07-15 20:14 UTC (permalink / raw)
To: u-boot
In message <31ADFA827355984B9E2A161514595B561C32DA@lpdsrv04.logicpd.com> you wrote:
>
> It appears that Kshitij Gupta, the maintainer for the omap1510inn &
> omap1610inn, is no longer reachable at his email address listed in the
> MAINTAINERS file. Is there anyone else that has been closely associated
> with this board, or does anyone know of a new way to contact Kshitij?
Sorry, I don't have any better information.
Best regards,
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd at denx.de
core error - bus dumped
^ permalink raw reply [flat|nested] 11+ messages in thread
* [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer?
2004-07-15 19:44 Michael Bendzick
2004-07-15 20:14 ` Wolfgang Denk
@ 2004-07-16 21:43 ` George G. Davis
1 sibling, 0 replies; 11+ messages in thread
From: George G. Davis @ 2004-07-16 21:43 UTC (permalink / raw)
To: u-boot
On Thu, Jul 15, 2004 at 02:44:35PM -0500, Michael Bendzick wrote:
> Wolfgang-
>
> It appears that Kshitij Gupta, the maintainer for the omap1510inn &
> omap1610inn, is no longer reachable at his email address listed in the
> MAINTAINERS file. Is there anyone else that has been closely associated
> with this board,
I'm casually aquainted with the OMAP1610 H2 and Innovator/OMAP1510.
What's the problem?
> or does anyone know of a new way to contact Kshitij?
Perhaps you can ask questions about those boards here and he or someone
else may answer eventually? I'm sure he is just as busy as the rest us are.
--
Regards,
George
>
> -Michael Bendzick
> Systems and Software Engineering
> Logic Product Development
> michael.b at logicpd.com
> 612-436-5122
> www.logicpd.com
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by BEA Weblogic Workshop
> FREE Java Enterprise J2EE developer tools!
> Get your free copy of BEA WebLogic Workshop 8.1 today.
> http://ads.osdn.com/?ad_id=4721&alloc_id=10040&op=click
> _______________________________________________
> U-Boot-Users mailing list
> U-Boot-Users at lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/u-boot-users
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2004-07-20 20:46 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-20 18:04 [U-Boot-Users] No more omap1510inn/omap1610inn Maintainer? Michael Bendzick
2004-07-20 19:31 ` 'George G. Davis'
2004-07-20 20:46 ` 'George G. Davis'
-- strict thread matches above, loose matches on Subject: below --
2004-07-19 21:35 Michael Bendzick
2004-07-20 15:37 ` 'George G. Davis'
2004-07-20 16:26 ` 'George G. Davis'
2004-07-16 22:11 Michael Bendzick
2004-07-17 0:05 ` 'George G. Davis'
2004-07-15 19:44 Michael Bendzick
2004-07-15 20:14 ` Wolfgang Denk
2004-07-16 21:43 ` George G. Davis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox