mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +00:00

Add new constants for choosing the additional USIv1 configuration modes in device tree. Those are further used in the USI driver to figure out which value to write into SW_CONF register. Modify the current USI IP-core bindings to include information about USIv1 and a compatible for exynos8895. In the original bindings commit, protocol mode definitions were named with the version of the supported USI (in this case, V2) with the idea of leaving enough room in the future for other versions of this block. This, however, is not how the modes should be modelled. The modes are not version specific and you should not be able to tell USI which version of a mode to use - that has to be handled in the driver - thus encoding this information in the binding is meaningless. Only one constant per mode is needed, so while we're at it, add new constants with the prefix USI_MODE and mark the old ones as depracated. Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20250204172803.3425496-2-ivo.ivanov.ivanov1@gmail.com Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
27 lines
707 B
C
27 lines
707 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
/*
|
|
* Copyright (c) 2021 Linaro Ltd.
|
|
* Author: Sam Protsenko <semen.protsenko@linaro.org>
|
|
*
|
|
* Device Tree bindings for Samsung Exynos USI (Universal Serial Interface).
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_SAMSUNG_EXYNOS_USI_H
|
|
#define __DT_BINDINGS_SAMSUNG_EXYNOS_USI_H
|
|
|
|
#define USI_MODE_NONE 0
|
|
#define USI_MODE_UART 1
|
|
#define USI_MODE_SPI 2
|
|
#define USI_MODE_I2C 3
|
|
#define USI_MODE_I2C1 4
|
|
#define USI_MODE_I2C0_1 5
|
|
#define USI_MODE_UART_I2C1 6
|
|
|
|
/* Deprecated */
|
|
#define USI_V2_NONE USI_MODE_NONE
|
|
#define USI_V2_UART USI_MODE_UART
|
|
#define USI_V2_SPI USI_MODE_SPI
|
|
#define USI_V2_I2C USI_MODE_I2C
|
|
|
|
#endif /* __DT_BINDINGS_SAMSUNG_EXYNOS_USI_H */
|