aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/cannonlake/finalize.c
diff options
context:
space:
mode:
authorLijian Zhao <lijian.zhao@intel.com>2018-01-22 20:08:15 -0800
committerMartin Roth <martinroth@google.com>2018-02-11 00:00:41 +0000
commit1b64ae1119fc7891b043d5d29bf93859ef9dbfa1 (patch)
treebec506be9800c7bbed055a92811f844628006a7a /src/soc/intel/cannonlake/finalize.c
parent106a9fe882f329cb3dbafc56601557b1d35ac672 (diff)
soc/intel/cannonlake: Add Pch iSCLK programming
In order to reduce BOM cost and board area for imaging solution, the sensor requires a 19.2/24MHz reference clock from PCH. In addition to that, having PCH to supply the sensor reference clock will prevent dependency on CPU power management and also avoid level shifter cost. Pch iSCLK is only required for CNP-LP with the camera sensor on the platform. BUG=None TEST=Boot up into OS and read back PCH iSCLK programming through iotools. Change-Id: I28c97a75f2a7f5122a20c8b8f0f2671037a7eca6 Signed-off-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-on: https://review.coreboot.org/23367 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/cannonlake/finalize.c')
-rw-r--r--src/soc/intel/cannonlake/finalize.c38
1 files changed, 27 insertions, 11 deletions
diff --git a/src/soc/intel/cannonlake/finalize.c b/src/soc/intel/cannonlake/finalize.c
index 8aa7c04302..df4def21e9 100644
--- a/src/soc/intel/cannonlake/finalize.c
+++ b/src/soc/intel/cannonlake/finalize.c
@@ -37,6 +37,12 @@
#define PCR_PSFX_T0_SHDW_PCIEN 0x1C
#define PCR_PSFX_T0_SHDW_PCIEN_FUNDIS (1 << 8)
+#define CAMERA1_CLK 0x8000 /* Camera 1 Clock */
+#define CAMERA2_CLK 0x8080 /* Camera 2 Clock */
+#define CAM_CLK_EN (1 << 1)
+#define MIPI_CLK (1 << 0)
+#define HDPLL_CLK (0 << 0)
+
static void pch_configure_endpoints(device_t dev, int epmask_id, uint32_t mask)
{
uint32_t reg32;
@@ -65,23 +71,35 @@ static void disable_sideband_access(void)
static void pch_disable_heci(void)
{
+ pcr_or32(PID_PSF1, PSF_BASE_ADDRESS + PCR_PSFX_T0_SHDW_PCIEN,
+ PCR_PSFX_T0_SHDW_PCIEN_FUNDIS);
+ disable_sideband_access();
+}
+
+static void pch_enable_isclk(void)
+{
+ pcr_or32(PID_ISCLK, CAMERA1_CLK, CAM_CLK_EN | MIPI_CLK);
+ pcr_or32(PID_ISCLK, CAMERA2_CLK, CAM_CLK_EN | MIPI_CLK);
+}
+
+static void pch_handle_sideband(config_t *config)
+{
device_t dev = PCH_DEV_P2SB;
- /*
- * if p2sb device 1f.1 is not present or hidden in devicetree
- * p2sb device becomes NULL
- */
if (!dev)
return;
+ if (config->HeciEnabled && !config->pch_isclk)
+ return;
+
/* unhide p2sb device */
pci_write_config8(dev, PCH_P2SB_E0 + 1, 0);
- /* disable heci#1 */
- pcr_or32(PID_PSF1, PSF_BASE_ADDRESS + PCR_PSFX_T0_SHDW_PCIEN,
- PCR_PSFX_T0_SHDW_PCIEN_FUNDIS);
+ if (config->HeciEnabled == 0)
+ pch_disable_heci();
- disable_sideband_access();
+ if (config->pch_isclk)
+ pch_enable_isclk();
/* hide p2sb device */
pci_write_config8(dev, PCH_P2SB_E0 + 1, 1);
@@ -124,9 +142,7 @@ static void pch_finalize(void)
write32(pmcbase + CPPMVRIC, reg32);
}
- /* we should disable Heci1 based on the devicetree policy */
- if (config->HeciEnabled == 0)
- pch_disable_heci();
+ pch_handle_sideband(config);
}
static void soc_finalize(void *unused)