diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-07-29 14:49:36 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-07-29 14:49:36 -0400 |
commit | 4dac3edfe68e5e1b3c2216b84ba160572420fa40 (patch) | |
tree | 924c0d117dbcc6d374eea603ed64e627b35b043b /Documentation/DocBook | |
parent | 487777673e355ab9f0b7cac4ad1207be9d36156f (diff) | |
parent | e05444be705b5c7c7f85d7722b6f97f3a6732d54 (diff) |
Merge remote-tracking branch 'airlied/drm-next' into drm-intel-next
Pull in drm-next with Dave's DP MST support so that I can merge some
conflicting patches which also touch the driver load sequencing around
interrupt handling.
Conflicts:
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_dp.c
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r-- | Documentation/DocBook/drm.tmpl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Documentation/DocBook/drm.tmpl b/Documentation/DocBook/drm.tmpl index f5d1b180b831..1d3756d3176c 100644 --- a/Documentation/DocBook/drm.tmpl +++ b/Documentation/DocBook/drm.tmpl | |||
@@ -1610,7 +1610,7 @@ int max_width, max_height;</synopsis> | |||
1610 | The connector is then registered with a call to | 1610 | The connector is then registered with a call to |
1611 | <function>drm_connector_init</function> with a pointer to the connector | 1611 | <function>drm_connector_init</function> with a pointer to the connector |
1612 | functions and a connector type, and exposed through sysfs with a call to | 1612 | functions and a connector type, and exposed through sysfs with a call to |
1613 | <function>drm_sysfs_connector_add</function>. | 1613 | <function>drm_connector_register</function>. |
1614 | </para> | 1614 | </para> |
1615 | <para> | 1615 | <para> |
1616 | Supported connector types are | 1616 | Supported connector types are |
@@ -1768,7 +1768,7 @@ int max_width, max_height;</synopsis> | |||
1768 | (<function>drm_encoder_cleanup</function>) and connectors | 1768 | (<function>drm_encoder_cleanup</function>) and connectors |
1769 | (<function>drm_connector_cleanup</function>). Furthermore, connectors | 1769 | (<function>drm_connector_cleanup</function>). Furthermore, connectors |
1770 | that have been added to sysfs must be removed by a call to | 1770 | that have been added to sysfs must be removed by a call to |
1771 | <function>drm_sysfs_connector_remove</function> before calling | 1771 | <function>drm_connector_unregister</function> before calling |
1772 | <function>drm_connector_cleanup</function>. | 1772 | <function>drm_connector_cleanup</function>. |
1773 | </para> | 1773 | </para> |
1774 | <para> | 1774 | <para> |
@@ -1813,7 +1813,7 @@ void intel_crt_init(struct drm_device *dev) | |||
1813 | drm_encoder_helper_add(&intel_output->enc, &intel_crt_helper_funcs); | 1813 | drm_encoder_helper_add(&intel_output->enc, &intel_crt_helper_funcs); |
1814 | drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs); | 1814 | drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs); |
1815 | 1815 | ||
1816 | drm_sysfs_connector_add(connector); | 1816 | drm_connector_register(connector); |
1817 | }]]></programlisting> | 1817 | }]]></programlisting> |
1818 | <para> | 1818 | <para> |
1819 | In the example above (taken from the i915 driver), a CRTC, connector and | 1819 | In the example above (taken from the i915 driver), a CRTC, connector and |
@@ -2338,6 +2338,12 @@ void intel_crt_init(struct drm_device *dev) | |||
2338 | !Edrivers/gpu/drm/drm_dp_helper.c | 2338 | !Edrivers/gpu/drm/drm_dp_helper.c |
2339 | </sect2> | 2339 | </sect2> |
2340 | <sect2> | 2340 | <sect2> |
2341 | <title>Display Port MST Helper Functions Reference</title> | ||
2342 | !Pdrivers/gpu/drm/drm_dp_mst_topology.c dp mst helper | ||
2343 | !Iinclude/drm/drm_dp_mst_helper.h | ||
2344 | !Edrivers/gpu/drm/drm_dp_mst_topology.c | ||
2345 | </sect2> | ||
2346 | <sect2> | ||
2341 | <title>EDID Helper Functions Reference</title> | 2347 | <title>EDID Helper Functions Reference</title> |
2342 | !Edrivers/gpu/drm/drm_edid.c | 2348 | !Edrivers/gpu/drm/drm_edid.c |
2343 | </sect2> | 2349 | </sect2> |