xref: /optee_os/core/include/dt-bindings/scmi/scmi-clock.h (revision b61cea09b35cf42a7667d7cfd13af452795046de)
1*b61cea09SValentin Caron /* SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause */
2*b61cea09SValentin Caron /*
3*b61cea09SValentin Caron  * Copyright (C) STMicroelectronics 2024 - All Rights Reserved
4*b61cea09SValentin Caron  */
5*b61cea09SValentin Caron 
6*b61cea09SValentin Caron #ifndef _DT_BINDINGS_SCMI_SCMI_CLOCK_H_
7*b61cea09SValentin Caron #define _DT_BINDINGS_SCMI_SCMI_CLOCK_H_
8*b61cea09SValentin Caron 
9*b61cea09SValentin Caron #define SCMI_CLOCK_DEFAULT_ENABLED	0x1
10*b61cea09SValentin Caron #define SCMI_CLOCK_ALLOW_SET_RATE	0x2
11*b61cea09SValentin Caron #define SCMI_CLOCK_MASK			GENMASK_32(1, 0)
12*b61cea09SValentin Caron 
13*b61cea09SValentin Caron #endif /* _DT_BINDINGS_SCMI_SCMI_CLOCK_H_ */
14