Lines Matching defs:cqspi_softc
91 struct cqspi_softc { struct
92 device_t dev;
94 struct resource *res[3];
95 bus_space_tag_t bst;
96 bus_space_handle_t bsh;
97 void *ih;
98 uint8_t read_op_done;
99 uint8_t write_op_done;
101 uint32_t fifo_depth;
102 uint32_t fifo_width;
103 uint32_t trigger_address;
104 uint32_t sram_phys;
107 xdma_controller_t *xdma_tx;
108 xdma_channel_t *xchan_tx;
109 void *ih_tx;
111 xdma_controller_t *xdma_rx;
112 xdma_channel_t *xchan_rx;
113 void *ih_rx;
115 struct intr_config_hook config_intrhook;
116 struct mtx sc_mtx;