blob: e1448cc6196956281f3e72305e90ee98bf5079b8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Christophe Leroy069fa832017-07-06 10:23:22 +02002/*
3 * Copyright (c) 2001 Navin Boppuri / Prashant Patel
4 * <nboppuri@trinetcommunication.com>,
5 * <pmpatel@trinetcommunication.com>
6 * Copyright (c) 2001 Gerd Mennchen <Gerd.Mennchen@icn.siemens.de>
7 * Copyright (c) 2001 Wolfgang Denk, DENX Software Engineering, <wd@denx.de>.
Christophe Leroy069fa832017-07-06 10:23:22 +02008 */
9
10/*
11 * MPC8xx CPM SPI interface.
12 *
13 * Parts of this code are probably not portable and/or specific to
14 * the board which I used for the tests. Please send fixes/complaints
15 * to wd@denx.de
16 *
17 */
18
19#include <common.h>
Christophe Leroy996f2352018-11-21 08:51:57 +000020#include <dm.h>
Christophe Leroy885717d2024-04-12 18:16:59 +020021#include <malloc.h>
Christophe Leroy069fa832017-07-06 10:23:22 +020022#include <mpc8xx.h>
Christophe Leroy996f2352018-11-21 08:51:57 +000023#include <spi.h>
Simon Glassdbd79542020-05-10 11:40:11 -060024#include <linux/delay.h>
Christophe Leroy069fa832017-07-06 10:23:22 +020025
Christophe Leroy996f2352018-11-21 08:51:57 +000026#include <asm/cpm_8xx.h>
27#include <asm/io.h>
Christophe Leroyf4ced3c2022-10-14 09:14:44 +020028#include <asm/gpio.h>
Christophe Leroy069fa832017-07-06 10:23:22 +020029
Christophe Leroy394f9b32017-07-06 10:33:13 +020030#define CPM_SPI_BASE_RX CPM_SPI_BASE
31#define CPM_SPI_BASE_TX (CPM_SPI_BASE + sizeof(cbd_t))
32
Christophe Leroy3a255892024-04-09 08:38:08 +020033#define MAX_BUFFER 0x8000 /* Max possible is 0xffff. We want power of 2 */
Christophe Leroy885717d2024-04-12 18:16:59 +020034#define MIN_HWORD_XFER 64 /* Minimum size for 16 bits transfer */
Christophe Leroy069fa832017-07-06 10:23:22 +020035
Christophe Leroyf4ced3c2022-10-14 09:14:44 +020036struct mpc8xx_priv {
37 spi_t __iomem *spi;
38 struct gpio_desc gpios[16];
39 int max_cs;
40};
41
Christophe Leroy3a255892024-04-09 08:38:08 +020042static char dummy_buffer[MAX_BUFFER];
43
Christophe Leroyf4ced3c2022-10-14 09:14:44 +020044static int mpc8xx_spi_set_mode(struct udevice *dev, uint mod)
45{
46 return 0;
47}
48
49static int mpc8xx_spi_set_speed(struct udevice *dev, uint speed)
50{
Christophe Leroy9cd91892024-04-12 19:36:19 +020051 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
52 cpm8xx_t __iomem *cp = &immr->im_cpm;
53 u8 pm = (gd->arch.brg_clk - 1) / (speed * 16);
54
55 if (pm > 16) {
56 setbits_be16(&cp->cp_spmode, SPMODE_DIV16);
57 pm /= 16;
58 if (pm > 16)
59 pm = 16;
60 } else {
61 clrbits_be16(&cp->cp_spmode, SPMODE_DIV16);
62 }
63
64 clrsetbits_be16(&cp->cp_spmode, SPMODE_PM(0xf), SPMODE_PM(pm));
65
Christophe Leroyf4ced3c2022-10-14 09:14:44 +020066 return 0;
67}
68
Christophe Leroy996f2352018-11-21 08:51:57 +000069static int mpc8xx_spi_probe(struct udevice *dev)
Christophe Leroy069fa832017-07-06 10:23:22 +020070{
Christophe Leroy394f9b32017-07-06 10:33:13 +020071 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
72 cpm8xx_t __iomem *cp = &immr->im_cpm;
Christophe Leroye6050cc2023-05-03 10:31:19 +020073 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dpmem[PROFF_SPI];
Christophe Leroybb32bfd2023-05-03 09:05:33 +020074 u16 spi_rpbase;
Christophe Leroy394f9b32017-07-06 10:33:13 +020075 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy069fa832017-07-06 10:23:22 +020076
Christophe Leroybb32bfd2023-05-03 09:05:33 +020077 spi_rpbase = in_be16(&spi->spi_rpbase);
78 if (spi_rpbase)
79 spi = (spi_t __iomem *)&cp->cp_dpmem[spi_rpbase];
Christophe Leroy069fa832017-07-06 10:23:22 +020080
81/* 1 */
Christophe Leroy069fa832017-07-06 10:23:22 +020082 /* Initialize the parameter ram.
83 * We need to make sure many things are initialized to zero
84 */
Christophe Leroy394f9b32017-07-06 10:33:13 +020085 out_be32(&spi->spi_rstate, 0);
86 out_be32(&spi->spi_rdp, 0);
87 out_be16(&spi->spi_rbptr, 0);
88 out_be16(&spi->spi_rbc, 0);
89 out_be32(&spi->spi_rxtmp, 0);
90 out_be32(&spi->spi_tstate, 0);
91 out_be32(&spi->spi_tdp, 0);
92 out_be16(&spi->spi_tbptr, 0);
93 out_be16(&spi->spi_tbc, 0);
94 out_be32(&spi->spi_txtmp, 0);
Christophe Leroy069fa832017-07-06 10:23:22 +020095
96/* 3 */
97 /* Set up the SPI parameters in the parameter ram */
Christophe Leroy394f9b32017-07-06 10:33:13 +020098 out_be16(&spi->spi_rbase, CPM_SPI_BASE_RX);
99 out_be16(&spi->spi_tbase, CPM_SPI_BASE_TX);
Christophe Leroy069fa832017-07-06 10:23:22 +0200100
101 /***********IMPORTANT******************/
102
103 /*
104 * Setting transmit and receive buffer descriptor pointers
105 * initially to rbase and tbase. Only the microcode patches
106 * documentation talks about initializing this pointer. This
107 * is missing from the sample I2C driver. If you dont
108 * initialize these pointers, the kernel hangs.
109 */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200110 out_be16(&spi->spi_rbptr, CPM_SPI_BASE_RX);
111 out_be16(&spi->spi_tbptr, CPM_SPI_BASE_TX);
Christophe Leroy069fa832017-07-06 10:23:22 +0200112
113/* 4 */
114 /* Init SPI Tx + Rx Parameters */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200115 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy069fa832017-07-06 10:23:22 +0200116 ;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200117
118 out_be16(&cp->cp_cpcr, mk_cr_cmd(CPM_CR_CH_SPI, CPM_CR_INIT_TRX) |
119 CPM_CR_FLG);
120 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy069fa832017-07-06 10:23:22 +0200121 ;
122
Christophe Leroy069fa832017-07-06 10:23:22 +0200123/* 6 */
124 /* Set to big endian. */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200125 out_8(&spi->spi_tfcr, SMC_EB);
126 out_8(&spi->spi_rfcr, SMC_EB);
Christophe Leroy069fa832017-07-06 10:23:22 +0200127
128/* 7 */
129 /* Set maximum receive size. */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200130 out_be16(&spi->spi_mrblr, MAX_BUFFER);
Christophe Leroy069fa832017-07-06 10:23:22 +0200131
132/* 8 + 9 */
133 /* tx and rx buffer descriptors */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200134 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
135 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy069fa832017-07-06 10:23:22 +0200136
Christophe Leroy394f9b32017-07-06 10:33:13 +0200137 clrbits_be16(&tbdf->cbd_sc, BD_SC_READY);
138 clrbits_be16(&rbdf->cbd_sc, BD_SC_EMPTY);
Christophe Leroy069fa832017-07-06 10:23:22 +0200139
Christophe Leroy069fa832017-07-06 10:23:22 +0200140/* 10 + 11 */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200141 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
142 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy069fa832017-07-06 10:23:22 +0200143
Christophe Leroy996f2352018-11-21 08:51:57 +0000144 return 0;
Christophe Leroy069fa832017-07-06 10:23:22 +0200145}
146
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200147static void mpc8xx_spi_cs_activate(struct udevice *dev)
148{
149 struct mpc8xx_priv *priv = dev_get_priv(dev->parent);
150 struct dm_spi_slave_plat *platdata = dev_get_parent_plat(dev);
151
152 dm_gpio_set_value(&priv->gpios[platdata->cs], 1);
153}
154
155static void mpc8xx_spi_cs_deactivate(struct udevice *dev)
156{
157 struct mpc8xx_priv *priv = dev_get_priv(dev->parent);
158 struct dm_spi_slave_plat *platdata = dev_get_parent_plat(dev);
159
160 dm_gpio_set_value(&priv->gpios[platdata->cs], 0);
161}
162
Christophe Leroy833e1552024-04-12 13:53:57 +0200163static int mpc8xx_spi_xfer_one(struct udevice *dev, size_t count,
164 const void *dout, void *din)
Christophe Leroy069fa832017-07-06 10:23:22 +0200165{
Christophe Leroy394f9b32017-07-06 10:33:13 +0200166 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
167 cpm8xx_t __iomem *cp = &immr->im_cpm;
Christophe Leroy394f9b32017-07-06 10:33:13 +0200168 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy885717d2024-04-12 18:16:59 +0200169 void *bufout, *bufin;
170 u16 spmode_len;
Christophe Leroy069fa832017-07-06 10:23:22 +0200171 int tm;
Christophe Leroy069fa832017-07-06 10:23:22 +0200172
Christophe Leroy394f9b32017-07-06 10:33:13 +0200173 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
174 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy069fa832017-07-06 10:23:22 +0200175
Christophe Leroy885717d2024-04-12 18:16:59 +0200176 if (!(count & 1) && count >= MIN_HWORD_XFER) {
177 spmode_len = SPMODE_LEN(16);
178 if (dout) {
179 int i;
180
181 bufout = malloc(count);
182 for (i = 0; i < count; i += 2)
183 *(u16 *)(bufout + i) = swab16(*(u16 *)(dout + i));
184 } else {
185 bufout = NULL;
186 }
187 if (din)
188 bufin = malloc(count);
189 else
190 bufin = NULL;
191 } else {
192 spmode_len = SPMODE_LEN(8);
193 bufout = (void *)dout;
194 bufin = din;
195 }
196
Christophe Leroy069fa832017-07-06 10:23:22 +0200197 /* Setting tx bd status and data length */
Christophe Leroy885717d2024-04-12 18:16:59 +0200198 out_be32(&tbdf->cbd_bufaddr, bufout ? (ulong)bufout : (ulong)dummy_buffer);
Christophe Leroy394f9b32017-07-06 10:33:13 +0200199 out_be16(&tbdf->cbd_sc, BD_SC_READY | BD_SC_LAST | BD_SC_WRAP);
200 out_be16(&tbdf->cbd_datlen, count);
Christophe Leroy069fa832017-07-06 10:23:22 +0200201
202 /* Setting rx bd status and data length */
Christophe Leroy885717d2024-04-12 18:16:59 +0200203 out_be32(&rbdf->cbd_bufaddr, bufin ? (ulong)bufin : (ulong)dummy_buffer);
Christophe Leroy394f9b32017-07-06 10:33:13 +0200204 out_be16(&rbdf->cbd_sc, BD_SC_EMPTY | BD_SC_WRAP);
205 out_be16(&rbdf->cbd_datlen, 0); /* rx length has no significance */
Christophe Leroy069fa832017-07-06 10:23:22 +0200206
Christophe Leroy9cd91892024-04-12 19:36:19 +0200207 clrsetbits_be16(&cp->cp_spmode, ~(SPMODE_LOOP | SPMODE_PM(0xf) | SPMODE_DIV16),
208 SPMODE_REV | SPMODE_MSTR | SPMODE_EN | spmode_len);
Christophe Leroy394f9b32017-07-06 10:33:13 +0200209 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
210 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy069fa832017-07-06 10:23:22 +0200211
212 /* start spi transfer */
Christophe Leroy394f9b32017-07-06 10:33:13 +0200213 setbits_8(&cp->cp_spcom, SPI_STR); /* Start transmit */
Christophe Leroy069fa832017-07-06 10:23:22 +0200214
215 /* --------------------------------
216 * Wait for SPI transmit to get out
217 * or time out (1 second = 1000 ms)
218 * -------------------------------- */
Christophe Leroy48f896d2017-07-06 10:33:17 +0200219 for (tm = 0; tm < 1000; ++tm) {
Christophe Leroy394f9b32017-07-06 10:33:13 +0200220 if (in_8(&cp->cp_spie) & SPI_TXB) /* Tx Buffer Empty */
Christophe Leroy069fa832017-07-06 10:23:22 +0200221 break;
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200222
Christophe Leroy394f9b32017-07-06 10:33:13 +0200223 if ((in_be16(&tbdf->cbd_sc) & BD_SC_READY) == 0)
Christophe Leroy069fa832017-07-06 10:23:22 +0200224 break;
Christophe Leroy48f896d2017-07-06 10:33:17 +0200225 udelay(1000);
Christophe Leroy069fa832017-07-06 10:23:22 +0200226 }
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200227
Christophe Leroy48f896d2017-07-06 10:33:17 +0200228 if (tm >= 1000)
Christophe Leroy833e1552024-04-12 13:53:57 +0200229 return -ETIMEDOUT;
230
Christophe Leroy885717d2024-04-12 18:16:59 +0200231 if (!(count & 1) && count > MIN_HWORD_XFER) {
232 if (dout)
233 free(bufout);
234 if (din) {
235 int i;
236
237 bufout = malloc(count);
238 for (i = 0; i < count; i += 2)
239 *(u16 *)(din + i) = swab16(*(u16 *)(bufin + i));
240 free(bufin);
241 }
242 }
243
Christophe Leroy833e1552024-04-12 13:53:57 +0200244 return 0;
245}
246
247static int mpc8xx_spi_xfer(struct udevice *dev, unsigned int bitlen,
248 const void *dout, void *din, unsigned long flags)
249{
250 size_t count = (bitlen + 7) / 8;
251 size_t offset = 0;
252 int ret = 0;
253
254 if (!din && !dout)
255 return -EINVAL;
Christophe Leroy069fa832017-07-06 10:23:22 +0200256
Christophe Leroy833e1552024-04-12 13:53:57 +0200257 /* Set CS for device */
258 if (flags & SPI_XFER_BEGIN)
259 mpc8xx_spi_cs_activate(dev);
260
261 while (count > 0 && !ret) {
262 size_t chunk = min(count, (size_t)MAX_BUFFER);
263 const void *out = dout ? dout + offset : NULL;
264 void *in = din ? din + offset : NULL;
265
266 ret = mpc8xx_spi_xfer_one(dev, chunk, out, in);
267
268 offset += chunk;
269 count -= chunk;
270 }
Christophe Leroy069fa832017-07-06 10:23:22 +0200271 /* Clear CS for device */
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200272 if (flags & SPI_XFER_END)
273 mpc8xx_spi_cs_deactivate(dev);
Christophe Leroy069fa832017-07-06 10:23:22 +0200274
Christophe Leroy833e1552024-04-12 13:53:57 +0200275 if (ret)
276 printf("*** spi_xfer: Time out while xferring to/from SPI!\n");
277
278 return ret;
Christophe Leroy069fa832017-07-06 10:23:22 +0200279}
Christophe Leroy996f2352018-11-21 08:51:57 +0000280
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200281static int mpc8xx_spi_ofdata_to_platdata(struct udevice *dev)
282{
283 struct mpc8xx_priv *priv = dev_get_priv(dev);
284 int ret;
285
286 ret = gpio_request_list_by_name(dev, "gpios", priv->gpios,
287 ARRAY_SIZE(priv->gpios), GPIOD_IS_OUT);
288 if (ret < 0)
289 return ret;
290
291 priv->max_cs = ret;
292
293 return 0;
294}
Christophe Leroy996f2352018-11-21 08:51:57 +0000295static const struct dm_spi_ops mpc8xx_spi_ops = {
296 .xfer = mpc8xx_spi_xfer,
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200297 .set_speed = mpc8xx_spi_set_speed,
298 .set_mode = mpc8xx_spi_set_mode,
Christophe Leroy996f2352018-11-21 08:51:57 +0000299};
300
301static const struct udevice_id mpc8xx_spi_ids[] = {
302 { .compatible = "fsl,mpc8xx-spi" },
303 { }
304};
305
306U_BOOT_DRIVER(mpc8xx_spi) = {
307 .name = "mpc8xx_spi",
308 .id = UCLASS_SPI,
309 .of_match = mpc8xx_spi_ids,
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200310 .of_to_plat = mpc8xx_spi_ofdata_to_platdata,
Christophe Leroy996f2352018-11-21 08:51:57 +0000311 .ops = &mpc8xx_spi_ops,
312 .probe = mpc8xx_spi_probe,
Christophe Leroyf4ced3c2022-10-14 09:14:44 +0200313 .priv_auto = sizeof(struct mpc8xx_priv),
Christophe Leroy996f2352018-11-21 08:51:57 +0000314};