uboot/drivers/spi/soft_spi.c
<<
>>
Prefs
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * Copyright (c) 2014 Google, Inc
   4 *
   5 * (C) Copyright 2002
   6 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com.
   7 *
   8 * Influenced by code from:
   9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  10 */
  11
  12#include <common.h>
  13#include <dm.h>
  14#include <errno.h>
  15#include <fdtdec.h>
  16#include <log.h>
  17#include <malloc.h>
  18#include <spi.h>
  19#include <asm/global_data.h>
  20#include <asm/gpio.h>
  21#include <linux/bitops.h>
  22#include <linux/delay.h>
  23
  24DECLARE_GLOBAL_DATA_PTR;
  25
  26struct soft_spi_plat {
  27        struct gpio_desc cs;
  28        struct gpio_desc sclk;
  29        struct gpio_desc mosi;
  30        struct gpio_desc miso;
  31        int spi_delay_us;
  32        int flags;
  33};
  34
  35#define SPI_MASTER_NO_RX        BIT(0)
  36#define SPI_MASTER_NO_TX        BIT(1)
  37
  38struct soft_spi_priv {
  39        unsigned int mode;
  40};
  41
  42static int soft_spi_scl(struct udevice *dev, int bit)
  43{
  44        struct udevice *bus = dev_get_parent(dev);
  45        struct soft_spi_plat *plat = dev_get_plat(bus);
  46
  47        dm_gpio_set_value(&plat->sclk, bit);
  48
  49        return 0;
  50}
  51
  52static int soft_spi_sda(struct udevice *dev, int bit)
  53{
  54        struct udevice *bus = dev_get_parent(dev);
  55        struct soft_spi_plat *plat = dev_get_plat(bus);
  56
  57        dm_gpio_set_value(&plat->mosi, bit);
  58
  59        return 0;
  60}
  61
  62static int soft_spi_cs_activate(struct udevice *dev)
  63{
  64        struct udevice *bus = dev_get_parent(dev);
  65        struct soft_spi_priv *priv = dev_get_priv(bus);
  66        struct soft_spi_plat *plat = dev_get_plat(bus);
  67        int cidle = !!(priv->mode & SPI_CPOL);
  68
  69        dm_gpio_set_value(&plat->cs, 0);
  70        dm_gpio_set_value(&plat->sclk, cidle); /* to idle */
  71        dm_gpio_set_value(&plat->cs, 1);
  72
  73        return 0;
  74}
  75
  76static int soft_spi_cs_deactivate(struct udevice *dev)
  77{
  78        struct udevice *bus = dev_get_parent(dev);
  79        struct soft_spi_plat *plat = dev_get_plat(bus);
  80
  81        dm_gpio_set_value(&plat->cs, 0);
  82
  83        return 0;
  84}
  85
  86static int soft_spi_claim_bus(struct udevice *dev)
  87{
  88        struct udevice *bus = dev_get_parent(dev);
  89        struct soft_spi_priv *priv = dev_get_priv(bus);
  90        int cidle = !!(priv->mode & SPI_CPOL);
  91        /*
  92         * Make sure the SPI clock is in idle state as defined for
  93         * this slave.
  94         */
  95        return soft_spi_scl(dev, cidle);
  96}
  97
  98static int soft_spi_release_bus(struct udevice *dev)
  99{
 100        /* Nothing to do */
 101        return 0;
 102}
 103
 104/*-----------------------------------------------------------------------
 105 * SPI transfer
 106 *
 107 * This writes "bitlen" bits out the SPI MOSI port and simultaneously clocks
 108 * "bitlen" bits in the SPI MISO port.  That's just the way SPI works.
 109 *
 110 * The source of the outgoing bits is the "dout" parameter and the
 111 * destination of the input bits is the "din" parameter.  Note that "dout"
 112 * and "din" can point to the same memory location, in which case the
 113 * input data overwrites the output data (since both are buffered by
 114 * temporary variables, this is OK).
 115 */
 116static int soft_spi_xfer(struct udevice *dev, unsigned int bitlen,
 117                         const void *dout, void *din, unsigned long flags)
 118{
 119        struct udevice *bus = dev_get_parent(dev);
 120        struct soft_spi_priv *priv = dev_get_priv(bus);
 121        struct soft_spi_plat *plat = dev_get_plat(bus);
 122        uchar           tmpdin  = 0;
 123        uchar           tmpdout = 0;
 124        const u8        *txd = dout;
 125        u8              *rxd = din;
 126        int             cpha = !!(priv->mode & SPI_CPHA);
 127        int             cidle = !!(priv->mode & SPI_CPOL);
 128        unsigned int    j;
 129
 130        debug("spi_xfer: slave %s:%s dout %08X din %08X bitlen %u\n",
 131              dev->parent->name, dev->name, *(uint *)txd, *(uint *)rxd,
 132              bitlen);
 133
 134        if (flags & SPI_XFER_BEGIN)
 135                soft_spi_cs_activate(dev);
 136
 137        for (j = 0; j < bitlen; j++) {
 138                /*
 139                 * Check if it is time to work on a new byte.
 140                 */
 141                if ((j % 8) == 0) {
 142                        if (txd)
 143                                tmpdout = *txd++;
 144                        else
 145                                tmpdout = 0;
 146                        if (j != 0) {
 147                                if (rxd)
 148                                        *rxd++ = tmpdin;
 149                        }
 150                        tmpdin  = 0;
 151                }
 152
 153                /*
 154                 * CPOL 0: idle is low (0), active is high (1)
 155                 * CPOL 1: idle is high (1), active is low (0)
 156                 */
 157
 158                /*
 159                 * drive bit
 160                 *  CPHA 1: CLK from idle to active
 161                 */
 162                if (cpha)
 163                        soft_spi_scl(dev, !cidle);
 164                if ((plat->flags & SPI_MASTER_NO_TX) == 0)
 165                        soft_spi_sda(dev, !!(tmpdout & 0x80));
 166                udelay(plat->spi_delay_us);
 167
 168                /*
 169                 * sample bit
 170                 *  CPHA 0: CLK from idle to active
 171                 *  CPHA 1: CLK from active to idle
 172                 */
 173                if (!cpha)
 174                        soft_spi_scl(dev, !cidle);
 175                else
 176                        soft_spi_scl(dev, cidle);
 177                tmpdin  <<= 1;
 178                if ((plat->flags & SPI_MASTER_NO_RX) == 0)
 179                        tmpdin  |= dm_gpio_get_value(&plat->miso);
 180                tmpdout <<= 1;
 181                udelay(plat->spi_delay_us);
 182
 183                /*
 184                 * drive bit
 185                 *  CPHA 0: CLK from active to idle
 186                 */
 187                if (!cpha)
 188                        soft_spi_scl(dev, cidle);
 189        }
 190        /*
 191         * If the number of bits isn't a multiple of 8, shift the last
 192         * bits over to left-justify them.  Then store the last byte
 193         * read in.
 194         */
 195        if (rxd) {
 196                if ((bitlen % 8) != 0)
 197                        tmpdin <<= 8 - (bitlen % 8);
 198                *rxd++ = tmpdin;
 199        }
 200
 201        if (flags & SPI_XFER_END)
 202                soft_spi_cs_deactivate(dev);
 203
 204        return 0;
 205}
 206
 207static int soft_spi_set_speed(struct udevice *dev, unsigned int speed)
 208{
 209        /* Ignore any speed settings. Speed is implemented via "spi-delay-us" */
 210        return 0;
 211}
 212
 213static int soft_spi_set_mode(struct udevice *dev, unsigned int mode)
 214{
 215        struct soft_spi_priv *priv = dev_get_priv(dev);
 216
 217        priv->mode = mode;
 218
 219        return 0;
 220}
 221
 222static const struct dm_spi_ops soft_spi_ops = {
 223        .claim_bus      = soft_spi_claim_bus,
 224        .release_bus    = soft_spi_release_bus,
 225        .xfer           = soft_spi_xfer,
 226        .set_speed      = soft_spi_set_speed,
 227        .set_mode       = soft_spi_set_mode,
 228};
 229
 230static int soft_spi_of_to_plat(struct udevice *dev)
 231{
 232        struct soft_spi_plat *plat = dev_get_plat(dev);
 233        const void *blob = gd->fdt_blob;
 234        int node = dev_of_offset(dev);
 235
 236        plat->spi_delay_us = fdtdec_get_int(blob, node, "spi-delay-us", 0);
 237
 238        return 0;
 239}
 240
 241static int soft_spi_probe(struct udevice *dev)
 242{
 243        struct spi_slave *slave = dev_get_parent_priv(dev);
 244        struct soft_spi_plat *plat = dev_get_plat(dev);
 245        int cs_flags, clk_flags;
 246        int ret;
 247
 248        cs_flags = (slave && slave->mode & SPI_CS_HIGH) ? 0 : GPIOD_ACTIVE_LOW;
 249        clk_flags = (slave && slave->mode & SPI_CPOL) ? GPIOD_ACTIVE_LOW : 0;
 250
 251        if (gpio_request_by_name(dev, "cs-gpios", 0, &plat->cs,
 252                                 GPIOD_IS_OUT | cs_flags) ||
 253            gpio_request_by_name(dev, "gpio-sck", 0, &plat->sclk,
 254                                 GPIOD_IS_OUT | clk_flags))
 255                return -EINVAL;
 256
 257        ret = gpio_request_by_name(dev, "gpio-mosi", 0, &plat->mosi,
 258                                   GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
 259        if (ret)
 260                plat->flags |= SPI_MASTER_NO_TX;
 261
 262        ret = gpio_request_by_name(dev, "gpio-miso", 0, &plat->miso,
 263                                   GPIOD_IS_IN);
 264        if (ret)
 265                plat->flags |= SPI_MASTER_NO_RX;
 266
 267        if ((plat->flags & (SPI_MASTER_NO_RX | SPI_MASTER_NO_TX)) ==
 268            (SPI_MASTER_NO_RX | SPI_MASTER_NO_TX))
 269                return -EINVAL;
 270
 271        return 0;
 272}
 273
 274static const struct udevice_id soft_spi_ids[] = {
 275        { .compatible = "spi-gpio" },
 276        { }
 277};
 278
 279U_BOOT_DRIVER(soft_spi) = {
 280        .name   = "soft_spi",
 281        .id     = UCLASS_SPI,
 282        .of_match = soft_spi_ids,
 283        .ops    = &soft_spi_ops,
 284        .of_to_plat = soft_spi_of_to_plat,
 285        .plat_auto      = sizeof(struct soft_spi_plat),
 286        .priv_auto      = sizeof(struct soft_spi_priv),
 287        .probe  = soft_spi_probe,
 288};
 289