mirror of
https://github.com/thead-yocto-mirror/vi-kernel
synced 2026-06-21 08:52:26 +02:00
32 lines
565 B
C
Executable File
32 lines
565 B
C
Executable File
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2018-2019 Synopsys, Inc. and/or its affiliates.
|
|
*
|
|
* Synopsys DesignWare MIPI CSI-2 platform data
|
|
*
|
|
* Author: Luis Oliveira <Luis.Oliveira@synopsys.com>
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include "dw-mipi-csi-pltfrm.h"
|
|
|
|
#ifndef __DW_CSI_DATA__
|
|
#define __DW_CSI_DATA__
|
|
|
|
struct dw_csih_pdata {
|
|
u8 eotp_enabled;
|
|
u32 hs_freq;
|
|
u32 lanes;
|
|
u32 pclk;
|
|
u32 fps;
|
|
u32 bpp;
|
|
u8 id;
|
|
};
|
|
|
|
static const struct pdata_names csis[] = {
|
|
{ .name = "dw-csi.0", },
|
|
{ .name = "dw-csi.1", },
|
|
};
|
|
|
|
#endif /*__DW_CSI_DATA__ */
|