Lines Matching defs:ast_device
163 struct ast_device { struct
164 struct drm_device base;
166 void __iomem *regs;
167 void __iomem *ioregs;
168 void __iomem *dp501_fw_buf;
170 enum ast_config_mode config_mode;
171 enum ast_chip chip;
173 uint32_t dram_bus_width;
174 uint32_t dram_type;
175 uint32_t mclk;
177 void __iomem *vram;
178 unsigned long vram_base;
179 unsigned long vram_size;
180 unsigned long vram_fb_available;
182 struct mutex modeset_lock; /* Protects access to modeset I/O registers in ioregs */
184 enum ast_tx_chip tx_chip;
186 struct ast_plane primary_plane;
187 struct ast_plane cursor_plane;
188 struct drm_crtc crtc;
189 union {
214 static inline struct ast_device *to_ast_device(struct drm_device *dev) in to_ast_device() argument