diff options
author | Tom Rini | 2019-10-14 07:28:32 -0400 |
---|---|---|
committer | Tom Rini | 2019-10-14 07:28:32 -0400 |
commit | fae79480111be47944cf66a9c052ff3934a09ce5 (patch) | |
tree | 7f7e53795d9520b2a731ac4ca8b5b94223bf3aa4 /arch | |
parent | 7a779ed1755c2d5011bd9598da90291f759ae760 (diff) | |
parent | a8ef8b22896331d0be1bb4c5bef787b3f72e793e (diff) |
Merge tag 'mmc-10-10-2019' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
- Add sdhci driver for Broadcom iProc platform
- Add a driver callback for power-cycle for mmc
- Implement host_power_cycle callback for stm32_sdmmc2
- spl: dm_mmc: Initialize only the required mmc device
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/iproc-common/iproc_sdhci.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/include/asm/iproc-common/iproc_sdhci.h b/arch/arm/include/asm/iproc-common/iproc_sdhci.h new file mode 100644 index 00000000000..4e299217fcf --- /dev/null +++ b/arch/arm/include/asm/iproc-common/iproc_sdhci.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: <SPDX License Expression> */ +/* + * Copyright 2019 Broadcom + * + */ + +#ifndef __IPROC_SDHCI_H +#define __IPROC_SDHCI_H + +int iproc_sdhci_init(int dev_index, u32 quirks); + +#endif |