Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1248869 > unrolled thread
| Started by | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| First post | 2015-10-16 17:30 +0200 |
| Last post | 2015-10-16 18:00 +0200 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH v2] spi: Setup the master controller driver before setting the chipselect Franklin S Cooper Jr <fcooper@ti.com> - 2015-10-16 17:30 +0200
Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect Andy Shevchenko <andy.shevchenko@gmail.com> - 2015-10-16 17:50 +0200
Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect "Franklin S Cooper Jr." <fcooper@ti.com> - 2015-10-16 17:50 +0200
Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect Andy Shevchenko <andy.shevchenko@gmail.com> - 2015-10-16 18:00 +0200
| From | Franklin S Cooper Jr <fcooper@ti.com> |
|---|---|
| Date | 2015-10-16 17:30 +0200 |
| Subject | [PATCH v2] spi: Setup the master controller driver before setting the chipselect |
| Message-ID | <qkf7c-1SN-27@gated-at.bofh.it> |
SPI controllers may need to be properly setup before chip selects can be used. Therefore, wait until the spi controller has a chance to perform their setup procedure before trying to use the chip select. This also insures that the chip selects pins are in a good state before asseting them which otherwise may cause confusion. Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> --- Keystone 2 devices currently fail to boot in linux-next after the below commit was applied: spi: bitbang: switch to the generic implementation of transfer_one_message commit: 0037686596832572bbca05ab168d9884d7d704c1 This patch allows Keystone 2 devices to boot again in linux-next. Tested this patch on K2E evm and am437 starterkit which both have SPI devices to insure regressions aren't seen. V2 Changes: Update commit message. drivers/spi/spi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c index 4c638f3..9d5525a 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2059,11 +2059,11 @@ int spi_setup(struct spi_device *spi) if (!spi->max_speed_hz) spi->max_speed_hz = spi->master->max_speed_hz; - spi_set_cs(spi, false); - if (spi->master->setup) status = spi->master->setup(spi); + spi_set_cs(spi, false); + dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", -- 2.6.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Andy Shevchenko <andy.shevchenko@gmail.com> |
|---|---|
| Date | 2015-10-16 17:50 +0200 |
| Subject | Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect |
| Message-ID | <qkfqx-2iA-9@gated-at.bofh.it> |
| In reply to | #1248869 |
On Fri, Oct 16, 2015 at 6:29 PM, Franklin S Cooper Jr <fcooper@ti.com> wrote: > SPI controllers may need to be properly setup before chip selects > can be used. Therefore, wait until the spi controller has a chance > to perform their setup procedure before trying to use the chip > select. > > This also insures that the chip selects pins are in a good > state before asseting them which otherwise may cause confusion. > > Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> Does it mean I have to test it again? > --- > Keystone 2 devices currently fail to boot in linux-next after the > below commit was applied: > > spi: bitbang: switch to the generic implementation of transfer_one_message > commit: 0037686596832572bbca05ab168d9884d7d704c1 > > This patch allows Keystone 2 devices to boot again in linux-next. > > Tested this patch on K2E evm and am437 starterkit which both have SPI > devices to insure regressions aren't seen. > > V2 Changes: > Update commit message. > > drivers/spi/spi.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c > index 4c638f3..9d5525a 100644 > --- a/drivers/spi/spi.c > +++ b/drivers/spi/spi.c > @@ -2059,11 +2059,11 @@ int spi_setup(struct spi_device *spi) > if (!spi->max_speed_hz) > spi->max_speed_hz = spi->master->max_speed_hz; > > - spi_set_cs(spi, false); > - > if (spi->master->setup) > status = spi->master->setup(spi); > > + spi_set_cs(spi, false); > + > dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", > (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), > (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", > -- > 2.6.1 > -- With Best Regards, Andy Shevchenko -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Franklin S Cooper Jr." <fcooper@ti.com> |
|---|---|
| Date | 2015-10-16 17:50 +0200 |
| Subject | Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect |
| Message-ID | <qkfqy-2iA-29@gated-at.bofh.it> |
| In reply to | #1248915 |
On 10/16/2015 10:45 AM, Andy Shevchenko wrote: > On Fri, Oct 16, 2015 at 6:29 PM, Franklin S Cooper Jr <fcooper@ti.com> wrote: >> SPI controllers may need to be properly setup before chip selects >> can be used. Therefore, wait until the spi controller has a chance >> to perform their setup procedure before trying to use the chip >> select. >> >> This also insures that the chip selects pins are in a good >> state before asseting them which otherwise may cause confusion. >> >> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> > Does it mean I have to test it again? Oops sorry. No the patch hasn't changed. I can shoot a v3 with your tested by included. > >> --- >> Keystone 2 devices currently fail to boot in linux-next after the >> below commit was applied: >> >> spi: bitbang: switch to the generic implementation of transfer_one_message >> commit: 0037686596832572bbca05ab168d9884d7d704c1 >> >> This patch allows Keystone 2 devices to boot again in linux-next. >> >> Tested this patch on K2E evm and am437 starterkit which both have SPI >> devices to insure regressions aren't seen. >> >> V2 Changes: >> Update commit message. >> >> drivers/spi/spi.c | 4 ++-- >> 1 file changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c >> index 4c638f3..9d5525a 100644 >> --- a/drivers/spi/spi.c >> +++ b/drivers/spi/spi.c >> @@ -2059,11 +2059,11 @@ int spi_setup(struct spi_device *spi) >> if (!spi->max_speed_hz) >> spi->max_speed_hz = spi->master->max_speed_hz; >> >> - spi_set_cs(spi, false); >> - >> if (spi->master->setup) >> status = spi->master->setup(spi); >> >> + spi_set_cs(spi, false); >> + >> dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n", >> (int) (spi->mode & (SPI_CPOL | SPI_CPHA)), >> (spi->mode & SPI_CS_HIGH) ? "cs_high, " : "", >> -- >> 2.6.1 >> > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Andy Shevchenko <andy.shevchenko@gmail.com> |
|---|---|
| Date | 2015-10-16 18:00 +0200 |
| Subject | Re: [PATCH v2] spi: Setup the master controller driver before setting the chipselect |
| Message-ID | <qkfAf-2um-41@gated-at.bofh.it> |
| In reply to | #1248920 |
On Fri, Oct 16, 2015 at 6:47 PM, Franklin S Cooper Jr. <fcooper@ti.com> wrote: > > > On 10/16/2015 10:45 AM, Andy Shevchenko wrote: >> On Fri, Oct 16, 2015 at 6:29 PM, Franklin S Cooper Jr <fcooper@ti.com> wrote: >>> SPI controllers may need to be properly setup before chip selects >>> can be used. Therefore, wait until the spi controller has a chance >>> to perform their setup procedure before trying to use the chip >>> select. >>> >>> This also insures that the chip selects pins are in a good >>> state before asseting them which otherwise may cause confusion. >>> >>> Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> >> Does it mean I have to test it again? > Oops sorry. No the patch hasn't changed. I can shoot a v3 with your tested by included. Whatever Mark prefers. -- With Best Regards, Andy Shevchenko -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web