forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-02-19 890e1df1bec891d9203724541e81f8fbe5183388
kernel/drivers/gpu/drm/rcar-du/rcar_lvds_regs.h
....@@ -1,13 +1,10 @@
1
+/* SPDX-License-Identifier: GPL-2.0 */
12 /*
23 * rcar_lvds_regs.h -- R-Car LVDS Interface Registers Definitions
34 *
45 * Copyright (C) 2013-2015 Renesas Electronics Corporation
56 *
67 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7
- *
8
- * This program is free software; you can redistribute it and/or modify
9
- * it under the terms of the GNU General Public License version 2
10
- * as published by the Free Software Foundation.
118 */
129
1310 #ifndef __RCAR_LVDS_REGS_H__
....@@ -21,7 +18,7 @@
2118 #define LVDCR0_PLLON (1 << 4)
2219 #define LVDCR0_PWD (1 << 2) /* Gen3 only */
2320 #define LVDCR0_BEN (1 << 2) /* Gen2 only */
24
-#define LVDCR0_LVEN (1 << 1) /* Gen2 only */
21
+#define LVDCR0_LVEN (1 << 1)
2522 #define LVDCR0_LVRES (1 << 0)
2623
2724 #define LVDCR1 0x0004
....@@ -30,21 +27,36 @@
3027 #define LVDCR1_CLKSTBY (3 << 0)
3128
3229 #define LVDPLLCR 0x0008
30
+/* Gen2 & V3M */
3331 #define LVDPLLCR_CEEN (1 << 14)
3432 #define LVDPLLCR_FBEN (1 << 13)
3533 #define LVDPLLCR_COSEL (1 << 12)
36
-/* Gen2 */
3734 #define LVDPLLCR_PLLDLYCNT_150M (0x1bf << 0)
3835 #define LVDPLLCR_PLLDLYCNT_121M (0x22c << 0)
3936 #define LVDPLLCR_PLLDLYCNT_60M (0x77b << 0)
4037 #define LVDPLLCR_PLLDLYCNT_38M (0x69a << 0)
4138 #define LVDPLLCR_PLLDLYCNT_MASK (0x7ff << 0)
42
-/* Gen3 */
39
+/* Gen3 but V3M,D3 and E3 */
4340 #define LVDPLLCR_PLLDIVCNT_42M (0x014cb << 0)
4441 #define LVDPLLCR_PLLDIVCNT_85M (0x00a45 << 0)
4542 #define LVDPLLCR_PLLDIVCNT_128M (0x006c3 << 0)
4643 #define LVDPLLCR_PLLDIVCNT_148M (0x046c1 << 0)
4744 #define LVDPLLCR_PLLDIVCNT_MASK (0x7ffff << 0)
45
+/* D3 and E3 */
46
+#define LVDPLLCR_PLLON (1 << 22)
47
+#define LVDPLLCR_PLLSEL_PLL0 (0 << 20)
48
+#define LVDPLLCR_PLLSEL_LVX (1 << 20)
49
+#define LVDPLLCR_PLLSEL_PLL1 (2 << 20)
50
+#define LVDPLLCR_CKSEL_LVX (1 << 17)
51
+#define LVDPLLCR_CKSEL_EXTAL (3 << 17)
52
+#define LVDPLLCR_CKSEL_DU_DOTCLKIN(n) ((5 + (n) * 2) << 17)
53
+#define LVDPLLCR_OCKSEL (1 << 16)
54
+#define LVDPLLCR_STP_CLKOUTE (1 << 14)
55
+#define LVDPLLCR_OUTCLKSEL (1 << 12)
56
+#define LVDPLLCR_CLKOUT (1 << 11)
57
+#define LVDPLLCR_PLLE(n) ((n) << 10)
58
+#define LVDPLLCR_PLLN(n) ((n) << 3)
59
+#define LVDPLLCR_PLLM(n) ((n) << 0)
4860
4961 #define LVDCTRCR 0x000c
5062 #define LVDCTRCR_CTR3SEL_ZERO (0 << 12)
....@@ -74,4 +86,26 @@
7486 #define LVDCHCR_CHSEL_CH(n, c) ((((c) - (n)) & 3) << ((n) * 4))
7587 #define LVDCHCR_CHSEL_MASK(n) (3 << ((n) * 4))
7688
89
+/* All registers below are specific to D3 and E3 */
90
+#define LVDSTRIPE 0x0014
91
+#define LVDSTRIPE_ST_TRGSEL_DISP (0 << 2)
92
+#define LVDSTRIPE_ST_TRGSEL_HSYNC_R (1 << 2)
93
+#define LVDSTRIPE_ST_TRGSEL_HSYNC_F (2 << 2)
94
+#define LVDSTRIPE_ST_SWAP (1 << 1)
95
+#define LVDSTRIPE_ST_ON (1 << 0)
96
+
97
+#define LVDSCR 0x0018
98
+#define LVDSCR_DEPTH(n) (((n) - 1) << 29)
99
+#define LVDSCR_BANDSET (1 << 28)
100
+#define LVDSCR_TWGCNT(n) ((((n) - 256) / 16) << 24)
101
+#define LVDSCR_SDIV(n) ((n) << 22)
102
+#define LVDSCR_MODE (1 << 21)
103
+#define LVDSCR_RSTN (1 << 20)
104
+
105
+#define LVDDIV 0x001c
106
+#define LVDDIV_DIVSEL (1 << 8)
107
+#define LVDDIV_DIVRESET (1 << 7)
108
+#define LVDDIV_DIVSTP (1 << 6)
109
+#define LVDDIV_DIV(n) ((n) << 0)
110
+
77111 #endif /* __RCAR_LVDS_REGS_H__ */