-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ARM] 5128/1: tc6393xb: tmio-nand support
Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
- Loading branch information
Dmitry Baryshkov
authored and
Russell King
committed
Jul 7, 2008
1 parent
aa613de
commit f024ff1
Showing
4 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#ifndef MFD_TMIO_H | ||
#define MFD_TMIO_H | ||
|
||
/* | ||
* data for the NAND controller | ||
*/ | ||
struct tmio_nand_data { | ||
struct nand_bbt_descr *badblock_pattern; | ||
struct mtd_partition *partition; | ||
unsigned int num_partitions; | ||
}; | ||
|
||
#define TMIO_NAND_CONFIG "tmio-nand-config" | ||
#define TMIO_NAND_CONTROL "tmio-nand-control" | ||
#define TMIO_NAND_IRQ "tmio-nand" | ||
|
||
#endif |