forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media: camss: csiphy: Split to hardware dependent and independent parts
This will allow to add support for different hardware. Signed-off-by: Todor Tomov <[email protected]> [[email protected]: remove trailing empty line] Signed-off-by: Hans Verkuil <[email protected]> Signed-off-by: Mauro Carvalho Chehab <[email protected]>
- Loading branch information
1 parent
02afa81
commit 516e8f0
Showing
4 changed files
with
213 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
172 changes: 172 additions & 0 deletions
172
drivers/media/platform/qcom/camss/camss-csiphy-2ph-1-0.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,172 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
/* | ||
* camss-csiphy-2ph-1-0.c | ||
* | ||
* Qualcomm MSM Camera Subsystem - CSIPHY Module 2phase v1.0 | ||
* | ||
* Copyright (c) 2011-2015, The Linux Foundation. All rights reserved. | ||
* Copyright (C) 2016-2018 Linaro Ltd. | ||
*/ | ||
|
||
#include "camss-csiphy.h" | ||
|
||
#include <linux/delay.h> | ||
#include <linux/interrupt.h> | ||
|
||
#define CAMSS_CSI_PHY_LNn_CFG2(n) (0x004 + 0x40 * (n)) | ||
#define CAMSS_CSI_PHY_LNn_CFG3(n) (0x008 + 0x40 * (n)) | ||
#define CAMSS_CSI_PHY_GLBL_RESET 0x140 | ||
#define CAMSS_CSI_PHY_GLBL_PWR_CFG 0x144 | ||
#define CAMSS_CSI_PHY_GLBL_IRQ_CMD 0x164 | ||
#define CAMSS_CSI_PHY_HW_VERSION 0x188 | ||
#define CAMSS_CSI_PHY_INTERRUPT_STATUSn(n) (0x18c + 0x4 * (n)) | ||
#define CAMSS_CSI_PHY_INTERRUPT_MASKn(n) (0x1ac + 0x4 * (n)) | ||
#define CAMSS_CSI_PHY_INTERRUPT_CLEARn(n) (0x1cc + 0x4 * (n)) | ||
#define CAMSS_CSI_PHY_GLBL_T_INIT_CFG0 0x1ec | ||
#define CAMSS_CSI_PHY_T_WAKEUP_CFG0 0x1f4 | ||
|
||
static void csiphy_hw_version_read(struct csiphy_device *csiphy, | ||
struct device *dev) | ||
{ | ||
u8 hw_version = readl_relaxed(csiphy->base + | ||
CAMSS_CSI_PHY_HW_VERSION); | ||
|
||
dev_dbg(dev, "CSIPHY HW Version = 0x%02x\n", hw_version); | ||
} | ||
|
||
/* | ||
* csiphy_reset - Perform software reset on CSIPHY module | ||
* @csiphy: CSIPHY device | ||
*/ | ||
static void csiphy_reset(struct csiphy_device *csiphy) | ||
{ | ||
writel_relaxed(0x1, csiphy->base + CAMSS_CSI_PHY_GLBL_RESET); | ||
usleep_range(5000, 8000); | ||
writel_relaxed(0x0, csiphy->base + CAMSS_CSI_PHY_GLBL_RESET); | ||
} | ||
|
||
/* | ||
* csiphy_settle_cnt_calc - Calculate settle count value | ||
* | ||
* Helper function to calculate settle count value. This is | ||
* based on the CSI2 T_hs_settle parameter which in turn | ||
* is calculated based on the CSI2 transmitter pixel clock | ||
* frequency. | ||
* | ||
* Return settle count value or 0 if the CSI2 pixel clock | ||
* frequency is not available | ||
*/ | ||
static u8 csiphy_settle_cnt_calc(u32 pixel_clock, u8 bpp, u8 num_lanes, | ||
u32 timer_clk_rate) | ||
{ | ||
u32 mipi_clock; /* Hz */ | ||
u32 ui; /* ps */ | ||
u32 timer_period; /* ps */ | ||
u32 t_hs_prepare_max; /* ps */ | ||
u32 t_hs_prepare_zero_min; /* ps */ | ||
u32 t_hs_settle; /* ps */ | ||
u8 settle_cnt; | ||
|
||
mipi_clock = pixel_clock * bpp / (2 * num_lanes); | ||
ui = div_u64(1000000000000LL, mipi_clock); | ||
ui /= 2; | ||
t_hs_prepare_max = 85000 + 6 * ui; | ||
t_hs_prepare_zero_min = 145000 + 10 * ui; | ||
t_hs_settle = (t_hs_prepare_max + t_hs_prepare_zero_min) / 2; | ||
|
||
timer_period = div_u64(1000000000000LL, timer_clk_rate); | ||
settle_cnt = t_hs_settle / timer_period - 1; | ||
|
||
return settle_cnt; | ||
} | ||
|
||
static void csiphy_lanes_enable(struct csiphy_device *csiphy, | ||
struct csiphy_config *cfg, | ||
u32 pixel_clock, u8 bpp, u8 lane_mask) | ||
{ | ||
struct csiphy_lanes_cfg *c = &cfg->csi2->lane_cfg; | ||
u8 settle_cnt; | ||
u8 val; | ||
int i = 0; | ||
|
||
settle_cnt = csiphy_settle_cnt_calc(pixel_clock, bpp, c->num_data, | ||
csiphy->timer_clk_rate); | ||
|
||
writel_relaxed(0x1, csiphy->base + | ||
CAMSS_CSI_PHY_GLBL_T_INIT_CFG0); | ||
writel_relaxed(0x1, csiphy->base + | ||
CAMSS_CSI_PHY_T_WAKEUP_CFG0); | ||
|
||
val = 0x1; | ||
val |= lane_mask << 1; | ||
writel_relaxed(val, csiphy->base + CAMSS_CSI_PHY_GLBL_PWR_CFG); | ||
|
||
val = cfg->combo_mode << 4; | ||
writel_relaxed(val, csiphy->base + CAMSS_CSI_PHY_GLBL_RESET); | ||
|
||
while (lane_mask) { | ||
if (lane_mask & 0x1) { | ||
writel_relaxed(0x10, csiphy->base + | ||
CAMSS_CSI_PHY_LNn_CFG2(i)); | ||
writel_relaxed(settle_cnt, csiphy->base + | ||
CAMSS_CSI_PHY_LNn_CFG3(i)); | ||
writel_relaxed(0x3f, csiphy->base + | ||
CAMSS_CSI_PHY_INTERRUPT_MASKn(i)); | ||
writel_relaxed(0x3f, csiphy->base + | ||
CAMSS_CSI_PHY_INTERRUPT_CLEARn(i)); | ||
} | ||
|
||
lane_mask >>= 1; | ||
i++; | ||
} | ||
} | ||
|
||
static void csiphy_lanes_disable(struct csiphy_device *csiphy, u8 lane_mask) | ||
{ | ||
int i = 0; | ||
|
||
while (lane_mask) { | ||
if (lane_mask & 0x1) | ||
writel_relaxed(0x0, csiphy->base + | ||
CAMSS_CSI_PHY_LNn_CFG2(i)); | ||
|
||
lane_mask >>= 1; | ||
i++; | ||
} | ||
|
||
writel_relaxed(0x0, csiphy->base + CAMSS_CSI_PHY_GLBL_PWR_CFG); | ||
} | ||
|
||
/* | ||
* csiphy_isr - CSIPHY module interrupt handler | ||
* @irq: Interrupt line | ||
* @dev: CSIPHY device | ||
* | ||
* Return IRQ_HANDLED on success | ||
*/ | ||
static irqreturn_t csiphy_isr(int irq, void *dev) | ||
{ | ||
struct csiphy_device *csiphy = dev; | ||
u8 i; | ||
|
||
for (i = 0; i < 8; i++) { | ||
u8 val = readl_relaxed(csiphy->base + | ||
CAMSS_CSI_PHY_INTERRUPT_STATUSn(i)); | ||
writel_relaxed(val, csiphy->base + | ||
CAMSS_CSI_PHY_INTERRUPT_CLEARn(i)); | ||
writel_relaxed(0x1, csiphy->base + CAMSS_CSI_PHY_GLBL_IRQ_CMD); | ||
writel_relaxed(0x0, csiphy->base + CAMSS_CSI_PHY_GLBL_IRQ_CMD); | ||
writel_relaxed(0x0, csiphy->base + | ||
CAMSS_CSI_PHY_INTERRUPT_CLEARn(i)); | ||
} | ||
|
||
return IRQ_HANDLED; | ||
} | ||
|
||
const struct csiphy_hw_ops csiphy_ops_2ph_1_0 = { | ||
.hw_version_read = csiphy_hw_version_read, | ||
.reset = csiphy_reset, | ||
.lanes_enable = csiphy_lanes_enable, | ||
.lanes_disable = csiphy_lanes_disable, | ||
.isr = csiphy_isr, | ||
}; |
Oops, something went wrong.