pl111_drm.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. *
  3. * (C) COPYRIGHT 2012-2013 ARM Limited. All rights reserved.
  4. *
  5. *
  6. * Parts of this file were based on sources as follows:
  7. *
  8. * Copyright (c) 2006-2008 Intel Corporation
  9. * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
  10. * Copyright (C) 2011 Texas Instruments
  11. *
  12. * This program is free software and is provided to you under the terms of the
  13. * GNU General Public License version 2 as published by the Free Software
  14. * Foundation, and any use by you of this program is subject to the terms of
  15. * such GNU licence.
  16. *
  17. */
  18. #ifndef _PL111_DRM_H_
  19. #define _PL111_DRM_H_
  20. #include <drm/drm_gem.h>
  21. #include <drm/drm_simple_kms_helper.h>
  22. #include <drm/drm_connector.h>
  23. #include <drm/drm_encoder.h>
  24. #include <drm/drm_panel.h>
  25. #include <drm/drm_bridge.h>
  26. #include <linux/clk-provider.h>
  27. #include <linux/interrupt.h>
  28. #define CLCD_IRQ_NEXTBASE_UPDATE BIT(2)
  29. struct drm_minor;
  30. /**
  31. * struct pl111_variant_data - encodes IP differences
  32. * @name: the name of this variant
  33. * @is_pl110: this is the early PL110 variant
  34. * @external_bgr: this is the Versatile Pl110 variant with external
  35. * BGR/RGB routing
  36. * @broken_clockdivider: the clock divider is broken and we need to
  37. * use the supplied clock directly
  38. * @broken_vblank: the vblank IRQ is broken on this variant
  39. * @formats: array of supported pixel formats on this variant
  40. * @nformats: the length of the array of supported pixel formats
  41. * @fb_bpp: desired bits per pixel on the default framebuffer
  42. */
  43. struct pl111_variant_data {
  44. const char *name;
  45. bool is_pl110;
  46. bool external_bgr;
  47. bool broken_clockdivider;
  48. bool broken_vblank;
  49. const u32 *formats;
  50. unsigned int nformats;
  51. unsigned int fb_bpp;
  52. };
  53. struct pl111_drm_dev_private {
  54. struct drm_device *drm;
  55. struct drm_connector *connector;
  56. struct drm_panel *panel;
  57. struct drm_bridge *bridge;
  58. struct drm_simple_display_pipe pipe;
  59. void *regs;
  60. u32 memory_bw;
  61. u32 ienb;
  62. u32 ctrl;
  63. /* The pixel clock (a reference to our clock divider off of CLCDCLK). */
  64. struct clk *clk;
  65. /* pl111's internal clock divider. */
  66. struct clk_hw clk_div;
  67. /* Lock to sync access to CLCD_TIM2 between the common clock
  68. * subsystem and pl111_display_enable().
  69. */
  70. spinlock_t tim2_lock;
  71. const struct pl111_variant_data *variant;
  72. void (*variant_display_enable) (struct drm_device *drm, u32 format);
  73. void (*variant_display_disable) (struct drm_device *drm);
  74. bool use_device_memory;
  75. };
  76. int pl111_display_init(struct drm_device *dev);
  77. irqreturn_t pl111_irq(int irq, void *data);
  78. int pl111_debugfs_init(struct drm_minor *minor);
  79. #endif /* _PL111_DRM_H_ */