public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] Suggestion on flash init
@ 2005-12-25  4:33 Wang Jian
  2005-12-25 10:19 ` Wolfgang Denk
  0 siblings, 1 reply; 12+ messages in thread
From: Wang Jian @ 2005-12-25  4:33 UTC (permalink / raw)
  To: u-boot

Hi,

After reading many board/*/flash.c and writing customer board driver for
one of my customer, I think the current flash interface can be improved.

I suggest adding a subdir $(TOPDIR)/include/flash/ and putting flash
chip information here. When you use some kinds of flash chips, just
include relevant header files.

If we go further, many information in $(TOPDIR)/include/flash.h can be
put into these header files.

And, even flash operation (non-CFI) sample code can be put into
$(TOPDIR)/contrib/flash/.

The following is an example of AMD Spansion S29AL016M chip.

--snip--
#ifndef _FLASH_S29AL016M_H_ 
#define _FLASH_S29AL016M_H_ 
        
#define FLASH_S29AL016M_T_SECTORS       35
#define FLASH_S29AL016M_B_SECTORS       35
        
#define FLASH_S29AL016M_T_SIZE          0x00200000
#define FLASH_S29AL016M_B_SIZE          0x00200000


int FLASH_S29AL016M_T_BYTE_SA[] = {
        0x000000, 0x010000, 0x020000, 0x030000,
        0x040000, 0x050000, 0x060000, 0x070000,
        0x080000, 0x090000, 0x0A0000, 0x0B0000,
        0x0C0000, 0x0D0000, 0x0E0000, 0x0F0000,
        0x100000, 0x110000, 0x120000, 0x130000,
        0x140000, 0x150000, 0x160000, 0x170000,
        0x180000, 0x190000, 0x1A0000, 0x1B0000,
        0x1C0000, 0x1D0000, 0x1E0000, 0x1F0000,
        0x1F8000, 0x1FA000, 0x1C0000
};

int FLASH_S29AL016M_T_WORD_SA[] = {
        0x000000, 0x008000, 0x010000, 0x018000,
        0x020000, 0x028000, 0x030000, 0x038000,
        0x040000, 0x048000, 0x050000, 0x058000,
        0x060000, 0x068000, 0x070000, 0x078000,
        0x080000, 0x088000, 0x090000, 0x098000,
        0x0A0000, 0x0A8000, 0x0B0000, 0x0B8000,
        0x0C0000, 0x0C8000, 0x0D0000, 0x0D8000,
        0x0E0000, 0x0E8000, 0x0F0000, 0x0F8000,
        0x0FC000, 0x0FD000, 0x0FE000
};

int FLASH_S29AL016M_B_BYTE_SA[] = {
        0x000000, 0x004000, 0x006000, 0x008000,
        0x010000, 0x020000, 0x030000, 0x040000,
        0x050000, 0x060000, 0x070000, 0x080000,
        0x090000, 0x0A0000, 0x0B0000, 0x0C0000,
        0x0D0000, 0x0E0000, 0x0F0000, 0x100000,
        0x110000, 0x120000, 0x130000, 0x140000,
        0x150000, 0x160000, 0x170000, 0x180000,
        0x190000, 0x1A0000, 0x1B0000, 0x1C0000,
        0x1D0000, 0x1E0000, 0x1F0000
};

int FLASH_S29AL016M_B_WORD_SA[] = {
        0x000000, 0x002000, 0x003000, 0x004000,
        0x008000, 0x010000, 0x018000, 0x020000,
        0x028000, 0x030000, 0x038000, 0x040000,
        0x048000, 0x050000, 0x058000, 0x060000,
        0x068000, 0x070000, 0x078000, 0x080000,
        0x088000, 0x090000, 0x098000, 0x0A0000,
        0x0A8000, 0x0B0000, 0x0B8000, 0x0C0000,
        0x0C8000, 0x0D0000, 0x0D8000, 0x0E0000,
        0x0E8000, 0x0F0000, 0x0F8000
};

#endif
--snip--


In flash_get_size()
--snip--
        switch (device) {
        case BYTEME(AMD_ID_S29AL016M_T):
                info->flash_id += FLASH_S29AL016M_T;
                info->sector_count = FLASH_S29AL016M_T_SECTORS;
                info->size = FLASH_S29AL016M_T_SIZE;
                break;

        case BYTEME(AMD_ID_S29AL016M_B):
                info->flash_id += FLASH_S29AL016M_B;
                info->sector_count = FLASH_S29AL016M_B_SECTORS;
                info->size = FLASH_S29AL016M_B_SIZE;
                break;
--snip--


In flash_get_offset()
--snip--
        switch (info->flash_id & FLASH_TYPEMASK) {
        case FLASH_S29AL016M_T:
                for (i = 0; i < info->sector_count; i++) {
                        info->start[i] = base + FLASH_S29AL016M_T_BYTE_SA[i];
                }
                break;
        case FLASH_S29AL016M_B:
                for (i = 0; i < info->sector_count; i++) {
                        info->start[i] = base + FLASH_S29AL016M_B_BYTE_SA[i];
                }
                break;
--snip--

-- 
  lark

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [U-Boot-Users] Suggestion on flash init
@ 2006-01-05 16:20 Nuno João (Ext_NBS)
  0 siblings, 0 replies; 12+ messages in thread
From: Nuno João (Ext_NBS) @ 2006-01-05 16:20 UTC (permalink / raw)
  To: u-boot


	I am using the CFI driver (as it is in u-boot 1.1.3) with Spansion
	flash chips (S29GL512N11xxx: 2 x 16 bit chips, 32 bit port). I had
	no problems; I can do all the usual operations.

	My config is:

#define CFG_FLASH_BASE          CFG_FLASH_MEM_BASE

#define CFG_MAX_FLASH_BANKS     1       /* number of banks */
#define CFG_MAX_FLASH_SECT      512     /* sectors per device */
#undef  CFG_FLASH_CHECKSUM
#define CFG_FLASH_ERASE_TOUT    1024000 /* Flash Erase Timeout (ms) */
#define CFG_FLASH_WRITE_TOUT    500     /* Flash Write Timeout (ms) */

#define CFG_FLASH_CFI_DRIVER
#define CFG_FLASH_CFI
#define CFG_FLASH_EMPTY_INFO

	Cheers

-------------------------------------------------
=> flinfo

Bank # 1: CFI conformant FLASH (32 x 16)  Size: 128 MB in 512 Sectors
 Erase timeout 16384 ms, write timeout 1 ms, buffer write timeout 4096 ms, buffer size 32
  Sector Start Addresses:
 F8000000 E    F8040000 E    F8080000 E    F80C0000 E    F8100000 E
 F8140000 E    F8180000 E    F81C0000 E    F8200000 E    F8240000 E
 ...
 

-----Original Message-----
From: u-boot-users-admin@lists.sourceforge.net [mailto:u-boot-users-admin at lists.sourceforge.net] On Behalf Of Tolunay Orkun
Sent: quarta-feira, 4 de Janeiro de 2006 22:32
To: Wang Jian
Cc: Wolfgang Denk; u-boot-users at lists.sourceforge.net
Subject: Re: [U-Boot-Users] Suggestion on flash init

Wang Jian wrote:
>>In message <20051225190658.F3F9.LARK@linux.net.cn> you wrote:
>>
>>>I have tested cfi_flash.c for a while. Unfortuanately, it fails for
>>>Spansion S29AL016M. The chip can be recognized, chip information is all
>>>correct, but the erase and write routines fail.
(...)

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

end of thread, other threads:[~2006-01-05 16:20 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-25  4:33 [U-Boot-Users] Suggestion on flash init Wang Jian
2005-12-25 10:19 ` Wolfgang Denk
2005-12-25 12:02   ` Wang Jian
2005-12-25 16:34     ` Wolfgang Denk
2005-12-26  1:49       ` Wang Jian
2006-01-03 13:16         ` Wang Jian
2006-01-03 14:08           ` Wolfgang Denk
2006-01-03 15:34             ` Wang Jian
2006-01-03 15:44               ` Wolfgang Denk
2006-01-04 22:31         ` Tolunay Orkun
2006-01-04 23:51           ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2006-01-05 16:20 Nuno João (Ext_NBS)

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