rk312x mipi:improve CodingStype of mipi driver code
[firefly-linux-kernel-4.4.55.git] / drivers / video / rockchip / transmitter / rk32_mipi_dsi.h
index b2c223d442c4713c0447dbfcbd1ca25d881ac758..923cf84c6a12ae80c71738e46dc5d5058ab1c1f5 100755 (executable)
@@ -10,8 +10,8 @@ drivers/video/rockchip/transmitter/rk32_mipi_dsi.h
 #define RK_GRF_VIRT                    RKIO_GRF_PHYS
 #define RK3288_CRU_PHYS                        RKIO_CRU_PHYS
 
-#define RK3288_GRF_SOC_CON6             GRF_SOC_CON6
-#define RK3288_GRF_SOC_CON14            GRF_SOC_CON14
+#define RK3288_GRF_SOC_CON6            GRF_SOC_CON6
+#define RK3288_GRF_SOC_CON14           GRF_SOC_CON14
 #else
 #include <linux/rockchip/grf.h>
 #endif
@@ -20,41 +20,41 @@ drivers/video/rockchip/transmitter/rk32_mipi_dsi.h
 
 #define MIPI_DSI_HOST_OFFSET   0x1000
 
-//function bits definition    register addr | bits | offest
+/* function bits definition    register addr | bits | offest */
 #define REG_ADDR(a)                    ((a) << 16)
 #define REG_BITS(a)                    ((a) << 8)
 #define BITS_OFFSET(a)         (a)
 #define DSI_HOST_BITS(addr, bits, bit_offset)  (REG_ADDR((addr)+MIPI_DSI_HOST_OFFSET) \
-               | REG_BITS(bits) | BITS_OFFSET(bit_offset))  
+               | REG_BITS(bits) | BITS_OFFSET(bit_offset))
 #define DSI_DPHY_BITS(addr, bits, bit_offset)  (REG_ADDR((addr)+MIPI_DSI_PHY_OFFSET) \
-               | REG_BITS(bits) | BITS_OFFSET(bit_offset))             
+               | REG_BITS(bits) | BITS_OFFSET(bit_offset))
 
-//DWC_DSI_VERSION_0x3133302A
+/* DWC_DSI_VERSION_0x3133302A */
 #define VERSION                                        DSI_HOST_BITS(0x000, 32, 0)
 #define shutdownz                                      DSI_HOST_BITS(0x004, 1, 0)
 #define TO_CLK_DIVISION                        DSI_HOST_BITS(0x008, 8, 8)
 #define TX_ESC_CLK_DIVISION            DSI_HOST_BITS(0x008, 8, 0)
 #define dpi_vcid                                       DSI_HOST_BITS(0x00c, 2, 0)
 #define en18_loosely                           DSI_HOST_BITS(0x010, 1, 8)
-#define dpi_color_coding                       DSI_HOST_BITS(0x010, 4, 0)        //need modify in code
+#define dpi_color_coding                       DSI_HOST_BITS(0x010, 4, 0)      /* need modify in code */
 #define colorm_active_low                      DSI_HOST_BITS(0x014, 1, 4)
 #define shutd_active_low                       DSI_HOST_BITS(0x014, 1, 3)
 #define hsync_active_low                       DSI_HOST_BITS(0x014, 1, 2)
 #define vsync_active_low                       DSI_HOST_BITS(0x014, 1, 1)
 #define dataen_active_low                      DSI_HOST_BITS(0x014, 1, 0)
-#define outvact_lpcmd_time             DSI_HOST_BITS(0x018, 8, 16)   //attence
+#define outvact_lpcmd_time             DSI_HOST_BITS(0x018, 8, 16)     /* attence */
 #define invact_lpcmd_time                      DSI_HOST_BITS(0x018, 8, 0)
-//#define dbi_vcid                                     DSI_HOST_BITS(0x01c, 2, 0)
+/* #define dbi_vcid                                    DSI_HOST_BITS(0x01c, 2, 0) */
 #define crc_rx_en                                      DSI_HOST_BITS(0x02c, 1, 4)
 #define ecc_rx_en                                      DSI_HOST_BITS(0x02c, 1, 3)
 #define bta_en                                                 DSI_HOST_BITS(0x02c, 1, 2)
 #define eotp_rx_en                                     DSI_HOST_BITS(0x02c, 1, 1)
 #define eotp_tx_en                                     DSI_HOST_BITS(0x02c, 1, 0)
