Lines Matching defs:tcx_softc
80 struct tcx_softc { struct
81 device_t sc_dev; /* base device */
82 struct fbdevice sc_fb; /* frame buffer device */
83 bus_space_tag_t sc_bustag;
84 struct openprom_addr sc_physaddr[TCX_NREG];/* phys addr of h/w */
86 bus_space_handle_t sc_bt; /* Brooktree registers */
87 bus_space_handle_t sc_thc; /* THC registers */
88 uint8_t *sc_fbaddr; /* framebuffer */
89 volatile uint64_t *sc_rblit; /* blitspace */
90 volatile uint64_t *sc_rstip; /* stipple space */
92 short sc_8bit; /* true if 8-bit hardware */
93 short sc_blanked; /* true if blanked */
94 uint32_t sc_fbsize; /* size of the 8bit fb */
95 u_char sc_cmap_red[256];
96 u_char sc_cmap_green[256];
97 u_char sc_cmap_blue[256];
98 int sc_mode, sc_bg;
99 int sc_cursor_x, sc_cursor_y;
100 int sc_hotspot_x, sc_hotspot_y;
101 struct vcons_data vd;