core.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * linux/drivers/mmc/core/core.h
  3. *
  4. * Copyright (C) 2003 Russell King, All Rights Reserved.
  5. * Copyright 2007 Pierre Ossman
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef _MMC_CORE_CORE_H
  12. #define _MMC_CORE_CORE_H
  13. #include <linux/delay.h>
  14. #define MMC_CMD_RETRIES 3
  15. struct mmc_bus_ops {
  16. void (*remove)(struct mmc_host *);
  17. void (*detect)(struct mmc_host *);
  18. };
  19. void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops);
  20. void mmc_detach_bus(struct mmc_host *host);
  21. void __mmc_release_bus(struct mmc_host *host);
  22. static inline void mmc_bus_get(struct mmc_host *host)
  23. {
  24. unsigned long flags;
  25. spin_lock_irqsave(&host->lock, flags);
  26. host->bus_refs++;
  27. spin_unlock_irqrestore(&host->lock, flags);
  28. }
  29. static inline void mmc_bus_put(struct mmc_host *host)
  30. {
  31. unsigned long flags;
  32. spin_lock_irqsave(&host->lock, flags);
  33. host->bus_refs--;
  34. if ((host->bus_refs == 0) && host->bus_ops)
  35. __mmc_release_bus(host);
  36. spin_unlock_irqrestore(&host->lock, flags);
  37. }
  38. void mmc_set_chip_select(struct mmc_host *host, int mode);
  39. void mmc_set_clock(struct mmc_host *host, unsigned int hz);
  40. void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode);
  41. void mmc_set_bus_width(struct mmc_host *host, unsigned int width);
  42. u32 mmc_select_voltage(struct mmc_host *host, u32 ocr);
  43. void mmc_set_timing(struct mmc_host *host, unsigned int timing);
  44. struct mmc_card *mmc_alloc_card(struct mmc_host *host);
  45. static inline void mmc_delay(unsigned int ms)
  46. {
  47. if (ms < 1000 / HZ) {
  48. cond_resched();
  49. mdelay(ms);
  50. } else {
  51. msleep(ms);
  52. }
  53. }
  54. #endif