Lines Matching defs:ast_device
198 struct ast_device { struct
199 struct drm_device base;
201 void __iomem *regs;
202 void __iomem *ioregs;
203 void __iomem *dp501_fw_buf;
205 enum ast_config_mode config_mode;
206 enum ast_chip chip;
208 uint32_t dram_bus_width;
209 uint32_t dram_type;
210 uint32_t mclk;
212 void __iomem *vram;
213 unsigned long vram_base;
214 unsigned long vram_size;
215 unsigned long vram_fb_available;
217 struct mutex modeset_lock; /* Protects access to modeset I/O registers in ioregs */
219 struct ast_plane primary_plane;
220 struct ast_plane cursor_plane;
221 struct drm_crtc crtc;
222 struct {
252 static inline struct ast_device *to_ast_device(struct drm_device *dev) in to_ast_device() argument