1===================================
2drm/amd/display - Display Core (DC)
3===================================
4
5AMD display engine is partially shared with other operating systems; for this
6reason, our Display Core Driver is divided into two pieces:
7
81. **Display Core (DC)** contains the OS-agnostic components. Things like
9   hardware programming and resource management are handled here.
102. **Display Manager (DM)** contains the OS-dependent components. Hooks to the
11   amdgpu base driver and DRM are implemented here.
12
13The display pipe is responsible for "scanning out" a rendered frame from the
14GPU memory (also called VRAM, FrameBuffer, etc.) to a display. In other words,
15it would:
16
171. Read frame information from memory;
182. Perform required transformation;
193. Send pixel data to sink devices.
20
21If you want to learn more about our driver details, take a look at the below
22table of content:
23
24.. toctree::
25
26   display-manager.rst
27   dc-debug.rst
28   dcn-overview.rst
29