projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e87f66
)
drm/i915: add DP_TP_STATUS registers
author
Eugeni Dodonov
<
[email protected]
>
Thu, 29 Mar 2012 15:32:25 +0000
(12:32 -0300)
committer
Daniel Vetter
<
[email protected]
>
Mon, 9 Apr 2012 16:04:00 +0000
(18:04 +0200)
There is one set of those registers for each port.
Signed-off-by: Eugeni Dodonov <
[email protected]
>
Reviewed-by: Daniel Vetter <
[email protected]
>
Signed-off-by: Daniel Vetter <
[email protected]
>
drivers/gpu/drm/i915/i915_reg.h
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/i915_reg.h
b/drivers/gpu/drm/i915/i915_reg.h
index b49775326fb43baa9468edd6c72a5a621a827eda..5b1710100963ed57794c7b06519067a4d5aefb24 100644
(file)
--- a/
drivers/gpu/drm/i915/i915_reg.h
+++ b/
drivers/gpu/drm/i915/i915_reg.h
@@
-4078,4
+4078,12
@@
#define DP_TP_CTL_LINK_TRAIN_PAT2 (1<<8)
#define DP_TP_CTL_LINK_TRAIN_NORMAL (3<<8)
+/* DisplayPort Transport Status */
+#define DP_TP_STATUS_A 0x64044
+#define DP_TP_STATUS_B 0x64144
+#define DP_TP_STATUS(port) _PORT(port, \
+ DP_TP_STATUS_A, \
+ DP_TP_STATUS_B)
+#define DP_TP_STATUS_AUTOTRAIN_DONE (1<<12)
+
#endif /* _I915_REG_H_ */