nand-uclass.c 683 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * NAND uclass driver for NAND bus.
  3. *
  4. * (C) Copyright 2017
  5. * Texas Instruments Incorporated, <www.ti.com>
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #include <common.h>
  10. #include <dm.h>
  11. #include <errno.h>
  12. #include <nand.h>
  13. DECLARE_GLOBAL_DATA_PTR;
  14. struct mtd_info *get_nand_dev_by_index(int idx)
  15. {
  16. struct nand_chip *chip;
  17. struct udevice *dev;
  18. int ret;
  19. ret = uclass_get_device(UCLASS_NAND, idx, &dev);
  20. if (ret) {
  21. debug("NAND device (%d) not found\n", idx);
  22. return NULL;
  23. }
  24. chip = (struct nand_chip *)dev_get_priv(dev);
  25. return nand_to_mtd(chip);
  26. }
  27. UCLASS_DRIVER(nand) = {
  28. .id = UCLASS_NAND,
  29. .name = "nand",
  30. .flags = DM_UC_FLAG_SEQ_ALIAS,
  31. };