mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-14 15:23:07 +00:00
763c6b8d7a
Add a new dt-bindings/media/video-interfaces.h header that defines macros corresponding to the bus types from media/video-interfaces.yaml. This allows avoiding hardcoded constants in device tree sources. Based on linux commit f7eeb0084593 ("media: dt-bindings: media: Add macros for video interface bus types") Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
16 lines
495 B
C
16 lines
495 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR MIT) */
|
|
/*
|
|
* Copyright (C) 2022 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#ifndef __DT_BINDINGS_MEDIA_VIDEO_INTERFACES_H__
|
|
#define __DT_BINDINGS_MEDIA_VIDEO_INTERFACES_H__
|
|
|
|
#define MEDIA_BUS_TYPE_CSI2_CPHY 1
|
|
#define MEDIA_BUS_TYPE_CSI1 2
|
|
#define MEDIA_BUS_TYPE_CCP2 3
|
|
#define MEDIA_BUS_TYPE_CSI2_DPHY 4
|
|
#define MEDIA_BUS_TYPE_PARALLEL 5
|
|
#define MEDIA_BUS_TYPE_BT656 6
|
|
|
|
#endif /* __DT_BINDINGS_MEDIA_VIDEO_INTERFACES_H__ */
|