core.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. int (*sysfs_add)(struct mmc_host *, struct mmc_card *card);
  19. void (*sysfs_remove)(struct mmc_host *, struct mmc_card *card);
  20. void (*suspend)(struct mmc_host *);
  21. void (*resume)(struct mmc_host *);
  22. };
  23. void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops);
  24. void mmc_detach_bus(struct mmc_host *host);
  25. void __mmc_release_bus(struct mmc_host *host);
  26. static inline void mmc_bus_get(struct mmc_host *host)
  27. {
  28. unsigned long flags;
  29. spin_lock_irqsave(&host->lock, flags);
  30. host->bus_refs++;
  31. spin_unlock_irqrestore(&host->lock, flags);
  32. }
  33. static inline void mmc_bus_put(struct mmc_host *host)
  34. {
  35. unsigned long flags;
  36. spin_lock_irqsave(&host->lock, flags);
  37. host->bus_refs--;
  38. if ((host->bus_refs == 0) && host->bus_ops)
  39. __mmc_release_bus(host);
  40. spin_unlock_irqrestore(&host->lock, flags);
  41. }
  42. void mmc_set_chip_select(struct mmc_host *host, int mode);
  43. void mmc_set_clock(struct mmc_host *host, unsigned int hz);
  44. void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode);
  45. void mmc_set_bus_width(struct mmc_host *host, unsigned int width);
  46. u32 mmc_select_voltage(struct mmc_host *host, u32 ocr);
  47. void mmc_set_timing(struct mmc_host *host, unsigned int timing);
  48. static inline void mmc_delay(unsigned int ms)
  49. {
  50. if (ms < 1000 / HZ) {
  51. cond_resched();
  52. mdelay(ms);
  53. } else {
  54. msleep(ms);
  55. }
  56. }
  57. void mmc_rescan(struct work_struct *work);
  58. void mmc_start_host(struct mmc_host *host);
  59. void mmc_stop_host(struct mmc_host *host);
  60. #endif