From mboxrd@z Thu Jan 1 00:00:00 1970 From: Laurentiu Palcu Subject: Re: [PATCH v6 1/2] spi: add support for DLN-2 USB-SPI adapter Date: Thu, 27 Nov 2014 12:30:35 +0200 Message-ID: <20141127103034.GP2583@lpalcu-linux> References: <1416312599-5176-2-git-send-email-laurentiu.palcu@intel.com> <1416996549-29328-1-git-send-email-laurentiu.palcu@intel.com> <20141126182521.GP7712@sirena.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Samuel Ortiz , Lee Jones , Johan Havold , Octavian Purdila , linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Mark Brown Return-path: Content-Disposition: inline In-Reply-To: <20141126182521.GP7712-GFdadSzt00ze9xe1eoZjHA@public.gmane.org> Sender: linux-spi-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-ID: On Wed, Nov 26, 2014 at 06:25:21PM +0000, Mark Brown wrote: > On Wed, Nov 26, 2014 at 12:09:09PM +0200, Laurentiu Palcu wrote: > > > +static int dln2_spi_transfer_one_message(struct spi_master *master, > > + struct spi_message *msg) > > +{ > > + struct dln2_spi *dln2 = spi_master_get_devdata(master); > > + struct spi_device *spi = msg->spi; > > + struct spi_transfer *xfer; > > + int status; > > + > > + list_for_each_entry(xfer, &msg->transfers, transfer_list) { > > + u8 attr = 0; > > + > > + status = dln2_spi_transfer_setup(dln2, xfer->speed_hz, > > + xfer->bits_per_word, > > + spi->mode); > > + if (status < 0) { > > + dev_err(&dln2->pdev->dev, "Cannot setup transfer\n"); > > + break; > > + } > > + > > + if (!xfer->cs_change && > > + !list_is_last(&xfer->transfer_list, &msg->transfers)) > > + attr = xfer->cs_change ? 0 : DLN2_SPI_ATTR_LEAVE_SS_LOW; > > + > > + status = dln2_spi_rdwr(dln2, xfer->tx_buf, xfer->rx_buf, > > + xfer->len, attr); > > We recently added a spi_transfer_is_last() operation which should allow > you to move this to using transfer_one() which is a bit nicer. Ok, sounds good! > > > + /* enable SPI module, we're good to go */ > > + ret = dln2_spi_enable(dln2, true); > > + if (ret < 0) { > > + dev_err(&pdev->dev, "Failed to enable SPI module\n"); > > + goto exit_free_master; > > + } > > It would be nice to have runtime PM operations which keep the device > disabled when idle, presumably that'd save a bit of power and it's > generally better practice. I'll add runtime PM and send a v7. laurentiu -- To unsubscribe from this list: send the line "unsubscribe linux-spi" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html