You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
322 B
16 lines
322 B
#ifndef __ASM_ARCH_NAND_H
|
|
#define __ASM_ARCH_NAND_H
|
|
|
|
struct nomadik_nand_platform_data {
|
|
struct mtd_partition *parts;
|
|
int nparts;
|
|
int options;
|
|
int (*init) (void);
|
|
int (*exit) (void);
|
|
};
|
|
|
|
#define NAND_IO_DATA 0x40000000
|
|
#define NAND_IO_CMD 0x40800000
|
|
#define NAND_IO_ADDR 0x41000000
|
|
|
|
#endif /* __ASM_ARCH_NAND_H */
|
|
|