|
|
@@ -18,20 +18,29 @@
|
|
|
#include <drm/drm_panel.h>
|
|
|
#include <linux/clk.h>
|
|
|
#include <linux/component.h>
|
|
|
+#include <linux/irq.h>
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_platform.h>
|
|
|
#include <linux/of_graph.h>
|
|
|
#include <linux/phy/phy.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
+#include <video/mipi_display.h>
|
|
|
#include <video/videomode.h>
|
|
|
|
|
|
#include "mtk_drm_ddp_comp.h"
|
|
|
|
|
|
-#define DSI_VIDEO_FIFO_DEPTH (1920 / 4)
|
|
|
-#define DSI_HOST_FIFO_DEPTH 64
|
|
|
-
|
|
|
#define DSI_START 0x00
|
|
|
|
|
|
+#define DSI_INTEN 0x08
|
|
|
+
|
|
|
+#define DSI_INTSTA 0x0c
|
|
|
+#define LPRX_RD_RDY_INT_FLAG BIT(0)
|
|
|
+#define CMD_DONE_INT_FLAG BIT(1)
|
|
|
+#define TE_RDY_INT_FLAG BIT(2)
|
|
|
+#define VM_DONE_INT_FLAG BIT(3)
|
|
|
+#define EXT_TE_RDY_INT_FLAG BIT(4)
|
|
|
+#define DSI_BUSY BIT(31)
|
|
|
+
|
|
|
#define DSI_CON_CTRL 0x10
|
|
|
#define DSI_RESET BIT(0)
|
|
|
#define DSI_EN BIT(1)
|
|
|
@@ -46,7 +55,7 @@
|
|
|
#define MIX_MODE BIT(17)
|
|
|
|
|
|
#define DSI_TXRX_CTRL 0x18
|
|
|
-#define VC_NUM (2 << 0)
|
|
|
+#define VC_NUM BIT(1)
|
|
|
#define LANE_NUM (0xf << 2)
|
|
|
#define DIS_EOT BIT(6)
|
|
|
#define NULL_EN BIT(7)
|
|
|
@@ -72,8 +81,19 @@
|
|
|
#define DSI_HBP_WC 0x54
|
|
|
#define DSI_HFP_WC 0x58
|
|
|
|
|
|
+#define DSI_CMDQ_SIZE 0x60
|
|
|
+#define CMDQ_SIZE 0x3f
|
|
|
+
|
|
|
#define DSI_HSTX_CKL_WC 0x64
|
|
|
|
|
|
+#define DSI_RX_DATA0 0x74
|
|
|
+#define DSI_RX_DATA1 0x78
|
|
|
+#define DSI_RX_DATA2 0x7c
|
|
|
+#define DSI_RX_DATA3 0x80
|
|
|
+
|
|
|
+#define DSI_RACK 0x84
|
|
|
+#define RACK BIT(0)
|
|
|
+
|
|
|
#define DSI_PHY_LCCON 0x104
|
|
|
#define LC_HS_TX_EN BIT(0)
|
|
|
#define LC_ULPM_EN BIT(1)
|
|
|
@@ -106,6 +126,19 @@
|
|
|
#define CLK_HS_POST (0xff << 8)
|
|
|
#define CLK_HS_EXIT (0xff << 16)
|
|
|
|
|
|
+#define DSI_VM_CMD_CON 0x130
|
|
|
+#define VM_CMD_EN BIT(0)
|
|
|
+#define TS_VFP_EN BIT(5)
|
|
|
+
|
|
|
+#define DSI_CMDQ0 0x180
|
|
|
+#define CONFIG (0xff << 0)
|
|
|
+#define SHORT_PACKET 0
|
|
|
+#define LONG_PACKET 2
|
|
|
+#define BTA BIT(2)
|
|
|
+#define DATA_ID (0xff << 8)
|
|
|
+#define DATA_0 (0xff << 16)
|
|
|
+#define DATA_1 (0xff << 24)
|
|
|
+
|
|
|
#define T_LPX 5
|
|
|
#define T_HS_PREP 6
|
|
|
#define T_HS_TRAIL 8
|
|
|
@@ -114,6 +147,12 @@
|
|
|
|
|
|
#define NS_TO_CYCLE(n, c) ((n) / (c) + (((n) % (c)) ? 1 : 0))
|
|
|
|
|
|
+#define MTK_DSI_HOST_IS_READ(type) \
|
|
|
+ ((type == MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM) || \
|
|
|
+ (type == MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM) || \
|
|
|
+ (type == MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM) || \
|
|
|
+ (type == MIPI_DSI_DCS_READ))
|
|
|
+
|
|
|
struct phy;
|
|
|
|
|
|
struct mtk_dsi {
|
|
|
@@ -140,6 +179,8 @@ struct mtk_dsi {
|
|
|
struct videomode vm;
|
|
|
int refcount;
|
|
|
bool enabled;
|
|
|
+ u32 irq_data;
|
|
|
+ wait_queue_head_t irq_wait_queue;
|
|
|
};
|
|
|
|
|
|
static inline struct mtk_dsi *encoder_to_dsi(struct drm_encoder *e)
|
|
|
@@ -164,7 +205,7 @@ static void mtk_dsi_mask(struct mtk_dsi *dsi, u32 offset, u32 mask, u32 data)
|
|
|
writel((temp & ~mask) | (data & mask), dsi->regs + offset);
|
|
|
}
|
|
|
|
|
|
-static void dsi_phy_timconfig(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_phy_timconfig(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
u32 timcon0, timcon1, timcon2, timcon3;
|
|
|
u32 ui, cycle_time;
|
|
|
@@ -196,118 +237,39 @@ static void mtk_dsi_disable(struct mtk_dsi *dsi)
|
|
|
mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static void mtk_dsi_reset(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_reset_engine(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, DSI_RESET);
|
|
|
mtk_dsi_mask(dsi, DSI_CON_CTRL, DSI_RESET, 0);
|
|
|
}
|
|
|
|
|
|
-static int mtk_dsi_poweron(struct mtk_dsi *dsi)
|
|
|
-{
|
|
|
- struct device *dev = dsi->dev;
|
|
|
- int ret;
|
|
|
- u64 pixel_clock, total_bits;
|
|
|
- u32 htotal, htotal_bits, bit_per_pixel, overhead_cycles, overhead_bits;
|
|
|
-
|
|
|
- if (++dsi->refcount != 1)
|
|
|
- return 0;
|
|
|
-
|
|
|
- switch (dsi->format) {
|
|
|
- case MIPI_DSI_FMT_RGB565:
|
|
|
- bit_per_pixel = 16;
|
|
|
- break;
|
|
|
- case MIPI_DSI_FMT_RGB666_PACKED:
|
|
|
- bit_per_pixel = 18;
|
|
|
- break;
|
|
|
- case MIPI_DSI_FMT_RGB666:
|
|
|
- case MIPI_DSI_FMT_RGB888:
|
|
|
- default:
|
|
|
- bit_per_pixel = 24;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * vm.pixelclock is in kHz, pixel_clock unit is Hz, so multiply by 1000
|
|
|
- * htotal_time = htotal * byte_per_pixel / num_lanes
|
|
|
- * overhead_time = lpx + hs_prepare + hs_zero + hs_trail + hs_exit
|
|
|
- * mipi_ratio = (htotal_time + overhead_time) / htotal_time
|
|
|
- * data_rate = pixel_clock * bit_per_pixel * mipi_ratio / num_lanes;
|
|
|
- */
|
|
|
- pixel_clock = dsi->vm.pixelclock * 1000;
|
|
|
- htotal = dsi->vm.hactive + dsi->vm.hback_porch + dsi->vm.hfront_porch +
|
|
|
- dsi->vm.hsync_len;
|
|
|
- htotal_bits = htotal * bit_per_pixel;
|
|
|
-
|
|
|
- overhead_cycles = T_LPX + T_HS_PREP + T_HS_ZERO + T_HS_TRAIL +
|
|
|
- T_HS_EXIT;
|
|
|
- overhead_bits = overhead_cycles * dsi->lanes * 8;
|
|
|
- total_bits = htotal_bits + overhead_bits;
|
|
|
-
|
|
|
- dsi->data_rate = DIV_ROUND_UP_ULL(pixel_clock * total_bits,
|
|
|
- htotal * dsi->lanes);
|
|
|
-
|
|
|
- ret = clk_set_rate(dsi->hs_clk, dsi->data_rate);
|
|
|
- if (ret < 0) {
|
|
|
- dev_err(dev, "Failed to set data rate: %d\n", ret);
|
|
|
- goto err_refcount;
|
|
|
- }
|
|
|
-
|
|
|
- phy_power_on(dsi->phy);
|
|
|
-
|
|
|
- ret = clk_prepare_enable(dsi->engine_clk);
|
|
|
- if (ret < 0) {
|
|
|
- dev_err(dev, "Failed to enable engine clock: %d\n", ret);
|
|
|
- goto err_phy_power_off;
|
|
|
- }
|
|
|
-
|
|
|
- ret = clk_prepare_enable(dsi->digital_clk);
|
|
|
- if (ret < 0) {
|
|
|
- dev_err(dev, "Failed to enable digital clock: %d\n", ret);
|
|
|
- goto err_disable_engine_clk;
|
|
|
- }
|
|
|
-
|
|
|
- mtk_dsi_enable(dsi);
|
|
|
- mtk_dsi_reset(dsi);
|
|
|
- dsi_phy_timconfig(dsi);
|
|
|
-
|
|
|
- return 0;
|
|
|
-
|
|
|
-err_disable_engine_clk:
|
|
|
- clk_disable_unprepare(dsi->engine_clk);
|
|
|
-err_phy_power_off:
|
|
|
- phy_power_off(dsi->phy);
|
|
|
-err_refcount:
|
|
|
- dsi->refcount--;
|
|
|
- return ret;
|
|
|
-}
|
|
|
-
|
|
|
-static void dsi_clk_ulp_mode_enter(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_clk_ulp_mode_enter(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static void dsi_clk_ulp_mode_leave(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_clk_ulp_mode_leave(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_ULPM_EN, 0);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, LC_WAKEUP_EN);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_WAKEUP_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static void dsi_lane0_ulp_mode_enter(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_lane0_ulp_mode_enter(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_HS_TX_EN, 0);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static void dsi_lane0_ulp_mode_leave(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_lane0_ulp_mode_leave(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_ULPM_EN, 0);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, LD0_WAKEUP_EN);
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LD0CON, LD0_WAKEUP_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static bool dsi_clk_hs_state(struct mtk_dsi *dsi)
|
|
|
+static bool mtk_dsi_clk_hs_state(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
u32 tmp_reg1;
|
|
|
|
|
|
@@ -315,30 +277,37 @@ static bool dsi_clk_hs_state(struct mtk_dsi *dsi)
|
|
|
return ((tmp_reg1 & LC_HS_TX_EN) == 1) ? true : false;
|
|
|
}
|
|
|
|
|
|
-static void dsi_clk_hs_mode(struct mtk_dsi *dsi, bool enter)
|
|
|
+static void mtk_dsi_clk_hs_mode(struct mtk_dsi *dsi, bool enter)
|
|
|
{
|
|
|
- if (enter && !dsi_clk_hs_state(dsi))
|
|
|
+ if (enter && !mtk_dsi_clk_hs_state(dsi))
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, LC_HS_TX_EN);
|
|
|
- else if (!enter && dsi_clk_hs_state(dsi))
|
|
|
+ else if (!enter && mtk_dsi_clk_hs_state(dsi))
|
|
|
mtk_dsi_mask(dsi, DSI_PHY_LCCON, LC_HS_TX_EN, 0);
|
|
|
}
|
|
|
|
|
|
-static void dsi_set_mode(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_set_mode(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
u32 vid_mode = CMD_MODE;
|
|
|
|
|
|
if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
|
|
|
- vid_mode = SYNC_PULSE_MODE;
|
|
|
-
|
|
|
- if ((dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) &&
|
|
|
- !(dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE))
|
|
|
+ if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_BURST)
|
|
|
vid_mode = BURST_MODE;
|
|
|
+ else if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE)
|
|
|
+ vid_mode = SYNC_PULSE_MODE;
|
|
|
+ else
|
|
|
+ vid_mode = SYNC_EVENT_MODE;
|
|
|
}
|
|
|
|
|
|
writel(vid_mode, dsi->regs + DSI_MODE_CTRL);
|
|
|
}
|
|
|
|
|
|
-static void dsi_ps_control_vact(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_set_vm_cmd(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ mtk_dsi_mask(dsi, DSI_VM_CMD_CON, VM_CMD_EN, VM_CMD_EN);
|
|
|
+ mtk_dsi_mask(dsi, DSI_VM_CMD_CON, TS_VFP_EN, TS_VFP_EN);
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_ps_control_vact(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
struct videomode *vm = &dsi->vm;
|
|
|
u32 dsi_buf_bpp, ps_wc;
|
|
|
@@ -372,7 +341,7 @@ static void dsi_ps_control_vact(struct mtk_dsi *dsi)
|
|
|
writel(ps_wc, dsi->regs + DSI_HSTX_CKL_WC);
|
|
|
}
|
|
|
|
|
|
-static void dsi_rxtx_control(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_rxtx_control(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
u32 tmp_reg;
|
|
|
|
|
|
@@ -394,12 +363,15 @@ static void dsi_rxtx_control(struct mtk_dsi *dsi)
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
+ tmp_reg |= (dsi->mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) << 6;
|
|
|
+ tmp_reg |= (dsi->mode_flags & MIPI_DSI_MODE_EOT_PACKET) >> 3;
|
|
|
+
|
|
|
writel(tmp_reg, dsi->regs + DSI_TXRX_CTRL);
|
|
|
}
|
|
|
|
|
|
-static void dsi_ps_control(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_ps_control(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
- unsigned int dsi_tmp_buf_bpp;
|
|
|
+ u32 dsi_tmp_buf_bpp;
|
|
|
u32 tmp_reg;
|
|
|
|
|
|
switch (dsi->format) {
|
|
|
@@ -429,12 +401,12 @@ static void dsi_ps_control(struct mtk_dsi *dsi)
|
|
|
writel(tmp_reg, dsi->regs + DSI_PSCTRL);
|
|
|
}
|
|
|
|
|
|
-static void dsi_config_vdo_timing(struct mtk_dsi *dsi)
|
|
|
+static void mtk_dsi_config_vdo_timing(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
- unsigned int horizontal_sync_active_byte;
|
|
|
- unsigned int horizontal_backporch_byte;
|
|
|
- unsigned int horizontal_frontporch_byte;
|
|
|
- unsigned int dsi_tmp_buf_bpp;
|
|
|
+ u32 horizontal_sync_active_byte;
|
|
|
+ u32 horizontal_backporch_byte;
|
|
|
+ u32 horizontal_frontporch_byte;
|
|
|
+ u32 dsi_tmp_buf_bpp;
|
|
|
|
|
|
struct videomode *vm = &dsi->vm;
|
|
|
|
|
|
@@ -463,7 +435,7 @@ static void dsi_config_vdo_timing(struct mtk_dsi *dsi)
|
|
|
writel(horizontal_backporch_byte, dsi->regs + DSI_HBP_WC);
|
|
|
writel(horizontal_frontporch_byte, dsi->regs + DSI_HFP_WC);
|
|
|
|
|
|
- dsi_ps_control(dsi);
|
|
|
+ mtk_dsi_ps_control(dsi);
|
|
|
}
|
|
|
|
|
|
static void mtk_dsi_start(struct mtk_dsi *dsi)
|
|
|
@@ -472,6 +444,184 @@ static void mtk_dsi_start(struct mtk_dsi *dsi)
|
|
|
writel(1, dsi->regs + DSI_START);
|
|
|
}
|
|
|
|
|
|
+static void mtk_dsi_stop(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ writel(0, dsi->regs + DSI_START);
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_set_cmd_mode(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ writel(CMD_MODE, dsi->regs + DSI_MODE_CTRL);
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_set_interrupt_enable(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ u32 inten = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
|
|
|
+
|
|
|
+ writel(inten, dsi->regs + DSI_INTEN);
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_irq_data_set(struct mtk_dsi *dsi, u32 irq_bit)
|
|
|
+{
|
|
|
+ dsi->irq_data |= irq_bit;
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_irq_data_clear(struct mtk_dsi *dsi, u32 irq_bit)
|
|
|
+{
|
|
|
+ dsi->irq_data &= ~irq_bit;
|
|
|
+}
|
|
|
+
|
|
|
+static s32 mtk_dsi_wait_for_irq_done(struct mtk_dsi *dsi, u32 irq_flag,
|
|
|
+ unsigned int timeout)
|
|
|
+{
|
|
|
+ s32 ret = 0;
|
|
|
+ unsigned long jiffies = msecs_to_jiffies(timeout);
|
|
|
+
|
|
|
+ ret = wait_event_interruptible_timeout(dsi->irq_wait_queue,
|
|
|
+ dsi->irq_data & irq_flag,
|
|
|
+ jiffies);
|
|
|
+ if (ret == 0) {
|
|
|
+ DRM_WARN("Wait DSI IRQ(0x%08x) Timeout\n", irq_flag);
|
|
|
+
|
|
|
+ mtk_dsi_enable(dsi);
|
|
|
+ mtk_dsi_reset_engine(dsi);
|
|
|
+ }
|
|
|
+
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
+static irqreturn_t mtk_dsi_irq(int irq, void *dev_id)
|
|
|
+{
|
|
|
+ struct mtk_dsi *dsi = dev_id;
|
|
|
+ u32 status, tmp;
|
|
|
+ u32 flag = LPRX_RD_RDY_INT_FLAG | CMD_DONE_INT_FLAG | VM_DONE_INT_FLAG;
|
|
|
+
|
|
|
+ status = readl(dsi->regs + DSI_INTSTA) & flag;
|
|
|
+
|
|
|
+ if (status) {
|
|
|
+ do {
|
|
|
+ mtk_dsi_mask(dsi, DSI_RACK, RACK, RACK);
|
|
|
+ tmp = readl(dsi->regs + DSI_INTSTA);
|
|
|
+ } while (tmp & DSI_BUSY);
|
|
|
+
|
|
|
+ mtk_dsi_mask(dsi, DSI_INTSTA, status, 0);
|
|
|
+ mtk_dsi_irq_data_set(dsi, status);
|
|
|
+ wake_up_interruptible(&dsi->irq_wait_queue);
|
|
|
+ }
|
|
|
+
|
|
|
+ return IRQ_HANDLED;
|
|
|
+}
|
|
|
+
|
|
|
+static s32 mtk_dsi_switch_to_cmd_mode(struct mtk_dsi *dsi, u8 irq_flag, u32 t)
|
|
|
+{
|
|
|
+ mtk_dsi_irq_data_clear(dsi, irq_flag);
|
|
|
+ mtk_dsi_set_cmd_mode(dsi);
|
|
|
+
|
|
|
+ if (!mtk_dsi_wait_for_irq_done(dsi, irq_flag, t)) {
|
|
|
+ DRM_ERROR("failed to switch cmd mode\n");
|
|
|
+ return -ETIME;
|
|
|
+ } else {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static int mtk_dsi_poweron(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ struct device *dev = dsi->dev;
|
|
|
+ int ret;
|
|
|
+ u64 pixel_clock, total_bits;
|
|
|
+ u32 htotal, htotal_bits, bit_per_pixel, overhead_cycles, overhead_bits;
|
|
|
+
|
|
|
+ if (++dsi->refcount != 1)
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ switch (dsi->format) {
|
|
|
+ case MIPI_DSI_FMT_RGB565:
|
|
|
+ bit_per_pixel = 16;
|
|
|
+ break;
|
|
|
+ case MIPI_DSI_FMT_RGB666_PACKED:
|
|
|
+ bit_per_pixel = 18;
|
|
|
+ break;
|
|
|
+ case MIPI_DSI_FMT_RGB666:
|
|
|
+ case MIPI_DSI_FMT_RGB888:
|
|
|
+ default:
|
|
|
+ bit_per_pixel = 24;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * vm.pixelclock is in kHz, pixel_clock unit is Hz, so multiply by 1000
|
|
|
+ * htotal_time = htotal * byte_per_pixel / num_lanes
|
|
|
+ * overhead_time = lpx + hs_prepare + hs_zero + hs_trail + hs_exit
|
|
|
+ * mipi_ratio = (htotal_time + overhead_time) / htotal_time
|
|
|
+ * data_rate = pixel_clock * bit_per_pixel * mipi_ratio / num_lanes;
|
|
|
+ */
|
|
|
+ pixel_clock = dsi->vm.pixelclock * 1000;
|
|
|
+ htotal = dsi->vm.hactive + dsi->vm.hback_porch + dsi->vm.hfront_porch +
|
|
|
+ dsi->vm.hsync_len;
|
|
|
+ htotal_bits = htotal * bit_per_pixel;
|
|
|
+
|
|
|
+ overhead_cycles = T_LPX + T_HS_PREP + T_HS_ZERO + T_HS_TRAIL +
|
|
|
+ T_HS_EXIT;
|
|
|
+ overhead_bits = overhead_cycles * dsi->lanes * 8;
|
|
|
+ total_bits = htotal_bits + overhead_bits;
|
|
|
+
|
|
|
+ dsi->data_rate = DIV_ROUND_UP_ULL(pixel_clock * total_bits,
|
|
|
+ htotal * dsi->lanes);
|
|
|
+
|
|
|
+ ret = clk_set_rate(dsi->hs_clk, dsi->data_rate);
|
|
|
+ if (ret < 0) {
|
|
|
+ dev_err(dev, "Failed to set data rate: %d\n", ret);
|
|
|
+ goto err_refcount;
|
|
|
+ }
|
|
|
+
|
|
|
+ phy_power_on(dsi->phy);
|
|
|
+
|
|
|
+ ret = clk_prepare_enable(dsi->engine_clk);
|
|
|
+ if (ret < 0) {
|
|
|
+ dev_err(dev, "Failed to enable engine clock: %d\n", ret);
|
|
|
+ goto err_phy_power_off;
|
|
|
+ }
|
|
|
+
|
|
|
+ ret = clk_prepare_enable(dsi->digital_clk);
|
|
|
+ if (ret < 0) {
|
|
|
+ dev_err(dev, "Failed to enable digital clock: %d\n", ret);
|
|
|
+ goto err_disable_engine_clk;
|
|
|
+ }
|
|
|
+
|
|
|
+ mtk_dsi_enable(dsi);
|
|
|
+ mtk_dsi_reset_engine(dsi);
|
|
|
+ mtk_dsi_phy_timconfig(dsi);
|
|
|
+
|
|
|
+ mtk_dsi_rxtx_control(dsi);
|
|
|
+ mtk_dsi_ps_control_vact(dsi);
|
|
|
+ mtk_dsi_set_vm_cmd(dsi);
|
|
|
+ mtk_dsi_config_vdo_timing(dsi);
|
|
|
+ mtk_dsi_set_interrupt_enable(dsi);
|
|
|
+
|
|
|
+ mtk_dsi_clk_ulp_mode_leave(dsi);
|
|
|
+ mtk_dsi_lane0_ulp_mode_leave(dsi);
|
|
|
+ mtk_dsi_clk_hs_mode(dsi, 0);
|
|
|
+
|
|
|
+ if (dsi->panel) {
|
|
|
+ if (drm_panel_prepare(dsi->panel)) {
|
|
|
+ DRM_ERROR("failed to prepare the panel\n");
|
|
|
+ goto err_disable_digital_clk;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+err_disable_digital_clk:
|
|
|
+ clk_disable_unprepare(dsi->digital_clk);
|
|
|
+err_disable_engine_clk:
|
|
|
+ clk_disable_unprepare(dsi->engine_clk);
|
|
|
+err_phy_power_off:
|
|
|
+ phy_power_off(dsi->phy);
|
|
|
+err_refcount:
|
|
|
+ dsi->refcount--;
|
|
|
+ return ret;
|
|
|
+}
|
|
|
+
|
|
|
static void mtk_dsi_poweroff(struct mtk_dsi *dsi)
|
|
|
{
|
|
|
if (WARN_ON(dsi->refcount == 0))
|
|
|
@@ -480,8 +630,18 @@ static void mtk_dsi_poweroff(struct mtk_dsi *dsi)
|
|
|
if (--dsi->refcount != 0)
|
|
|
return;
|
|
|
|
|
|
- dsi_lane0_ulp_mode_enter(dsi);
|
|
|
- dsi_clk_ulp_mode_enter(dsi);
|
|
|
+ if (!mtk_dsi_switch_to_cmd_mode(dsi, VM_DONE_INT_FLAG, 500)) {
|
|
|
+ if (dsi->panel) {
|
|
|
+ if (drm_panel_unprepare(dsi->panel)) {
|
|
|
+ DRM_ERROR("failed to unprepare the panel\n");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ mtk_dsi_reset_engine(dsi);
|
|
|
+ mtk_dsi_lane0_ulp_mode_enter(dsi);
|
|
|
+ mtk_dsi_clk_ulp_mode_enter(dsi);
|
|
|
|
|
|
mtk_dsi_disable(dsi);
|
|
|
|
|
|
@@ -498,35 +658,30 @@ static void mtk_output_dsi_enable(struct mtk_dsi *dsi)
|
|
|
if (dsi->enabled)
|
|
|
return;
|
|
|
|
|
|
- if (dsi->panel) {
|
|
|
- if (drm_panel_prepare(dsi->panel)) {
|
|
|
- DRM_ERROR("failed to setup the panel\n");
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
ret = mtk_dsi_poweron(dsi);
|
|
|
if (ret < 0) {
|
|
|
DRM_ERROR("failed to power on dsi\n");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- dsi_rxtx_control(dsi);
|
|
|
-
|
|
|
- dsi_clk_ulp_mode_leave(dsi);
|
|
|
- dsi_lane0_ulp_mode_leave(dsi);
|
|
|
- dsi_clk_hs_mode(dsi, 0);
|
|
|
- dsi_set_mode(dsi);
|
|
|
-
|
|
|
- dsi_ps_control_vact(dsi);
|
|
|
- dsi_config_vdo_timing(dsi);
|
|
|
-
|
|
|
- dsi_set_mode(dsi);
|
|
|
- dsi_clk_hs_mode(dsi, 1);
|
|
|
+ mtk_dsi_set_mode(dsi);
|
|
|
+ mtk_dsi_clk_hs_mode(dsi, 1);
|
|
|
|
|
|
mtk_dsi_start(dsi);
|
|
|
|
|
|
+ if (dsi->panel) {
|
|
|
+ if (drm_panel_enable(dsi->panel)) {
|
|
|
+ DRM_ERROR("failed to enable the panel\n");
|
|
|
+ goto err_dsi_power_off;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
dsi->enabled = true;
|
|
|
+
|
|
|
+ return;
|
|
|
+err_dsi_power_off:
|
|
|
+ mtk_dsi_stop(dsi);
|
|
|
+ mtk_dsi_poweroff(dsi);
|
|
|
}
|
|
|
|
|
|
static void mtk_output_dsi_disable(struct mtk_dsi *dsi)
|
|
|
@@ -541,6 +696,7 @@ static void mtk_output_dsi_disable(struct mtk_dsi *dsi)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ mtk_dsi_stop(dsi);
|
|
|
mtk_dsi_poweroff(dsi);
|
|
|
|
|
|
dsi->enabled = false;
|
|
|
@@ -742,9 +898,149 @@ static int mtk_dsi_host_detach(struct mipi_dsi_host *host,
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static void mtk_dsi_wait_for_idle(struct mtk_dsi *dsi)
|
|
|
+{
|
|
|
+ u32 timeout_ms = 500000; /* total 1s ~ 2s timeout */
|
|
|
+
|
|
|
+ while (timeout_ms--) {
|
|
|
+ if (!(readl(dsi->regs + DSI_INTSTA) & DSI_BUSY))
|
|
|
+ break;
|
|
|
+
|
|
|
+ usleep_range(2, 4);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (timeout_ms == 0) {
|
|
|
+ DRM_WARN("polling dsi wait not busy timeout!\n");
|
|
|
+
|
|
|
+ mtk_dsi_enable(dsi);
|
|
|
+ mtk_dsi_reset_engine(dsi);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+static u32 mtk_dsi_recv_cnt(u8 type, u8 *read_data)
|
|
|
+{
|
|
|
+ switch (type) {
|
|
|
+ case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE:
|
|
|
+ case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE:
|
|
|
+ return 1;
|
|
|
+ case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE:
|
|
|
+ case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE:
|
|
|
+ return 2;
|
|
|
+ case MIPI_DSI_RX_GENERIC_LONG_READ_RESPONSE:
|
|
|
+ case MIPI_DSI_RX_DCS_LONG_READ_RESPONSE:
|
|
|
+ return read_data[1] + read_data[2] * 16;
|
|
|
+ case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT:
|
|
|
+ DRM_INFO("type is 0x02, try again\n");
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ DRM_INFO("type(0x%x) cannot be non-recognite\n", type);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void mtk_dsi_cmdq(struct mtk_dsi *dsi, const struct mipi_dsi_msg *msg)
|
|
|
+{
|
|
|
+ const char *tx_buf = msg->tx_buf;
|
|
|
+ u8 config, cmdq_size, cmdq_off, type = msg->type;
|
|
|
+ u32 reg_val, cmdq_mask, i;
|
|
|
+
|
|
|
+ if (MTK_DSI_HOST_IS_READ(type))
|
|
|
+ config = BTA;
|
|
|
+ else
|
|
|
+ config = (msg->tx_len > 2) ? LONG_PACKET : SHORT_PACKET;
|
|
|
+
|
|
|
+ if (msg->tx_len > 2) {
|
|
|
+ cmdq_size = 1 + (msg->tx_len + 3) / 4;
|
|
|
+ cmdq_off = 4;
|
|
|
+ cmdq_mask = CONFIG | DATA_ID | DATA_0 | DATA_1;
|
|
|
+ reg_val = (msg->tx_len << 16) | (type << 8) | config;
|
|
|
+ } else {
|
|
|
+ cmdq_size = 1;
|
|
|
+ cmdq_off = 2;
|
|
|
+ cmdq_mask = CONFIG | DATA_ID;
|
|
|
+ reg_val = (type << 8) | config;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < msg->tx_len; i++)
|
|
|
+ writeb(tx_buf[i], dsi->regs + DSI_CMDQ0 + cmdq_off + i);
|
|
|
+
|
|
|
+ mtk_dsi_mask(dsi, DSI_CMDQ0, cmdq_mask, reg_val);
|
|
|
+ mtk_dsi_mask(dsi, DSI_CMDQ_SIZE, CMDQ_SIZE, cmdq_size);
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t mtk_dsi_host_send_cmd(struct mtk_dsi *dsi,
|
|
|
+ const struct mipi_dsi_msg *msg, u8 flag)
|
|
|
+{
|
|
|
+ mtk_dsi_wait_for_idle(dsi);
|
|
|
+ mtk_dsi_irq_data_clear(dsi, flag);
|
|
|
+ mtk_dsi_cmdq(dsi, msg);
|
|
|
+ mtk_dsi_start(dsi);
|
|
|
+
|
|
|
+ if (!mtk_dsi_wait_for_irq_done(dsi, flag, 2000))
|
|
|
+ return -ETIME;
|
|
|
+ else
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static ssize_t mtk_dsi_host_transfer(struct mipi_dsi_host *host,
|
|
|
+ const struct mipi_dsi_msg *msg)
|
|
|
+{
|
|
|
+ struct mtk_dsi *dsi = host_to_dsi(host);
|
|
|
+ u32 recv_cnt, i;
|
|
|
+ u8 read_data[16];
|
|
|
+ void *src_addr;
|
|
|
+ u8 irq_flag = CMD_DONE_INT_FLAG;
|
|
|
+
|
|
|
+ if (readl(dsi->regs + DSI_MODE_CTRL) & MODE) {
|
|
|
+ DRM_ERROR("dsi engine is not command mode\n");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (MTK_DSI_HOST_IS_READ(msg->type))
|
|
|
+ irq_flag |= LPRX_RD_RDY_INT_FLAG;
|
|
|
+
|
|
|
+ if (mtk_dsi_host_send_cmd(dsi, msg, irq_flag) < 0)
|
|
|
+ return -ETIME;
|
|
|
+
|
|
|
+ if (!MTK_DSI_HOST_IS_READ(msg->type))
|
|
|
+ return 0;
|
|
|
+
|
|
|
+ if (!msg->rx_buf) {
|
|
|
+ DRM_ERROR("dsi receive buffer size may be NULL\n");
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ for (i = 0; i < 16; i++)
|
|
|
+ *(read_data + i) = readb(dsi->regs + DSI_RX_DATA0 + i);
|
|
|
+
|
|
|
+ recv_cnt = mtk_dsi_recv_cnt(read_data[0], read_data);
|
|
|
+
|
|
|
+ if (recv_cnt > 2)
|
|
|
+ src_addr = &read_data[4];
|
|
|
+ else
|
|
|
+ src_addr = &read_data[1];
|
|
|
+
|
|
|
+ if (recv_cnt > 10)
|
|
|
+ recv_cnt = 10;
|
|
|
+
|
|
|
+ if (recv_cnt > msg->rx_len)
|
|
|
+ recv_cnt = msg->rx_len;
|
|
|
+
|
|
|
+ if (recv_cnt)
|
|
|
+ memcpy(msg->rx_buf, src_addr, recv_cnt);
|
|
|
+
|
|
|
+ DRM_INFO("dsi get %d byte data from the panel address(0x%x)\n",
|
|
|
+ recv_cnt, *((u8 *)(msg->tx_buf)));
|
|
|
+
|
|
|
+ return recv_cnt;
|
|
|
+}
|
|
|
+
|
|
|
static const struct mipi_dsi_host_ops mtk_dsi_ops = {
|
|
|
.attach = mtk_dsi_host_attach,
|
|
|
.detach = mtk_dsi_host_detach,
|
|
|
+ .transfer = mtk_dsi_host_transfer,
|
|
|
};
|
|
|
|
|
|
static int mtk_dsi_bind(struct device *dev, struct device *master, void *data)
|
|
|
@@ -803,6 +1099,7 @@ static int mtk_dsi_probe(struct platform_device *pdev)
|
|
|
struct device *dev = &pdev->dev;
|
|
|
struct device_node *remote_node, *endpoint;
|
|
|
struct resource *regs;
|
|
|
+ int irq_num;
|
|
|
int comp_id;
|
|
|
int ret;
|
|
|
|
|
|
@@ -879,6 +1176,22 @@ static int mtk_dsi_probe(struct platform_device *pdev)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+ irq_num = platform_get_irq(pdev, 0);
|
|
|
+ if (irq_num < 0) {
|
|
|
+ dev_err(&pdev->dev, "failed to request dsi irq resource\n");
|
|
|
+ return -EPROBE_DEFER;
|
|
|
+ }
|
|
|
+
|
|
|
+ irq_set_status_flags(irq_num, IRQ_TYPE_LEVEL_LOW);
|
|
|
+ ret = devm_request_irq(&pdev->dev, irq_num, mtk_dsi_irq,
|
|
|
+ IRQF_TRIGGER_LOW, dev_name(&pdev->dev), dsi);
|
|
|
+ if (ret) {
|
|
|
+ dev_err(&pdev->dev, "failed to request mediatek dsi irq\n");
|
|
|
+ return -EPROBE_DEFER;
|
|
|
+ }
|
|
|
+
|
|
|
+ init_waitqueue_head(&dsi->irq_wait_queue);
|
|
|
+
|
|
|
platform_set_drvdata(pdev, dsi);
|
|
|
|
|
|
return component_add(&pdev->dev, &mtk_dsi_component_ops);
|
|
|
@@ -895,6 +1208,7 @@ static int mtk_dsi_remove(struct platform_device *pdev)
|
|
|
}
|
|
|
|
|
|
static const struct of_device_id mtk_dsi_of_match[] = {
|
|
|
+ { .compatible = "mediatek,mt2701-dsi" },
|
|
|
{ .compatible = "mediatek,mt8173-dsi" },
|
|
|
{ },
|
|
|
};
|