Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Copyright (C) 2013 NVIDIA Corporation
0004  */
0005 
0006 #ifndef DRM_TEGRA_DSI_H
0007 #define DRM_TEGRA_DSI_H
0008 
0009 #define DSI_INCR_SYNCPT         0x00
0010 #define DSI_INCR_SYNCPT_CONTROL     0x01
0011 #define DSI_INCR_SYNCPT_ERROR       0x02
0012 #define DSI_CTXSW           0x08
0013 #define DSI_RD_DATA         0x09
0014 #define DSI_WR_DATA         0x0a
0015 #define DSI_POWER_CONTROL       0x0b
0016 #define DSI_POWER_CONTROL_ENABLE    (1 << 0)
0017 #define DSI_INT_ENABLE          0x0c
0018 #define DSI_INT_STATUS          0x0d
0019 #define DSI_INT_MASK            0x0e
0020 #define DSI_HOST_CONTROL        0x0f
0021 #define DSI_HOST_CONTROL_FIFO_RESET (1 << 21)
0022 #define DSI_HOST_CONTROL_CRC_RESET  (1 << 20)
0023 #define DSI_HOST_CONTROL_TX_TRIG_SOL    (0 << 12)
0024 #define DSI_HOST_CONTROL_TX_TRIG_FIFO   (1 << 12)
0025 #define DSI_HOST_CONTROL_TX_TRIG_HOST   (2 << 12)
0026 #define DSI_HOST_CONTROL_RAW        (1 << 6)
0027 #define DSI_HOST_CONTROL_HS     (1 << 5)
0028 #define DSI_HOST_CONTROL_FIFO_SEL   (1 << 4)
0029 #define DSI_HOST_CONTROL_IMM_BTA    (1 << 3)
0030 #define DSI_HOST_CONTROL_PKT_BTA    (1 << 2)
0031 #define DSI_HOST_CONTROL_CS     (1 << 1)
0032 #define DSI_HOST_CONTROL_ECC        (1 << 0)
0033 #define DSI_CONTROL         0x10
0034 #define DSI_CONTROL_HS_CLK_CTRL     (1 << 20)
0035 #define DSI_CONTROL_CHANNEL(c)      (((c) & 0x3) << 16)
0036 #define DSI_CONTROL_FORMAT(f)       (((f) & 0x3) << 12)
0037 #define DSI_CONTROL_TX_TRIG(x)      (((x) & 0x3) <<  8)
0038 #define DSI_CONTROL_LANES(n)        (((n) & 0x3) <<  4)
0039 #define DSI_CONTROL_DCS_ENABLE      (1 << 3)
0040 #define DSI_CONTROL_SOURCE(s)       (((s) & 0x1) <<  2)
0041 #define DSI_CONTROL_VIDEO_ENABLE    (1 << 1)
0042 #define DSI_CONTROL_HOST_ENABLE     (1 << 0)
0043 #define DSI_SOL_DELAY           0x11
0044 #define DSI_MAX_THRESHOLD       0x12
0045 #define DSI_TRIGGER         0x13
0046 #define DSI_TRIGGER_HOST        (1 << 1)
0047 #define DSI_TRIGGER_VIDEO       (1 << 0)
0048 #define DSI_TX_CRC          0x14
0049 #define DSI_STATUS          0x15
0050 #define DSI_STATUS_IDLE         (1 << 10)
0051 #define DSI_STATUS_UNDERFLOW        (1 <<  9)
0052 #define DSI_STATUS_OVERFLOW     (1 <<  8)
0053 #define DSI_INIT_SEQ_CONTROL        0x1a
0054 #define DSI_INIT_SEQ_DATA_0     0x1b
0055 #define DSI_INIT_SEQ_DATA_1     0x1c
0056 #define DSI_INIT_SEQ_DATA_2     0x1d
0057 #define DSI_INIT_SEQ_DATA_3     0x1e
0058 #define DSI_INIT_SEQ_DATA_4     0x1f
0059 #define DSI_INIT_SEQ_DATA_5     0x20
0060 #define DSI_INIT_SEQ_DATA_6     0x21
0061 #define DSI_INIT_SEQ_DATA_7     0x22
0062 #define DSI_PKT_SEQ_0_LO        0x23
0063 #define DSI_PKT_SEQ_0_HI        0x24
0064 #define DSI_PKT_SEQ_1_LO        0x25
0065 #define DSI_PKT_SEQ_1_HI        0x26
0066 #define DSI_PKT_SEQ_2_LO        0x27
0067 #define DSI_PKT_SEQ_2_HI        0x28
0068 #define DSI_PKT_SEQ_3_LO        0x29
0069 #define DSI_PKT_SEQ_3_HI        0x2a
0070 #define DSI_PKT_SEQ_4_LO        0x2b
0071 #define DSI_PKT_SEQ_4_HI        0x2c
0072 #define DSI_PKT_SEQ_5_LO        0x2d
0073 #define DSI_PKT_SEQ_5_HI        0x2e
0074 #define DSI_DCS_CMDS            0x33
0075 #define DSI_PKT_LEN_0_1         0x34
0076 #define DSI_PKT_LEN_2_3         0x35
0077 #define DSI_PKT_LEN_4_5         0x36
0078 #define DSI_PKT_LEN_6_7         0x37
0079 #define DSI_PHY_TIMING_0        0x3c
0080 #define DSI_PHY_TIMING_1        0x3d
0081 #define DSI_PHY_TIMING_2        0x3e
0082 #define DSI_BTA_TIMING          0x3f
0083 
0084 #define DSI_TIMING_FIELD(value, period, hwinc) \
0085     ((DIV_ROUND_CLOSEST(value, period) - (hwinc)) & 0xff)
0086 
0087 #define DSI_TIMEOUT_0           0x44
0088 #define DSI_TIMEOUT_LRX(x)      (((x) & 0xffff) << 16)
0089 #define DSI_TIMEOUT_HTX(x)      (((x) & 0xffff) <<  0)
0090 #define DSI_TIMEOUT_1           0x45
0091 #define DSI_TIMEOUT_PR(x)       (((x) & 0xffff) << 16)
0092 #define DSI_TIMEOUT_TA(x)       (((x) & 0xffff) <<  0)
0093 #define DSI_TO_TALLY            0x46
0094 #define DSI_TALLY_TA(x)         (((x) & 0xff) << 16)
0095 #define DSI_TALLY_LRX(x)        (((x) & 0xff) <<  8)
0096 #define DSI_TALLY_HTX(x)        (((x) & 0xff) <<  0)
0097 #define DSI_PAD_CONTROL_0       0x4b
0098 #define DSI_PAD_CONTROL_VS1_PDIO(x) (((x) & 0xf) <<  0)
0099 #define DSI_PAD_CONTROL_VS1_PDIO_CLK    (1 <<  8)
0100 #define DSI_PAD_CONTROL_VS1_PULLDN(x)   (((x) & 0xf) << 16)
0101 #define DSI_PAD_CONTROL_VS1_PULLDN_CLK  (1 << 24)
0102 #define DSI_PAD_CONTROL_CD      0x4c
0103 #define DSI_PAD_CD_STATUS       0x4d
0104 #define DSI_VIDEO_MODE_CONTROL      0x4e
0105 #define DSI_PAD_CONTROL_1       0x4f
0106 #define DSI_PAD_CONTROL_2       0x50
0107 #define DSI_PAD_OUT_CLK(x)      (((x) & 0x7) <<  0)
0108 #define DSI_PAD_LP_DN(x)        (((x) & 0x7) <<  4)
0109 #define DSI_PAD_LP_UP(x)        (((x) & 0x7) <<  8)
0110 #define DSI_PAD_SLEW_DN(x)      (((x) & 0x7) << 12)
0111 #define DSI_PAD_SLEW_UP(x)      (((x) & 0x7) << 16)
0112 #define DSI_PAD_CONTROL_3       0x51
0113 #define  DSI_PAD_PREEMP_PD_CLK(x)   (((x) & 0x3) << 12)
0114 #define  DSI_PAD_PREEMP_PU_CLK(x)   (((x) & 0x3) << 8)
0115 #define  DSI_PAD_PREEMP_PD(x)       (((x) & 0x3) << 4)
0116 #define  DSI_PAD_PREEMP_PU(x)       (((x) & 0x3) << 0)
0117 #define DSI_PAD_CONTROL_4       0x52
0118 #define DSI_GANGED_MODE_CONTROL     0x53
0119 #define DSI_GANGED_MODE_CONTROL_ENABLE  (1 << 0)
0120 #define DSI_GANGED_MODE_START       0x54
0121 #define DSI_GANGED_MODE_SIZE        0x55
0122 #define DSI_RAW_DATA_BYTE_COUNT     0x56
0123 #define DSI_ULTRA_LOW_POWER_CONTROL 0x57
0124 #define DSI_INIT_SEQ_DATA_8     0x58
0125 #define DSI_INIT_SEQ_DATA_9     0x59
0126 #define DSI_INIT_SEQ_DATA_10        0x5a
0127 #define DSI_INIT_SEQ_DATA_11        0x5b
0128 #define DSI_INIT_SEQ_DATA_12        0x5c
0129 #define DSI_INIT_SEQ_DATA_13        0x5d
0130 #define DSI_INIT_SEQ_DATA_14        0x5e
0131 #define DSI_INIT_SEQ_DATA_15        0x5f
0132 
0133 /*
0134  * pixel format as used in the DSI_CONTROL_FORMAT field
0135  */
0136 enum tegra_dsi_format {
0137     TEGRA_DSI_FORMAT_16P,
0138     TEGRA_DSI_FORMAT_18NP,
0139     TEGRA_DSI_FORMAT_18P,
0140     TEGRA_DSI_FORMAT_24P,
0141 };
0142 
0143 #endif