Lines Matching defs:p9100_softc
101 struct p9100_softc { struct
102 device_t sc_dev; /* base device */
103 struct fbdevice sc_fb; /* frame buffer device */
105 bus_space_tag_t sc_bustag;
107 bus_addr_t sc_ctl_paddr; /* phys address description */
108 bus_size_t sc_ctl_psize; /* for device mmap() */
109 bus_space_handle_t sc_ctl_memh; /* bus space handle */
111 bus_addr_t sc_fb_paddr; /* phys address description */
112 bus_size_t sc_fb_psize; /* for device mmap() */
114 bus_space_handle_t sc_fb_memh; /* bus space handle */
116 uint32_t sc_mono_width; /* for setup_mono */
118 uint32_t sc_width;
119 uint32_t sc_height; /* panel width / height */
120 uint32_t sc_stride;
121 uint32_t sc_depth;
122 int sc_depthshift; /* blitter works on bytes not pixels */
124 union bt_cmap sc_cmap; /* Brooktree color map */
126 struct pnozz_cursor sc_cursor;
128 int sc_mode;
129 int sc_video, sc_powerstate;
130 uint32_t sc_bg;
131 volatile uint32_t sc_last_offset;
132 struct vcons_data vd;
133 uint8_t sc_dac_power;
134 glyphcache sc_gc;