Lines Matching defs:mach64_softc
88 struct mach64_softc { struct
89 device_t sc_dev;
90 pci_chipset_tag_t sc_pc;
91 pcitag_t sc_pcitag;
93 struct vga_bar sc_bars[NBARS];
94 struct vga_bar sc_rom;
105 bus_space_tag_t sc_regt;
106 bus_space_tag_t sc_memt;
107 bus_space_tag_t sc_iot;
108 bus_space_handle_t sc_regh;
109 bus_space_handle_t sc_memh;
114 uint32_t sc_nbus, sc_ndev, sc_nfunc;
115 size_t memsize;
116 int memtype;
118 int sc_mode;
119 int sc_bg;
120 int sc_locked;
122 int has_dsp;
123 int bits_per_pixel;
124 int max_x;
125 int max_y;
126 int virt_x;
127 int virt_y;
128 int stride; /* in pixels */
129 int color_depth;
131 int mem_freq;
132 int ramdac_freq;
133 int ref_freq;
134 int vclk_freq;
136 int ref_div;
137 int log2_vclk_post_div;
138 int vclk_post_div;
139 int vclk_fb_div;
140 int mclk_post_div;
141 int mclk_fb_div;
142 int sc_clock; /* which clock to use */
143 int minref, m;
145 struct videomode *sc_my_mode;
146 int sc_edid_size;
147 uint8_t sc_edid_data[1024];
148 struct edid_info sc_ei;
149 int sc_setmode;
150 int sc_gen_cntl;
152 u_char sc_cmap_red[256];
153 u_char sc_cmap_green[256];
154 u_char sc_cmap_blue[256];
155 int sc_dacw, sc_blanked, sc_console;
156 struct vcons_data vd;
157 struct wsdisplay_accessops sc_accessops;
158 glyphcache sc_gc;