]> git.sur5r.net Git - u-boot/blobdiff - drivers/spi/rk_spi.c
tools: moveconfig: extract helper function for user confirmation
[u-boot] / drivers / spi / rk_spi.c
index 5e0c6ad278fee8c1dcde86cdda291501d29015ab..3e44f1795e3ccbcfedb606ece22b01bebd07fde5 100644 (file)
 #include <common.h>
 #include <clk.h>
 #include <dm.h>
+#include <dt-structs.h>
 #include <errno.h>
 #include <spi.h>
-#include <asm/errno.h>
+#include <linux/errno.h>
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/periph.h>
@@ -27,23 +28,25 @@ DECLARE_GLOBAL_DATA_PTR;
 #define DEBUG_RK_SPI   0
 
 struct rockchip_spi_platdata {
-       enum periph_id periph_id;
-       struct udevice *pinctrl;
+#if CONFIG_IS_ENABLED(OF_PLATDATA)
+       struct dtd_rockchip_rk3288_spi of_plat;
+#endif
        s32 frequency;          /* Default clock frequency, -1 for none */
        fdt_addr_t base;
        uint deactivate_delay_us;       /* Delay to wait after deactivate */
+       uint activate_delay_us;         /* Delay to wait after activate */
 };
 
 struct rockchip_spi_priv {
        struct rockchip_spi *regs;
-       struct udevice *clk_gpll;
+       struct clk clk;
        unsigned int max_freq;
        unsigned int mode;
-       enum periph_id periph_id;       /* Peripheral ID for this device */
        ulong last_transaction_us;      /* Time of last transaction end */
        u8 bits_per_word;               /* max 16 bits per word */
        u8 n_bytes;
        unsigned int speed_hz;
+       unsigned int last_speed_hz;
        unsigned int tmode;
        uint input_rate;
 };
@@ -82,6 +85,7 @@ static void rkspi_set_clk(struct rockchip_spi_priv *priv, uint speed)
        debug("spi speed %u, div %u\n", speed, clk_div);
 
        writel(clk_div, &priv->regs->baudr);
+       priv->last_speed_hz = speed;
 }
 
 static int rkspi_wait_till_not_busy(struct rockchip_spi *regs)
@@ -99,45 +103,89 @@ static int rkspi_wait_till_not_busy(struct rockchip_spi *regs)
        return 0;
 }
 
-static void spi_cs_activate(struct rockchip_spi *regs, uint cs)
+static void spi_cs_activate(struct udevice *dev, uint cs)
 {
+       struct udevice *bus = dev->parent;
+       struct rockchip_spi_platdata *plat = bus->platdata;
+       struct rockchip_spi_priv *priv = dev_get_priv(bus);
+       struct rockchip_spi *regs = priv->regs;
+
+       /* If it's too soon to do another transaction, wait */
+       if (plat->deactivate_delay_us && priv->last_transaction_us) {
+               ulong delay_us;         /* The delay completed so far */
+               delay_us = timer_get_us() - priv->last_transaction_us;
+               if (delay_us < plat->deactivate_delay_us)
+                       udelay(plat->deactivate_delay_us - delay_us);
+       }
+
        debug("activate cs%u\n", cs);
        writel(1 << cs, &regs->ser);
+       if (plat->activate_delay_us)
+               udelay(plat->activate_delay_us);
 }
 
