2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2007-02-28 14:33:10 +00:00
|
|
|
* linux/drivers/mmc/core/core.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Russell King, All Rights Reserved.
|
2006-12-24 21:46:55 +00:00
|
|
|
* Copyright 2007 Pierre Ossman
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
2006-12-24 21:46:55 +00:00
|
|
|
#ifndef _MMC_CORE_CORE_H
|
|
|
|
#define _MMC_CORE_CORE_H
|
2005-08-19 08:41:24 +00:00
|
|
|
|
2006-12-24 21:46:55 +00:00
|
|
|
#include <linux/delay.h>
|
|
|
|
|
|
|
|
#define MMC_CMD_RETRIES 3
|
|
|
|
|
|
|
|
void mmc_set_chip_select(struct mmc_host *host, int mode);
|
|
|
|
|
|
|
|
static inline void mmc_delay(unsigned int ms)
|
|
|
|
{
|
|
|
|
if (ms < 1000 / HZ) {
|
|
|
|
cond_resched();
|
|
|
|
mdelay(ms);
|
|
|
|
} else {
|
|
|
|
msleep(ms);
|
|
|
|
}
|
|
|
|
}
|
2006-10-04 09:15:41 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2006-12-24 21:46:55 +00:00
|
|
|
|