public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] AT45xxxxx support
@ 2006-07-10 15:31 Moussa A. Ba
  2006-07-10 17:24 ` Gary Thomas
  0 siblings, 1 reply; 5+ messages in thread
From: Moussa A. Ba @ 2006-07-10 15:31 UTC (permalink / raw)
  To: ecos-discuss

I found documentation on support for AT45xxxxx devices in the ecospro 
reference manual.  I cannot find anywhere the necessary drivers for this 
dataflash, am I missing something.  After some digging I came to the 
conclusion that using an spi driver in combination with the dataflash 
driver would allow me to get setup for a fs.  I apologize for these 
simple questions as I am quite new to the eCos universe.
That said, can someone point me to where I can find the drivers for this 
flash device?

Moussa

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

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

* Re: [ECOS] AT45xxxxx support
  2006-07-10 15:31 [ECOS] AT45xxxxx support Moussa A. Ba
@ 2006-07-10 17:24 ` Gary Thomas
  2006-07-10 18:09   ` Moussa A. Ba
  0 siblings, 1 reply; 5+ messages in thread
From: Gary Thomas @ 2006-07-10 17:24 UTC (permalink / raw)
  To: Moussa A. Ba; +Cc: ecos-discuss

Moussa A. Ba wrote:
> I found documentation on support for AT45xxxxx devices in the ecospro 
> reference manual.  I cannot find anywhere the necessary drivers for this 
> dataflash, am I missing something.  After some digging I came to the 
> conclusion that using an spi driver in combination with the dataflash 
> driver would allow me to get setup for a fs.  I apologize for these 
> simple questions as I am quite new to the eCos universe.
> That said, can someone point me to where I can find the drivers for this 
> flash device?

Since you saw this in an eCosPro manual, try asking eCosCentric

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

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

* Re: [ECOS] AT45xxxxx support
  2006-07-10 17:24 ` Gary Thomas
@ 2006-07-10 18:09   ` Moussa A. Ba
  2006-07-21 17:58     ` Andrew Lunn
  0 siblings, 1 reply; 5+ messages in thread
From: Moussa A. Ba @ 2006-07-10 18:09 UTC (permalink / raw)
  To: Gary Thomas; +Cc: ecos-discuss

I do remember seeing while searching for the driver that the AT45xxxx 
were supported by the AT49xxxx dataflash drivers.  If so where the spi 
dataflash drivers for the AT49 parts.  I have seen references to V2 
flash drivers, but cannot locate them.   Are you implying that they are 
only available from ecoscentric?

Moussa

Gary Thomas wrote:
> Moussa A. Ba wrote:
>> I found documentation on support for AT45xxxxx devices in the ecospro 
>> reference manual.  I cannot find anywhere the necessary drivers for 
>> this dataflash, am I missing something.  After some digging I came to 
>> the conclusion that using an spi driver in combination with the 
>> dataflash driver would allow me to get setup for a fs.  I apologize 
>> for these simple questions as I am quite new to the eCos universe.
>> That said, can someone point me to where I can find the drivers for 
>> this flash device?
>
> Since you saw this in an eCosPro manual, try asking eCosCentric
>


-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

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

* Re: [ECOS] AT45xxxxx support
  2006-07-10 18:09   ` Moussa A. Ba
@ 2006-07-21 17:58     ` Andrew Lunn
  2006-07-21 19:10       ` Moussa Ba
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2006-07-21 17:58 UTC (permalink / raw)
  To: Moussa A. Ba; +Cc: Gary Thomas, ecos-discuss

On Mon, Jul 10, 2006 at 02:09:01PM -0400, Moussa A. Ba wrote:
> I do remember seeing while searching for the driver that the AT45xxxx 
> were supported by the AT49xxxx dataflash drivers.  If so where the spi 
> dataflash drivers for the AT49 parts.  I have seen references to V2 
> flash drivers, but cannot locate them.   Are you implying that they are 
> only available from ecoscentric?

The flash_v2 branch is available to everyone. Look at the
documentation of CVS for using branches.

              Andrew

-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

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

* Re: [ECOS] AT45xxxxx support
  2006-07-21 17:58     ` Andrew Lunn
@ 2006-07-21 19:10       ` Moussa Ba
  0 siblings, 0 replies; 5+ messages in thread
From: Moussa Ba @ 2006-07-21 19:10 UTC (permalink / raw)
  To: Andrew Lunn, ecos-discuss

Thank you, I have since found it and used it, unfortunately it took a 
while to get it right as there are no examples of dataflash 
instantiation anywhere in the CVS, I found some in the mailing list, but 
I think they were incorrect and not up to date, specifically they 
included a #define _FLASH_PRIVATE_ in the file doing the instantiation 
which caused the compiler to complain about not finding CYG_FLASH_WIDTH 
and CYG_FLASH_INTERLEAVE... I have removed it and seem to be doing okay, 
I used the driver successfully directly, now I have integrated it with 
the CYG_IO_FLASH and I am about to test it via the IO_FLASH interface.

Can you recommend a simple file system( it can even be flat) that I 
could use, I now ramfs and JFFS2 are available but I am afraid that the 
part I am using is too low in RAM to support it.

Moussa

Andrew Lunn wrote:
> On Mon, Jul 10, 2006 at 02:09:01PM -0400, Moussa A. Ba wrote:
>   
>> I do remember seeing while searching for the driver that the AT45xxxx 
>> were supported by the AT49xxxx dataflash drivers.  If so where the spi 
>> dataflash drivers for the AT49 parts.  I have seen references to V2 
>> flash drivers, but cannot locate them.   Are you implying that they are 
>> only available from ecoscentric?
>>     
>
> The flash_v2 branch is available to everyone. Look at the
> documentation of CVS for using branches.
>
>               Andrew
>
>   


-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

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

end of thread, other threads:[~2006-07-21 19:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-10 15:31 [ECOS] AT45xxxxx support Moussa A. Ba
2006-07-10 17:24 ` Gary Thomas
2006-07-10 18:09   ` Moussa A. Ba
2006-07-21 17:58     ` Andrew Lunn
2006-07-21 19:10       ` Moussa Ba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).