Lines Matching defs:ast_device
179 struct ast_device { struct
180 struct drm_device base;
182 struct mutex ioregs_lock; /* Protects access to I/O registers in ioregs */
183 void __iomem *regs;
184 void __iomem *ioregs;
185 void __iomem *dp501_fw_buf;
187 enum ast_chip chip;
188 uint32_t dram_bus_width;
189 uint32_t dram_type;
190 uint32_t mclk;
192 void __iomem *vram;
193 unsigned long vram_base;
194 unsigned long vram_size;
195 unsigned long vram_fb_available;
197 struct ast_plane primary_plane;
198 struct ast_plane cursor_plane;
199 struct drm_crtc crtc;
200 struct {
235 static inline struct ast_device *to_ast_device(struct drm_device *dev) in to_ast_device() argument