bcm47xxnflash.h 386 B

12345678910111213141516171819202122
  1. #ifndef __BCM47XXNFLASH_H
  2. #define __BCM47XXNFLASH_H
  3. #include <linux/mtd/mtd.h>
  4. #include <linux/mtd/nand.h>
  5. struct bcm47xxnflash {
  6. struct bcma_drv_cc *cc;
  7. struct nand_chip nand_chip;
  8. struct mtd_info mtd;
  9. unsigned curr_command;
  10. int curr_page_addr;
  11. int curr_column;
  12. u8 id_data[8];
  13. };
  14. int bcm47xxnflash_ops_bcm4706_init(struct bcm47xxnflash *b47n);
  15. #endif /* BCM47XXNFLASH */