fusee: further flesh out sdmmc implementation

This commit is contained in:
Kate J. Temkin
2018-04-28 02:28:10 -06:00
parent 2e3af0c474
commit dbb65428e8
4 changed files with 161 additions and 29 deletions

View File

@@ -13,11 +13,16 @@ struct tegra_sdmmc;
* Primary data structure describing a Fusée MMC driver.
*/
struct mmc {
/* Controller properties */
char *name;
volatile struct tegra_sdmmc *regs;
unsigned int timeout;
/* Card properties */
uint8_t cid[15];
/* Pointers to hardware structures */
volatile struct tegra_sdmmc *regs;
};