public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* Intel flash
@ 2000-07-26 11:59 chester
  2000-07-27  1:15 ` Yong-iL Joh
  0 siblings, 1 reply; 7+ messages in thread
From: chester @ 2000-07-26 11:59 UTC (permalink / raw)
  To: mtd; +Cc: chester

Hi,all!
Has anyone experience in Intel StrataFlash Memory(28F128J3A) with ext2
or JFFS on it??

Gould show it to me!

Thanks,

					Chester



To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Intel flash
  2000-07-26 11:59 Intel flash chester
@ 2000-07-27  1:15 ` Yong-iL Joh
  0 siblings, 0 replies; 7+ messages in thread
From: Yong-iL Joh @ 2000-07-27  1:15 UTC (permalink / raw)
  To: mtd

On Wed, Jul 26, 2000 at 07:59:12PM +0800, chester@linux.org.tw wrote:

> Has anyone experience in Intel StrataFlash Memory(28F128J3A) with ext2
> or JFFS on it??

I'm working Intel BootBlockFlash Memory(28F160B3) with JFFS.
but, it's in progress.

-- 
Joh, Yong-iL
E-mail: tolkien@nownuri.net tolkien@mizi.com


To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Intel Flash
       [not found] ` <20010418155001.A6711@sirrah.inf.pucrs.br>
@ 2001-04-18 18:57   ` Vipin Malik
  0 siblings, 0 replies; 7+ messages in thread
From: Vipin Malik @ 2001-04-18 18:57 UTC (permalink / raw)
  To: Marcio Koch; +Cc: jffs-dev, mtd

Marcio Koch wrote:

> TE28F320

^^^^^^^^^^^^^ This is the part #. You can ignore the rest of the stuff.
Go to www.intel.com and download the datasheet on this part and see if it is a
CFI compatable NOR flash or not.

If not CFI, but is NOR, then try to use the JDEC module, rather than the CFI
module. If Not NOR (i.e. if NAND)
then I don't know.

Hope this helps.

Vipin
P.S. This is really a MTD issue and you will probably have more luck posting
to that list. I've CC to that list if you
need the email.

>
> B3BA110
> U9490626A
> (c)1998
>
> Does anybody know if this flash is supported by linux ? If so what kernel
> and mtd code should I use ?
>
> For MPC8xx.
>
> I'm using kernel 2.4.3-pre4 and it fails when I try to load the physmap
> module.
>
> Here is what I did and the error I got:
>
> sh-2.03# modprobe -a mtdchar mtdblock cfi_cmdset_0001  map_rom cfi_probe
> sh-2.03# lsmod
> Module                  Size  Used by
> cfi_probe               7920   0  (unused)
> map_rom                 1072   0  (unused)
> cfi_cmdset_0001         8000   0  (unused)
> mtdblock                6528   0  (unused)
> mtdchar                 5408   0  (unused)
> mtdcore                 2976   2  [mtdblock mtdchar]
> sh-2.03# modprobe -a physmap
> physmap flash device: 3fffff at fe000000
> Physically mapped flash: Found no CFI device at location zero
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: init_module: Device
> not configured
> Hint: insmod errors can be caused by incorrect module parameters, including
> invalid IO or IRQ parameters
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: insmod
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o failed
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: insmod physmap failed
>
> Any help would be appreciated.
>
> Thanks,
>
> Marcio Koch
> koch@inf.pucrs.br
> PUCRS/ELinux
>
> To unsubscribe from this list: send the line "unsubscribe jffs-dev" in
> the body of a message to majordomo@axis.com



To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: Intel Flash
@ 2001-04-18 20:32 Kári Davíðsson
  0 siblings, 0 replies; 7+ messages in thread
From: Kári Davíðsson @ 2001-04-18 20:32 UTC (permalink / raw)
  To: Vipin Malik, Marcio Koch; +Cc: jffs-dev, mtd

[-- Attachment #1: Type: text/plain, Size: 2747 bytes --]

Hi,

I believe that the problem you are seeing is
that the device is using cmdset 0x0003, which
is close to cmdset 0x0001. Cmdset 0x0001 is 
supported by mtd so a quick and not so dirty
fix is to add the following two lines in 
cfi_probe.c, function cfi_cfi_probe(),

if(cfi.cfiq->P_ID == 3)
	cfi.fgiq->P_ID = 1;

after the two lines (around line 343)

/* Do any necessary byteswapping */
cfi.cfiq->P_ID = le16_to_cpu(cfi.cfiq->P_ID);

Hope this helps,

K.D.


-----Original Message-----
From:	Vipin Malik
Sent:	Wed 4/18/2001 6:57 PM
To:	Marcio Koch
Cc:	jffs-dev; mtd
Subject:	Re: Intel Flash

Marcio Koch wrote:

> TE28F320

^^^^^^^^^^^^^ This is the part #. You can ignore the rest of the stuff.
Go to www.intel.com and download the datasheet on this part and see if
it is a
CFI compatable NOR flash or not.

If not CFI, but is NOR, then try to use the JDEC module, rather than the
CFI
module. If Not NOR (i.e. if NAND)
then I don't know.

Hope this helps.

Vipin
P.S. This is really a MTD issue and you will probably have more luck
posting
to that list. I've CC to that list if you
need the email.

>
> B3BA110
> U9490626A
> (c)1998
>
> Does anybody know if this flash is supported by linux ? If so what
kernel
> and mtd code should I use ?
>
> For MPC8xx.
>
> I'm using kernel 2.4.3-pre4 and it fails when I try to load the
physmap
> module.
>
> Here is what I did and the error I got:
>
> sh-2.03# modprobe -a mtdchar mtdblock cfi_cmdset_0001  map_rom
cfi_probe
> sh-2.03# lsmod
> Module                  Size  Used by
> cfi_probe               7920   0  (unused)
> map_rom                 1072   0  (unused)
> cfi_cmdset_0001         8000   0  (unused)
> mtdblock                6528   0  (unused)
> mtdchar                 5408   0  (unused)
> mtdcore                 2976   2  [mtdblock mtdchar]
> sh-2.03# modprobe -a physmap
> physmap flash device: 3fffff at fe000000
> Physically mapped flash: Found no CFI device at location zero
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: init_module:
Device
> not configured
> Hint: insmod errors can be caused by incorrect module parameters,
including
> invalid IO or IRQ parameters
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: insmod
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o failed
> /lib/modules/2.4.3-pre4/kernel/drivers/mtd/physmap.o: insmod physmap
failed
>
> Any help would be appreciated.
>
> Thanks,
>
> Marcio Koch
> koch@inf.pucrs.br
> PUCRS/ELinux
>
> To unsubscribe from this list: send the line "unsubscribe jffs-dev" in
> the body of a message to majordomo@axis.com



To unsubscribe, send "unsubscribe mtd" to majordomo@infradead.org




[-- Attachment #2: winmail.dat --]
[-- Type: application/ms-tnef, Size: 3620 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Intel flash
@ 2006-12-20 13:19 Darshak
  2006-12-20 13:32 ` Josh Boyer
  2006-12-20 13:36 ` Artem Bityutskiy
  0 siblings, 2 replies; 7+ messages in thread
From: Darshak @ 2006-12-20 13:19 UTC (permalink / raw)
  To: linux-mtd

Hi,

I have read that INTEL has strataflash.

Is it bare NAND/nor file system?what is its basic use in Linksys?

 

What file system does it use? Can we have JFFS2 for that ?

 

What is difference in CF flash/DOC flash and this INTEL flash .?

 

 

Thanxs!

 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Intel flash
  2006-12-20 13:19 Intel flash Darshak
@ 2006-12-20 13:32 ` Josh Boyer
  2006-12-20 13:36 ` Artem Bityutskiy
  1 sibling, 0 replies; 7+ messages in thread
From: Josh Boyer @ 2006-12-20 13:32 UTC (permalink / raw)
  To: Darshak; +Cc: linux-mtd

On 12/20/06, Darshak <darshak@elitecore.com> wrote:
> Hi,
>
> I have read that INTEL has strataflash.

Yes.  Read their website on flash chips.

> Is it bare NAND/nor file system?what is its basic use in Linksys?

It's a type of NOR flash chip.  We have no idea what it's usage is in
Linksys.  Especially given that Linksys is a company, so it could be
used for a variety of things.

> What file system does it use? Can we have JFFS2 for that ?

Strataflash can be used with several filesystems, including JFFS2,
assuming there is an underlying device driver in MTD that can talk to
it.

> What is difference in CF flash/DOC flash and this INTEL flash .?

CF flash doesn't show up as real flash.  It shows up as an IDE device.
 Intel flash is a raw flash chip and it's up to a board designer to
determine how it is addressed.

josh

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Intel flash
  2006-12-20 13:19 Intel flash Darshak
  2006-12-20 13:32 ` Josh Boyer
@ 2006-12-20 13:36 ` Artem Bityutskiy
  1 sibling, 0 replies; 7+ messages in thread
From: Artem Bityutskiy @ 2006-12-20 13:36 UTC (permalink / raw)
  To: Darshak; +Cc: linux-mtd

On Wed, 2006-12-20 at 18:49 +0530, Darshak wrote:
> Hi,
> 
> I have read that INTEL has strataflash.
> 
> Is it bare NAND/nor file system?what is its basic use in Linksys?
> 
>  
> 
> What file system does it use? Can we have JFFS2 for that ?
> 
>  
> 
> What is difference in CF flash/DOC flash and this INTEL flash .?
> 
>  
> 
> 
> 
> Thanxs!
> 
>  
> 
> 
> ______________________________________________________

I see you use some progressive formula for number of line brakes at the
end of each line. But I cannot figure out which one.

If number of brakes is y, while the number of line is x, we have the
following data for y(x):

y(0) = 2
y(1) = 2
y(2) = 4
y(3) = 4
y(5) = 6
y(6) = 5

What's the formula?

-- 
Best regards,
Artem Bityutskiy (Битюцкий Артём)

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2006-12-20 13:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20010418154546.C6248@sirrah.inf.pucrs.br>
     [not found] ` <20010418155001.A6711@sirrah.inf.pucrs.br>
2001-04-18 18:57   ` Intel Flash Vipin Malik
2006-12-20 13:19 Intel flash Darshak
2006-12-20 13:32 ` Josh Boyer
2006-12-20 13:36 ` Artem Bityutskiy
  -- strict thread matches above, loose matches on Subject: below --
2001-04-18 20:32 Intel Flash Kári Davíðsson
2000-07-26 11:59 Intel flash chester
2000-07-27  1:15 ` Yong-iL Joh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox