blob: fbaab1f1ee0ac4c189b7973da2276f5554f23d38 [file] [log] [blame]
Alexey Romanovef2eb102023-09-21 11:13:39 +03001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright (c) 2023 SberDevices, Inc.
4 *
5 * Author: Alexey Romanov <avromanov@salutedevices.com>
6 */
7
8#ifndef __MESON_SM_CMD_H__
9#define __MESON_SM_CMD_H__
10
11enum meson_smc_cmd {
12 MESON_SMC_CMD_EFUSE_READ, /* read efuse memory */
13 MESON_SMC_CMD_EFUSE_WRITE, /* write efuse memory */
14 MESON_SMC_CMD_CHIP_ID_GET, /* readh chip unique id */
15 MESON_SMC_CMD_PWRDM_SET, /* do command at specified power domain */
16 MESON_SMC_CMD_COUNT,
17};
18
19#endif