Home
last modified time | relevance | path

Searched refs:EmmcDevice (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/drivers/hdf_core/framework/model/storage/include/mmc/
H A Dmmc_emmc.h25 struct EmmcDevice { struct
32 int32_t (*getCid)(struct EmmcDevice *, uint8_t *, uint32_t); argument
35 int32_t EmmcDeviceGetCid(struct EmmcDevice *dev, uint8_t *cid, uint32_t len);
36 void EmmcDeviceAddOps(struct EmmcDevice *dev, struct EmmcDeviceOps *ops);
/ohos5.0/drivers/hdf_core/framework/model/storage/src/mmc/
H A Dmmc_emmc.c14 static int32_t EmmcDeviceDefaultGetCid(struct EmmcDevice *dev, uint8_t *cid, uint32_t len) in EmmcDeviceDefaultGetCid()
30 int32_t EmmcDeviceGetCid(struct EmmcDevice *dev, uint8_t *cid, uint32_t len) in EmmcDeviceGetCid()
47 void EmmcDeviceAddOps(struct EmmcDevice *dev, struct EmmcDeviceOps *ops) in EmmcDeviceAddOps()
H A Demmc_if.c83 static int32_t EmmcDeviceGetFromHandle(DevHandle handle, struct EmmcDevice **emmc) in EmmcDeviceGetFromHandle()
107 *emmc = (struct EmmcDevice *)mmc; in EmmcDeviceGetFromHandle()
116 struct EmmcDevice *emmc = NULL; in EmmcGetCid()
H A Dmmc_dispatch.c48 ret = EmmcDeviceGetCid((struct EmmcDevice *)cntlr->curDev, cid, EMMC_CID_LEN); in EmmcCmdGetCid()
H A Dmmc_protocol.c832 static void EmmcDecodeExtCsdSector(struct EmmcDevice *emmcDev, struct EmmcExtCsd *extCsd) in EmmcDecodeExtCsdSector()
915 static void EmmcDecodeExtCsdEnhanceArea(struct EmmcDevice *emmcDev, in EmmcDecodeExtCsdEnhanceArea()
958 static void EmmcDecodeExtCsdRev14Field(struct EmmcDevice *emmcDev, in EmmcDecodeExtCsdRev14Field()
994 struct EmmcDevice *emmcDev = (struct EmmcDevice *)cntlr->curDev; in EmmcDecodeExtCsd()
1040 struct EmmcDevice *emmcDev = (struct EmmcDevice *)cntlr->curDev; in EmmcSetBlockCapacity()
1079 static int32_t EmmcSwitchVoltage(struct MmcCntlr *cntlr, struct EmmcDevice *emmcDev) in EmmcSwitchVoltage()
1187 static int32_t EmmcSelectHs400es(struct MmcCntlr *cntlr, struct EmmcDevice *emmcDev) in EmmcSelectHs400es()
1229 static int32_t EmmcSelectHs200(struct MmcCntlr *cntlr, struct EmmcDevice *emmcDev) in EmmcSelectHs200()
1312 struct EmmcDevice *emmcDev, struct EmmcExtCsd *extCsd) in EmmcSelectActivateHighSpeed()
1440 static int32_t EmmcSelectSwitchDdrMode(struct MmcCntlr *cntlr, struct EmmcDevice *emmcDev, in EmmcSelectSwitchDdrMode()
[all …]
H A Dmmc_core.c569 len = (uint32_t)sizeof(struct EmmcDevice); in MmcCntlrAllocDev()
682 struct EmmcDevice *dev = NULL; in MmcCntlrEmmcSupportCmd23()
692 dev = (struct EmmcDevice *)cntlr->curDev; in MmcCntlrEmmcSupportCmd23()
1200 EmmcDeviceAddOps((struct EmmcDevice *)mmc, (struct EmmcDeviceOps *)ops); in MmcDeviceAddOps()
/ohos5.0/drivers/hdf_core/adapter/khdf/linux/model/storage/
H A Demmc_adapter.c32 static int32_t LinuxEmmcGetCid(struct EmmcDevice *dev, uint8_t *cid, uint32_t size) in LinuxEmmcGetCid()