mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Fix red, forgotten file
Change-Id: Ia9c1e924c84772205472289494c62a63a3433727
This commit is contained in:
parent
633c8edf47
commit
6d124c738b
1 changed files with 48 additions and 0 deletions
48
firmware/target/arm/imx233/sdmmc-imx233.h
Normal file
48
firmware/target/arm/imx233/sdmmc-imx233.h
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/***************************************************************************
|
||||
* __________ __ ___.
|
||||
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
* \/ \/ \/ \/ \/
|
||||
* $Id$
|
||||
*
|
||||
* Copyright (C) 2016 by Amaury Pouly
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
||||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#ifndef __SDMMC_IMX233_H__
|
||||
#define __SDMMC_IMX233_H__
|
||||
|
||||
#include "system.h"
|
||||
|
||||
/** Information about SD/MMC slot */
|
||||
struct sdmmc_info_t
|
||||
{
|
||||
int drive; /* drive number (for queries like storage_removable(drive) */
|
||||
const char *slot_name; /* name of the slot: 'internal' or 'microsd' */
|
||||
bool window; /* is window enabled for this slot? */
|
||||
int bus_width; /* current bus width */
|
||||
bool hs_capable; /* is device high-speed capable? */
|
||||
bool hs_enabled; /* is high-speed enabled? */
|
||||
bool has_sbc; /* device support SET_BLOCK_COUNT */
|
||||
};
|
||||
|
||||
#if CONFIG_STORAGE & STORAGE_SD
|
||||
/* return information about a particular sd device (index=0..n-1) */
|
||||
struct sdmmc_info_t imx233_sd_get_info(int card_no);
|
||||
#endif
|
||||
|
||||
#if CONFIG_STORAGE & STORAGE_MMC
|
||||
/* return information about a particular mmc device (index=0..n-1) */
|
||||
struct sdmmc_info_t imx233_mmc_get_info(int card_no);
|
||||
#endif
|
||||
|
||||
#endif /* __SSP_IMX233_H__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue