From mboxrd@z Thu Jan 1 00:00:00 1970 From: khilman@baylibre.com (Kevin Hilman) Date: Thu, 12 Jan 2017 13:34:10 -0800 Subject: [RESEND] spi: davinci: Allow device tree devices to use DMA In-Reply-To: <1483673177-31516-1-git-send-email-david@lechnology.com> (David Lechner's message of "Thu, 5 Jan 2017 21:26:17 -0600") References: <1483673177-31516-1-git-send-email-david@lechnology.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org David Lechner writes: > This allows SPI devices specified in a device tree to use DMA when the > master controller. Enabling DMA for spi-davinci isn't quite ready yet since this driver is blindly using dma_map_single() on addresses passed in. MTD seems to use vmalloc'd buffers, which cannot be passed direclty to dma_map_single(). I thinks this driver needs an update to use spi_map_buf() to be able to handle vmalloc'd buffers before always enabling DMA. Kevin