Skip to content
Snippets Groups Projects
spi.c 32.2 KiB
Newer Older
  • Learn to ignore specific revisions
  • EXPORT_SYMBOL_GPL(spi_bus_lock);
    
    /**
     * spi_bus_unlock - release the lock for exclusive SPI bus usage
     * @master: SPI bus master that was locked for exclusive bus access
     * Context: can sleep
     *
     * This call may only be used from a context that may sleep.  The sleep
     * is non-interruptible, and has no timeout.
     *
     * This call releases an SPI bus lock previously obtained by an spi_bus_lock
     * call.
     *
     * It returns zero on success, else a negative error code.
     */
    int spi_bus_unlock(struct spi_master *master)
    {
    	master->bus_lock_flag = 0;
    
    	mutex_unlock(&master->bus_lock_mutex);
    
    	return 0;
    }
    EXPORT_SYMBOL_GPL(spi_bus_unlock);
    
    
    /* portable code must never pass more than 32 bytes */
    #define	SPI_BUFSIZ	max(32,SMP_CACHE_BYTES)
    
    
    static u8	*buf;
    
    /**
     * spi_write_then_read - SPI synchronous write followed by read
     * @spi: device with which data will be exchanged
     * @txbuf: data to be written (need not be dma-safe)
     * @n_tx: size of txbuf, in bytes
    
     * @rxbuf: buffer into which data will be read (need not be dma-safe)
     * @n_rx: size of rxbuf, in bytes
    
    David Brownell's avatar
    David Brownell committed
     * Context: can sleep
    
     *
     * This performs a half duplex MicroWire style transaction with the
     * device, sending txbuf and then reading rxbuf.  The return value
     * is zero for success, else a negative errno status code.
    
     * This call may only be used from a context that may sleep.
    
     * Parameters to this routine are always copied using a small buffer;
    
    David Brownell's avatar
    David Brownell committed
     * portable code should never use this for more than 32 bytes.
     * Performance-sensitive or bulk transfer code should instead use
    
     * spi_{async,sync}() calls with dma-safe buffers.
    
     */
    int spi_write_then_read(struct spi_device *spi,
    
    		const void *txbuf, unsigned n_tx,
    		void *rxbuf, unsigned n_rx)
    
    	static DEFINE_MUTEX(lock);
    
    
    	int			status;
    	struct spi_message	message;
    
    	struct spi_transfer	x[2];
    
    	u8			*local_buf;
    
    	/* Use preallocated DMA-safe buffer.  We can't avoid copying here,
    	 * (as a pure convenience thing), but we can keep heap costs
    	 * out of the hot path ...
    	 */
    	if ((n_tx + n_rx) > SPI_BUFSIZ)
    		return -EINVAL;
    
    
    	spi_message_init(&message);
    
    	memset(x, 0, sizeof x);
    	if (n_tx) {
    		x[0].len = n_tx;
    		spi_message_add_tail(&x[0], &message);
    	}
    	if (n_rx) {
    		x[1].len = n_rx;
    		spi_message_add_tail(&x[1], &message);
    	}
    
    	/* ... unless someone else is using the pre-allocated buffer */
    
    	if (!mutex_trylock(&lock)) {
    
    		local_buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
    		if (!local_buf)
    			return -ENOMEM;
    	} else
    		local_buf = buf;
    
    	memcpy(local_buf, txbuf, n_tx);
    
    	x[0].tx_buf = local_buf;
    	x[1].rx_buf = local_buf + n_tx;
    
    
    	/* do the i/o */
    	status = spi_sync(spi, &message);
    
    	if (status == 0)
    
    		memcpy(rxbuf, x[1].rx_buf, n_rx);
    
    	if (x[0].tx_buf == buf)
    
    		mutex_unlock(&lock);
    
    	else
    		kfree(local_buf);
    
    	return status;
    }
    EXPORT_SYMBOL_GPL(spi_write_then_read);
    
    /*-------------------------------------------------------------------------*/
    
    static int __init spi_init(void)
    {
    
    	buf = kmalloc(SPI_BUFSIZ, GFP_KERNEL);
    
    	if (!buf) {
    		status = -ENOMEM;
    		goto err0;
    	}
    
    	status = bus_register(&spi_bus_type);
    	if (status < 0)
    		goto err1;
    
    	status = class_register(&spi_master_class);
    	if (status < 0)
    		goto err2;
    
    
    err2:
    	bus_unregister(&spi_bus_type);
    err1:
    	kfree(buf);
    	buf = NULL;
    err0:
    	return status;
    
    /* board_info is normally registered in arch_initcall(),
     * but even essential drivers wait till later
    
     *
     * REVISIT only boardinfo really needs static linking. the rest (device and
     * driver registration) _could_ be dynamically linked (modular) ... costs
     * include needing to have boardinfo data structures be much more public.
    
    postcore_initcall(spi_init);