blob: 0564d8b55e70b336c3c91d7febee6c45e7feb6f6 [file] [log] [blame]
Mike Frysinger61228132013-12-03 16:43:26 -07001/*
2 * Simulate a SPI port
3 *
4 * Copyright (c) 2011-2013 The Chromium OS Authors.
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * Licensed under the GPL-2 or later.
9 */
10
Simon Glassc3aed5d2018-10-01 11:55:13 -060011#define LOG_CATEGORY UCLASS_SPI
12
Mike Frysinger61228132013-12-03 16:43:26 -070013#include <common.h>
Simon Glass49b5d6e2014-10-13 23:41:57 -060014#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Mike Frysinger61228132013-12-03 16:43:26 -070016#include <malloc.h>
17#include <spi.h>
Simon Glass49b5d6e2014-10-13 23:41:57 -060018#include <spi_flash.h>
Mike Frysinger61228132013-12-03 16:43:26 -070019#include <os.h>
20
Masahiro Yamada1221ce42016-09-21 11:28:55 +090021#include <linux/errno.h>
Mike Frysinger61228132013-12-03 16:43:26 -070022#include <asm/spi.h>
23#include <asm/state.h>
Simon Glass70e5e672020-07-07 13:11:49 -060024#include <dm/acpi.h>
Simon Glass49b5d6e2014-10-13 23:41:57 -060025#include <dm/device-internal.h>
26
Mike Frysinger61228132013-12-03 16:43:26 -070027#ifndef CONFIG_SPI_IDLE_VAL
28# define CONFIG_SPI_IDLE_VAL 0xFF
29#endif
30
Ovidiu Panait2da18002020-12-14 19:06:48 +020031/**
32 * struct sandbox_spi_priv - Sandbox SPI private data
33 *
34 * Helper struct to keep track of the sandbox SPI bus internal state. It is
35 * used in unit tests to verify that dm spi functions update the bus
36 * speed/mode properly (for instance, when jumping back and forth between spi
37 * slaves claiming the bus, we need to make sure that the bus speed is updated
38 * accordingly for each slave).
39 *
40 * @speed: Current bus speed.
41 * @mode: Current bus mode.
42 */
43struct sandbox_spi_priv {
44 uint speed;
45 uint mode;
46};
47
Simon Glass49b5d6e2014-10-13 23:41:57 -060048__weak int sandbox_spi_get_emul(struct sandbox_state *state,
49 struct udevice *bus, struct udevice *slave,
50 struct udevice **emulp)
Mike Frysinger61228132013-12-03 16:43:26 -070051{
Simon Glass49b5d6e2014-10-13 23:41:57 -060052 return -ENOENT;
Mike Frysinger61228132013-12-03 16:43:26 -070053}
54
Ovidiu Panaitadd685f2020-12-14 19:06:49 +020055uint sandbox_spi_get_speed(struct udevice *dev)
56{
57 struct sandbox_spi_priv *priv = dev_get_priv(dev);
58
59 return priv->speed;
60}
61
62uint sandbox_spi_get_mode(struct udevice *dev)
63{
64 struct sandbox_spi_priv *priv = dev_get_priv(dev);
65
66 return priv->mode;
67}
68
Simon Glass49b5d6e2014-10-13 23:41:57 -060069static int sandbox_spi_xfer(struct udevice *slave, unsigned int bitlen,
70 const void *dout, void *din, unsigned long flags)
Mike Frysinger61228132013-12-03 16:43:26 -070071{
Simon Glass49b5d6e2014-10-13 23:41:57 -060072 struct udevice *bus = slave->parent;
Mike Frysinger61228132013-12-03 16:43:26 -070073 struct sandbox_state *state = state_get_current();
Simon Glass49b5d6e2014-10-13 23:41:57 -060074 struct dm_spi_emul_ops *ops;
75 struct udevice *emul;
Mike Frysinger61228132013-12-03 16:43:26 -070076 uint bytes = bitlen / 8, i;
Simon Glass49b5d6e2014-10-13 23:41:57 -060077 int ret;
Simon Glass49b5d6e2014-10-13 23:41:57 -060078 uint busnum, cs;
Mike Frysinger61228132013-12-03 16:43:26 -070079
80 if (bitlen == 0)
Simon Glass49b5d6e2014-10-13 23:41:57 -060081 return 0;
Mike Frysinger61228132013-12-03 16:43:26 -070082
83 /* we can only do 8 bit transfers */
84 if (bitlen % 8) {
85 printf("sandbox_spi: xfer: invalid bitlen size %u; needs to be 8bit\n",
86 bitlen);
Simon Glass49b5d6e2014-10-13 23:41:57 -060087 return -EINVAL;
Mike Frysinger61228132013-12-03 16:43:26 -070088 }
89
Simon Glass8b85dfc2020-12-16 21:20:07 -070090 busnum = dev_seq(bus);
Simon Glass49b5d6e2014-10-13 23:41:57 -060091 cs = spi_chip_select(slave);
92 if (busnum >= CONFIG_SANDBOX_SPI_MAX_BUS ||
93 cs >= CONFIG_SANDBOX_SPI_MAX_CS) {
94 printf("%s: busnum=%u, cs=%u: out of range\n", __func__,
95 busnum, cs);
96 return -ENOENT;
97 }
98 ret = sandbox_spi_get_emul(state, bus, slave, &emul);
99 if (ret) {
100 printf("%s: busnum=%u, cs=%u: no emulation available (err=%d)\n",
101 __func__, busnum, cs, ret);
102 return -ENOENT;
103 }
104 ret = device_probe(emul);
105 if (ret)
106 return ret;
Mike Frysinger61228132013-12-03 16:43:26 -0700107
Simon Glass49b5d6e2014-10-13 23:41:57 -0600108 ops = spi_emul_get_ops(emul);
109 ret = ops->xfer(emul, bitlen, dout, din, flags);
Mike Frysinger61228132013-12-03 16:43:26 -0700110
Simon Glassc3aed5d2018-10-01 11:55:13 -0600111 log_content("sandbox_spi: xfer: got back %i (that's %s)\n rx:",
112 ret, ret ? "bad" : "good");
113 if (din) {
114 for (i = 0; i < bytes; ++i)
115 log_content(" %u:%02x", i, ((u8 *)din)[i]);
116 }
117 log_content("\n");
Mike Frysinger61228132013-12-03 16:43:26 -0700118
Mike Frysinger61228132013-12-03 16:43:26 -0700119 return ret;
120}
Simon Glass6e16d902014-02-27 13:26:24 -0700121
Simon Glass49b5d6e2014-10-13 23:41:57 -0600122static int sandbox_spi_set_speed(struct udevice *bus, uint speed)
Simon Glass6e16d902014-02-27 13:26:24 -0700123{
Ovidiu Panait2da18002020-12-14 19:06:48 +0200124 struct sandbox_spi_priv *priv = dev_get_priv(bus);
125
126 priv->speed = speed;
127
Simon Glass49b5d6e2014-10-13 23:41:57 -0600128 return 0;
Simon Glass6e16d902014-02-27 13:26:24 -0700129}
Simon Glass49b5d6e2014-10-13 23:41:57 -0600130
131static int sandbox_spi_set_mode(struct udevice *bus, uint mode)
132{
Ovidiu Panait2da18002020-12-14 19:06:48 +0200133 struct sandbox_spi_priv *priv = dev_get_priv(bus);
134
135 priv->mode = mode;
136
Simon Glass49b5d6e2014-10-13 23:41:57 -0600137 return 0;
138}
139
140static int sandbox_cs_info(struct udevice *bus, uint cs,
141 struct spi_cs_info *info)
142{
Ovidiu Panait1dc53ce2020-12-14 19:06:47 +0200143 /* Always allow activity on CS 0, CS 1 */
144 if (cs >= 2)
Bin Meng4b060002019-09-09 06:00:01 -0700145 return -EINVAL;
Simon Glass49b5d6e2014-10-13 23:41:57 -0600146
147 return 0;
148}
149
Simon Glassc53b3182019-10-20 21:31:47 -0600150static int sandbox_spi_get_mmap(struct udevice *dev, ulong *map_basep,
151 uint *map_sizep, uint *offsetp)
152{
153 *map_basep = 0x1000;
154 *map_sizep = 0x2000;
155 *offsetp = 0x100;
156
157 return 0;
158}
159
Simon Glass49b5d6e2014-10-13 23:41:57 -0600160static const struct dm_spi_ops sandbox_spi_ops = {
161 .xfer = sandbox_spi_xfer,
162 .set_speed = sandbox_spi_set_speed,
163 .set_mode = sandbox_spi_set_mode,
164 .cs_info = sandbox_cs_info,
Simon Glassc53b3182019-10-20 21:31:47 -0600165 .get_mmap = sandbox_spi_get_mmap,
Simon Glass49b5d6e2014-10-13 23:41:57 -0600166};
167
168static const struct udevice_id sandbox_spi_ids[] = {
169 { .compatible = "sandbox,spi" },
170 { }
171};
172
Walter Lozanoe3e24702020-06-25 01:10:04 -0300173U_BOOT_DRIVER(sandbox_spi) = {
174 .name = "sandbox_spi",
Simon Glass49b5d6e2014-10-13 23:41:57 -0600175 .id = UCLASS_SPI,
176 .of_match = sandbox_spi_ids,
Simon Glass49b5d6e2014-10-13 23:41:57 -0600177 .ops = &sandbox_spi_ops,
Ovidiu Panait2da18002020-12-14 19:06:48 +0200178 .priv_auto = sizeof(struct sandbox_spi_priv),
Simon Glass49b5d6e2014-10-13 23:41:57 -0600179};