aboutsummaryrefslogtreecommitdiff
path: root/src/soc/rockchip/rk3399
diff options
context:
space:
mode:
authorJulius Werner <jwerner@chromium.org>2018-03-27 16:28:52 -0700
committerJulius Werner <jwerner@chromium.org>2018-04-03 00:34:52 +0000
commit4783db2cf18c31ab48b219dabe1e04bf7f311d52 (patch)
treed68c3a022c55adc6ed0c7530983185325ac252d9 /src/soc/rockchip/rk3399
parentffeee420912eecf525564bb35b095b6bfa5d0de6 (diff)
spi: Add helper functions for bit-banging
Sometimes when bringing up a new board it can take a while until you have all the peripheral drivers ready. For those cases it is nice to be able to bitbang certain protocols so that you can already get further in the boot flow while those drivers are still being worked on. We already have this support for I2C, but it would be nice to have something for SPI as well, since without SPI you're not going to boot very far. This patch adds a couple of helper functions that platforms can use to implement bit-banging SPI with minimal effort. It also adds a proof of concept implementation using the RK3399. Change-Id: Ie3551f51cc9a9f8bf3a47fd5cea6d9c064da8a62 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/25394 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/soc/rockchip/rk3399')
-rw-r--r--src/soc/rockchip/rk3399/spi_bitbang.c157
1 files changed, 157 insertions, 0 deletions
diff --git a/src/soc/rockchip/rk3399/spi_bitbang.c b/src/soc/rockchip/rk3399/spi_bitbang.c
new file mode 100644
index 0000000000..628cc16764
--- /dev/null
+++ b/src/soc/rockchip/rk3399/spi_bitbang.c
@@ -0,0 +1,157 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2018 Google LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+/* Compile this driver in place of common/spi.c for bitbang testing.
+ NOTE: Also need to adjust board-specific code for GPIO pinmux! */
+
+#include <assert.h>
+#include <gpio.h>
+#include <soc/spi.h>
+#include <spi_bitbang.h>
+#include <spi_flash.h>
+
+struct rockchip_bitbang_slave {
+ struct spi_bitbang_ops ops;
+ gpio_t miso;
+ gpio_t mosi;
+ gpio_t clk;
+ gpio_t cs;
+};
+
+static int get_miso(const struct spi_bitbang_ops *ops)
+{
+ const struct rockchip_bitbang_slave *slave =
+ container_of(ops, const struct rockchip_bitbang_slave, ops);
+ return gpio_get(slave->miso);
+}
+
+static void set_mosi(const struct spi_bitbang_ops *ops, int value)
+{
+ const struct rockchip_bitbang_slave *slave =
+ container_of(ops, const struct rockchip_bitbang_slave, ops);
+ gpio_set(slave->mosi, value);
+}
+
+static void set_clk(const struct spi_bitbang_ops *ops, int value)
+{
+ const struct rockchip_bitbang_slave *slave =
+ container_of(ops, const struct rockchip_bitbang_slave, ops);
+ gpio_set(slave->clk, value);
+}
+
+static void set_cs(const struct spi_bitbang_ops *ops, int value)
+{
+ const struct rockchip_bitbang_slave *slave =
+ container_of(ops, const struct rockchip_bitbang_slave, ops);
+ gpio_set(slave->cs, value);
+}
+
+/* Can't use GPIO() here because of bug in GCC version used by Chromium OS. */
+static const struct rockchip_bitbang_slave slaves[] = {
+ [0] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 3, .bank = GPIO_A, .idx = 4 },
+ .mosi = { .port = 3, .bank = GPIO_A, .idx = 5 },
+ .clk = { .port = 3, .bank = GPIO_A, .idx = 6 },
+ .cs = { .port = 3, .bank = GPIO_A, .idx = 7 },
+ },
+ [1] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 1, .bank = GPIO_A, .idx = 7 },
+ .mosi = { .port = 1, .bank = GPIO_B, .idx = 0 },
+ .clk = { .port = 1, .bank = GPIO_B, .idx = 1 },
+ .cs = { .port = 1, .bank = GPIO_B, .idx = 2 },
+ },
+ [2] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 2, .bank = GPIO_B, .idx = 1 },
+ .mosi = { .port = 2, .bank = GPIO_B, .idx = 2 },
+ .clk = { .port = 2, .bank = GPIO_B, .idx = 3 },
+ .cs = { .port = 2, .bank = GPIO_B, .idx = 4 },
+ },
+ [3] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 1, .bank = GPIO_B, .idx = 7 },
+ .mosi = { .port = 1, .bank = GPIO_C, .idx = 0 },
+ .clk = { .port = 1, .bank = GPIO_C, .idx = 1 },
+ .cs = { .port = 1, .bank = GPIO_C, .idx = 2 },
+ },
+ [4] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 3, .bank = GPIO_A, .idx = 0 },
+ .mosi = { .port = 3, .bank = GPIO_A, .idx = 1 },
+ .clk = { .port = 3, .bank = GPIO_A, .idx = 2 },
+ .cs = { .port = 3, .bank = GPIO_A, .idx = 3 },
+ },
+ [5] = {
+ .ops = { get_miso, set_mosi, set_clk, set_cs },
+ .miso = { .port = 2, .bank = GPIO_C, .idx = 4 },
+ .mosi = { .port = 2, .bank = GPIO_C, .idx = 5 },
+ .clk = { .port = 2, .bank = GPIO_C, .idx = 6 },
+ .cs = { .port = 2, .bank = GPIO_C, .idx = 7 },
+ },
+};
+
+void rockchip_spi_init(unsigned int bus, unsigned int ignored_speed_hz)
+{
+ assert(bus >= 0 && bus < ARRAY_SIZE(slaves));
+
+ gpio_output(slaves[bus].cs, 1);
+ gpio_output(slaves[bus].clk, 0);
+ gpio_input(slaves[bus].miso);
+ gpio_output(slaves[bus].mosi, 0);
+}
+
+void rockchip_spi_set_sample_delay(unsigned int bus, unsigned int delay_ns)
+{
+ /* not supported, and not necessary for slow bitbang speeds */
+}
+
+static int spi_ctrlr_claim_bus(const struct spi_slave *slave)
+{
+ assert(slave->bus >= 0 && slave->bus < ARRAY_SIZE(slaves));
+ return spi_bitbang_claim_bus(&slaves[slave->bus].ops);
+}
+
+static void spi_ctrlr_release_bus(const struct spi_slave *slave)
+{
+ assert(slave->bus >= 0 && slave->bus < ARRAY_SIZE(slaves));
+ spi_bitbang_release_bus(&slaves[slave->bus].ops);
+}
+
+static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
+ size_t bytes_out, void *din, size_t bytes_in)
+{
+ assert(slave->bus >= 0 && slave->bus < ARRAY_SIZE(slaves));
+ return spi_bitbang_xfer(&slaves[slave->bus].ops,
+ dout, bytes_out, din, bytes_in);
+}
+
+static const struct spi_ctrlr spi_ctrlr = {
+ .claim_bus = spi_ctrlr_claim_bus,
+ .release_bus = spi_ctrlr_release_bus,
+ .xfer = spi_ctrlr_xfer,
+ .max_xfer_size = 65535,
+};
+
+const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
+ {
+ .ctrlr = &spi_ctrlr,
+ .bus_start = 0,
+ .bus_end = ARRAY_SIZE(slaves) - 1,
+ },
+};
+
+const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);