2013-06-19 19:54:11 +08:00
|
|
|
/*
|
|
|
|
* rcar_du_drv.h -- R-Car Display Unit DRM driver
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Renesas Corporation
|
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RCAR_DU_DRV_H__
|
|
|
|
#define __RCAR_DU_DRV_H__
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/platform_data/rcar-du.h>
|
|
|
|
|
|
|
|
#include "rcar_du_crtc.h"
|
2013-06-17 03:01:02 +08:00
|
|
|
#include "rcar_du_group.h"
|
2013-06-19 19:54:11 +08:00
|
|
|
|
|
|
|
struct clk;
|
|
|
|
struct device;
|
|
|
|
struct drm_device;
|
2013-06-17 03:01:02 +08:00
|
|
|
struct rcar_du_device;
|
2013-06-19 19:54:11 +08:00
|
|
|
|
2013-06-14 20:15:01 +08:00
|
|
|
#define RCAR_DU_FEATURE_CRTC_IRQ_CLOCK (1 << 0) /* Per-CRTC IRQ and clock */
|
2013-06-15 02:52:52 +08:00
|
|
|
#define RCAR_DU_FEATURE_ALIGN_128B (1 << 1) /* Align pitches to 128 bytes */
|
2013-06-15 08:40:57 +08:00
|
|
|
#define RCAR_DU_FEATURE_DEFR8 (1 << 2) /* Has DEFR8 register */
|
2013-06-14 20:15:01 +08:00
|
|
|
|
2013-06-14 19:38:33 +08:00
|
|
|
/*
|
|
|
|
* struct rcar_du_device_info - DU model-specific information
|
|
|
|
* @features: device features (RCAR_DU_FEATURE_*)
|
2013-06-17 06:29:25 +08:00
|
|
|
* @num_crtcs: total number of CRTCs
|
2013-06-14 19:38:33 +08:00
|
|
|
*/
|
|
|
|
struct rcar_du_device_info {
|
|
|
|
unsigned int features;
|
2013-06-17 06:29:25 +08:00
|
|
|
unsigned int num_crtcs;
|
2013-06-14 19:38:33 +08:00
|
|
|
};
|
|
|
|
|
2013-06-19 19:54:11 +08:00
|
|
|
struct rcar_du_device {
|
|
|
|
struct device *dev;
|
|
|
|
const struct rcar_du_platform_data *pdata;
|
2013-06-14 19:38:33 +08:00
|
|
|
const struct rcar_du_device_info *info;
|
2013-06-19 19:54:11 +08:00
|
|
|
|
|
|
|
void __iomem *mmio;
|
|
|
|
|
|
|
|
struct drm_device *ddev;
|
|
|
|
|
2013-06-17 06:29:25 +08:00
|
|
|
struct rcar_du_crtc crtcs[3];
|
2013-06-19 19:54:11 +08:00
|
|
|
unsigned int num_crtcs;
|
|
|
|
|
2013-06-17 06:29:25 +08:00
|
|
|
struct rcar_du_group groups[2];
|
2013-06-19 19:54:11 +08:00
|
|
|
};
|
|
|
|
|
2013-06-14 19:38:33 +08:00
|
|
|
static inline bool rcar_du_has(struct rcar_du_device *rcdu,
|
|
|
|
unsigned int feature)
|
|
|
|
{
|
|
|
|
return rcdu->info->features & feature;
|
|
|
|
}
|
|
|
|
|
2013-06-19 19:54:11 +08:00
|
|
|
static inline u32 rcar_du_read(struct rcar_du_device *rcdu, u32 reg)
|
|
|
|
{
|
|
|
|
return ioread32(rcdu->mmio + reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rcar_du_write(struct rcar_du_device *rcdu, u32 reg, u32 data)
|
|
|
|
{
|
|
|
|
iowrite32(data, rcdu->mmio + reg);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __RCAR_DU_DRV_H__ */
|