Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2012 * Armando Visconti, STMicroelectronics, armando.visconti@st.com. * * (C) Copyright 2018 * Quentin Schulz, Bootlin, quentin.schulz@bootlin.com * * Driver for ARM PL022 SPI Controller. */ #include <clk.h> #include <dm.h> #include <dm/device_compat.h> #include <fdtdec.h> #include <linux/io.h> #include <asm/global_data.h> #include <asm/gpio.h> #include <spi.h> #include <linux/printk.h> #define SSP_CR0 0x000 #define SSP_CR1 0x004 #define SSP_DR 0x008 #define SSP_SR 0x00C #define SSP_CPSR 0x010 #define SSP_IMSC 0x014 #define SSP_RIS 0x018 #define SSP_MIS 0x01C #define SSP_ICR 0x020 #define SSP_DMACR 0x024 #define SSP_CSR 0x030 /* vendor extension */ #define SSP_ITCR 0x080 #define SSP_ITIP 0x084 #define SSP_ITOP 0x088 #define SSP_TDR 0x08C #define SSP_PID0 0xFE0 #define SSP_PID1 0xFE4 #define SSP_PID2 0xFE8 #define SSP_PID3 0xFEC #define SSP_CID0 0xFF0 #define SSP_CID1 0xFF4 #define SSP_CID2 0xFF8 #define SSP_CID3 0xFFC /* SSP Control Register 0 - SSP_CR0 */ #define SSP_CR0_SPO (0x1 << 6) #define SSP_CR0_SPH (0x1 << 7) #define SSP_CR0_BIT_MODE(x) ((x) - 1) #define SSP_SCR_MIN (0x00) #define SSP_SCR_MAX (0xFF) #define SSP_SCR_SHFT 8 #define DFLT_CLKRATE 2 /* SSP Control Register 1 - SSP_CR1 */ #define SSP_CR1_MASK_SSE (0x1 << 1) #define SSP_CPSR_MIN (0x02) #define SSP_CPSR_MAX (0xFE) #define DFLT_PRESCALE (0x40) /* SSP Status Register - SSP_SR */ #define SSP_SR_MASK_TFE (0x1 << 0) /* Transmit FIFO empty */ #define SSP_SR_MASK_TNF (0x1 << 1) /* Transmit FIFO not full */ #define SSP_SR_MASK_RNE (0x1 << 2) /* Receive FIFO not empty */ #define SSP_SR_MASK_RFF (0x1 << 3) /* Receive FIFO full */ #define SSP_SR_MASK_BSY (0x1 << 4) /* Busy Flag */ struct pl022_spi_pdata { fdt_addr_t addr; fdt_size_t size; unsigned int freq; #if CONFIG_IS_ENABLED(DM_GPIO) struct gpio_desc cs_gpio; #endif }; struct pl022_spi_slave { void *base; unsigned int freq; }; /* * ARM PL022 exists in different 'flavors'. * This drivers currently support the standard variant (0x00041022), that has a * 16bit wide and 8 locations deep TX/RX FIFO. */ static int pl022_is_supported(struct pl022_spi_slave *ps) { /* PL022 version is 0x00041022 */ if ((readw(ps->base + SSP_PID0) == 0x22) && (readw(ps->base + SSP_PID1) == 0x10) && ((readw(ps->base + SSP_PID2) & 0xf) == 0x04) && (readw(ps->base + SSP_PID3) == 0x00)) return 1; return 0; } static int pl022_spi_probe(struct udevice *bus) { struct pl022_spi_pdata *plat = dev_get_plat(bus); struct pl022_spi_slave *ps = dev_get_priv(bus); ps->base = ioremap(plat->addr, plat->size); ps->freq = plat->freq; /* Check the PL022 version */ if (!pl022_is_supported(ps)) return -ENOTSUPP; /* 8 bits per word, high polarity and default clock rate */ writew(SSP_CR0_BIT_MODE(8), ps->base + SSP_CR0); writew(DFLT_PRESCALE, ps->base + SSP_CPSR); return 0; } static void pl022_spi_flush(struct pl022_spi_slave *ps) { do { while (readw(ps->base + SSP_SR) & SSP_SR_MASK_RNE) readw(ps->base + SSP_DR); } while (readw(ps->base + SSP_SR) & SSP_SR_MASK_BSY); } static int pl022_spi_claim_bus(struct udevice *dev) { struct udevice *bus = dev->parent; struct pl022_spi_slave *ps = dev_get_priv(bus); u16 reg; /* Enable the SPI hardware */ reg = readw(ps->base + SSP_CR1); reg |= SSP_CR1_MASK_SSE; writew(reg, ps->base + SSP_CR1); pl022_spi_flush(ps); return 0; } static int pl022_spi_release_bus(struct udevice *dev) { struct udevice *bus = dev->parent; struct pl022_spi_slave *ps = dev_get_priv(bus); u16 reg; pl022_spi_flush(ps); /* Disable the SPI hardware */ reg = readw(ps->base + SSP_CR1); reg &= ~SSP_CR1_MASK_SSE; writew(reg, ps->base + SSP_CR1); return 0; } static void pl022_spi_set_cs(struct udevice *dev, bool on) { #if CONFIG_IS_ENABLED(DM_GPIO) struct udevice *bus = dev->parent; struct pl022_spi_pdata *plat = dev_get_plat(bus); if (dm_gpio_is_valid(&plat->cs_gpio)) dm_gpio_set_value(&plat->cs_gpio, on ? 1 : 0); #endif } static int pl022_spi_xfer(struct udevice *dev, unsigned int bitlen, const void *dout, void *din, unsigned long flags) { struct udevice *bus = dev->parent; struct pl022_spi_slave *ps = dev_get_priv(bus); u32 len_tx = 0, len_rx = 0, len; u32 ret = 0; const u8 *txp = dout; u8 *rxp = din, value; if (bitlen == 0) /* Finish any previously submitted transfers */ goto done; /* * TODO: The controller can do non-multiple-of-8 bit * transfers, but this driver currently doesn't support it. * * It's also not clear how such transfers are supposed to be * represented as a stream of bytes...this is a limitation of * the current SPI interface. */ if (bitlen % 8) { /* Errors always terminate an ongoing transfer */ flags |= SPI_XFER_END; ret = -1; goto done; } if (flags & SPI_XFER_BEGIN) pl022_spi_set_cs(dev, true); len = bitlen / 8; while (len_tx < len) { if (readw(ps->base + SSP_SR) & SSP_SR_MASK_TNF) { value = txp ? *txp++ : 0; writew(value, ps->base + SSP_DR); len_tx++; } if (readw(ps->base + SSP_SR) & SSP_SR_MASK_RNE) { value = readw(ps->base + SSP_DR); if (rxp) *rxp++ = value; len_rx++; } } while (len_rx < len_tx) { if (readw(ps->base + SSP_SR) & SSP_SR_MASK_RNE) { value = readw(ps->base + SSP_DR); if (rxp) *rxp++ = value; len_rx++; } } done: if (flags & SPI_XFER_END) pl022_spi_set_cs(dev, false); return ret; } static inline u32 spi_rate(u32 rate, u16 cpsdvsr, u16 scr) { return rate / (cpsdvsr * (1 + scr)); } static int pl022_spi_set_speed(struct udevice *bus, uint speed) { struct pl022_spi_slave *ps = dev_get_priv(bus); u16 scr = SSP_SCR_MIN, cr0 = 0, cpsr = SSP_CPSR_MIN, best_scr = scr, best_cpsr = cpsr; u32 min, max, best_freq = 0, tmp; u32 rate = ps->freq; bool found = false; max = spi_rate(rate, SSP_CPSR_MIN, SSP_SCR_MIN); min = spi_rate(rate, SSP_CPSR_MAX, SSP_SCR_MAX); if (speed > max || speed < min) { pr_err("Tried to set speed to %dHz but min=%d and max=%d\n", speed, min, max); return -EINVAL; } while (cpsr <= SSP_CPSR_MAX && !found) { while (scr <= SSP_SCR_MAX) { tmp = spi_rate(rate, cpsr, scr); if (abs(speed - tmp) < abs(speed - best_freq)) { best_freq = tmp; best_cpsr = cpsr; best_scr = scr; if (tmp == speed) { found = true; break; } } scr++; } cpsr += 2; scr = SSP_SCR_MIN; } writew(best_cpsr, ps->base + SSP_CPSR); cr0 = readw(ps->base + SSP_CR0); writew(cr0 | (best_scr << SSP_SCR_SHFT), ps->base + SSP_CR0); return 0; } static int pl022_spi_set_mode(struct udevice *bus, uint mode) { struct pl022_spi_slave *ps = dev_get_priv(bus); u16 reg; reg = readw(ps->base + SSP_CR0); reg &= ~(SSP_CR0_SPH | SSP_CR0_SPO); if (mode & SPI_CPHA) reg |= SSP_CR0_SPH; if (mode & SPI_CPOL) reg |= SSP_CR0_SPO; writew(reg, ps->base + SSP_CR0); return 0; } static int pl022_cs_info(struct udevice *bus, uint cs, struct spi_cs_info *info) { return 0; } static const struct dm_spi_ops pl022_spi_ops = { .claim_bus = pl022_spi_claim_bus, .release_bus = pl022_spi_release_bus, .xfer = pl022_spi_xfer, .set_speed = pl022_spi_set_speed, .set_mode = pl022_spi_set_mode, .cs_info = pl022_cs_info, }; #if CONFIG_IS_ENABLED(OF_REAL) static int pl022_spi_of_to_plat(struct udevice *bus) { struct pl022_spi_pdata *plat = dev_get_plat(bus); const void *fdt = gd->fdt_blob; int node = dev_of_offset(bus); struct clk clkdev; int ret; plat->addr = fdtdec_get_addr_size(fdt, node, "reg", &plat->size); ret = clk_get_by_index(bus, 0, &clkdev); if (ret) return ret; plat->freq = clk_get_rate(&clkdev); #if CONFIG_IS_ENABLED(DM_GPIO) ret = gpio_request_by_name(bus, "cs-gpios", 0, &plat->cs_gpio, GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE); if (ret < 0 && ret != -ENOENT) return ret; #endif return 0; } static const struct udevice_id pl022_spi_ids[] = { { .compatible = "arm,pl022" }, { } }; #endif U_BOOT_DRIVER(pl022_spi) = { .name = "pl022_spi", .id = UCLASS_SPI, #if CONFIG_IS_ENABLED(OF_REAL) .of_match = pl022_spi_ids, .of_to_plat = pl022_spi_of_to_plat, #endif .ops = &pl022_spi_ops, .plat_auto = sizeof(struct pl022_spi_pdata), .priv_auto = sizeof(struct pl022_spi_slave), .probe = pl022_spi_probe, }; |