Lines Matching defs:sunxi_debe_softc
68 struct sunxi_debe_softc { struct
69 device_t sc_dev;
70 device_t sc_fbdev;
71 enum sunxi_debe_type sc_type;
72 bus_space_tag_t sc_bst;
73 bus_space_handle_t sc_bsh;
74 bus_dma_tag_t sc_dmat;
76 struct clk *sc_clk_ahb;
77 struct clk *sc_clk_mod;
78 struct clk *sc_clk_ram;
80 struct fdtbus_reset *sc_rst;
82 bus_dma_segment_t sc_dmasegs[1];
83 bus_size_t sc_dmasize;
84 bus_dmamap_t sc_dmamap;
85 void *sc_dmap;
87 bool sc_cursor_enable;
88 int sc_cursor_x, sc_cursor_y;
89 int sc_hot_x, sc_hot_y;
90 uint8_t sc_cursor_bitmap[8 * SUNXI_DEBE_CURMAX];
91 uint8_t sc_cursor_mask[8 * SUNXI_DEBE_CURMAX];
93 int sc_phandle;
94 struct fdt_device_ports sc_ports;
95 struct fdt_endpoint *sc_out_ep;
96 int sc_unit; /* debe0 or debe1 */