-#define gen_vid_rx                                     DSI_HOST_BITS(0x030, 2, 0) 
+#define gen_vid_rx                                     DSI_HOST_BITS(0x030, 2, 0)
 #define cmd_video_mode                                 DSI_HOST_BITS(0x034, 1, 0)
-#define vpg_orientation             DSI_HOST_BITS(0x038, 1, 24) 
-#define vpg_mode                    DSI_HOST_BITS(0x038, 1, 20) 
-#define vpg_en                      DSI_HOST_BITS(0x038, 1, 16) 
+#define vpg_orientation             DSI_HOST_BITS(0x038, 1, 24)
+#define vpg_mode                    DSI_HOST_BITS(0x038, 1, 20)
+#define vpg_en                      DSI_HOST_BITS(0x038, 1, 16)
 #define lp_cmd_en                                      DSI_HOST_BITS(0x038, 1, 15)
 #define frame_bta_ack_en                       DSI_HOST_BITS(0x038, 1, 14)
 #define lp_hfp_en                                      DSI_HOST_BITS(0x038, 1, 13)
@@ -88,92 +88,95 @@ drivers/video/rockchip/transmitter/rk32_mipi_dsi.h
 #define gen_sw_0p_tx                           DSI_HOST_BITS(0x068, 1, 8)
 #define ack_rqst_en                            DSI_HOST_BITS(0x068, 1, 1)
 #define tear_fx_en                                     DSI_HOST_BITS(0x068, 1, 0)
-#define GEN_HDR                                                DSI_HOST_BITS(0x06c, 32, 0)    
-#define GEN_PLD_DATA                           DSI_HOST_BITS(0x070, 32, 0)       //need modify
+#define GEN_HDR                                                DSI_HOST_BITS(0x06c, 32, 0)
+#define GEN_PLD_DATA                           DSI_HOST_BITS(0x070, 32, 0)
 #define gen_rd_cmd_busy                        DSI_HOST_BITS(0x074, 1, 6)
 #define gen_pld_r_full                                 DSI_HOST_BITS(0x074, 1, 5)
 #define gen_pld_r_empty                        DSI_HOST_BITS(0x074, 1, 4)
-#define gen_pld_w_full                                 DSI_HOST_BITS(0x074, 1, 3)     //800byte    write GEN_PLD_DATA
+#define gen_pld_w_full                                 DSI_HOST_BITS(0x074, 1, 3)      /* 800byte    write GEN_PLD_DATA */
 #define gen_pld_w_empty                                DSI_HOST_BITS(0x074, 1, 2)
-#define gen_cmd_full                           DSI_HOST_BITS(0x074, 1, 1)     //20   write GEN_HDR
+#define gen_cmd_full                           DSI_HOST_BITS(0x074, 1, 1)      /* 20   write GEN_HDR */
 #define gen_cmd_empty                          DSI_HOST_BITS(0x074, 1, 0)
-#define hstx_to_cnt                            DSI_HOST_BITS(0x078, 16, 16)   //need modify
+#define hstx_to_cnt                            DSI_HOST_BITS(0x078, 16, 16)
 #define lprx_to_cnt                            DSI_HOST_BITS(0x078, 16, 0)
-#define hs_rd_to_cnt                           DSI_HOST_BITS(0x07c, 16, 0)     //new(read)
-#define lp_rd_to_cnt                           DSI_HOST_BITS(0x080, 16, 0)             //new(read)
-#define presp_to_mode                          DSI_HOST_BITS(0x084, 1, 24)             //new
-#define hs_wr_to_cnt                           DSI_HOST_BITS(0x084, 16, 0)             //new
-#define lp_wr_to_cnt                           DSI_HOST_BITS(0x088, 16, 0)             //new
-#define bta_to_cnt                                     DSI_HOST_BITS(0x08c, 16, 0)             //new
-//#define send_3d_cfg                          DSI_HOST_BITS(0x090, 1, 16)             //new
-//#define right_first                          DSI_HOST_BITS(0x090, 1, 5)              //new
-//#define second_vsync                                 DSI_HOST_BITS(0x090, 1, 4)              //new
-//#define format_3d                                    DSI_HOST_BITS(0x090, 2, 2)              //new
-//#define mode_3d                                              DSI_HOST_BITS(0x090, 2, 0)              //new
-#define auto_clklane_ctrl                      DSI_HOST_BITS(0x094, 1, 1)              //new
+#define hs_rd_to_cnt                           DSI_HOST_BITS(0x07c, 16, 0)
+#define lp_rd_to_cnt                           DSI_HOST_BITS(0x080, 16, 0)
+#define presp_to_mode                          DSI_HOST_BITS(0x084, 1, 24)
+#define hs_wr_to_cnt                           DSI_HOST_BITS(0x084, 16, 0)
+#define lp_wr_to_cnt                           DSI_HOST_BITS(0x088, 16, 0)
+#define bta_to_cnt                                     DSI_HOST_BITS(0x08c, 16, 0)
+/*
+#define send_3d_cfg                            DSI_HOST_BITS(0x090, 1, 16)
+#define right_first                            DSI_HOST_BITS(0x090, 1, 5)
+#define second_vsync                           DSI_HOST_BITS(0x090, 1, 4)
+#define format_3d                                      DSI_HOST_BITS(0x090, 2, 2)
+#define mode_3d                                                DSI_HOST_BITS(0x090, 2, 0)
+*/
+#define auto_clklane_ctrl                      DSI_HOST_BITS(0x094, 1, 1)
 #define phy_txrequestclkhs                     DSI_HOST_BITS(0x094, 1, 0)
-#define phy_hs2lp_time_clk_lane     DSI_HOST_BITS(0x098, 10, 16) 
-#define phy_hs2hs_time_clk_lane     DSI_HOST_BITS(0x098, 10, 0) 
+#define phy_hs2lp_time_clk_lane                        DSI_HOST_BITS(0x098, 10, 16)
+#define phy_hs2hs_time_clk_lane                        DSI_HOST_BITS(0x098, 10, 0)
 #define phy_hs2lp_time                                 DSI_HOST_BITS(0x09c, 8, 24)
 #define phy_lp2hs_time                                 DSI_HOST_BITS(0x09c, 8, 16)
 #define max_rd_time                            DSI_HOST_BITS(0x09c, 15, 0)
-#define phy_forcepll                           DSI_HOST_BITS(0x0a0, 1, 3)              //new Dependency: DSI_HOST_FPGA = 0. Otherwise, this bit is reserved.
+/* new Dependency: DSI_HOST_FPGA = 0. Otherwise, this bit is reserved. */
+#define phy_forcepll                           DSI_HOST_BITS(0x0a0, 1, 3)
 #define phy_enableclk                          DSI_HOST_BITS(0x0a0, 1, 2)
-#define phy_rstz                                       DSI_HOST_BITS(0x0a0, 1, 1) 
-#define phy_shutdownz                          DSI_HOST_BITS(0x0a0, 1, 0) 
+#define phy_rstz                               DSI_HOST_BITS(0x0a0, 1, 1)
+#define phy_shutdownz                          DSI_HOST_BITS(0x0a0, 1, 0)
 #define phy_stop_wait_time                     DSI_HOST_BITS(0x0a4, 8, 8)
-#define n_lanes                                        DSI_HOST_BITS(0x0a4, 2, 0)
+#define n_lanes                                        DSI_HOST_BITS(0x0a4, 2, 0)
 #define phy_txexitulpslan                      DSI_HOST_BITS(0x0a8, 1, 3)
 #define phy_txrequlpslan                       DSI_HOST_BITS(0x0a8, 1, 2)
 #define phy_txexitulpsclk                      DSI_HOST_BITS(0x0a8, 1, 1)
 #define phy_txrequlpsclk                       DSI_HOST_BITS(0x0a8, 1, 0)
 #define phy_tx_triggers                        DSI_HOST_BITS(0x0ac, 4, 0)
 
-#define phystopstateclklane            DSI_HOST_BITS(0x0b0, 1, 2)
-#define phylock                                        DSI_HOST_BITS(0x0b0, 1, 0)
-#define phy_testclk                            DSI_HOST_BITS(0x0b4, 1, 1)
-#define phy_testclr                            DSI_HOST_BITS(0x0b4, 1, 0)
-#define phy_testen                             DSI_HOST_BITS(0x0b8, 1, 16)
-#define phy_testdout                           DSI_HOST_BITS(0x0b8, 8, 8)
-#define phy_testdin                            DSI_HOST_BITS(0x0b8, 8, 0)
+#define phystopstateclklane                    DSI_HOST_BITS(0x0b0, 1, 2)
+#define phylock                                        DSI_HOST_BITS(0x0b0, 1, 0)
+#define phy_testclk                            DSI_HOST_BITS(0x0b4, 1, 1)
+#define phy_testclr                            DSI_HOST_BITS(0x0b4, 1, 0)
+#define phy_testen                             DSI_HOST_BITS(0x0b8, 1, 16)
+#define phy_testdout                           DSI_HOST_BITS(0x0b8, 8, 8)
+#define phy_testdin                            DSI_HOST_BITS(0x0b8, 8, 0)
 
 #define PHY_TEST_CTRL1                                 DSI_HOST_BITS(0x0b8, 17, 0)
-#define PHY_TEST_CTRL0              DSI_HOST_BITS(0x0b4, 2, 0)
+#define PHY_TEST_CTRL0                         DSI_HOST_BITS(0x0b4, 2, 0)
 
 #define INT_ST0                                        DSI_HOST_BITS(0x0bc, 21, 0)
 #define INT_ST1                                        DSI_HOST_BITS(0x0c0, 18, 0)
 #define INT_MKS0                                       DSI_HOST_BITS(0x0c4, 21, 0)
-#define INT_MKS1                                       DSI_HOST_BITS(0x0c8, 18, 0) 
-#define INT_FORCE0                                     DSI_HOST_BITS(0x0d8, 21, 0) 
-#define INT_FORCE1                                     DSI_HOST_BITS(0x0dc, 18, 0) 
+#define INT_MKS1                                       DSI_HOST_BITS(0x0c8, 18, 0)
+#define INT_FORCE0                                     DSI_HOST_BITS(0x0d8, 21, 0)
+#define INT_FORCE1                                     DSI_HOST_BITS(0x0dc, 18, 0)
 
-#define code_hs_rx_clock            0x34
-#define code_hs_rx_lane0            0x44
-#define code_hs_rx_lane1            0x54
-#define code_hs_rx_lane2            0x84
-#define code_hs_rx_lane3            0x94
+#define code_hs_rx_clock               0x34
+#define code_hs_rx_lane0               0x44
+#define code_hs_rx_lane1               0x54
+#define code_hs_rx_lane2               0x84
+#define code_hs_rx_lane3               0x94
 
-#define code_pll_input_div_rat      0x17
-#define code_pll_loop_div_rat       0x18 
-#define code_pll_input_loop_div_rat 0x19 
+#define code_pll_input_div_rat         0x17
+#define code_pll_loop_div_rat          0x18
+#define code_pll_input_loop_div_rat    0x19
 
-#define code_hstxdatalanerequsetstatetime   0x70
-#define code_hstxdatalanepreparestatetime   0x71
-#define code_hstxdatalanehszerostatetime    0x72
+#define code_hstxdatalanerequsetstatetime      0x70
+#define code_hstxdatalanepreparestatetime      0x71
+#define code_hstxdatalanehszerostatetime       0x72
 
-//rk312x MIPI DSI DPHY REGISTERS
+/* rk312x MIPI DSI DPHY REGISTERS */
 #define DPHY_REGISTER0                         DSI_DPHY_BITS(0x00, 32, 0)
 #define DPHY_REGISTER1                         DSI_DPHY_BITS(0x04, 32, 0)
 #define DPHY_REGISTER3                         DSI_DPHY_BITS(0x0c, 32, 0)
 #define DPHY_REGISTER4                         DSI_DPHY_BITS(0x10, 32, 0)
 #define DPHY_REGISTER20                                DSI_DPHY_BITS(0X80, 32, 0)
 
-#define lane_en_ck                                     DSI_DPHY_BITS(0x00, 1, 6)
-#define lane_en_3                                      DSI_DPHY_BITS(0x00, 1, 5)
-#define lane_en_2                                      DSI_DPHY_BITS(0x00, 1, 4)
-#define lane_en_1                                      DSI_DPHY_BITS(0x00, 1, 3)
-#define lane_en_0                                      DSI_DPHY_BITS(0x00, 1, 2)
-#define reg0_phy                                       DSI_DPHY_BITS(0x00, 8, 0)
+#define lane_en_ck                             DSI_DPHY_BITS(0x00, 1, 6)
+#define lane_en_3                              DSI_DPHY_BITS(0x00, 1, 5)
+#define lane_en_2                              DSI_DPHY_BITS(0x00, 1, 4)
+#define lane_en_1                              DSI_DPHY_BITS(0x00, 1, 3)
+#define lane_en_0                              DSI_DPHY_BITS(0x00, 1, 2)
+#define reg0_phy                               DSI_DPHY_BITS(0x00, 8, 0)
 
 #define reg_da_ppfc                            DSI_DPHY_BITS(0x04, 1, 4)
 #define reg_da_syncrst                                 DSI_DPHY_BITS(0x04, 1, 2)
@@ -186,11 +189,11 @@ drivers/video/rockchip/transmitter/rk32_mipi_dsi.h
 #define reg8_phy                               DSI_DPHY_BITS(0x20, 4, 0)
 
 #define reg_fbdiv_8                            DSI_DPHY_BITS(0x0c, 1, 5)
-#define reg_prediv                                     DSI_DPHY_BITS(0x0c, 5, 0)
-#define reg_fbdiv                                      DSI_DPHY_BITS(0x10, 8, 0)
+#define reg_prediv                             DSI_DPHY_BITS(0x0c, 5, 0)
+#define reg_fbdiv                              DSI_DPHY_BITS(0x10, 8, 0)
 #define reg9_phy                               DSI_DPHY_BITS(0x24, 8, 0)
 #define reg10_phy                              DSI_DPHY_BITS(0X40, 8, 0)
-#define reg10_4_6_phy                  DSI_DPHY_BITS(0X40, 3, 4)
+#define reg10_4_6_phy                          DSI_DPHY_BITS(0X40, 3, 4)
 #define regb_phy                               DSI_DPHY_BITS(0X2c, 4, 0)
 
 #define reg_dig_rstn                           DSI_DPHY_BITS(0X80, 1, 0)
@@ -203,72 +206,74 @@ drivers/video/rockchip/transmitter/rk32_mipi_dsi.h
 #define DPHY_LANE3_OFFSET                      REG_ADDR(0X0300)
 
 #define reg_ths_settle                         DSI_DPHY_BITS(0x0000, 4, 0)
-#define reg_hs_tlpx                                    DSI_DPHY_BITS(0x0014, 6, 0)
+#define reg_hs_tlpx                            DSI_DPHY_BITS(0x0014, 6, 0)
 #define reg_hs_ths_prepare                     DSI_DPHY_BITS(0x0018, 7, 0)
 #define reg_hs_the_zero                                DSI_DPHY_BITS(0x001c, 6, 0)
 #define reg_hs_ths_trail                       DSI_DPHY_BITS(0x0020, 7, 0)
 #define reg_hs_ths_exit                                DSI_DPHY_BITS(0x0024, 5, 0)
 #define reg_hs_tclk_post                       DSI_DPHY_BITS(0x0028, 4, 0)
-#define reserved                                       DSI_DPHY_BITS(0x002c, 1, 0)
+#define reserved                               DSI_DPHY_BITS(0x002c, 1, 0)
 #define reg_hs_twakup_h                                DSI_DPHY_BITS(0x0030, 2, 0)
 #define reg_hs_twakup_l                                DSI_DPHY_BITS(0x0034, 8, 0)
 #define reg_hs_tclk_pre                                DSI_DPHY_BITS(0x0038, 4, 0)
 #define reg_hs_tta_go                          DSI_DPHY_BITS(0x0040, 6, 0)
 #define reg_hs_tta_sure                                DSI_DPHY_BITS(0x0044, 6, 0)
 #define reg_hs_tta_wait                                DSI_DPHY_BITS(0x0048, 6, 0)
-//end of rk312x MIPI DSI DPHY REGISTERS
+/* end of rk312x MIPI DSI DPHY REGISTERS */
 
-//global operation timing parameter
+/* global operation timing parameter */
 struct gotp_m {
-       //time uint is ns
+       /* time uint is ns */
        u32 min;
        u32 value;
        u32 max;
 };
 
