fix spi chip select configuration

SVN-Revision: 21164
master
Florian Fainelli 15 years ago
parent 84dd37d930
commit d15e136deb
  1. 2
      target/linux/brcm63xx/patches-2.6.32/240-spi.patch
  2. 2
      target/linux/brcm63xx/patches-2.6.33/240-spi.patch

@ -505,7 +505,7 @@
+ if (is_on == BITBANG_CS_INACTIVE)
+ val |= SPI_CMD_NOOP;
+ else if (is_on == BITBANG_CS_ACTIVE)
+ val |= (1 << spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+ val |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+
+ bcm_spi_writew(val, bs->regs, SPI_CMD);
+}

@ -505,7 +505,7 @@
+ if (is_on == BITBANG_CS_INACTIVE)
+ val |= SPI_CMD_NOOP;
+ else if (is_on == BITBANG_CS_ACTIVE)
+ val |= (1 << spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+ val |= (spi->chip_select << SPI_CMD_DEVICE_ID_SHIFT);
+
+ bcm_spi_writew(val, bs->regs, SPI_CMD);
+}

Loading…
Cancel
Save