forked from Minki/linux
68643c3735
This new optional property can be used to control the function of the auxiliary output pin. Introduce a new dt-bindings include file that contains the numerical values. Signed-off-by: Daniel Mack <daniel@zonque.org> Acked-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20220125093336.226787-3-daniel@zonque.org Signed-off-by: Stephen Boyd <sboyd@kernel.org>
15 lines
374 B
C
15 lines
374 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
/*
|
|
* Copyright (C) 2021 Daniel Mack
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_CS2000CP_CLK_H
|
|
#define __DT_BINDINGS_CS2000CP_CLK_H
|
|
|
|
#define CS2000CP_AUX_OUTPUT_REF_CLK 0
|
|
#define CS2000CP_AUX_OUTPUT_CLK_IN 1
|
|
#define CS2000CP_AUX_OUTPUT_CLK_OUT 2
|
|
#define CS2000CP_AUX_OUTPUT_PLL_LOCK 3
|
|
|
|
#endif /* __DT_BINDINGS_CS2000CP_CLK_H */
|