rcar_du_drv.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * rcar_du_drv.h -- R-Car Display Unit DRM driver
  3. *
  4. * Copyright (C) 2013 Renesas Corporation
  5. *
  6. * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. */
  13. #ifndef __RCAR_DU_DRV_H__
  14. #define __RCAR_DU_DRV_H__
  15. #include <linux/kernel.h>
  16. #include <linux/platform_data/rcar-du.h>
  17. #include "rcar_du_crtc.h"
  18. #include "rcar_du_group.h"
  19. struct clk;
  20. struct device;
  21. struct drm_device;
  22. struct rcar_du_device;
  23. #define RCAR_DU_FEATURE_CRTC_IRQ_CLOCK (1 << 0) /* Per-CRTC IRQ and clock */
  24. #define RCAR_DU_FEATURE_ALIGN_128B (1 << 1) /* Align pitches to 128 bytes */
  25. #define RCAR_DU_FEATURE_DEFR8 (1 << 2) /* Has DEFR8 register */
  26. /*
  27. * struct rcar_du_output_routing - Output routing specification
  28. * @possible_crtcs: bitmask of possible CRTCs for the output
  29. * @encoder_type: DRM type of the internal encoder associated with the output
  30. *
  31. * The DU has 5 possible outputs (DPAD0/1, LVDS0/1, TCON). Output routing data
  32. * specify the valid SoC outputs, which CRTCs can drive the output, and the type
  33. * of in-SoC encoder for the output.
  34. */
  35. struct rcar_du_output_routing {
  36. unsigned int possible_crtcs;
  37. unsigned int encoder_type;
  38. };
  39. /*
  40. * struct rcar_du_device_info - DU model-specific information
  41. * @features: device features (RCAR_DU_FEATURE_*)
  42. * @num_crtcs: total number of CRTCs
  43. * @routes: array of CRTC to output routes, indexed by output (RCAR_DU_OUTPUT_*)
  44. */
  45. struct rcar_du_device_info {
  46. unsigned int features;
  47. unsigned int num_crtcs;
  48. struct rcar_du_output_routing routes[RCAR_DU_OUTPUT_MAX];
  49. };
  50. struct rcar_du_device {
  51. struct device *dev;
  52. const struct rcar_du_platform_data *pdata;
  53. const struct rcar_du_device_info *info;
  54. void __iomem *mmio;
  55. struct drm_device *ddev;
  56. struct rcar_du_crtc crtcs[3];
  57. unsigned int num_crtcs;
  58. struct rcar_du_group groups[2];
  59. };
  60. static inline bool rcar_du_has(struct rcar_du_device *rcdu,
  61. unsigned int feature)
  62. {
  63. return rcdu->info->features & feature;
  64. }
  65. static inline u32 rcar_du_read(struct rcar_du_device *rcdu, u32 reg)
  66. {
  67. return ioread32(rcdu->mmio + reg);
  68. }
  69. static inline void rcar_du_write(struct rcar_du_device *rcdu, u32 reg, u32 data)
  70. {
  71. iowrite32(data, rcdu->mmio + reg);
  72. }
  73. #endif /* __RCAR_DU_DRV_H__ */