Lines Matching defs:ast_device
169 struct ast_device { struct
170 struct drm_device base;
172 void __iomem *regs;
173 void __iomem *ioregs;
174 void __iomem *dp501_fw_buf;
176 enum ast_config_mode config_mode;
177 enum ast_chip chip;
179 uint32_t dram_bus_width;
180 uint32_t dram_type;
181 uint32_t mclk;
183 void __iomem *vram;
184 unsigned long vram_base;
185 unsigned long vram_size;
186 unsigned long vram_fb_available;
188 struct mutex modeset_lock; /* Protects access to modeset I/O registers in ioregs */
190 enum ast_tx_chip tx_chip;
192 struct ast_plane primary_plane;
193 struct ast_cursor_plane cursor_plane;
194 struct drm_crtc crtc;
195 union {
222 static inline struct ast_device *to_ast_device(struct drm_device *dev) in to_ast_device() argument