eric miao | fe69af0 | 2008-02-14 15:48:23 +0800 | [diff] [blame] | 1 | #ifndef __ASM_ARCH_PXA3XX_NAND_H |
| 2 | #define __ASM_ARCH_PXA3XX_NAND_H |
| 3 | |
| 4 | #include <linux/mtd/mtd.h> |
| 5 | #include <linux/mtd/partitions.h> |
| 6 | |
Enrico Scholz | 4303533 | 2008-08-29 12:57:28 +0200 | [diff] [blame] | 7 | struct pxa3xx_nand_timing { |
| 8 | unsigned int tCH; /* Enable signal hold time */ |
| 9 | unsigned int tCS; /* Enable signal setup time */ |
| 10 | unsigned int tWH; /* ND_nWE high duration */ |
| 11 | unsigned int tWP; /* ND_nWE pulse time */ |
| 12 | unsigned int tRH; /* ND_nRE high duration */ |
| 13 | unsigned int tRP; /* ND_nRE pulse width */ |
| 14 | unsigned int tR; /* ND_nWE high to ND_nRE low for read */ |
| 15 | unsigned int tWHR; /* ND_nWE high to ND_nRE low for status read */ |
| 16 | unsigned int tAR; /* ND_ALE low to ND_nRE low delay */ |
| 17 | }; |
| 18 | |
| 19 | struct pxa3xx_nand_cmdset { |
| 20 | uint16_t read1; |
| 21 | uint16_t read2; |
| 22 | uint16_t program; |
| 23 | uint16_t read_status; |
| 24 | uint16_t read_id; |
| 25 | uint16_t erase; |
| 26 | uint16_t reset; |
| 27 | uint16_t lock; |
| 28 | uint16_t unlock; |
| 29 | uint16_t lock_status; |
| 30 | }; |
| 31 | |
| 32 | struct pxa3xx_nand_flash { |
Lei Wen | 4332c11 | 2011-03-03 11:27:01 +0800 | [diff] [blame] | 33 | char *name; |
Lei Wen | c1f8247 | 2010-08-17 13:50:23 +0800 | [diff] [blame] | 34 | uint32_t chip_id; |
| 35 | unsigned int page_per_block; /* Pages per block (PG_PER_BLK) */ |
| 36 | unsigned int page_size; /* Page size in bytes (PAGE_SZ) */ |
| 37 | unsigned int flash_width; /* Width of Flash memory (DWIDTH_M) */ |
| 38 | unsigned int dfc_width; /* Width of flash controller(DWIDTH_C) */ |
| 39 | unsigned int num_blocks; /* Number of physical blocks in Flash */ |
Enrico Scholz | 4303533 | 2008-08-29 12:57:28 +0200 | [diff] [blame] | 40 | |
Lei Wen | c1f8247 | 2010-08-17 13:50:23 +0800 | [diff] [blame] | 41 | struct pxa3xx_nand_timing *timing; /* NAND Flash timing */ |
Enrico Scholz | 4303533 | 2008-08-29 12:57:28 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
Lei Wen | f3c8cfc | 2011-07-14 20:44:33 -0700 | [diff] [blame] | 44 | /* |
| 45 | * Current pxa3xx_nand controller has two chip select which |
| 46 | * both be workable. |
| 47 | * |
| 48 | * Notice should be taken that: |
| 49 | * When you want to use this feature, you should not enable the |
| 50 | * keep configuration feature, for two chip select could be |
| 51 | * attached with different nand chip. The different page size |
| 52 | * and timing requirement make the keep configuration impossible. |
| 53 | */ |
| 54 | |
| 55 | /* The max num of chip select current support */ |
| 56 | #define NUM_CHIP_SELECT (2) |
eric miao | fe69af0 | 2008-02-14 15:48:23 +0800 | [diff] [blame] | 57 | struct pxa3xx_nand_platform_data { |
| 58 | |
| 59 | /* the data flash bus is shared between the Static Memory |
| 60 | * Controller and the Data Flash Controller, the arbiter |
| 61 | * controls the ownership of the bus |
| 62 | */ |
| 63 | int enable_arbiter; |
| 64 | |
Mike Rapoport | f271049 | 2009-02-17 13:54:47 +0200 | [diff] [blame] | 65 | /* allow platform code to keep OBM/bootloader defined NFC config */ |
| 66 | int keep_config; |
| 67 | |
Lei Wen | f3c8cfc | 2011-07-14 20:44:33 -0700 | [diff] [blame] | 68 | /* indicate how many chip selects will be used */ |
| 69 | int num_cs; |
| 70 | |
| 71 | const struct mtd_partition *parts[NUM_CHIP_SELECT]; |
| 72 | unsigned int nr_parts[NUM_CHIP_SELECT]; |
Enrico Scholz | c8ac3f8 | 2008-08-29 12:59:48 +0200 | [diff] [blame] | 73 | |
Enrico Scholz | c8c17c8 | 2008-08-29 12:59:51 +0200 | [diff] [blame] | 74 | const struct pxa3xx_nand_flash * flash; |
Enrico Scholz | c8ac3f8 | 2008-08-29 12:59:48 +0200 | [diff] [blame] | 75 | size_t num_flash; |
eric miao | fe69af0 | 2008-02-14 15:48:23 +0800 | [diff] [blame] | 76 | }; |
Eric Miao | 9ae819a | 2008-06-02 15:22:03 +0800 | [diff] [blame] | 77 | |
| 78 | extern void pxa3xx_set_nand_info(struct pxa3xx_nand_platform_data *info); |
eric miao | fe69af0 | 2008-02-14 15:48:23 +0800 | [diff] [blame] | 79 | #endif /* __ASM_ARCH_PXA3XX_NAND_H */ |