Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | // |
| 3 | // DFL bus driver for Altera SPI Master |
| 4 | // |
| 5 | // Copyright (C) 2020 Intel Corporation, Inc. |
| 6 | // |
| 7 | // Authors: |
| 8 | // Matthew Gerlach <matthew.gerlach@linux.intel.com> |
| 9 | // |
| 10 | |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/stddef.h> |
| 15 | #include <linux/errno.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <linux/bitfield.h> |
| 19 | #include <linux/io-64-nonatomic-lo-hi.h> |
| 20 | #include <linux/regmap.h> |
| 21 | #include <linux/spi/spi.h> |
| 22 | #include <linux/spi/altera.h> |
| 23 | #include <linux/dfl.h> |
| 24 | |
| 25 | #define FME_FEATURE_ID_MAX10_SPI 0xe |
| 26 | #define FME_FEATURE_REV_MAX10_SPI_N5010 0x1 |
| 27 | |
| 28 | #define SPI_CORE_PARAMETER 0x8 |
| 29 | #define SHIFT_MODE BIT_ULL(1) |
| 30 | #define SHIFT_MODE_MSB 0 |
| 31 | #define SHIFT_MODE_LSB 1 |
| 32 | #define DATA_WIDTH GENMASK_ULL(7, 2) |
| 33 | #define NUM_CHIPSELECT GENMASK_ULL(13, 8) |
| 34 | #define CLK_POLARITY BIT_ULL(14) |
| 35 | #define CLK_PHASE BIT_ULL(15) |
| 36 | #define PERIPHERAL_ID GENMASK_ULL(47, 32) |
| 37 | #define SPI_CLK GENMASK_ULL(31, 22) |
| 38 | #define SPI_INDIRECT_ACC_OFST 0x10 |
| 39 | |
| 40 | #define INDIRECT_ADDR (SPI_INDIRECT_ACC_OFST+0x0) |
| 41 | #define INDIRECT_WR BIT_ULL(8) |
| 42 | #define INDIRECT_RD BIT_ULL(9) |
| 43 | #define INDIRECT_RD_DATA (SPI_INDIRECT_ACC_OFST+0x8) |
| 44 | #define INDIRECT_DATA_MASK GENMASK_ULL(31, 0) |
| 45 | #define INDIRECT_DEBUG BIT_ULL(32) |
| 46 | #define INDIRECT_WR_DATA (SPI_INDIRECT_ACC_OFST+0x10) |
| 47 | #define INDIRECT_TIMEOUT 10000 |
| 48 | |
| 49 | static int indirect_bus_reg_read(void *context, unsigned int reg, |
| 50 | unsigned int *val) |
| 51 | { |
| 52 | void __iomem *base = context; |
| 53 | int loops; |
| 54 | u64 v; |
| 55 | |
| 56 | writeq((reg >> 2) | INDIRECT_RD, base + INDIRECT_ADDR); |
| 57 | |
| 58 | loops = 0; |
| 59 | while ((readq(base + INDIRECT_ADDR) & INDIRECT_RD) && |
| 60 | (loops++ < INDIRECT_TIMEOUT)) |
| 61 | cpu_relax(); |
| 62 | |
| 63 | if (loops >= INDIRECT_TIMEOUT) { |
| 64 | pr_err("%s timed out %d\n", __func__, loops); |
| 65 | return -ETIME; |
| 66 | } |
| 67 | |
| 68 | v = readq(base + INDIRECT_RD_DATA); |
| 69 | |
| 70 | *val = v & INDIRECT_DATA_MASK; |
| 71 | |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | static int indirect_bus_reg_write(void *context, unsigned int reg, |
| 76 | unsigned int val) |
| 77 | { |
| 78 | void __iomem *base = context; |
| 79 | int loops; |
| 80 | |
| 81 | writeq(val, base + INDIRECT_WR_DATA); |
| 82 | writeq((reg >> 2) | INDIRECT_WR, base + INDIRECT_ADDR); |
| 83 | |
| 84 | loops = 0; |
| 85 | while ((readq(base + INDIRECT_ADDR) & INDIRECT_WR) && |
| 86 | (loops++ < INDIRECT_TIMEOUT)) |
| 87 | cpu_relax(); |
| 88 | |
| 89 | if (loops >= INDIRECT_TIMEOUT) { |
| 90 | pr_err("%s timed out %d\n", __func__, loops); |
| 91 | return -ETIME; |
| 92 | } |
| 93 | return 0; |
| 94 | } |
| 95 | |
| 96 | static const struct regmap_config indirect_regbus_cfg = { |
| 97 | .reg_bits = 32, |
| 98 | .reg_stride = 4, |
| 99 | .val_bits = 32, |
| 100 | .fast_io = true, |
| 101 | .max_register = 24, |
| 102 | |
| 103 | .reg_write = indirect_bus_reg_write, |
| 104 | .reg_read = indirect_bus_reg_read, |
| 105 | }; |
| 106 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 107 | static void config_spi_host(void __iomem *base, struct spi_controller *host) |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 108 | { |
| 109 | u64 v; |
| 110 | |
| 111 | v = readq(base + SPI_CORE_PARAMETER); |
| 112 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 113 | host->mode_bits = SPI_CS_HIGH; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 114 | if (FIELD_GET(CLK_POLARITY, v)) |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 115 | host->mode_bits |= SPI_CPOL; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 116 | if (FIELD_GET(CLK_PHASE, v)) |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 117 | host->mode_bits |= SPI_CPHA; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 118 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 119 | host->num_chipselect = FIELD_GET(NUM_CHIPSELECT, v); |
| 120 | host->bits_per_word_mask = |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 121 | SPI_BPW_RANGE_MASK(1, FIELD_GET(DATA_WIDTH, v)); |
| 122 | } |
| 123 | |
| 124 | static int dfl_spi_altera_probe(struct dfl_device *dfl_dev) |
| 125 | { |
Martin Hundebøll | 4f45f34 | 2021-07-16 15:54:40 +0200 | [diff] [blame] | 126 | struct spi_board_info board_info = { 0 }; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 127 | struct device *dev = &dfl_dev->dev; |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 128 | struct spi_controller *host; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 129 | struct altera_spi *hw; |
| 130 | void __iomem *base; |
Christophe JAILLET | 8e3ca32 | 2022-05-29 08:31:53 +0200 | [diff] [blame] | 131 | int err; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 132 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 133 | host = devm_spi_alloc_host(dev, sizeof(struct altera_spi)); |
| 134 | if (!host) |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 135 | return -ENOMEM; |
| 136 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 137 | host->bus_num = -1; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 138 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 139 | hw = spi_controller_get_devdata(host); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 140 | |
| 141 | hw->dev = dev; |
| 142 | |
| 143 | base = devm_ioremap_resource(dev, &dfl_dev->mmio_res); |
| 144 | |
Zou Wei | 532259b | 2021-05-11 15:08:42 +0800 | [diff] [blame] | 145 | if (IS_ERR(base)) |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 146 | return PTR_ERR(base); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 147 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 148 | config_spi_host(base, host); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 149 | dev_dbg(dev, "%s cs %u bpm 0x%x mode 0x%x\n", __func__, |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 150 | host->num_chipselect, host->bits_per_word_mask, |
| 151 | host->mode_bits); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 152 | |
| 153 | hw->regmap = devm_regmap_init(dev, NULL, base, &indirect_regbus_cfg); |
| 154 | if (IS_ERR(hw->regmap)) |
| 155 | return PTR_ERR(hw->regmap); |
| 156 | |
| 157 | hw->irq = -EINVAL; |
| 158 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 159 | altera_spi_init_host(host); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 160 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 161 | err = devm_spi_register_controller(dev, host); |
Christophe JAILLET | 8e3ca32 | 2022-05-29 08:31:53 +0200 | [diff] [blame] | 162 | if (err) |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 163 | return dev_err_probe(dev, err, "%s failed to register spi host\n", |
Christophe JAILLET | 8e3ca32 | 2022-05-29 08:31:53 +0200 | [diff] [blame] | 164 | __func__); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 165 | |
Martin Hundebøll | 4f45f34 | 2021-07-16 15:54:40 +0200 | [diff] [blame] | 166 | if (dfl_dev->revision == FME_FEATURE_REV_MAX10_SPI_N5010) |
| 167 | strscpy(board_info.modalias, "m10-n5010", SPI_NAME_SIZE); |
| 168 | else |
| 169 | strscpy(board_info.modalias, "m10-d5005", SPI_NAME_SIZE); |
| 170 | |
| 171 | board_info.max_speed_hz = 12500000; |
| 172 | board_info.bus_num = 0; |
| 173 | board_info.chip_select = 0; |
| 174 | |
Yang Yingliang | ec16819 | 2022-12-29 18:38:36 +0800 | [diff] [blame] | 175 | if (!spi_new_device(host, &board_info)) { |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 176 | dev_err(dev, "%s failed to create SPI device: %s\n", |
Martin Hundebøll | 4f45f34 | 2021-07-16 15:54:40 +0200 | [diff] [blame] | 177 | __func__, board_info.modalias); |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | return 0; |
Matthew Gerlach | ba2fc16 | 2021-04-16 09:57:20 -0700 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static const struct dfl_device_id dfl_spi_altera_ids[] = { |
| 184 | { FME_ID, FME_FEATURE_ID_MAX10_SPI }, |
| 185 | { } |
| 186 | }; |
| 187 | |
| 188 | static struct dfl_driver dfl_spi_altera_driver = { |
| 189 | .drv = { |
| 190 | .name = "dfl-spi-altera", |
| 191 | }, |
| 192 | .id_table = dfl_spi_altera_ids, |
| 193 | .probe = dfl_spi_altera_probe, |
| 194 | }; |
| 195 | |
| 196 | module_dfl_driver(dfl_spi_altera_driver); |
| 197 | |
| 198 | MODULE_DEVICE_TABLE(dfl, dfl_spi_altera_ids); |
| 199 | MODULE_DESCRIPTION("DFL spi altera driver"); |
| 200 | MODULE_AUTHOR("Intel Corporation"); |
| 201 | MODULE_LICENSE("GPL v2"); |