-static void spi_cs_deactivate(struct rockchip_spi *regs, uint cs)
+static void spi_cs_deactivate(struct udevice *dev, uint cs)
 {
+       struct udevice *bus = dev->parent;
+       struct rockchip_spi_platdata *plat = bus->platdata;
+       struct rockchip_spi_priv *priv = dev_get_priv(bus);
+       struct rockchip_spi *regs = priv->regs;
+
        debug("deactivate cs%u\n", cs);
        writel(0, &regs->ser);
+
+       /* Remember time of this transaction so we can honour the bus delay */
+       if (plat->deactivate_delay_us)
+               priv->last_transaction_us = timer_get_us();
+}
+
+#if CONFIG_IS_ENABLED(OF_PLATDATA)
+static int conv_of_platdata(struct udevice *dev)
+{
+       struct rockchip_spi_platdata *plat = dev->platdata;
+       struct dtd_rockchip_rk3288_spi *dtplat = &plat->of_plat;
+       struct rockchip_spi_priv *priv = dev_get_priv(dev);
+       int ret;
+
+       plat->base = dtplat->reg[0];
+       plat->frequency = 20000000;
+       ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &priv->clk);
+       if (ret < 0)
+               return ret;
+       dev->req_seq = 0;
+
+       return 0;
 }
+#endif
 
 static int rockchip_spi_ofdata_to_platdata(struct udevice *bus)
 {
-       struct rockchip_spi_platdata *plat = bus->platdata;
+#if !CONFIG_IS_ENABLED(OF_PLATDATA)
+       struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
+       struct rockchip_spi_priv *priv = dev_get_priv(bus);
        const void *blob = gd->fdt_blob;
-       int node = bus->of_offset;
+       int node = dev_of_offset(bus);
        int ret;
 
        plat->base = dev_get_addr(bus);
-       ret = uclass_get_device(UCLASS_PINCTRL, 0, &plat->pinctrl);
-       if (ret)
-               return ret;
-       ret = pinctrl_get_periph_id(plat->pinctrl, bus);
 
+       ret = clk_get_by_index(bus, 0, &priv->clk);
        if (ret < 0) {
-               debug("%s: Could not get peripheral ID for %s: %d\n", __func__,
+               debug("%s: Could not get clock for %s: %d\n", __func__,
                      bus->name, ret);
-               return -FDT_ERR_NOTFOUND;
+               return ret;
        }
-       plat->periph_id = ret;
 
        plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency",
-                                       50000000);
+                                        50000000);
        plat->deactivate_delay_us = fdtdec_get_int(blob, node,
                                        "spi-deactivate-delay", 0);
-       debug("%s: base=%x, periph_id=%d, max-frequency=%d, deactivate_delay=%d\n",
-             __func__, plat->base, plat->periph_id, plat->frequency,
+       plat->activate_delay_us = fdtdec_get_int(blob, node,
+                                                "spi-activate-delay", 0);
+       debug("%s: base=%x, max-frequency=%d, deactivate_delay=%d\n",
+             __func__, (uint)plat->base, plat->frequency,
              plat->deactivate_delay_us);
+#endif
 
        return 0;
 }
@@ -149,22 +197,21 @@ static int rockchip_spi_probe(struct udevice *bus)
        int ret;
 
        debug("%s: probe\n", __func__);
+#if CONFIG_IS_ENABLED(OF_PLATDATA)
+       ret = conv_of_platdata(bus);
+       if (ret)
+               return ret;
+#endif
        priv->regs = (struct rockchip_spi *)plat->base;
 
        priv->last_transaction_us = timer_get_us();
        priv->max_freq = plat->frequency;
-       priv->periph_id = plat->periph_id;
-       ret = uclass_get_device(UCLASS_CLK, CLK_GENERAL, &priv->clk_gpll);
-       if (ret) {
-               debug("%s: Failed to find CLK_GENERAL: %d\n", __func__, ret);
-               return ret;
-       }
 
        /*
         * Use 99 MHz as our clock since it divides nicely into 594 MHz which
         * is the assumed speed for CLK_GENERAL.
         */
