android_kernel_samsung_a7y1.../include/linux/exynos-pci-ctrl.h
prashantpaddune 3bca37f224 A750FXXU4CTBC
2020-03-27 21:51:54 +05:30

27 lines
806 B
C

/*
* Copyright (C) 2015 Samsung Electronics Co.Ltd
* http://www.samsung.com
*
* EXYNOS MODEM CONTROL driver
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*/
#ifndef __EXYNOS_PCIE_CTRL_H
#define __EXYNOS_PCIE_CTRL_H
/* PCIe L1SS Control ID */
#define PCIE_L1SS_CTRL_ARGOS (0x1 << 0)
#define PCIE_L1SS_CTRL_BOOT (0x1 << 1)
#define PCIE_L1SS_CTRL_CAMERA (0x1 << 2)
#define PCIE_L1SS_CTRL_MODEM_IF (0x1 << 3)
#if defined(CONFIG_SOC_EXYNOS8890) || defined(CONFIG_SOC_EXYNOS8895)
extern int exynos_pcie_l1ss_ctrl(int enable, int id);
#endif
#endif