2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2007-02-28 22:33:10 +08:00
|
|
|
* linux/drivers/mmc/core/core.h
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Russell King, All Rights Reserved.
|
2006-12-25 05:46:55 +08:00
|
|
|
* Copyright 2007 Pierre Ossman
|
2005-04-17 06:20:36 +08: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-25 05:46:55 +08:00
|
|
|
#ifndef _MMC_CORE_CORE_H
|
|
|
|
#define _MMC_CORE_CORE_H
|
2005-08-19 16:41:24 +08:00
|
|
|
|
2006-12-25 05:46:55 +08: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 17:15:41 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|
2006-12-25 05:46:55 +08:00
|
|
|
|