blob: 8686fc212e27cb03071acd9b4e0432764c10ee3c [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-only */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * A V4L2 driver for OmniVision OV7670 cameras.
4 *
5 * Copyright 2010 One Laptop Per Child
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#ifndef __OV7670_H
9#define __OV7670_H
10
11struct ov7670_config {
12 int min_width; /* Filter out smaller sizes */
13 int min_height; /* Filter out smaller sizes */
14 int clock_speed; /* External clock speed (MHz) */
15 bool use_smbus; /* Use smbus I/O instead of I2C */
16 bool pll_bypass; /* Choose whether to bypass the PLL */
17 bool pclk_hb_disable; /* Disable toggling pixclk during horizontal blanking */
18};
19
20#endif