-       ret = clk_set_periph_rate(priv->clk_gpll, plat->periph_id, 99000000);
+       ret = clk_set_rate(&priv->clk, 99000000);
        if (ret < 0) {
                debug("%s: Failed to set clock: %d\n", __func__, ret);
                return ret;
@@ -180,13 +227,10 @@ static int rockchip_spi_probe(struct udevice *bus)
 static int rockchip_spi_claim_bus(struct udevice *dev)
 {
        struct udevice *bus = dev->parent;
-       struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
        struct rockchip_spi_priv *priv = dev_get_priv(bus);
        struct rockchip_spi *regs = priv->regs;
-       struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
        u8 spi_dfs, spi_tf;
        uint ctrlr0;
-       int ret;
 
        /* Disable the SPI hardware */
        rkspi_enable_chip(regs, 0);
@@ -208,13 +252,14 @@ static int rockchip_spi_claim_bus(struct udevice *dev)
                return -EPROTONOSUPPORT;
        }
 
-       rkspi_set_clk(priv, priv->speed_hz);
+       if (priv->speed_hz != priv->last_speed_hz)
+               rkspi_set_clk(priv, priv->speed_hz);
 
        /* Operation Mode */
        ctrlr0 = OMOD_MASTER << OMOD_SHIFT;
 
        /* Data Frame Size */
-       ctrlr0 |= spi_dfs & DFS_MASK << DFS_SHIFT;
+       ctrlr0 |= spi_dfs << DFS_SHIFT;
 
        /* set SPI mode 0..3 */
        if (priv->mode & SPI_CPOL)
@@ -235,7 +280,7 @@ static int rockchip_spi_claim_bus(struct udevice *dev)
        ctrlr0 |= FBM_MSB << FBM_SHIFT;
 
        /* Byte and Halfword Transform */
-       ctrlr0 |= (spi_tf & HALF_WORD_MASK) << HALF_WORD_TX_SHIFT;
+       ctrlr0 |= spi_tf << HALF_WORD_TX_SHIFT;
 
        /* Rxd Sample Delay */
        ctrlr0 |= 0 << RXDSD_SHIFT;
@@ -248,17 +293,16 @@ static int rockchip_spi_claim_bus(struct udevice *dev)
 
        writel(ctrlr0, &regs->ctrlr0);
 
-       ret = pinctrl_request(plat->pinctrl, priv->periph_id, slave_plat->cs);
-       if (ret) {
-               debug("%s: Cannot request pinctrl: %d\n", __func__, ret);
-               return ret;
-       }
-
        return 0;
 }
 
 static int rockchip_spi_release_bus(struct udevice *dev)
 {
+       struct udevice *bus = dev->parent;
+       struct rockchip_spi_priv *priv = dev_get_priv(bus);
+
+       rkspi_enable_chip(priv->regs, false);
+
        return 0;
 }
 
@@ -282,12 +326,12 @@ static int rockchip_spi_xfer(struct udevice *dev, unsigned int bitlen,
 
        /* Assert CS before transfer */
        if (flags & SPI_XFER_BEGIN)
-               spi_cs_activate(regs, slave_plat->cs);
+               spi_cs_activate(dev, slave_plat->cs);
 
        while (len > 0) {
                int todo = min(len, 0xffff);
 
-               rkspi_enable_chip(regs, true);
+               rkspi_enable_chip(regs, false);
                writel(todo - 1, &regs->ctrlr1);
                rkspi_enable_chip(regs, true);
 
@@ -316,7 +360,7 @@ static int rockchip_spi_xfer(struct udevice *dev, unsigned int bitlen,
 
        /* Deassert CS after transfer */
        if (flags & SPI_XFER_END)
-               spi_cs_deactivate(regs, slave_plat->cs);
+               spi_cs_deactivate(dev, slave_plat->cs);
 
        rkspi_enable_chip(regs, false);
 
@@ -363,7 +407,11 @@ static const struct udevice_id rockchip_spi_ids[] = {
 };
 
 U_BOOT_DRIVER(rockchip_spi) = {
+#if CONFIG_IS_ENABLED(OF_PLATDATA)
+       .name   = "rockchip_rk3288_spi",
+#else
        .name   = "rockchip_spi",
+#endif
        .id     = UCLASS_SPI,
        .of_match = rockchip_spi_ids,
        .ops    = &rockchip_spi_ops,