Lines Matching defs:radeonfb_info
287 struct radeonfb_info { struct
288 struct fb_info *info;
290 struct radeon_regs state;
291 struct radeon_regs init_state;
293 char name[50];
295 unsigned long mmio_base_phys;
296 unsigned long fb_base_phys;
298 void __iomem *mmio_base;
299 void __iomem *fb_base;
301 unsigned long fb_local_base;
303 struct pci_dev *pdev;
305 struct device_node *of_node;
308 void __iomem *bios_seg;
309 int fp_bios_start;
311 u32 pseudo_palette[16];
312 struct { u8 red, green, blue, pad; }
313 palette[256];
315 int chipset;
316 u8 family;
317 u8 rev;
318 unsigned int errata;
319 unsigned long video_ram;
320 unsigned long mapped_vram;
321 int vram_width;
322 int vram_ddr;
324 int pitch, bpp, depth;
326 int has_CRTC2;
327 int is_mobility;
328 int is_IGP;
329 int reversed_DAC;
330 int reversed_TMDS;
331 struct panel_info panel_info;
332 int mon1_type;
333 u8 *mon1_EDID;
334 struct fb_videomode *mon1_modedb;
335 int mon1_dbsize;
336 int mon2_type;
337 u8 *mon2_EDID;
339 u32 dp_gui_master_cntl;
341 struct pll_info pll;
343 int mtrr_hdl;
345 int pm_reg;
346 u32 save_regs[100];
347 int asleep;
348 int lock_blank;
349 int dynclk;
350 int no_schedule;
351 enum radeon_pm_mode pm_mode;
352 reinit_function_ptr reinit_func;
355 spinlock_t reg_lock;
380 static inline void _radeon_msleep(struct radeonfb_info *rinfo, unsigned long ms) in _radeon_msleep() argument