-//default time unit is ns 
-//Unit Interval, equal to the duration of any HS state on the Clock Lane
+/*
+ * default time unit is ns
+ * Unit Interval, equal to the duration of any HS state on the Clock Lane
+*/
 struct gotp {
-       u32 CLK_MISS;                           //min:no    max:60
-       u32 CLK_POST;                           //min:60 ns + 52*UI    max:no
-       u32 CLK_PRE;                            //min:8*UI    max:no
-       u32 CLK_PREPARE;                        //min:38    max:95
-       u32 CLK_SETTLE;                         //min:95    max:300
-       u32 CLK_TERM_EN;                //min:Time for Dn to reach VTERM-EN    max:38
-       u32 CLK_TRAIL;                          //min:60    max:no
-       u32 CLK_ZERO;                           //min:300 - CLK_PREPARE    max:no
-       u32 D_TERM_EN;                          //min:Time for Dn to reach VTERM-EN    max:35 ns + 4*UI
-       u32 EOT;                                //min:no    max:105 ns + n*12*UI
-       u32 HS_EXIT;                            //min:100    max:no
-       u32 HS_PREPARE;                         //min:40 ns + 4*UI     max:85 ns + 6*UI 
-       u32 HS_ZERO;                            //min:145 ns + 10*UI - HS_PREPARE    max:no
-       u32 HS_SETTLE;                          //min:85 ns + 6*UI     max:145 ns + 10*UI
-       u32 HS_SKIP;                            //min:40    max:55 ns + 4*UI
-       u32 HS_TRAIL;                           //min: max( n*8*UI, 60 ns + n*4*UI )    max:no
-       u32 NIT;                                //min:100us    max:no
-       u32 LPX;                                //min:50    max:no
-       u32 TA_GET;                             //min:5*TLPX    
-       u32 TA_GO;                              //min:4*TLPX            
-       u32 TA_SURE;                            //min:TLPX    max:2*TLPX
-       u32 WAKEUP;                             //min:1ms    max:no
+       u32 CLK_MISS;           /* min:no    max:60 */
+       u32 CLK_POST;           /* min:60 ns + 52*UI    max:no */
+       u32 CLK_PRE;            /* min:8*UI    max:no */
+       u32 CLK_PREPARE;        /* min:38    max:95 */
+       u32 CLK_SETTLE;         /* min:95    max:300 */
+       u32 CLK_TERM_EN;        /* min:Time for Dn to reach VTERM-EN    max:38 */
+       u32 CLK_TRAIL;          /* min:60    max:no */
+       u32 CLK_ZERO;           /* min:300 - CLK_PREPARE    max:no */
+       u32 D_TERM_EN;          /* min:Time for Dn to reach VTERM-EN    max:35 ns + 4*UI */
+       u32 EOT;                /* min:no    max:105 ns + n*12*UI */
+       u32 HS_EXIT;            /* min:100    max:no */
+       u32 HS_PREPARE;         /* min:40 ns + 4*UI     max:85 ns + 6*UI */
+       u32 HS_ZERO;            /* min:145 ns + 10*UI - HS_PREPARE    max:no */
+       u32 HS_SETTLE;          /* min:85 ns + 6*UI     max:145 ns + 10*UI */
+       u32 HS_SKIP;            /* min:40    max:55 ns + 4*UI */
+       u32 HS_TRAIL;           /* min: max( n*8*UI, 60 ns + n*4*UI )    max:no */
+       u32 NIT;                /* min:100us    max:no */
+       u32 LPX;                /* min:50    max:no */
+       u32 TA_GET;             /* min:5*TLPX */
+       u32 TA_GO;              /* min:4*TLPX */
+       u32 TA_SURE;            /* min:TLPX    max:2*TLPX */
+       u32 WAKEUP;             /* min:1ms    max:no */
 };
 
 struct dsi_phy {
        u32 UI;
-       u32 ref_clk;            //input_clk
-       u32 ddr_clk;            //data bit clk
-       u32 txbyte_clk;         //1/8 of ddr_clk
-       u32 sys_clk;            //
-       u32 pclk;                       //
+       u32 ref_clk;            /* input_clk */
+       u32 ddr_clk;            /* data bit clk */
+       u32 txbyte_clk;         /* 1/8 of ddr_clk */
+       u32 sys_clk;
+       u32 pclk;
        u32 txclkesc;
-       
-       u32 Tddr_clk;           //ps
-       u32 Ttxbyte_clk;        //ps
-       u32 Tsys_clk;           //ps
-       u32 Tpclk;              //ps
-       u32 Ttxclkesc;          //ps
 
-       struct clk      *refclk; 
+       u32 Tddr_clk;           /* ps */
+       u32 Ttxbyte_clk;        /* ps */
+       u32 Tsys_clk;           /* ps */
+       u32 Tpclk;              /* ps */
+       u32 Ttxclkesc;          /* ps */
+
+       struct clk      *refclk;
        unsigned long iobase;
        void __iomem *membase;
        u16 prediv;
@@ -298,8 +303,8 @@ struct dsi {
        struct mipi_dsi_ops ops;
        struct mipi_dsi_screen screen;
 #ifdef CONFIG_MIPI_DSI_LINUX
-       struct clk      *dsi_pclk;              // for mipi phy
-       struct clk      *dsi_host_pclk; // for mipi host
+       struct clk      *dsi_pclk; /* for mipi phy */
+       struct clk      *dsi_host_pclk; /* for mipi host */
        struct clk      *h2p_hclk;
        struct clk      *dsi_pd;
 #endif