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