Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2008, Guennadi Liakhovetski <lg@denx.de> |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 7 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 8 | #include <log.h> |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 9 | #include <malloc.h> |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 10 | #include <spi.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 11 | #include <dm/device_compat.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 12 | #include <linux/bitops.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 13 | #include <linux/delay.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 14 | #include <linux/errno.h> |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 15 | #include <asm/io.h> |
Stefano Babic | 7faee91 | 2011-08-21 10:45:44 +0200 | [diff] [blame] | 16 | #include <asm/gpio.h> |
Stefano Babic | 78129d9 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 17 | #include <asm/arch/imx-regs.h> |
| 18 | #include <asm/arch/clock.h> |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 19 | #include <asm/mach-imx/spi.h> |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 20 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Marek Vasut | eb68aa1 | 2021-01-19 00:58:32 +0100 | [diff] [blame^] | 23 | /* MX35 and older is CSPI */ |
| 24 | #if defined(CONFIG_MX25) || defined(CONFIG_MX31) || defined(CONFIG_MX35) |
| 25 | #define MXC_CSPI |
| 26 | struct cspi_regs { |
| 27 | u32 rxdata; |
| 28 | u32 txdata; |
| 29 | u32 ctrl; |
| 30 | u32 intr; |
| 31 | u32 dma; |
| 32 | u32 stat; |
| 33 | u32 period; |
| 34 | u32 test; |
| 35 | }; |
| 36 | |
| 37 | #define MXC_CSPICTRL_EN BIT(0) |
| 38 | #define MXC_CSPICTRL_MODE BIT(1) |
| 39 | #define MXC_CSPICTRL_XCH BIT(2) |
| 40 | #define MXC_CSPICTRL_SMC BIT(3) |
| 41 | #define MXC_CSPICTRL_POL BIT(4) |
| 42 | #define MXC_CSPICTRL_PHA BIT(5) |
| 43 | #define MXC_CSPICTRL_SSCTL BIT(6) |
| 44 | #define MXC_CSPICTRL_SSPOL BIT(7) |
| 45 | #define MXC_CSPICTRL_DATARATE(x) (((x) & 0x7) << 16) |
| 46 | #define MXC_CSPICTRL_RXOVF BIT(6) |
| 47 | #define MXC_CSPIPERIOD_32KHZ BIT(15) |
| 48 | #define MAX_SPI_BYTES 4 |
| 49 | #if defined(CONFIG_MX25) || defined(CONFIG_MX35) |
| 50 | #define MXC_CSPICTRL_CHIPSELECT(x) (((x) & 0x3) << 12) |
| 51 | #define MXC_CSPICTRL_BITCOUNT(x) (((x) & 0xfff) << 20) |
| 52 | #define MXC_CSPICTRL_TC BIT(7) |
| 53 | #define MXC_CSPICTRL_MAXBITS 0xfff |
| 54 | #else /* MX31 */ |
| 55 | #define MXC_CSPICTRL_CHIPSELECT(x) (((x) & 0x3) << 24) |
| 56 | #define MXC_CSPICTRL_BITCOUNT(x) (((x) & 0x1f) << 8) |
| 57 | #define MXC_CSPICTRL_TC BIT(8) |
| 58 | #define MXC_CSPICTRL_MAXBITS 0x1f |
| 59 | #endif |
| 60 | |
| 61 | #else /* MX51 and newer is ECSPI */ |
| 62 | #define MXC_ECSPI |
| 63 | struct cspi_regs { |
| 64 | u32 rxdata; |
| 65 | u32 txdata; |
| 66 | u32 ctrl; |
| 67 | u32 cfg; |
| 68 | u32 intr; |
| 69 | u32 dma; |
| 70 | u32 stat; |
| 71 | u32 period; |
| 72 | }; |
| 73 | |
| 74 | #define MXC_CSPICTRL_EN BIT(0) |
| 75 | #define MXC_CSPICTRL_MODE BIT(1) |
| 76 | #define MXC_CSPICTRL_XCH BIT(2) |
| 77 | #define MXC_CSPICTRL_MODE_MASK (0xf << 4) |
| 78 | #define MXC_CSPICTRL_CHIPSELECT(x) (((x) & 0x3) << 12) |
| 79 | #define MXC_CSPICTRL_BITCOUNT(x) (((x) & 0xfff) << 20) |
| 80 | #define MXC_CSPICTRL_PREDIV(x) (((x) & 0xF) << 12) |
| 81 | #define MXC_CSPICTRL_POSTDIV(x) (((x) & 0xF) << 8) |
| 82 | #define MXC_CSPICTRL_SELCHAN(x) (((x) & 0x3) << 18) |
| 83 | #define MXC_CSPICTRL_MAXBITS 0xfff |
| 84 | #define MXC_CSPICTRL_TC BIT(7) |
| 85 | #define MXC_CSPICTRL_RXOVF BIT(6) |
| 86 | #define MXC_CSPIPERIOD_32KHZ BIT(15) |
| 87 | #define MAX_SPI_BYTES 32 |
| 88 | |
| 89 | /* Bit position inside CTRL register to be associated with SS */ |
| 90 | #define MXC_CSPICTRL_CHAN 18 |
| 91 | |
| 92 | /* Bit position inside CON register to be associated with SS */ |
| 93 | #define MXC_CSPICON_PHA 0 /* SCLK phase control */ |
| 94 | #define MXC_CSPICON_POL 4 /* SCLK polarity */ |
| 95 | #define MXC_CSPICON_SSPOL 12 /* SS polarity */ |
| 96 | #define MXC_CSPICON_CTL 20 /* inactive state of SCLK */ |
| 97 | #endif |
| 98 | |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 99 | #ifdef CONFIG_MX27 |
| 100 | /* i.MX27 has a completely wrong register layout and register definitions in the |
| 101 | * datasheet, the correct one is in the Freescale's Linux driver */ |
| 102 | |
Helmut Raiger | 785efc9 | 2011-06-15 01:45:45 +0000 | [diff] [blame] | 103 | #error "i.MX27 CSPI not supported due to drastic differences in register definitions" \ |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 104 | "See linux mxc_spi driver from Freescale for details." |
Eric Nelson | fe1e761 | 2012-01-31 07:52:03 +0000 | [diff] [blame] | 105 | #endif |
Stefano Babic | dcd73cd | 2011-01-19 22:46:30 +0000 | [diff] [blame] | 106 | |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 107 | __weak int board_spi_cs_gpio(unsigned bus, unsigned cs) |
| 108 | { |
| 109 | return -1; |
| 110 | } |
| 111 | |
Stefano Babic | d77fe99 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 112 | #define OUT MXC_GPIO_DIRECTION_OUT |
| 113 | |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 114 | #define reg_read readl |
| 115 | #define reg_write(a, v) writel(v, a) |
| 116 | |
Heiko Schocher | b77c888 | 2014-07-14 10:22:11 +0200 | [diff] [blame] | 117 | #if !defined(CONFIG_SYS_SPI_MXC_WAIT) |
| 118 | #define CONFIG_SYS_SPI_MXC_WAIT (CONFIG_SYS_HZ/100) /* 10 ms */ |
| 119 | #endif |
| 120 | |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 121 | #define MAX_CS_COUNT 4 |
| 122 | |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 123 | struct mxc_spi_slave { |
| 124 | struct spi_slave slave; |
| 125 | unsigned long base; |
| 126 | u32 ctrl_reg; |
Eric Nelson | fe1e761 | 2012-01-31 07:52:03 +0000 | [diff] [blame] | 127 | #if defined(MXC_ECSPI) |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 128 | u32 cfg_reg; |
| 129 | #endif |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 130 | int gpio; |
Stefano Babic | d77fe99 | 2010-07-06 17:05:06 +0200 | [diff] [blame] | 131 | int ss_pol; |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 132 | unsigned int max_hz; |
| 133 | unsigned int mode; |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 134 | struct gpio_desc ss; |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 135 | struct gpio_desc cs_gpios[MAX_CS_COUNT]; |
| 136 | struct udevice *dev; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 137 | }; |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 138 | |
| 139 | static inline struct mxc_spi_slave *to_mxc_spi_slave(struct spi_slave *slave) |
| 140 | { |
| 141 | return container_of(slave, struct mxc_spi_slave, slave); |
| 142 | } |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 143 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 144 | static void mxc_spi_cs_activate(struct mxc_spi_slave *mxcs) |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 145 | { |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 146 | #if CONFIG_IS_ENABLED(DM_SPI) |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 147 | struct udevice *dev = mxcs->dev; |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 148 | struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev); |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 149 | |
| 150 | u32 cs = slave_plat->cs; |
| 151 | |
| 152 | if (!dm_gpio_is_valid(&mxcs->cs_gpios[cs])) |
| 153 | return; |
| 154 | |
| 155 | dm_gpio_set_value(&mxcs->cs_gpios[cs], 1); |
| 156 | #else |
| 157 | if (mxcs->gpio > 0) |
| 158 | gpio_set_value(mxcs->gpio, mxcs->ss_pol); |
| 159 | #endif |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 160 | } |
| 161 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 162 | static void mxc_spi_cs_deactivate(struct mxc_spi_slave *mxcs) |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 163 | { |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 164 | #if CONFIG_IS_ENABLED(DM_SPI) |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 165 | struct udevice *dev = mxcs->dev; |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 166 | struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev); |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 167 | |
| 168 | u32 cs = slave_plat->cs; |
| 169 | |
| 170 | if (!dm_gpio_is_valid(&mxcs->cs_gpios[cs])) |
| 171 | return; |
| 172 | |
| 173 | dm_gpio_set_value(&mxcs->cs_gpios[cs], 0); |
| 174 | #else |
| 175 | if (mxcs->gpio > 0) |
| 176 | gpio_set_value(mxcs->gpio, !(mxcs->ss_pol)); |
| 177 | #endif |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Anatolij Gustschin | 0aa35fd | 2011-01-19 22:46:32 +0000 | [diff] [blame] | 180 | u32 get_cspi_div(u32 div) |
| 181 | { |
| 182 | int i; |
| 183 | |
| 184 | for (i = 0; i < 8; i++) { |
| 185 | if (div <= (4 << i)) |
| 186 | return i; |
| 187 | } |
| 188 | return i; |
| 189 | } |
| 190 | |
Eric Nelson | fe1e761 | 2012-01-31 07:52:03 +0000 | [diff] [blame] | 191 | #ifdef MXC_CSPI |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 192 | static s32 spi_cfg_mxc(struct mxc_spi_slave *mxcs, unsigned int cs) |
Stefano Babic | dcd73cd | 2011-01-19 22:46:30 +0000 | [diff] [blame] | 193 | { |
| 194 | unsigned int ctrl_reg; |
Anatolij Gustschin | 0aa35fd | 2011-01-19 22:46:32 +0000 | [diff] [blame] | 195 | u32 clk_src; |
| 196 | u32 div; |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 197 | unsigned int max_hz = mxcs->max_hz; |
| 198 | unsigned int mode = mxcs->mode; |
Anatolij Gustschin | 0aa35fd | 2011-01-19 22:46:32 +0000 | [diff] [blame] | 199 | |
| 200 | clk_src = mxc_get_clock(MXC_CSPI_CLK); |
| 201 | |
Benoît Thébaudeau | 884622b | 2012-08-10 08:51:50 +0000 | [diff] [blame] | 202 | div = DIV_ROUND_UP(clk_src, max_hz); |
Anatolij Gustschin | 0aa35fd | 2011-01-19 22:46:32 +0000 | [diff] [blame] | 203 | div = get_cspi_div(div); |
| 204 | |
| 205 | debug("clk %d Hz, div %d, real clk %d Hz\n", |
| 206 | max_hz, div, clk_src / (4 << div)); |
Stefano Babic | dcd73cd | 2011-01-19 22:46:30 +0000 | [diff] [blame] | 207 | |
| 208 | ctrl_reg = MXC_CSPICTRL_CHIPSELECT(cs) | |
| 209 | MXC_CSPICTRL_BITCOUNT(MXC_CSPICTRL_MAXBITS) | |
Anatolij Gustschin | 0aa35fd | 2011-01-19 22:46:32 +0000 | [diff] [blame] | 210 | MXC_CSPICTRL_DATARATE(div) | |
Stefano Babic | dcd73cd | 2011-01-19 22:46:30 +0000 | [diff] [blame] | 211 | MXC_CSPICTRL_EN | |
| 212 | #ifdef CONFIG_MX35 |
| 213 | MXC_CSPICTRL_SSCTL | |
| 214 | #endif |
| 215 | MXC_CSPICTRL_MODE; |
| 216 | |
| 217 | if (mode & SPI_CPHA) |
| 218 | ctrl_reg |= MXC_CSPICTRL_PHA; |
| 219 | if (mode & SPI_CPOL) |
| 220 | ctrl_reg |= MXC_CSPICTRL_POL; |
| 221 | if (mode & SPI_CS_HIGH) |
| 222 | ctrl_reg |= MXC_CSPICTRL_SSPOL; |
| 223 | mxcs->ctrl_reg = ctrl_reg; |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | #endif |
| 228 | |
Eric Nelson | fe1e761 | 2012-01-31 07:52:03 +0000 | [diff] [blame] | 229 | #ifdef MXC_ECSPI |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 230 | static s32 spi_cfg_mxc(struct mxc_spi_slave *mxcs, unsigned int cs) |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 231 | { |
| 232 | u32 clk_src = mxc_get_clock(MXC_CSPI_CLK); |
Dirk Behme | b177b71 | 2013-05-11 07:25:54 +0200 | [diff] [blame] | 233 | s32 reg_ctrl, reg_config; |
Markus Niebel | 6683e62 | 2014-02-17 17:33:17 +0100 | [diff] [blame] | 234 | u32 ss_pol = 0, sclkpol = 0, sclkpha = 0, sclkctl = 0; |
| 235 | u32 pre_div = 0, post_div = 0; |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 236 | struct cspi_regs *regs = (struct cspi_regs *)mxcs->base; |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 237 | unsigned int max_hz = mxcs->max_hz; |
| 238 | unsigned int mode = mxcs->mode; |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 239 | |
Fabio Estevam | 833fb55 | 2013-04-09 13:06:25 +0000 | [diff] [blame] | 240 | /* |
| 241 | * Reset SPI and set all CSs to master mode, if toggling |
| 242 | * between slave and master mode we might see a glitch |
| 243 | * on the clock line |
| 244 | */ |
| 245 | reg_ctrl = MXC_CSPICTRL_MODE_MASK; |
| 246 | reg_write(®s->ctrl, reg_ctrl); |
| 247 | reg_ctrl |= MXC_CSPICTRL_EN; |
| 248 | reg_write(®s->ctrl, reg_ctrl); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 249 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 250 | if (clk_src > max_hz) { |
Dirk Behme | b177b71 | 2013-05-11 07:25:54 +0200 | [diff] [blame] | 251 | pre_div = (clk_src - 1) / max_hz; |
| 252 | /* fls(1) = 1, fls(0x80000000) = 32, fls(16) = 5 */ |
| 253 | post_div = fls(pre_div); |
| 254 | if (post_div > 4) { |
| 255 | post_div -= 4; |
| 256 | if (post_div >= 16) { |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 257 | printf("Error: no divider for the freq: %d\n", |
| 258 | max_hz); |
| 259 | return -1; |
| 260 | } |
Dirk Behme | b177b71 | 2013-05-11 07:25:54 +0200 | [diff] [blame] | 261 | pre_div >>= post_div; |
| 262 | } else { |
| 263 | post_div = 0; |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 264 | } |
| 265 | } |
| 266 | |
| 267 | debug("pre_div = %d, post_div=%d\n", pre_div, post_div); |
| 268 | reg_ctrl = (reg_ctrl & ~MXC_CSPICTRL_SELCHAN(3)) | |
| 269 | MXC_CSPICTRL_SELCHAN(cs); |
| 270 | reg_ctrl = (reg_ctrl & ~MXC_CSPICTRL_PREDIV(0x0F)) | |
| 271 | MXC_CSPICTRL_PREDIV(pre_div); |
| 272 | reg_ctrl = (reg_ctrl & ~MXC_CSPICTRL_POSTDIV(0x0F)) | |
| 273 | MXC_CSPICTRL_POSTDIV(post_div); |
| 274 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 275 | if (mode & SPI_CS_HIGH) |
| 276 | ss_pol = 1; |
| 277 | |
Markus Niebel | 6683e62 | 2014-02-17 17:33:17 +0100 | [diff] [blame] | 278 | if (mode & SPI_CPOL) { |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 279 | sclkpol = 1; |
Markus Niebel | 6683e62 | 2014-02-17 17:33:17 +0100 | [diff] [blame] | 280 | sclkctl = 1; |
| 281 | } |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 282 | |
| 283 | if (mode & SPI_CPHA) |
| 284 | sclkpha = 1; |
| 285 | |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 286 | reg_config = reg_read(®s->cfg); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 287 | |
| 288 | /* |
| 289 | * Configuration register setup |
Stefano Babic | dcd73cd | 2011-01-19 22:46:30 +0000 | [diff] [blame] | 290 | * The MX51 supports different setup for each SS |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 291 | */ |
| 292 | reg_config = (reg_config & ~(1 << (cs + MXC_CSPICON_SSPOL))) | |
| 293 | (ss_pol << (cs + MXC_CSPICON_SSPOL)); |
| 294 | reg_config = (reg_config & ~(1 << (cs + MXC_CSPICON_POL))) | |
| 295 | (sclkpol << (cs + MXC_CSPICON_POL)); |
Markus Niebel | 6683e62 | 2014-02-17 17:33:17 +0100 | [diff] [blame] | 296 | reg_config = (reg_config & ~(1 << (cs + MXC_CSPICON_CTL))) | |
| 297 | (sclkctl << (cs + MXC_CSPICON_CTL)); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 298 | reg_config = (reg_config & ~(1 << (cs + MXC_CSPICON_PHA))) | |
| 299 | (sclkpha << (cs + MXC_CSPICON_PHA)); |
| 300 | |
| 301 | debug("reg_ctrl = 0x%x\n", reg_ctrl); |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 302 | reg_write(®s->ctrl, reg_ctrl); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 303 | debug("reg_config = 0x%x\n", reg_config); |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 304 | reg_write(®s->cfg, reg_config); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 305 | |
| 306 | /* save config register and control register */ |
| 307 | mxcs->ctrl_reg = reg_ctrl; |
| 308 | mxcs->cfg_reg = reg_config; |
| 309 | |
| 310 | /* clear interrupt reg */ |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 311 | reg_write(®s->intr, 0); |
| 312 | reg_write(®s->stat, MXC_CSPICTRL_TC | MXC_CSPICTRL_RXOVF); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | #endif |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 317 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 318 | int spi_xchg_single(struct mxc_spi_slave *mxcs, unsigned int bitlen, |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 319 | const u8 *dout, u8 *din, unsigned long flags) |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 320 | { |
Axel Lin | fb7def9 | 2013-06-14 21:13:32 +0800 | [diff] [blame] | 321 | int nbytes = DIV_ROUND_UP(bitlen, 8); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 322 | u32 data, cnt, i; |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 323 | struct cspi_regs *regs = (struct cspi_regs *)mxcs->base; |
Heiko Schocher | b77c888 | 2014-07-14 10:22:11 +0200 | [diff] [blame] | 324 | u32 ts; |
| 325 | int status; |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 326 | |
Ye Li | 07955fb | 2019-01-04 09:26:00 +0000 | [diff] [blame] | 327 | debug("%s: bitlen %d dout 0x%lx din 0x%lx\n", |
| 328 | __func__, bitlen, (ulong)dout, (ulong)din); |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 329 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 330 | mxcs->ctrl_reg = (mxcs->ctrl_reg & |
| 331 | ~MXC_CSPICTRL_BITCOUNT(MXC_CSPICTRL_MAXBITS)) | |
Guennadi Liakhovetski | d338013 | 2009-02-07 00:09:12 +0100 | [diff] [blame] | 332 | MXC_CSPICTRL_BITCOUNT(bitlen - 1); |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 333 | |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 334 | reg_write(®s->ctrl, mxcs->ctrl_reg | MXC_CSPICTRL_EN); |
Eric Nelson | fe1e761 | 2012-01-31 07:52:03 +0000 | [diff] [blame] | 335 | #ifdef MXC_ECSPI |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 336 | reg_write(®s->cfg, mxcs->cfg_reg); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 337 | #endif |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 338 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 339 | /* Clear interrupt register */ |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 340 | reg_write(®s->stat, MXC_CSPICTRL_TC | MXC_CSPICTRL_RXOVF); |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 341 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 342 | /* |
| 343 | * The SPI controller works only with words, |
| 344 | * check if less than a word is sent. |
| 345 | * Access to the FIFO is only 32 bit |
| 346 | */ |
| 347 | if (bitlen % 32) { |
| 348 | data = 0; |
| 349 | cnt = (bitlen % 32) / 8; |
| 350 | if (dout) { |
| 351 | for (i = 0; i < cnt; i++) { |
| 352 | data = (data << 8) | (*dout++ & 0xFF); |
| 353 | } |
| 354 | } |
| 355 | debug("Sending SPI 0x%x\n", data); |
| 356 | |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 357 | reg_write(®s->txdata, data); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 358 | nbytes -= cnt; |
| 359 | } |
| 360 | |
| 361 | data = 0; |
| 362 | |
| 363 | while (nbytes > 0) { |
| 364 | data = 0; |
| 365 | if (dout) { |
| 366 | /* Buffer is not 32-bit aligned */ |
| 367 | if ((unsigned long)dout & 0x03) { |
| 368 | data = 0; |
Anatolij Gustschin | 089ebe0 | 2011-01-20 07:53:06 +0000 | [diff] [blame] | 369 | for (i = 0; i < 4; i++) |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 370 | data = (data << 8) | (*dout++ & 0xFF); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 371 | } else { |
| 372 | data = *(u32 *)dout; |
| 373 | data = cpu_to_be32(data); |
Timo Herbrecher | 6420320 | 2013-10-16 00:05:09 +0530 | [diff] [blame] | 374 | dout += 4; |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 375 | } |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 376 | } |
| 377 | debug("Sending SPI 0x%x\n", data); |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 378 | reg_write(®s->txdata, data); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 379 | nbytes -= 4; |
| 380 | } |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 381 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 382 | /* FIFO is written, now starts the transfer setting the XCH bit */ |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 383 | reg_write(®s->ctrl, mxcs->ctrl_reg | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 384 | MXC_CSPICTRL_EN | MXC_CSPICTRL_XCH); |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 385 | |
Heiko Schocher | b77c888 | 2014-07-14 10:22:11 +0200 | [diff] [blame] | 386 | ts = get_timer(0); |
| 387 | status = reg_read(®s->stat); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 388 | /* Wait until the TC (Transfer completed) bit is set */ |
Heiko Schocher | b77c888 | 2014-07-14 10:22:11 +0200 | [diff] [blame] | 389 | while ((status & MXC_CSPICTRL_TC) == 0) { |
| 390 | if (get_timer(ts) > CONFIG_SYS_SPI_MXC_WAIT) { |
| 391 | printf("spi_xchg_single: Timeout!\n"); |
| 392 | return -1; |
| 393 | } |
| 394 | status = reg_read(®s->stat); |
| 395 | } |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 396 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 397 | /* Transfer completed, clear any pending request */ |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 398 | reg_write(®s->stat, MXC_CSPICTRL_TC | MXC_CSPICTRL_RXOVF); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 399 | |
Axel Lin | fb7def9 | 2013-06-14 21:13:32 +0800 | [diff] [blame] | 400 | nbytes = DIV_ROUND_UP(bitlen, 8); |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 401 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 402 | cnt = nbytes % 32; |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 403 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 404 | if (bitlen % 32) { |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 405 | data = reg_read(®s->rxdata); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 406 | cnt = (bitlen % 32) / 8; |
Anatolij Gustschin | 089ebe0 | 2011-01-20 07:53:06 +0000 | [diff] [blame] | 407 | data = cpu_to_be32(data) >> ((sizeof(data) - cnt) * 8); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 408 | debug("SPI Rx unaligned: 0x%x\n", data); |
| 409 | if (din) { |
Anatolij Gustschin | 089ebe0 | 2011-01-20 07:53:06 +0000 | [diff] [blame] | 410 | memcpy(din, &data, cnt); |
| 411 | din += cnt; |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 412 | } |
| 413 | nbytes -= cnt; |
| 414 | } |
| 415 | |
| 416 | while (nbytes > 0) { |
| 417 | u32 tmp; |
Stefano Babic | 2858045 | 2011-01-19 22:46:33 +0000 | [diff] [blame] | 418 | tmp = reg_read(®s->rxdata); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 419 | data = cpu_to_be32(tmp); |
| 420 | debug("SPI Rx: 0x%x 0x%x\n", tmp, data); |
Masahiro Yamada | db20464 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 421 | cnt = min_t(u32, nbytes, sizeof(data)); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 422 | if (din) { |
| 423 | memcpy(din, &data, cnt); |
| 424 | din += cnt; |
| 425 | } |
| 426 | nbytes -= cnt; |
| 427 | } |
| 428 | |
| 429 | return 0; |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 430 | |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 431 | } |
| 432 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 433 | static int mxc_spi_xfer_internal(struct mxc_spi_slave *mxcs, |
| 434 | unsigned int bitlen, const void *dout, |
| 435 | void *din, unsigned long flags) |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 436 | { |
Axel Lin | fb7def9 | 2013-06-14 21:13:32 +0800 | [diff] [blame] | 437 | int n_bytes = DIV_ROUND_UP(bitlen, 8); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 438 | int n_bits; |
| 439 | int ret; |
| 440 | u32 blk_size; |
| 441 | u8 *p_outbuf = (u8 *)dout; |
| 442 | u8 *p_inbuf = (u8 *)din; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 443 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 444 | if (!mxcs) |
| 445 | return -EINVAL; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 446 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 447 | if (flags & SPI_XFER_BEGIN) |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 448 | mxc_spi_cs_activate(mxcs); |
Magnus Lilja | 1858a9a | 2010-02-09 22:05:39 +0100 | [diff] [blame] | 449 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 450 | while (n_bytes > 0) { |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 451 | if (n_bytes < MAX_SPI_BYTES) |
| 452 | blk_size = n_bytes; |
| 453 | else |
| 454 | blk_size = MAX_SPI_BYTES; |
| 455 | |
| 456 | n_bits = blk_size * 8; |
| 457 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 458 | ret = spi_xchg_single(mxcs, n_bits, p_outbuf, p_inbuf, 0); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 459 | |
| 460 | if (ret) |
| 461 | return ret; |
| 462 | if (dout) |
| 463 | p_outbuf += blk_size; |
| 464 | if (din) |
| 465 | p_inbuf += blk_size; |
| 466 | n_bytes -= blk_size; |
Guennadi Liakhovetski | d338013 | 2009-02-07 00:09:12 +0100 | [diff] [blame] | 467 | } |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 468 | |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 469 | if (flags & SPI_XFER_END) { |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 470 | mxc_spi_cs_deactivate(mxcs); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 471 | } |
| 472 | |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 473 | return 0; |
| 474 | } |
| 475 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 476 | static int mxc_spi_claim_bus_internal(struct mxc_spi_slave *mxcs, int cs) |
| 477 | { |
| 478 | struct cspi_regs *regs = (struct cspi_regs *)mxcs->base; |
| 479 | int ret; |
| 480 | |
| 481 | reg_write(®s->rxdata, 1); |
| 482 | udelay(1); |
| 483 | ret = spi_cfg_mxc(mxcs, cs); |
| 484 | if (ret) { |
| 485 | printf("mxc_spi: cannot setup SPI controller\n"); |
| 486 | return ret; |
| 487 | } |
| 488 | reg_write(®s->period, MXC_CSPIPERIOD_32KHZ); |
| 489 | reg_write(®s->intr, 0); |
| 490 | |
| 491 | return 0; |
| 492 | } |
| 493 | |
Lukasz Majewski | 76f44298 | 2020-06-04 23:11:53 +0800 | [diff] [blame] | 494 | #if !CONFIG_IS_ENABLED(DM_SPI) |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 495 | int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout, |
| 496 | void *din, unsigned long flags) |
| 497 | { |
| 498 | struct mxc_spi_slave *mxcs = to_mxc_spi_slave(slave); |
| 499 | |
| 500 | return mxc_spi_xfer_internal(mxcs, bitlen, dout, din, flags); |
| 501 | } |
| 502 | |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 503 | /* |
| 504 | * Some SPI devices require active chip-select over multiple |
| 505 | * transactions, we achieve this using a GPIO. Still, the SPI |
| 506 | * controller has to be configured to use one of its own chipselects. |
| 507 | * To use this feature you have to implement board_spi_cs_gpio() to assign |
| 508 | * a gpio value for each cs (-1 if cs doesn't need to use gpio). |
| 509 | * You must use some unused on this SPI controller cs between 0 and 3. |
| 510 | */ |
| 511 | static int setup_cs_gpio(struct mxc_spi_slave *mxcs, |
| 512 | unsigned int bus, unsigned int cs) |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 513 | { |
| 514 | int ret; |
| 515 | |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 516 | mxcs->gpio = board_spi_cs_gpio(bus, cs); |
| 517 | if (mxcs->gpio == -1) |
| 518 | return 0; |
| 519 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 520 | gpio_request(mxcs->gpio, "spi-cs"); |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 521 | ret = gpio_direction_output(mxcs->gpio, !(mxcs->ss_pol)); |
| 522 | if (ret) { |
| 523 | printf("mxc_spi: cannot setup gpio %d\n", mxcs->gpio); |
| 524 | return -EINVAL; |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 525 | } |
| 526 | |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 527 | return 0; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 528 | } |
| 529 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 530 | static unsigned long spi_bases[] = { |
| 531 | MXC_SPI_BASE_ADDRESSES |
| 532 | }; |
| 533 | |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 534 | struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs, |
| 535 | unsigned int max_hz, unsigned int mode) |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 536 | { |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 537 | struct mxc_spi_slave *mxcs; |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 538 | int ret; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 539 | |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 540 | if (bus >= ARRAY_SIZE(spi_bases)) |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 541 | return NULL; |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 542 | |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 543 | if (max_hz == 0) { |
| 544 | printf("Error: desired clock is 0\n"); |
| 545 | return NULL; |
| 546 | } |
| 547 | |
Simon Glass | d034a95 | 2013-03-18 19:23:40 +0000 | [diff] [blame] | 548 | mxcs = spi_alloc_slave(struct mxc_spi_slave, bus, cs); |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 549 | if (!mxcs) { |
| 550 | puts("mxc_spi: SPI Slave not allocated !\n"); |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 551 | return NULL; |
Stefano Babic | 125f82a | 2010-08-20 12:05:03 +0200 | [diff] [blame] | 552 | } |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 553 | |
Fabio Estevam | 17cd2a8 | 2012-11-15 11:23:23 +0000 | [diff] [blame] | 554 | mxcs->ss_pol = (mode & SPI_CS_HIGH) ? 1 : 0; |
| 555 | |
Nikita Kiryanov | 00cd738 | 2014-08-20 15:08:50 +0300 | [diff] [blame] | 556 | ret = setup_cs_gpio(mxcs, bus, cs); |
Guennadi Liakhovetski | 9a88d70 | 2009-02-13 09:26:40 +0100 | [diff] [blame] | 557 | if (ret < 0) { |
| 558 | free(mxcs); |
| 559 | return NULL; |
| 560 | } |
| 561 | |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 562 | mxcs->base = spi_bases[bus]; |
Markus Niebel | 8f769cf | 2014-10-23 16:09:39 +0200 | [diff] [blame] | 563 | mxcs->max_hz = max_hz; |
| 564 | mxcs->mode = mode; |
Stefano Babic | 6e6f455 | 2010-04-04 22:43:38 +0200 | [diff] [blame] | 565 | |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 566 | return &mxcs->slave; |
| 567 | } |
| 568 | |
| 569 | void spi_free_slave(struct spi_slave *slave) |
| 570 | { |
Guennadi Liakhovetski | d338013 | 2009-02-07 00:09:12 +0100 | [diff] [blame] | 571 | struct mxc_spi_slave *mxcs = to_mxc_spi_slave(slave); |
| 572 | |
| 573 | free(mxcs); |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | int spi_claim_bus(struct spi_slave *slave) |
| 577 | { |
| 578 | struct mxc_spi_slave *mxcs = to_mxc_spi_slave(slave); |
| 579 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 580 | return mxc_spi_claim_bus_internal(mxcs, slave->cs); |
| 581 | } |
| 582 | |
| 583 | void spi_release_bus(struct spi_slave *slave) |
| 584 | { |
| 585 | /* TODO: Shut the controller down */ |
| 586 | } |
| 587 | #else |
| 588 | |
| 589 | static int mxc_spi_probe(struct udevice *bus) |
| 590 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 591 | struct mxc_spi_slave *mxcs = dev_get_plat(bus); |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 592 | int node = dev_of_offset(bus); |
| 593 | const void *blob = gd->fdt_blob; |
| 594 | int ret; |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 595 | int i; |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 596 | |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 597 | ret = gpio_request_list_by_name(bus, "cs-gpios", mxcs->cs_gpios, |
| 598 | ARRAY_SIZE(mxcs->cs_gpios), 0); |
| 599 | if (ret < 0) { |
| 600 | pr_err("Can't get %s gpios! Error: %d", bus->name, ret); |
| 601 | return ret; |
| 602 | } |
| 603 | |
| 604 | for (i = 0; i < ARRAY_SIZE(mxcs->cs_gpios); i++) { |
| 605 | if (!dm_gpio_is_valid(&mxcs->cs_gpios[i])) |
| 606 | continue; |
| 607 | |
| 608 | ret = dm_gpio_set_dir_flags(&mxcs->cs_gpios[i], |
| 609 | GPIOD_IS_OUT | GPIOD_ACTIVE_LOW); |
| 610 | if (ret) { |
| 611 | dev_err(bus, "Setting cs %d error\n", i); |
| 612 | return ret; |
| 613 | } |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 614 | } |
| 615 | |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 616 | mxcs->base = dev_read_addr(bus); |
Heiko Schocher | 6d49b4e | 2019-05-26 12:15:46 +0200 | [diff] [blame] | 617 | if (mxcs->base == FDT_ADDR_T_NONE) |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 618 | return -ENODEV; |
| 619 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 620 | mxcs->max_hz = fdtdec_get_int(blob, node, "spi-max-frequency", |
| 621 | 20000000); |
Guennadi Liakhovetski | 07327a5 | 2008-04-15 14:14:25 +0200 | [diff] [blame] | 622 | |
| 623 | return 0; |
| 624 | } |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 625 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 626 | static int mxc_spi_xfer(struct udevice *dev, unsigned int bitlen, |
| 627 | const void *dout, void *din, unsigned long flags) |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 628 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 629 | struct mxc_spi_slave *mxcs = dev_get_plat(dev->parent); |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 630 | |
| 631 | |
| 632 | return mxc_spi_xfer_internal(mxcs, bitlen, dout, din, flags); |
| 633 | } |
| 634 | |
| 635 | static int mxc_spi_claim_bus(struct udevice *dev) |
| 636 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 637 | struct mxc_spi_slave *mxcs = dev_get_plat(dev->parent); |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 638 | struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev); |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 639 | |
Heiko Schocher | 053c244 | 2019-05-26 12:15:47 +0200 | [diff] [blame] | 640 | mxcs->dev = dev; |
| 641 | |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 642 | return mxc_spi_claim_bus_internal(mxcs, slave_plat->cs); |
Haavard Skinnemoen | d74084a | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 643 | } |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 644 | |
| 645 | static int mxc_spi_release_bus(struct udevice *dev) |
| 646 | { |
| 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | static int mxc_spi_set_speed(struct udevice *bus, uint speed) |
| 651 | { |
| 652 | /* Nothing to do */ |
| 653 | return 0; |
| 654 | } |
| 655 | |
| 656 | static int mxc_spi_set_mode(struct udevice *bus, uint mode) |
| 657 | { |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 658 | struct mxc_spi_slave *mxcs = dev_get_plat(bus); |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 659 | |
| 660 | mxcs->mode = mode; |
| 661 | mxcs->ss_pol = (mode & SPI_CS_HIGH) ? 1 : 0; |
| 662 | |
| 663 | return 0; |
| 664 | } |
| 665 | |
| 666 | static const struct dm_spi_ops mxc_spi_ops = { |
| 667 | .claim_bus = mxc_spi_claim_bus, |
| 668 | .release_bus = mxc_spi_release_bus, |
| 669 | .xfer = mxc_spi_xfer, |
| 670 | .set_speed = mxc_spi_set_speed, |
| 671 | .set_mode = mxc_spi_set_mode, |
| 672 | }; |
| 673 | |
| 674 | static const struct udevice_id mxc_spi_ids[] = { |
| 675 | { .compatible = "fsl,imx51-ecspi" }, |
| 676 | { } |
| 677 | }; |
| 678 | |
| 679 | U_BOOT_DRIVER(mxc_spi) = { |
| 680 | .name = "mxc_spi", |
| 681 | .id = UCLASS_SPI, |
| 682 | .of_match = mxc_spi_ids, |
| 683 | .ops = &mxc_spi_ops, |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 684 | .plat_auto = sizeof(struct mxc_spi_slave), |
Peng Fan | ea0bce6 | 2017-08-09 13:09:33 +0800 | [diff] [blame] | 685 | .probe = mxc_spi_probe, |
| 686 | }; |
| 687 | #endif |