Lines Matching defs:zy7_qspi_softc
68 struct zy7_qspi_softc { struct
69 device_t dev;
70 device_t child;
71 struct mtx sc_mtx;
72 struct resource *mem_res;
73 struct resource *irq_res;
74 void *intrhandle;
76 uint32_t cfg_reg_shadow;
77 uint32_t lqspi_cfg_shadow;
78 uint32_t spi_clock;
79 uint32_t ref_clock;
80 unsigned int spi_clk_real_freq;
81 unsigned int rx_overflows;
82 unsigned int tx_underflows;
83 unsigned int interrupts;
84 unsigned int stray_ints;
85 struct spi_command *cmd;
86 int tx_bytes; /* tx_cmd_sz + tx_data_sz */
87 int tx_bytes_sent;
88 int rx_bytes; /* rx_cmd_sz + rx_data_sz */
89 int rx_bytes_rcvd;
90 int busy;
91 int is_dual;
92 int is_stacked;
93 int is_dio;