Lines Matching defs:radeonfb_info
288 struct radeonfb_info { struct
289 struct fb_info *info;
291 struct radeon_regs state;
292 struct radeon_regs init_state;
294 char name[50];
296 unsigned long mmio_base_phys;
297 unsigned long fb_base_phys;
299 void __iomem *mmio_base;
300 void __iomem *fb_base;
302 unsigned long fb_local_base;
304 struct pci_dev *pdev;
306 struct device_node *of_node;
309 void __iomem *bios_seg;
310 int fp_bios_start;
312 u32 pseudo_palette[16];
313 struct { u8 red, green, blue, pad; }
314 palette[256];
316 int chipset;
317 u8 family;
318 u8 rev;
319 unsigned int errata;
320 unsigned long video_ram;
321 unsigned long mapped_vram;
322 int vram_width;
323 int vram_ddr;
325 int pitch, bpp, depth;
327 int has_CRTC2;
328 int is_mobility;
329 int is_IGP;
330 int reversed_DAC;
331 int reversed_TMDS;
332 struct panel_info panel_info;
333 int mon1_type;
334 u8 *mon1_EDID;
335 struct fb_videomode *mon1_modedb;
336 int mon1_dbsize;
337 int mon2_type;
338 u8 *mon2_EDID;
340 u32 dp_gui_master_cntl;
342 struct pll_info pll;
344 int wc_cookie;
346 u32 save_regs[100];
347 int asleep;
348 int lock_blank;
349 int dynclk;
350 int no_schedule;
374 void _radeon_msleep(struct radeonfb_info *rinfo, unsigned long ms); argument