From: Lukas Wunner <lukas@wunner.de> To: Mark Brown <broonie@kernel.org>, Vinod Koul <vkoul@kernel.org>, Stefan Wahren <wahrenst@gmx.net>, linux-spi@vger.kernel.org, dmaengine@vger.kernel.org, linux-rpi-kernel@lists.infradead.org, bcm-kernel-feedback-list@broadcom.com Cc: Eric Anholt <eric@anholt.net>, Nuno Sa <nuno.sa@analog.com>, Martin Sperl <kernel@martin.sperl.org>, Noralf Tronnes <noralf@tronnes.org>, Robert Jarzmik <robert.jarzmik@free.fr>, Florian Kauer <florian.kauer@koalo.de>, Florian Fainelli <f.fainelli@gmail.com>, Ray Jui <rjui@broadcom.com>, Scott Branden <sbranden@broadcom.com> Subject: [PATCH 03/10] spi: Guarantee cacheline alignment of driver-private data Date: Sat, 3 Aug 2019 12:10:00 +0200 Message-ID: <69faaeb305582ab7dca65fa08635edfa1a39b3fa.1564825752.git.lukas@wunner.de> (raw) In-Reply-To: <cover.1564825752.git.lukas@wunner.de> __spi_alloc_controller() uses a single allocation to accommodate struct spi_controller and the driver-private data, but places the latter behind the former. This order does not guarantee cacheline alignment of the driver-private data. It does guarantee cacheline alignment of struct spi_controller but the structure doesn't make any use of that property. Reverse the order. A forthcoming commit leverages this to grant DMA access to driver-private data of the BCM2835 SPI master. An alternative approach would be to round up struct spi_controller to cacheline size, at the expense of some wasted memory. Tested-by: Nuno Sá <nuno.sa@analog.com> Signed-off-by: Lukas Wunner <lukas@wunner.de> --- drivers/spi/spi.c | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 8e83c9567353..8f692f657690 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2071,9 +2071,11 @@ static inline void acpi_register_spi_devices(struct spi_controller *ctlr) {} static void spi_controller_release(struct device *dev) { struct spi_controller *ctlr; + void *devdata; ctlr = container_of(dev, struct spi_controller, dev); - kfree(ctlr); + devdata = spi_controller_get_devdata(ctlr); + kfree(devdata); } static struct class spi_master_class = { @@ -2187,8 +2189,10 @@ extern struct class spi_slave_class; /* dummy */ * __spi_alloc_controller - allocate an SPI master or slave controller * @dev: the controller, possibly using the platform_bus * @size: how much zeroed driver-private data to allocate; the pointer to this - * memory is in the driver_data field of the returned device, - * accessible with spi_controller_get_devdata(). + * memory is in the driver_data field of the returned device, accessible + * with spi_controller_get_devdata(); the memory is cacheline aligned; + * drivers granting DMA access to portions of their private data need to + * round up @size using ALIGN(size, dma_get_cache_alignment()). * @slave: flag indicating whether to allocate an SPI master (false) or SPI * slave (true) controller * Context: can sleep @@ -2210,14 +2214,16 @@ struct spi_controller *__spi_alloc_controller(struct device *dev, unsigned int size, bool slave) { struct spi_controller *ctlr; + void *devdata; if (!dev) return NULL; - ctlr = kzalloc(size + sizeof(*ctlr), GFP_KERNEL); - if (!ctlr) + devdata = kzalloc(size + sizeof(*ctlr), GFP_KERNEL); + if (!devdata) return NULL; + ctlr = devdata + size; device_initialize(&ctlr->dev); ctlr->bus_num = -1; ctlr->num_chipselect = 1; @@ -2228,7 +2234,7 @@ struct spi_controller *__spi_alloc_controller(struct device *dev, ctlr->dev.class = &spi_master_class; ctlr->dev.parent = dev; pm_suspend_ignore_children(&ctlr->dev, true); - spi_controller_set_devdata(ctlr, &ctlr[1]); + spi_controller_set_devdata(ctlr, devdata); return ctlr; } -- 2.20.1
next prev parent reply index Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-08-03 10:10 [PATCH 00/10] Raspberry Pi SPI speedups Lukas Wunner 2019-08-03 10:10 ` [PATCH 01/10] dmaengine: bcm2835: Allow reusable descriptors Lukas Wunner 2019-08-08 12:30 ` Vinod Koul 2019-08-03 10:10 ` [PATCH 04/10] spi: bcm2835: Drop dma_pending flag Lukas Wunner 2019-08-03 10:10 ` [PATCH 05/10] spi: bcm2835: Work around DONE bit erratum Lukas Wunner 2019-08-11 19:45 ` Stefan Wahren 2019-08-11 19:57 ` Lukas Wunner 2019-08-11 20:29 ` Eric Anholt 2019-08-19 19:20 ` Stefan Wahren 2019-08-03 10:10 ` [PATCH 09/10] dmaengine: bcm2835: Avoid accessing memory when copying zeroes Lukas Wunner 2019-08-08 12:31 ` Vinod Koul 2019-08-03 10:10 ` [PATCH 07/10] spi: bcm2835: Speed up TX-only DMA transfers by clearing RX FIFO Lukas Wunner 2019-08-03 10:10 ` [PATCH 06/10] spi: bcm2835: Cache CS register value for ->prepare_message() Lukas Wunner 2019-08-03 10:10 ` [PATCH 02/10] dmaengine: bcm2835: Allow cyclic transactions without interrupt Lukas Wunner 2019-08-08 12:30 ` Vinod Koul 2019-08-03 10:10 ` [PATCH 08/10] dmaengine: bcm2835: Document struct bcm2835_dmadev Lukas Wunner 2019-08-08 12:31 ` Vinod Koul 2019-08-03 10:10 ` [PATCH 10/10] spi: bcm2835: Speed up RX-only DMA transfers by zero-filling TX FIFO Lukas Wunner 2019-08-03 10:10 ` Lukas Wunner [this message] 2019-09-10 11:29 ` [PATCH 03/10] spi: Guarantee cacheline alignment of driver-private data Mark Brown 2019-08-03 16:01 ` [PATCH 00/10] Raspberry Pi SPI speedups Noralf Trønnes 2019-08-11 19:50 ` Stefan Wahren 2019-08-11 19:52 ` Lukas Wunner 2019-08-19 19:22 ` Stefan Wahren 2019-08-21 15:21 ` kernel 2019-08-24 10:33 ` Lukas Wunner 2019-09-07 9:06 ` Lukas Wunner 2019-09-09 16:56 ` Mark Brown 2019-09-10 11:21 ` Mark Brown
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=69faaeb305582ab7dca65fa08635edfa1a39b3fa.1564825752.git.lukas@wunner.de \ --to=lukas@wunner.de \ --cc=bcm-kernel-feedback-list@broadcom.com \ --cc=broonie@kernel.org \ --cc=dmaengine@vger.kernel.org \ --cc=eric@anholt.net \ --cc=f.fainelli@gmail.com \ --cc=florian.kauer@koalo.de \ --cc=kernel@martin.sperl.org \ --cc=linux-rpi-kernel@lists.infradead.org \ --cc=linux-spi@vger.kernel.org \ --cc=noralf@tronnes.org \ --cc=nuno.sa@analog.com \ --cc=rjui@broadcom.com \ --cc=robert.jarzmik@free.fr \ --cc=sbranden@broadcom.com \ --cc=vkoul@kernel.org \ --cc=wahrenst@gmx.net \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
dmaengine Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/dmaengine/0 dmaengine/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dmaengine dmaengine/ https://lore.kernel.org/dmaengine \ dmaengine@vger.kernel.org public-inbox-index dmaengine Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.dmaengine AGPL code for this site: git clone https://public-inbox.org/public-inbox.git