1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * Copyright (C) 2013 - 2025 Intel Corporation 4 */ 5 6 #ifndef IPU7_ISYS_CSI_PHY_H 7 #define IPU7_ISYS_CSI_PHY_H 8 9 struct ipu7_isys; 10 11 #define PHY_MODE_DPHY 0U 12 #define PHY_MODE_CPHY 1U 13 14 int ipu7_isys_csi_phy_powerup(struct ipu7_isys_csi2 *csi2); 15 void ipu7_isys_csi_phy_powerdown(struct ipu7_isys_csi2 *csi2); 16 #endif 17