blob: 91543a09b28a95eff06a8727ffb933f1bceff097 [file] [log] [blame]
Laurent Pinchart121e9f12011-02-12 18:05:06 -03001/*
2 * ispcsiphy.h
3 *
4 * TI OMAP3 ISP - CSI PHY module
5 *
6 * Copyright (C) 2010 Nokia Corporation
7 * Copyright (C) 2009 Texas Instruments, Inc.
8 *
9 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
10 * Sakari Ailus <sakari.ailus@iki.fi>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
Laurent Pinchart121e9f12011-02-12 18:05:06 -030015 */
16
17#ifndef OMAP3_ISP_CSI_PHY_H
18#define OMAP3_ISP_CSI_PHY_H
19
Laurent Pinchart78c66fb2015-05-20 04:08:30 -030020#include "omap3isp.h"
Sakari Ailusfe6adc12011-10-10 14:13:26 -030021
Laurent Pinchart121e9f12011-02-12 18:05:06 -030022struct isp_csi2_device;
23struct regulator;
24
Laurent Pinchart121e9f12011-02-12 18:05:06 -030025struct isp_csiphy {
26 struct isp_device *isp;
27 struct mutex mutex; /* serialize csiphy configuration */
Laurent Pinchart121e9f12011-02-12 18:05:06 -030028 struct isp_csi2_device *csi2;
29 struct regulator *vdd;
Sakari Ailus7e1db592017-03-04 04:52:40 -050030 /* the entity that acquired the phy */
31 struct media_entity *entity;
Laurent Pinchart121e9f12011-02-12 18:05:06 -030032
33 /* mem resources - enums as defined in enum isp_mem_resources */
34 unsigned int cfg_regs;
35 unsigned int phy_regs;
36
37 u8 num_data_lanes; /* number of CSI2 Data Lanes supported */
Laurent Pinchart121e9f12011-02-12 18:05:06 -030038};
39
Sakari Ailus7e1db592017-03-04 04:52:40 -050040int omap3isp_csiphy_acquire(struct isp_csiphy *phy,
41 struct media_entity *entity);
Laurent Pinchart121e9f12011-02-12 18:05:06 -030042void omap3isp_csiphy_release(struct isp_csiphy *phy);
43int omap3isp_csiphy_init(struct isp_device *isp);
Sakari Ailus838a6c52017-03-04 10:07:08 -050044void omap3isp_csiphy_cleanup(struct isp_device *isp);
Laurent Pinchart121e9f12011-02-12 18:05:06 -030045
46#endif /* OMAP3_ISP_CSI_PHY_H */