mini/sdmmc.h

43 lines
1.1 KiB
C
Raw Normal View History

2009-04-11 23:42:53 +02:00
/*
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
SD/MMC interface
2009-04-13 22:13:45 +02:00
Copyright (C) 2008, 2009 Sven Peter <svenpeter@gmail.com>
2009-04-11 23:42:53 +02:00
2009-05-11 07:53:16 +02:00
# This code is licensed to you under the terms of the GNU GPL, version 2;
# see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
2009-04-11 23:42:53 +02:00
*/
2009-05-11 07:53:16 +02:00
2009-04-11 23:42:53 +02:00
#ifndef __SDMMC_H__
2009-04-13 22:13:45 +02:00
#define __SDMMC_H__
2009-04-11 23:42:53 +02:00
#include "bsdtypes.h"
2009-04-11 23:42:53 +02:00
#include "sdmmcchip.h"
#include "sdmmcvar.h"
2009-05-06 04:32:19 +02:00
#ifdef CAN_HAZ_IPC
#include "ipc.h"
2009-05-06 04:32:19 +02:00
#endif
2009-04-11 23:42:53 +02:00
#define SDMMC_DEFAULT_CLOCK 25000
#define SDMMC_DEFAULT_BLOCKLEN 512
#define SDMMC_NO_CARD 1
#define SDMMC_NEW_CARD 2
#define SDMMC_INSERTED 3
// HACK
#define SDMMC_DEFAULT_DEVICE ((struct device *)0)
2009-04-11 23:42:53 +02:00
struct device *sdmmc_attach(struct sdmmc_chip_functions *functions,
sdmmc_chipset_handle_t handle, const char *name, int no);
void sdmmc_needs_discover(struct device *dev);
int sdmmc_select(struct device *dev);
int sdmmc_check_card(struct device *dev);
2009-05-08 18:25:29 +02:00
int sdmmc_ack_card(struct device *dev);
int sdmmc_read(struct device *dev, u32 blk_start, u32 blk_count, void *data);
2009-05-06 04:32:19 +02:00
#ifdef CAN_HAZ_IPC
void sdmmc_ipc(volatile ipc_request *req);
2009-04-11 23:42:53 +02:00
#endif
2009-05-08 18:25:29 +02:00
2009-05-06 04:32:19 +02:00
#endif