1 /* 2 * Copyright (c) 2021-2022 HPMicro 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * 6 */ 7 8 #ifndef SDMMC_PORT_H 9 #define SDMMC_PORT_H 10 11 #include "hpm_sdmmc_host.h" 12 13 hpm_stat_t board_init_sd_host_params(sdmmc_host_t *host, SDMMCHOST_Type *base); 14 hpm_stat_t board_init_emmc_host_params(sdmmc_host_t *host, SDMMCHOST_Type *base); 15 16 #endif /* SDMMC_PORT_H */ 17