exec/memory: Use struct Object typedef
[qemu/ar7.git] / hw / sd / sdmmc-internal.h
blobd8bf17d204fc46266d4d68d646155fb6cb807480
1 /*
2 * SD/MMC cards common
4 * Copyright (c) 2018 Philippe Mathieu-Daudé <f4bug@amsat.org>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
11 #ifndef SDMMC_INTERNAL_H
12 #define SDMMC_INTERNAL_H
14 #define SDMMC_CMD_MAX 64
16 /**
17 * sd_cmd_name:
18 * @cmd: A SD "normal" command, up to SDMMC_CMD_MAX.
20 * Returns a human-readable name describing the command.
21 * The return value is always a static string which does not need
22 * to be freed after use.
24 * Returns: The command name of @cmd or "UNKNOWN_CMD".
26 const char *sd_cmd_name(uint8_t cmd);
28 /**
29 * sd_acmd_name:
30 * @cmd: A SD "Application-Specific" command, up to SDMMC_CMD_MAX.
32 * Returns a human-readable name describing the application command.
33 * The return value is always a static string which does not need
34 * to be freed after use.
36 * Returns: The application command name of @cmd or "UNKNOWN_ACMD".
38 const char *sd_acmd_name(uint8_t cmd);
40 #endif