index.rst 1.0 KB

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