Lines Matching defs:at91spi_softc
51 struct at91spi_softc { struct
52 device_t sc_dev;
53 bus_space_tag_t sc_iot;
54 bus_space_handle_t sc_ioh;
56 bus_dma_tag_t sc_dmat;
58 int sc_pid; /* peripheral identifier */
59 struct spi_controller sc_spi; /* SPI implementation ops */
60 at91spi_machdep_tag_t sc_md; /* board-specific support */
61 struct at91spi_job *sc_job; /* current job */
62 struct spi_chunk *sc_wchunk;
63 struct spi_chunk *sc_rchunk;
64 void *sc_ih; /* interrupt handler (what?) */
66 void *sc_dmapage;
67 bus_addr_t sc_dmaaddr;
68 bus_dmamap_t sc_dmamap;
69 int sc_dmaoffs; /* current dma offset */
71 struct spi_transfer *sc_transfer;
72 bool sc_running; /* is it processing stuff? */