Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 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 | |
| 14 | #ifndef __RCAR_DU_DRV_H__ |
| 15 | #define __RCAR_DU_DRV_H__ |
| 16 | |
| 17 | #include <linux/kernel.h> |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 18 | #include <linux/platform_data/rcar-du.h> |
| 19 | |
| 20 | #include "rcar_du_crtc.h" |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame^] | 21 | #include "rcar_du_group.h" |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 22 | |
| 23 | struct clk; |
| 24 | struct device; |
| 25 | struct drm_device; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame^] | 26 | struct rcar_du_device; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 27 | |
Laurent Pinchart | f66ee30 | 2013-06-14 14:15:01 +0200 | [diff] [blame] | 28 | #define RCAR_DU_FEATURE_CRTC_IRQ_CLOCK (1 << 0) /* Per-CRTC IRQ and clock */ |
| 29 | |
Laurent Pinchart | 481d342 | 2013-06-14 13:38:33 +0200 | [diff] [blame] | 30 | /* |
| 31 | * struct rcar_du_device_info - DU model-specific information |
| 32 | * @features: device features (RCAR_DU_FEATURE_*) |
| 33 | */ |
| 34 | struct rcar_du_device_info { |
| 35 | unsigned int features; |
| 36 | }; |
| 37 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 38 | struct rcar_du_device { |
| 39 | struct device *dev; |
| 40 | const struct rcar_du_platform_data *pdata; |
Laurent Pinchart | 481d342 | 2013-06-14 13:38:33 +0200 | [diff] [blame] | 41 | const struct rcar_du_device_info *info; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 42 | |
| 43 | void __iomem *mmio; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 44 | |
| 45 | struct drm_device *ddev; |
| 46 | |
| 47 | struct rcar_du_crtc crtcs[2]; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 48 | unsigned int num_crtcs; |
| 49 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame^] | 50 | struct rcar_du_group group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 51 | }; |
| 52 | |
Laurent Pinchart | 481d342 | 2013-06-14 13:38:33 +0200 | [diff] [blame] | 53 | static inline bool rcar_du_has(struct rcar_du_device *rcdu, |
| 54 | unsigned int feature) |
| 55 | { |
| 56 | return rcdu->info->features & feature; |
| 57 | } |
| 58 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 59 | static inline u32 rcar_du_read(struct rcar_du_device *rcdu, u32 reg) |
| 60 | { |
| 61 | return ioread32(rcdu->mmio + reg); |
| 62 | } |
| 63 | |
| 64 | static inline void rcar_du_write(struct rcar_du_device *rcdu, u32 reg, u32 data) |
| 65 | { |
| 66 | iowrite32(data, rcdu->mmio + reg); |
| 67 | } |
| 68 | |
| 69 | #endif /* __RCAR_DU_DRV_H__ */ |