blob: 0026ad23e376e4d7c8b47e9d3b62a5c2592e276d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Christophe Leroy907208c2017-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 Leroy907208c2017-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 Leroyfb0204e2018-11-21 08:51:57 +000020#include <dm.h>
Christophe Leroy907208c2017-07-06 10:23:22 +020021#include <mpc8xx.h>
Christophe Leroyfb0204e2018-11-21 08:51:57 +000022#include <spi.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Christophe Leroyfb0204e2018-11-21 08:51:57 +000024
Christophe Leroy18f8d4c2018-03-16 17:20:43 +010025#include <asm/cpm_8xx.h>
Christophe Leroyfb0204e2018-11-21 08:51:57 +000026#include <asm/io.h>
Christophe Leroy907208c2017-07-06 10:23:22 +020027
Christophe Leroyba3da732017-07-06 10:33:13 +020028#define CPM_SPI_BASE_RX CPM_SPI_BASE
29#define CPM_SPI_BASE_TX (CPM_SPI_BASE + sizeof(cbd_t))
30
Christophe Leroy907208c2017-07-06 10:23:22 +020031#define MAX_BUFFER 0x104
32
Christophe Leroyfb0204e2018-11-21 08:51:57 +000033static int mpc8xx_spi_probe(struct udevice *dev)
Christophe Leroy907208c2017-07-06 10:23:22 +020034{
Christophe Leroyba3da732017-07-06 10:33:13 +020035 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
36 cpm8xx_t __iomem *cp = &immr->im_cpm;
37 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
38 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +020039
Christophe Leroy907208c2017-07-06 10:23:22 +020040 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +020041 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +020042
43/* 1 */
44 /* ------------------------------------------------
45 * Initialize Port B SPI pins -> page 34-8 MPC860UM
46 * (we are only in Master Mode !)
47 * ------------------------------------------------ */
48
49 /* --------------------------------------------
50 * GPIO or per. Function
51 * PBPAR[28] = 1 [0x00000008] -> PERI: (SPIMISO)
52 * PBPAR[29] = 1 [0x00000004] -> PERI: (SPIMOSI)
53 * PBPAR[30] = 1 [0x00000002] -> PERI: (SPICLK)
54 * PBPAR[31] = 0 [0x00000001] -> GPIO: (CS for PCUE/CCM-EEPROM)
55 * -------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +020056 clrsetbits_be32(&cp->cp_pbpar, 0x00000001, 0x0000000E); /* set bits */
Christophe Leroy907208c2017-07-06 10:23:22 +020057
58 /* ----------------------------------------------
59 * In/Out or per. Function 0/1
60 * PBDIR[28] = 1 [0x00000008] -> PERI1: SPIMISO
61 * PBDIR[29] = 1 [0x00000004] -> PERI1: SPIMOSI
62 * PBDIR[30] = 1 [0x00000002] -> PERI1: SPICLK
63 * PBDIR[31] = 1 [0x00000001] -> GPIO OUT: CS for PCUE/CCM-EEPROM
64 * ---------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +020065 setbits_be32(&cp->cp_pbdir, 0x0000000F);
Christophe Leroy907208c2017-07-06 10:23:22 +020066
67 /* ----------------------------------------------
68 * open drain or active output
69 * PBODR[28] = 1 [0x00000008] -> open drain: SPIMISO
70 * PBODR[29] = 0 [0x00000004] -> active output SPIMOSI
71 * PBODR[30] = 0 [0x00000002] -> active output: SPICLK
Christophe Leroy70fd0712017-07-06 10:33:17 +020072 * PBODR[31] = 0 [0x00000001] -> active output GPIO OUT: CS for PCUE/CCM
Christophe Leroy907208c2017-07-06 10:23:22 +020073 * ---------------------------------------------- */
74
Christophe Leroyba3da732017-07-06 10:33:13 +020075 clrsetbits_be16(&cp->cp_pbodr, 0x00000007, 0x00000008);
Christophe Leroy907208c2017-07-06 10:23:22 +020076
77 /* Initialize the parameter ram.
78 * We need to make sure many things are initialized to zero
79 */
Christophe Leroyba3da732017-07-06 10:33:13 +020080 out_be32(&spi->spi_rstate, 0);
81 out_be32(&spi->spi_rdp, 0);
82 out_be16(&spi->spi_rbptr, 0);
83 out_be16(&spi->spi_rbc, 0);
84 out_be32(&spi->spi_rxtmp, 0);
85 out_be32(&spi->spi_tstate, 0);
86 out_be32(&spi->spi_tdp, 0);
87 out_be16(&spi->spi_tbptr, 0);
88 out_be16(&spi->spi_tbc, 0);
89 out_be32(&spi->spi_txtmp, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +020090
91/* 3 */
92 /* Set up the SPI parameters in the parameter ram */
Christophe Leroyba3da732017-07-06 10:33:13 +020093 out_be16(&spi->spi_rbase, CPM_SPI_BASE_RX);
94 out_be16(&spi->spi_tbase, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +020095
96 /***********IMPORTANT******************/
97
98 /*
99 * Setting transmit and receive buffer descriptor pointers
100 * initially to rbase and tbase. Only the microcode patches
101 * documentation talks about initializing this pointer. This
102 * is missing from the sample I2C driver. If you dont
103 * initialize these pointers, the kernel hangs.
104 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200105 out_be16(&spi->spi_rbptr, CPM_SPI_BASE_RX);
106 out_be16(&spi->spi_tbptr, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +0200107
108/* 4 */
109 /* Init SPI Tx + Rx Parameters */
Christophe Leroyba3da732017-07-06 10:33:13 +0200110 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200111 ;
Christophe Leroyba3da732017-07-06 10:33:13 +0200112
113 out_be16(&cp->cp_cpcr, mk_cr_cmd(CPM_CR_CH_SPI, CPM_CR_INIT_TRX) |
114 CPM_CR_FLG);
115 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200116 ;
117
118/* 5 */
119 /* Set SDMA configuration register */
Christophe Leroyba3da732017-07-06 10:33:13 +0200120 out_be32(&immr->im_siu_conf.sc_sdcr, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200121
122/* 6 */
123 /* Set to big endian. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200124 out_8(&spi->spi_tfcr, SMC_EB);
125 out_8(&spi->spi_rfcr, SMC_EB);
Christophe Leroy907208c2017-07-06 10:23:22 +0200126
127/* 7 */
128 /* Set maximum receive size. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200129 out_be16(&spi->spi_mrblr, MAX_BUFFER);
Christophe Leroy907208c2017-07-06 10:23:22 +0200130
131/* 8 + 9 */
132 /* tx and rx buffer descriptors */
Christophe Leroyba3da732017-07-06 10:33:13 +0200133 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
134 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200135
Christophe Leroyba3da732017-07-06 10:33:13 +0200136 clrbits_be16(&tbdf->cbd_sc, BD_SC_READY);
137 clrbits_be16(&rbdf->cbd_sc, BD_SC_EMPTY);
Christophe Leroy907208c2017-07-06 10:23:22 +0200138
Christophe Leroy907208c2017-07-06 10:23:22 +0200139/* 10 + 11 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200140 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
141 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200142
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000143 return 0;
Christophe Leroy907208c2017-07-06 10:23:22 +0200144}
145
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000146static int mpc8xx_spi_xfer(struct udevice *dev, unsigned int bitlen,
147 const void *dout, void *din, unsigned long flags)
Christophe Leroy907208c2017-07-06 10:23:22 +0200148{
Christophe Leroyba3da732017-07-06 10:33:13 +0200149 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
150 cpm8xx_t __iomem *cp = &immr->im_cpm;
Christophe Leroyba3da732017-07-06 10:33:13 +0200151 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +0200152 int tm;
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000153 size_t count = (bitlen + 7) / 8;
Christophe Leroy907208c2017-07-06 10:23:22 +0200154
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000155 if (count > MAX_BUFFER)
156 return -EINVAL;
Christophe Leroy907208c2017-07-06 10:23:22 +0200157
Christophe Leroyba3da732017-07-06 10:33:13 +0200158 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
159 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200160
161 /* Set CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200162 clrbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200163
164 /* Setting tx bd status and data length */
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000165 out_be32(&tbdf->cbd_bufaddr, (ulong)dout);
Christophe Leroyba3da732017-07-06 10:33:13 +0200166 out_be16(&tbdf->cbd_sc, BD_SC_READY | BD_SC_LAST | BD_SC_WRAP);
167 out_be16(&tbdf->cbd_datlen, count);
Christophe Leroy907208c2017-07-06 10:23:22 +0200168
169 /* Setting rx bd status and data length */
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000170 out_be32(&rbdf->cbd_bufaddr, (ulong)din);
Christophe Leroyba3da732017-07-06 10:33:13 +0200171 out_be16(&rbdf->cbd_sc, BD_SC_EMPTY | BD_SC_WRAP);
172 out_be16(&rbdf->cbd_datlen, 0); /* rx length has no significance */
Christophe Leroy907208c2017-07-06 10:23:22 +0200173
Christophe Leroyba3da732017-07-06 10:33:13 +0200174 clrsetbits_be16(&cp->cp_spmode, ~SPMODE_LOOP, SPMODE_REV | SPMODE_MSTR |
175 SPMODE_EN | SPMODE_LEN(8) | SPMODE_PM(0x8));
176 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
177 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200178
179 /* start spi transfer */
Christophe Leroyba3da732017-07-06 10:33:13 +0200180 setbits_8(&cp->cp_spcom, SPI_STR); /* Start transmit */
Christophe Leroy907208c2017-07-06 10:23:22 +0200181
182 /* --------------------------------
183 * Wait for SPI transmit to get out
184 * or time out (1 second = 1000 ms)
185 * -------------------------------- */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200186 for (tm = 0; tm < 1000; ++tm) {
Christophe Leroyba3da732017-07-06 10:33:13 +0200187 if (in_8(&cp->cp_spie) & SPI_TXB) /* Tx Buffer Empty */
Christophe Leroy907208c2017-07-06 10:23:22 +0200188 break;
Christophe Leroyba3da732017-07-06 10:33:13 +0200189 if ((in_be16(&tbdf->cbd_sc) & BD_SC_READY) == 0)
Christophe Leroy907208c2017-07-06 10:23:22 +0200190 break;
Christophe Leroy70fd0712017-07-06 10:33:17 +0200191 udelay(1000);
Christophe Leroy907208c2017-07-06 10:23:22 +0200192 }
Christophe Leroy70fd0712017-07-06 10:33:17 +0200193 if (tm >= 1000)
194 printf("*** spi_xfer: Time out while xferring to/from SPI!\n");
Christophe Leroy907208c2017-07-06 10:23:22 +0200195
196 /* Clear CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200197 setbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200198
199 return count;
200}
Christophe Leroyfb0204e2018-11-21 08:51:57 +0000201
202static const struct dm_spi_ops mpc8xx_spi_ops = {
203 .xfer = mpc8xx_spi_xfer,
204};
205
206static const struct udevice_id mpc8xx_spi_ids[] = {
207 { .compatible = "fsl,mpc8xx-spi" },
208 { }
209};
210
211U_BOOT_DRIVER(mpc8xx_spi) = {
212 .name = "mpc8xx_spi",
213 .id = UCLASS_SPI,
214 .of_match = mpc8xx_spi_ids,
215 .ops = &mpc8xx_spi_ops,
216 .probe = mpc8xx_spi_probe,
217};