Author: blogic
Date: 2015-10-02 12:52:24 +0200 (Fri, 02 Oct 2015)
New Revision: 47097

Modified:
   
branches/chaos_calmer/target/linux/ramips/patches-3.18/0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch
Log:
ralink: speed selection was broken in spi-mt7621

Signed-off-by: John Crispin <[email protected]>

Backport of r47073

Modified: 
branches/chaos_calmer/target/linux/ramips/patches-3.18/0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch
===================================================================
--- 
branches/chaos_calmer/target/linux/ramips/patches-3.18/0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch
      2015-10-02 10:52:13 UTC (rev 47096)
+++ 
branches/chaos_calmer/target/linux/ramips/patches-3.18/0061-SPI-ralink-add-mt7621-SoC-spi-driver.patch
      2015-10-02 10:52:24 UTC (rev 47097)
@@ -25,7 +25,7 @@
  obj-$(CONFIG_SPI_OC_TINY)             += spi-oc-tiny.o
 --- /dev/null
 +++ b/drivers/spi/spi-mt7621.c
-@@ -0,0 +1,479 @@
+@@ -0,0 +1,480 @@
 +/*
 + * spi-mt7621.c -- MediaTek MT7621 SPI controller driver
 + *
@@ -117,12 +117,12 @@
 +{
 +      u32 master = mt7621_spi_read(rs, MT7621_SPI_MASTER);
 +
-+      master &= ~(0xfff << 16);
-+      master |= 1 << 16;
 +      master |= 7 << 29;
 +      master |= 1 << 2;
 +      if (duplex)
 +              master |= 1 << 10;
++      else
++              master &= ~(1 << 10);
 +
 +      mt7621_spi_write(rs, MT7621_SPI_MASTER, master);
 +}
@@ -322,6 +322,8 @@
 +
 +              for (i = 0; i < t->len; i++, len++)
 +                      data[len / 4] |= buf[i] << (8 * (len & 3));
++              if (speed > t->speed_hz)
++                      speed = t->speed_hz;
 +      }
 +
 +      if (WARN_ON(rx_len > 16)) {
@@ -354,7 +356,6 @@
 +      for (i = 0; i < rx_len; i += 4)
 +              data[i / 4] = mt7621_spi_read(rs, MT7621_SPI_DATA4 + i);
 +
-+      //m->actual_length = len + rx_len;
 +      m->actual_length = rx_len;
 +
 +      len = 0;
_______________________________________________
openwrt-commits mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits

Reply via email to