* [U-Boot-Users] Sector size with CFI driver?
@ 2006-10-31 20:00 Timur Tabi
2006-10-31 20:53 ` Tolunay Orkun
2006-11-01 13:05 ` Stefan Roese
0 siblings, 2 replies; 16+ messages in thread
From: Timur Tabi @ 2006-10-31 20:00 UTC (permalink / raw)
To: u-boot
When using the CFI driver, how is the sector size determined?
The reason I ask is that I have two different versions of U-Boot for my board,
both developed in-house. One version is based on 1.1.3, and the other on
1.1.5. The 1.1.5 version cannot erase/program the last sector on the first
flash bank. Also, the 1.1.3 says this when I do flinfo:
Bank # 1: CFI conformant FLASH (16 x 16) Size: 8 MB in 135 Sectors
Erase timeout 16384 ms, write timeout 1 ms, buffer write timeout 1 ms,
buffer size 1
Sector Start Addresses:
FE000000 FE002000 FE004000 FE006000 FE008000
FE00A000 FE00C000 FE00E000 FE010000 FE020000
And the 1.1.5 version says:
Bank # 1: CFI compatible FLASH (16 port width with 16 chip width)
Command set is AMD/Fujitsu standard. Driver is polling DQ6 for status checking.
Size: 8 MB in 135 Sectors
Erase timeout 16384 ms, write timeout 0 ms, buffer write timeout 1 ms,
buffer size 1
Sector Start Addresses:
FE000000 FE010000 FE020000 FE030000 FE040000
FE050000 FE060000 FE070000 FE080000 FE090000
As you can see the sector sizes are different, but everything else is the same.
Both versions have this:
#define CFG_FLASH_CFI
#define CFG_FLASH_CFI_DRIVER
#define CFG_FLASH_BASE 0xFE000000
#define CFG_FLASH_SIZE 16
#define CFG_MAX_FLASH_BANKS 2
#define CFG_MAX_FLASH_SECT 135
so I can't figure out why one works and the other doesn't.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-10-31 20:00 [U-Boot-Users] Sector size with CFI driver? Timur Tabi
@ 2006-10-31 20:53 ` Tolunay Orkun
2006-10-31 21:40 ` Timur Tabi
2006-11-01 13:05 ` Stefan Roese
1 sibling, 1 reply; 16+ messages in thread
From: Tolunay Orkun @ 2006-10-31 20:53 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> When using the CFI driver, how is the sector size determined?
>
> The reason I ask is that I have two different versions of U-Boot for my board,
> both developed in-house. One version is based on 1.1.3, and the other on
> 1.1.5. The 1.1.5 version cannot erase/program the last sector on the first
> flash bank. Also, the 1.1.3 says this when I do flinfo:
>
> Bank # 1: CFI conformant FLASH (16 x 16) Size: 8 MB in 135 Sectors
> Erase timeout 16384 ms, write timeout 1 ms, buffer write timeout 1 ms,
> buffer size 1
> Sector Start Addresses:
> FE000000 FE002000 FE004000 FE006000 FE008000
> FE00A000 FE00C000 FE00E000 FE010000 FE020000
>
> And the 1.1.5 version says:
>
> Bank # 1: CFI compatible FLASH (16 port width with 16 chip width)
> Command set is AMD/Fujitsu standard. Driver is polling DQ6 for status checking.
> Size: 8 MB in 135 Sectors
> Erase timeout 16384 ms, write timeout 0 ms, buffer write timeout 1 ms,
> buffer size 1
> Sector Start Addresses:
> FE000000 FE010000 FE020000 FE030000 FE040000
> FE050000 FE060000 FE070000 FE080000 FE090000
>
> As you can see the sector sizes are different, but everything else is the same.
It looks like you are using a bottom boot block flash and there are 8
smaller sectors of 8KiB and 127 larger sectors of 64KiB. You will have
to debug the 1.1.5 version to see why it is not seeing the 8 small
sectors. If both builds are using cfi_driver.c then a bug must have been
introduced recently.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-10-31 20:53 ` Tolunay Orkun
@ 2006-10-31 21:40 ` Timur Tabi
2006-10-31 21:59 ` Tolunay Orkun
0 siblings, 1 reply; 16+ messages in thread
From: Timur Tabi @ 2006-10-31 21:40 UTC (permalink / raw)
To: u-boot
Tolunay Orkun wrote:
> It looks like you are using a bottom boot block flash and there are 8
> smaller sectors of 8KiB and 127 larger sectors of 64KiB. You will have
> to debug the 1.1.5 version to see why it is not seeing the 8 small
> sectors. If both builds are using cfi_driver.c then a bug must have been
> introduced recently.
I defined CFG_FLASH_EMPTY_INFO and ran some tests. I tried erasing the last
two sectors, both 0x10000 bytes in size, at FEFE0000 and FEFF0000.
After I erase FEFE0000 and do "flinfo", an "E" appears after the FEFE0000.
When I copy data to FEFE0000 and do "flinfo" again, the E disappears. So far
so good.
However, no matter what I do, I can't get an "E" to appears after the
FEFF0000. In addition, the only way I can erase that sector is with "erase
feff0000 feffffff". Any other end-value gets me a "end address not on sector
boundary" message.
Could this be a hardware problem?
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-10-31 21:40 ` Timur Tabi
@ 2006-10-31 21:59 ` Tolunay Orkun
2006-10-31 23:08 ` Timur Tabi
0 siblings, 1 reply; 16+ messages in thread
From: Tolunay Orkun @ 2006-10-31 21:59 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> Tolunay Orkun wrote:
>
>> It looks like you are using a bottom boot block flash and there are 8
>> smaller sectors of 8KiB and 127 larger sectors of 64KiB. You will have
>> to debug the 1.1.5 version to see why it is not seeing the 8 small
>> sectors. If both builds are using cfi_driver.c then a bug must have been
>> introduced recently.
>
> I defined CFG_FLASH_EMPTY_INFO and ran some tests. I tried erasing the last
> two sectors, both 0x10000 bytes in size, at FEFE0000 and FEFF0000.
>
> After I erase FEFE0000 and do "flinfo", an "E" appears after the FEFE0000.
> When I copy data to FEFE0000 and do "flinfo" again, the E disappears. So far
> so good.
>
> However, no matter what I do, I can't get an "E" to appears after the
> FEFF0000. In addition, the only way I can erase that sector is with "erase
> feff0000 feffffff". Any other end-value gets me a "end address not on sector
> boundary" message.
A couple of things.
1) End address should be the last byte of the sector.
2) 8MB of flash based on 0xfe000000 should end at 0xfe7fffff. Your
address range is behind this.
3) In previous message you listed your configuration having 2 banks. Do
you really have two banks of flash? (each having 8MB? with a total of
16MB) If not correct that two 1 bank.
4) Check the syntax of erase command. You can specify the erase range in
terms of block numbers instead of addresses as well.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-10-31 21:59 ` Tolunay Orkun
@ 2006-10-31 23:08 ` Timur Tabi
0 siblings, 0 replies; 16+ messages in thread
From: Timur Tabi @ 2006-10-31 23:08 UTC (permalink / raw)
To: u-boot
Tolunay Orkun wrote:
> 3) In previous message you listed your configuration having 2 banks. Do
> you really have two banks of flash? (each having 8MB? with a total of
> 16MB)
I have two 8MB flash chips (29LV640) on the board. The first starts at
fe000000 and the second at fe800000. I have a jumper that can swap the two chips.
> 4) Check the syntax of erase command. You can specify the erase range in
> terms of block numbers instead of addresses as well.
I'll try that. Thanks.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-10-31 20:00 [U-Boot-Users] Sector size with CFI driver? Timur Tabi
2006-10-31 20:53 ` Tolunay Orkun
@ 2006-11-01 13:05 ` Stefan Roese
2006-11-01 16:34 ` Timur Tabi
1 sibling, 1 reply; 16+ messages in thread
From: Stefan Roese @ 2006-11-01 13:05 UTC (permalink / raw)
To: u-boot
Hi Timur,
On Tuesday 31 October 2006 21:00, Timur Tabi wrote:
> And the 1.1.5 version says:
>
> Bank # 1: CFI compatible FLASH (16 port width with 16 chip width)
> Command set is AMD/Fujitsu standard. Driver is polling DQ6 for status
> checking. Size: 8 MB in 135 Sectors
Hmmm. I have never seen this message in U-Boot and can't find it in the
current source code (something like "Command set is AMD/Fujitsu standard").
Could be that I am missing something here.
Please confirm that you are using the "official" git version of U-Boot and not
any other repository. I suspect that you have an "updated" CFI driver not
available in the official U-Boot version or a board specific FLASH driver.
Best regards,
Stefan
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 13:05 ` Stefan Roese
@ 2006-11-01 16:34 ` Timur Tabi
2006-11-01 16:44 ` Ben Warren
2006-11-01 16:58 ` Timur Tabi
0 siblings, 2 replies; 16+ messages in thread
From: Timur Tabi @ 2006-11-01 16:34 UTC (permalink / raw)
To: u-boot
Stefan Roese wrote:
> Hmmm. I have never seen this message in U-Boot and can't find it in the
> current source code (something like "Command set is AMD/Fujitsu standard").
> Could be that I am missing something here.
>
> Please confirm that you are using the "official" git version of U-Boot and not
> any other repository. I suspect that you have an "updated" CFI driver not
> available in the official U-Boot version or a board specific FLASH driver.
That message is from a hacked up version of 1.1.3. Here's the code that
produces it:
void flash_print_info (flash_info_t * info)
{
int i;
if (info->flash_id != FLASH_MAN_CFI) {
puts ("missing or unknown FLASH type\n");
return;
}
printf ("CFI compatible FLASH (%d port width with %d chip width)\n",
(info->portwidth << 3), (info->chipwidth << 3));
printf ("Command set is ");
switch (info->vendor) {
case CFI_CMDSET_INTEL_EXTENDED:
printf ("Intel/Sharp extended\n");
break;
case CFI_CMDSET_AMD_STANDARD:
printf ("AMD/Fujitsu standard. ");
#ifdef POLLING_AMD_DQ7
printf ("Driver is polling DQ7 for status checking.\n");
#else
printf ("Driver is polling DQ6 for status checking.\n");
#endif
break;
I believe this code was part of the official 1.1.3.
However, looking at our patch for 1.1.3 (I didn't write that code), I see this
juicy tidbit for flash_get_size:
+
+#ifdef CONFIG_MPC8349ITX
+ for (i = num_erase_regions-1; i >= 0; i--) { /* top boot */
+#else
for (i = 0; i < num_erase_regions; i++) {
+#endif
+
Can someone explain this top boot vs bottom boot thing?
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 16:34 ` Timur Tabi
@ 2006-11-01 16:44 ` Ben Warren
2006-11-01 16:58 ` Timur Tabi
1 sibling, 0 replies; 16+ messages in thread
From: Ben Warren @ 2006-11-01 16:44 UTC (permalink / raw)
To: u-boot
On Wed, 2006-11-01 at 10:34 -0600, Timur Tabi wrote:
>
> Can someone explain this top boot vs bottom boot thing?
>
There are three common NOR flash chip configurations:
1. Uniform sector - all sectors are the same size
2. Bottom boot - There are several smaller sectors at the beginning of
memory space. For example, 8 x 8k sectors + 127 x 64k sectors.
3. Top boot - There are several smaller sectors at the end of memory
space. For example, 127 x 64k sectors + 8 x 8k sectors.
I hope this makes sense.
regards,
Ben
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 16:34 ` Timur Tabi
2006-11-01 16:44 ` Ben Warren
@ 2006-11-01 16:58 ` Timur Tabi
2006-11-01 17:02 ` Stefan Roese
2006-11-01 17:47 ` Tolunay Orkun
1 sibling, 2 replies; 16+ messages in thread
From: Timur Tabi @ 2006-11-01 16:58 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> +
> +#ifdef CONFIG_MPC8349ITX
> + for (i = num_erase_regions-1; i >= 0; i--) { /* top boot */
> +#else
> for (i = 0; i < num_erase_regions; i++) {
> +#endif
> +
Ok, I put the above change into cfi_flash.c, and now it works! Can someone
explain to me why? Does U-Boot not normally support "top boot" flash? If so,
is there a better way of doing this?
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 16:58 ` Timur Tabi
@ 2006-11-01 17:02 ` Stefan Roese
2006-11-01 17:08 ` Timur Tabi
2006-11-01 17:47 ` Tolunay Orkun
1 sibling, 1 reply; 16+ messages in thread
From: Stefan Roese @ 2006-11-01 17:02 UTC (permalink / raw)
To: u-boot
On Wednesday 01 November 2006 17:58, Timur Tabi wrote:
> Timur Tabi wrote:
> > +
> > +#ifdef CONFIG_MPC8349ITX
> > + for (i = num_erase_regions-1; i >= 0; i--) { /* top
> > boot */ +#else
> > for (i = 0; i < num_erase_regions; i++) {
> > +#endif
> > +
>
> Ok, I put the above change into cfi_flash.c, and now it works! Can someone
> explain to me why? Does U-Boot not normally support "top boot" flash? If
> so, is there a better way of doing this?
Seems like your FLASH doesn't really support the CFI "Device Geometry
Definition". Both versions (top & bottom boot block) most likely report the
same layout.
Best regards,
Stefan
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 17:02 ` Stefan Roese
@ 2006-11-01 17:08 ` Timur Tabi
2006-11-01 17:41 ` Tolunay Orkun
0 siblings, 1 reply; 16+ messages in thread
From: Timur Tabi @ 2006-11-01 17:08 UTC (permalink / raw)
To: u-boot
Stefan Roese wrote:
> On Wednesday 01 November 2006 17:58, Timur Tabi wrote:
>> Timur Tabi wrote:
>>> +
>>> +#ifdef CONFIG_MPC8349ITX
>>> + for (i = num_erase_regions-1; i >= 0; i--) { /* top
>>> boot */ +#else
>>> for (i = 0; i < num_erase_regions; i++) {
>>> +#endif
>>> +
>> Ok, I put the above change into cfi_flash.c, and now it works! Can someone
>> explain to me why? Does U-Boot not normally support "top boot" flash? If
>> so, is there a better way of doing this?
>
> Seems like your FLASH doesn't really support the CFI "Device Geometry
> Definition". Both versions (top & bottom boot block) most likely report the
> same layout.
Assuming this is true (and I will try to find out), can you recommend how you
want me to implement a fix for my board? Should I do something like
#define CFG_CFI_DEV_GEO_BROKEN
in my board header file, and then do something like:
+#ifdef CFG_CFI_DEV_GEO_BROKEN
+ for (i = num_erase_regions-1; i >= 0; i--) {
+#else
for (i = 0; i < num_erase_regions; i++) {
+#endif
This is really ugly, I know, but I need help coming up with a method that you
guys will accept.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 17:08 ` Timur Tabi
@ 2006-11-01 17:41 ` Tolunay Orkun
2006-11-01 17:52 ` Timur Tabi
0 siblings, 1 reply; 16+ messages in thread
From: Tolunay Orkun @ 2006-11-01 17:41 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
> Stefan Roese wrote:
>> On Wednesday 01 November 2006 17:58, Timur Tabi wrote:
>>> Timur Tabi wrote:
>>>> +
>>>> +#ifdef CONFIG_MPC8349ITX
>>>> + for (i = num_erase_regions-1; i >= 0; i--) { /* top
>>>> boot */ +#else
>>>> for (i = 0; i < num_erase_regions; i++) {
>>>> +#endif
>>>> +
>>> Ok, I put the above change into cfi_flash.c, and now it works! Can someone
>>> explain to me why? Does U-Boot not normally support "top boot" flash? If
>>> so, is there a better way of doing this?
>> Seems like your FLASH doesn't really support the CFI "Device Geometry
>> Definition". Both versions (top & bottom boot block) most likely report the
>> same layout.
>
> Assuming this is true (and I will try to find out), can you recommend how you
> want me to implement a fix for my board? Should I do something like
>
> #define CFG_CFI_DEV_GEO_BROKEN
>
> in my board header file, and then do something like:
>
> +#ifdef CFG_CFI_DEV_GEO_BROKEN
> + for (i = num_erase_regions-1; i >= 0; i--) {
> +#else
> for (i = 0; i < num_erase_regions; i++) {
> +#endif
>
> This is really ugly, I know, but I need help coming up with a method that you
> guys will accept.
I would not assume that all broken geometry to be one way or another.
Secondly, it looks like the erase region list returned is reversed for
this flash chip. I think, CFG_CFI_GEOMETRY_REVERSED would be more
appropriate.
Perhaps you can identify such a reserved list from the CFI tables on the
flash. If this can be done no macros would be needed to handle this case.
Can you tell me the exact part number for your flash. I would like to
read the data sheet and compare its CFI structures if I can.
Best regards,
Tolunay
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 16:58 ` Timur Tabi
2006-11-01 17:02 ` Stefan Roese
@ 2006-11-01 17:47 ` Tolunay Orkun
1 sibling, 0 replies; 16+ messages in thread
From: Tolunay Orkun @ 2006-11-01 17:47 UTC (permalink / raw)
To: u-boot
Timur Tabi wrote:
>
> Ok, I put the above change into cfi_flash.c, and now it works! Can
> someone explain to me why? Does U-Boot not normally support "top
> boot" flash? If so, is there a better way of doing this?
>
I know U-Boot support both "top boot" and "bottom boot" as I used an top
boot Intel flash on our board until hardware guys replaced it with the
bottom boot version that we actually wanted (we used smaller sectors for
U-Boot environment). As I pointed out in my response to other message
your flash part is returning the geometry in reversed order.
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
@ 2006-11-01 17:47 Yogi
0 siblings, 0 replies; 16+ messages in thread
From: Yogi @ 2006-11-01 17:47 UTC (permalink / raw)
To: u-boot
If it is a flash from SPANSION, you can look at the MODEL number field in the CFI
querry output. Model#3 is top boot, and Model#4 is bottom boot.
Thanks
Yogi
-------------------------------------------------------------------------------------------------
Perhaps you can identify such a reserved list from the CFI tables on the
flash. If this can be done no macros would be needed to handle this case.
Can you tell me the exact part number for your flash. I would like to
read the data sheet and compare its CFI structures if I can.
Best regards,
Tolunay
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
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] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
2006-11-01 17:41 ` Tolunay Orkun
@ 2006-11-01 17:52 ` Timur Tabi
0 siblings, 0 replies; 16+ messages in thread
From: Timur Tabi @ 2006-11-01 17:52 UTC (permalink / raw)
To: u-boot
Tolunay Orkun wrote:
> Secondly, it looks like the erase region list returned is reversed for
> this flash chip. I think, CFG_CFI_GEOMETRY_REVERSED would be more
> appropriate.
I like that one better.
> Perhaps you can identify such a reserved list from the CFI tables on the
> flash. If this can be done no macros would be needed to handle this case.
>
> Can you tell me the exact part number for your flash. I would like to
> read the data sheet and compare its CFI structures if I can.
29LV640BTTC-90G
You can find the specs here by going to http://www.macronix.com, clicking on
"Flash Memory", and then scrolling to the bottom for this entry:
MX29LV640B T/B 3V x8/x16 Boot sector 90/120 48-TSOP, 63-CSP
I'm using the 48-pin version.
--
Timur Tabi
Linux Kernel Developer @ Freescale
^ permalink raw reply [flat|nested] 16+ messages in thread
* [U-Boot-Users] Sector size with CFI driver?
@ 2006-11-01 18:29 Yogi
0 siblings, 0 replies; 16+ messages in thread
From: Yogi @ 2006-11-01 18:29 UTC (permalink / raw)
To: u-boot
Yeah, you can use the field at 4F (9E). If it is 2 it is bottom boot. If it is 3 it is top boot.
See page 27, Table 4-4 CFI Mode: Primary Vendor-Specific Extended Querry Data Values
in the data sheet.
Thanks
Yogi
----- Original Message ----
From: Timur Tabi <timur@freescale.com>
To: Tolunay Orkun <listmember@orkun.us>
Cc: u-boot-users at lists.sourceforge.net; Stefan Roese <sr@denx.de>
Sent: Wednesday, November 1, 2006 9:52:44 AM
Subject: Re: [U-Boot-Users] Sector size with CFI driver?
Tolunay Orkun wrote:
> Secondly, it looks like the erase region list returned is reversed for
> this flash chip. I think, CFG_CFI_GEOMETRY_REVERSED would be more
> appropriate.
I like that one better.
> Perhaps you can identify such a reserved list from the CFI tables on the
> flash. If this can be done no macros would be needed to handle this case.
>
> Can you tell me the exact part number for your flash. I would like to
> read the data sheet and compare its CFI structures if I can.
29LV640BTTC-90G
You can find the specs here by going to http://www.macronix.com, clicking on
"Flash Memory", and then scrolling to the bottom for this entry:
MX29LV640B T/B 3V x8/x16 Boot sector 90/120 48-TSOP, 63-CSP
I'm using the 48-pin version.
--
Timur Tabi
Linux Kernel Developer @ Freescale
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
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] 16+ messages in thread
end of thread, other threads:[~2006-11-01 18:29 UTC | newest]
Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-31 20:00 [U-Boot-Users] Sector size with CFI driver? Timur Tabi
2006-10-31 20:53 ` Tolunay Orkun
2006-10-31 21:40 ` Timur Tabi
2006-10-31 21:59 ` Tolunay Orkun
2006-10-31 23:08 ` Timur Tabi
2006-11-01 13:05 ` Stefan Roese
2006-11-01 16:34 ` Timur Tabi
2006-11-01 16:44 ` Ben Warren
2006-11-01 16:58 ` Timur Tabi
2006-11-01 17:02 ` Stefan Roese
2006-11-01 17:08 ` Timur Tabi
2006-11-01 17:41 ` Tolunay Orkun
2006-11-01 17:52 ` Timur Tabi
2006-11-01 17:47 ` Tolunay Orkun
-- strict thread matches above, loose matches on Subject: below --
2006-11-01 17:47 Yogi
2006-11-01 18:29 Yogi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox