2004-10-06 20:43:12 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 by Jens Arnold
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2004-10-06 20:43:12 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __ATA_MMC_H__
|
|
|
|
#define __ATA_MMC_H__
|
|
|
|
|
2017-03-15 05:51:54 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2005-05-22 00:42:00 +00:00
|
|
|
void mmc_enable_int_flash_clock(bool on);
|
2004-10-10 19:51:11 +00:00
|
|
|
bool mmc_detect(void);
|
2005-05-17 22:10:51 +00:00
|
|
|
bool mmc_touched(void);
|
2005-02-19 14:45:34 +00:00
|
|
|
bool mmc_usb_active(int delayticks);
|
2007-06-30 02:08:27 +00:00
|
|
|
|
2005-05-16 13:25:02 +00:00
|
|
|
#ifdef HAVE_HOTSWAP
|
|
|
|
void mmc_enable_monitoring(bool on);
|
|
|
|
#endif
|
2004-10-06 20:43:12 +00:00
|
|
|
|
|
|
|
#endif
|