blob: 285fd4d2cc0ad9b64a74bd83bc27714f198c889e [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>
20#include <mpc8xx.h>
Christophe Leroy18f8d4c2018-03-16 17:20:43 +010021#include <asm/cpm_8xx.h>
Christophe Leroy907208c2017-07-06 10:23:22 +020022#include <linux/ctype.h>
23#include <malloc.h>
24#include <post.h>
25#include <serial.h>
26
Christophe Leroy907208c2017-07-06 10:23:22 +020027#define SPI_EEPROM_WREN 0x06
28#define SPI_EEPROM_RDSR 0x05
29#define SPI_EEPROM_READ 0x03
30#define SPI_EEPROM_WRITE 0x02
31
32/* ---------------------------------------------------------------
33 * Offset for initial SPI buffers in DPRAM:
34 * We need a 520 byte scratch DPRAM area to use at an early stage.
35 * It is used between the two initialization calls (spi_init_f()
36 * and spi_init_r()).
37 * The value 0xb00 makes it far enough from the start of the data
38 * area (as well as from the stack pointer).
39 * --------------------------------------------------------------- */
40#ifndef CONFIG_SYS_SPI_INIT_OFFSET
41#define CONFIG_SYS_SPI_INIT_OFFSET 0xB00
42#endif
43
Christophe Leroyba3da732017-07-06 10:33:13 +020044#define CPM_SPI_BASE_RX CPM_SPI_BASE
45#define CPM_SPI_BASE_TX (CPM_SPI_BASE + sizeof(cbd_t))
46
Christophe Leroy907208c2017-07-06 10:23:22 +020047/* -------------------
48 * Function prototypes
49 * ------------------- */
Christophe Leroy70fd0712017-07-06 10:33:17 +020050ssize_t spi_xfer(size_t);
Christophe Leroy907208c2017-07-06 10:23:22 +020051
52/* -------------------
53 * Variables
54 * ------------------- */
55
56#define MAX_BUFFER 0x104
57
58/* ----------------------------------------------------------------------
59 * Initially we place the RX and TX buffers at a fixed location in DPRAM!
60 * ---------------------------------------------------------------------- */
61static uchar *rxbuf =
Christophe Leroy70fd0712017-07-06 10:33:17 +020062 (uchar *)&((cpm8xx_t *)&((immap_t *)CONFIG_SYS_IMMR)->im_cpm)->cp_dpmem
Christophe Leroy907208c2017-07-06 10:23:22 +020063 [CONFIG_SYS_SPI_INIT_OFFSET];
64static uchar *txbuf =
Christophe Leroy70fd0712017-07-06 10:33:17 +020065 (uchar *)&((cpm8xx_t *)&((immap_t *)CONFIG_SYS_IMMR)->im_cpm)->cp_dpmem
Christophe Leroy907208c2017-07-06 10:23:22 +020066 [CONFIG_SYS_SPI_INIT_OFFSET+MAX_BUFFER];
67
68/* **************************************************************************
69 *
70 * Function: spi_init_f
71 *
72 * Description: Init SPI-Controller (ROM part)
73 *
74 * return: ---
75 *
76 * *********************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +020077void spi_init_f(void)
Christophe Leroy907208c2017-07-06 10:23:22 +020078{
Christophe Leroyba3da732017-07-06 10:33:13 +020079 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
80 cpm8xx_t __iomem *cp = &immr->im_cpm;
81 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
82 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +020083
Christophe Leroy907208c2017-07-06 10:23:22 +020084 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +020085 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +020086
87/* 1 */
88 /* ------------------------------------------------
89 * Initialize Port B SPI pins -> page 34-8 MPC860UM
90 * (we are only in Master Mode !)
91 * ------------------------------------------------ */
92
93 /* --------------------------------------------
94 * GPIO or per. Function
95 * PBPAR[28] = 1 [0x00000008] -> PERI: (SPIMISO)
96 * PBPAR[29] = 1 [0x00000004] -> PERI: (SPIMOSI)
97 * PBPAR[30] = 1 [0x00000002] -> PERI: (SPICLK)
98 * PBPAR[31] = 0 [0x00000001] -> GPIO: (CS for PCUE/CCM-EEPROM)
99 * -------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +0200100 clrsetbits_be32(&cp->cp_pbpar, 0x00000001, 0x0000000E); /* set bits */
Christophe Leroy907208c2017-07-06 10:23:22 +0200101
102 /* ----------------------------------------------
103 * In/Out or per. Function 0/1
104 * PBDIR[28] = 1 [0x00000008] -> PERI1: SPIMISO
105 * PBDIR[29] = 1 [0x00000004] -> PERI1: SPIMOSI
106 * PBDIR[30] = 1 [0x00000002] -> PERI1: SPICLK
107 * PBDIR[31] = 1 [0x00000001] -> GPIO OUT: CS for PCUE/CCM-EEPROM
108 * ---------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +0200109 setbits_be32(&cp->cp_pbdir, 0x0000000F);
Christophe Leroy907208c2017-07-06 10:23:22 +0200110
111 /* ----------------------------------------------
112 * open drain or active output
113 * PBODR[28] = 1 [0x00000008] -> open drain: SPIMISO
114 * PBODR[29] = 0 [0x00000004] -> active output SPIMOSI
115 * PBODR[30] = 0 [0x00000002] -> active output: SPICLK
Christophe Leroy70fd0712017-07-06 10:33:17 +0200116 * PBODR[31] = 0 [0x00000001] -> active output GPIO OUT: CS for PCUE/CCM
Christophe Leroy907208c2017-07-06 10:23:22 +0200117 * ---------------------------------------------- */
118
Christophe Leroyba3da732017-07-06 10:33:13 +0200119 clrsetbits_be16(&cp->cp_pbodr, 0x00000007, 0x00000008);
Christophe Leroy907208c2017-07-06 10:23:22 +0200120
121 /* Initialize the parameter ram.
122 * We need to make sure many things are initialized to zero
123 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200124 out_be32(&spi->spi_rstate, 0);
125 out_be32(&spi->spi_rdp, 0);
126 out_be16(&spi->spi_rbptr, 0);
127 out_be16(&spi->spi_rbc, 0);
128 out_be32(&spi->spi_rxtmp, 0);
129 out_be32(&spi->spi_tstate, 0);
130 out_be32(&spi->spi_tdp, 0);
131 out_be16(&spi->spi_tbptr, 0);
132 out_be16(&spi->spi_tbc, 0);
133 out_be32(&spi->spi_txtmp, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200134
135/* 3 */
136 /* Set up the SPI parameters in the parameter ram */
Christophe Leroyba3da732017-07-06 10:33:13 +0200137 out_be16(&spi->spi_rbase, CPM_SPI_BASE_RX);
138 out_be16(&spi->spi_tbase, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +0200139
140 /***********IMPORTANT******************/
141
142 /*
143 * Setting transmit and receive buffer descriptor pointers
144 * initially to rbase and tbase. Only the microcode patches
145 * documentation talks about initializing this pointer. This
146 * is missing from the sample I2C driver. If you dont
147 * initialize these pointers, the kernel hangs.
148 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200149 out_be16(&spi->spi_rbptr, CPM_SPI_BASE_RX);
150 out_be16(&spi->spi_tbptr, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +0200151
152/* 4 */
153 /* Init SPI Tx + Rx Parameters */
Christophe Leroyba3da732017-07-06 10:33:13 +0200154 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200155 ;
Christophe Leroyba3da732017-07-06 10:33:13 +0200156
157 out_be16(&cp->cp_cpcr, mk_cr_cmd(CPM_CR_CH_SPI, CPM_CR_INIT_TRX) |
158 CPM_CR_FLG);
159 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200160 ;
161
162/* 5 */
163 /* Set SDMA configuration register */
Christophe Leroyba3da732017-07-06 10:33:13 +0200164 out_be32(&immr->im_siu_conf.sc_sdcr, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200165
166/* 6 */
167 /* Set to big endian. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200168 out_8(&spi->spi_tfcr, SMC_EB);
169 out_8(&spi->spi_rfcr, SMC_EB);
Christophe Leroy907208c2017-07-06 10:23:22 +0200170
171/* 7 */
172 /* Set maximum receive size. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200173 out_be16(&spi->spi_mrblr, MAX_BUFFER);
Christophe Leroy907208c2017-07-06 10:23:22 +0200174
175/* 8 + 9 */
176 /* tx and rx buffer descriptors */
Christophe Leroyba3da732017-07-06 10:33:13 +0200177 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
178 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200179
Christophe Leroyba3da732017-07-06 10:33:13 +0200180 clrbits_be16(&tbdf->cbd_sc, BD_SC_READY);
181 clrbits_be16(&rbdf->cbd_sc, BD_SC_EMPTY);
Christophe Leroy907208c2017-07-06 10:23:22 +0200182
183 /* Set the bd's rx and tx buffer address pointers */
Christophe Leroyba3da732017-07-06 10:33:13 +0200184 out_be32(&rbdf->cbd_bufaddr, (ulong)rxbuf);
185 out_be32(&tbdf->cbd_bufaddr, (ulong)txbuf);
Christophe Leroy907208c2017-07-06 10:23:22 +0200186
187/* 10 + 11 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200188 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
189 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200190
191 return;
192}
193
194/* **************************************************************************
195 *
196 * Function: spi_init_r
197 *
198 * Description: Init SPI-Controller (RAM part) -
199 * The malloc engine is ready and we can move our buffers to
200 * normal RAM
201 *
202 * return: ---
203 *
204 * *********************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200205void spi_init_r(void)
Christophe Leroy907208c2017-07-06 10:23:22 +0200206{
Christophe Leroyba3da732017-07-06 10:33:13 +0200207 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
208 cpm8xx_t __iomem *cp = &immr->im_cpm;
209 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
210 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +0200211
Christophe Leroy907208c2017-07-06 10:23:22 +0200212 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +0200213 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200214
215 /* tx and rx buffer descriptors */
Christophe Leroyba3da732017-07-06 10:33:13 +0200216 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
217 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200218
219 /* Allocate memory for RX and TX buffers */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200220 rxbuf = (uchar *)malloc(MAX_BUFFER);
221 txbuf = (uchar *)malloc(MAX_BUFFER);
Christophe Leroy907208c2017-07-06 10:23:22 +0200222
Christophe Leroyba3da732017-07-06 10:33:13 +0200223 out_be32(&rbdf->cbd_bufaddr, (ulong)rxbuf);
224 out_be32(&tbdf->cbd_bufaddr, (ulong)txbuf);
Christophe Leroy907208c2017-07-06 10:23:22 +0200225
226 return;
227}
228
229/****************************************************************************
230 * Function: spi_write
231 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200232ssize_t spi_write(uchar *addr, int alen, uchar *buffer, int len)
Christophe Leroy907208c2017-07-06 10:23:22 +0200233{
234 int i;
235
236 memset(rxbuf, 0, MAX_BUFFER);
237 memset(txbuf, 0, MAX_BUFFER);
238 *txbuf = SPI_EEPROM_WREN; /* write enable */
239 spi_xfer(1);
240 memcpy(txbuf, addr, alen);
241 *txbuf = SPI_EEPROM_WRITE; /* WRITE memory array */
242 memcpy(alen + txbuf, buffer, len);
243 spi_xfer(alen + len);
244 /* ignore received data */
245 for (i = 0; i < 1000; i++) {
246 *txbuf = SPI_EEPROM_RDSR; /* read status */
247 txbuf[1] = 0;
248 spi_xfer(2);
Christophe Leroy70fd0712017-07-06 10:33:17 +0200249 if (!(rxbuf[1] & 1))
Christophe Leroy907208c2017-07-06 10:23:22 +0200250 break;
Christophe Leroy907208c2017-07-06 10:23:22 +0200251 udelay(1000);
252 }
Christophe Leroy70fd0712017-07-06 10:33:17 +0200253 if (i >= 1000)
254 printf("*** spi_write: Time out while writing!\n");
Christophe Leroy907208c2017-07-06 10:23:22 +0200255
256 return len;
257}
258
259/****************************************************************************
260 * Function: spi_read
261 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200262ssize_t spi_read(uchar *addr, int alen, uchar *buffer, int len)
Christophe Leroy907208c2017-07-06 10:23:22 +0200263{
264 memset(rxbuf, 0, MAX_BUFFER);
265 memset(txbuf, 0, MAX_BUFFER);
266 memcpy(txbuf, addr, alen);
267 *txbuf = SPI_EEPROM_READ; /* READ memory array */
268
269 /*
270 * There is a bug in 860T (?) that cuts the last byte of input
271 * if we're reading into DPRAM. The solution we choose here is
272 * to always read len+1 bytes (we have one extra byte at the
273 * end of the buffer).
274 */
275 spi_xfer(alen + len + 1);
276 memcpy(buffer, alen + rxbuf, len);
277
278 return len;
279}
280
281/****************************************************************************
282 * Function: spi_xfer
283 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200284ssize_t spi_xfer(size_t count)
Christophe Leroy907208c2017-07-06 10:23:22 +0200285{
Christophe Leroyba3da732017-07-06 10:33:13 +0200286 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
287 cpm8xx_t __iomem *cp = &immr->im_cpm;
288 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
289 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +0200290 int tm;
291
Christophe Leroy907208c2017-07-06 10:23:22 +0200292 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +0200293 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200294
Christophe Leroyba3da732017-07-06 10:33:13 +0200295 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
296 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200297
298 /* Set CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200299 clrbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200300
301 /* Setting tx bd status and data length */
Christophe Leroyba3da732017-07-06 10:33:13 +0200302 out_be16(&tbdf->cbd_sc, BD_SC_READY | BD_SC_LAST | BD_SC_WRAP);
303 out_be16(&tbdf->cbd_datlen, count);
Christophe Leroy907208c2017-07-06 10:23:22 +0200304
305 /* Setting rx bd status and data length */
Christophe Leroyba3da732017-07-06 10:33:13 +0200306 out_be16(&rbdf->cbd_sc, BD_SC_EMPTY | BD_SC_WRAP);
307 out_be16(&rbdf->cbd_datlen, 0); /* rx length has no significance */
Christophe Leroy907208c2017-07-06 10:23:22 +0200308
Christophe Leroyba3da732017-07-06 10:33:13 +0200309 clrsetbits_be16(&cp->cp_spmode, ~SPMODE_LOOP, SPMODE_REV | SPMODE_MSTR |
310 SPMODE_EN | SPMODE_LEN(8) | SPMODE_PM(0x8));
311 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
312 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200313
314 /* start spi transfer */
Christophe Leroyba3da732017-07-06 10:33:13 +0200315 setbits_8(&cp->cp_spcom, SPI_STR); /* Start transmit */
Christophe Leroy907208c2017-07-06 10:23:22 +0200316
317 /* --------------------------------
318 * Wait for SPI transmit to get out
319 * or time out (1 second = 1000 ms)
320 * -------------------------------- */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200321 for (tm = 0; tm < 1000; ++tm) {
Christophe Leroyba3da732017-07-06 10:33:13 +0200322 if (in_8(&cp->cp_spie) & SPI_TXB) /* Tx Buffer Empty */
Christophe Leroy907208c2017-07-06 10:23:22 +0200323 break;
Christophe Leroyba3da732017-07-06 10:33:13 +0200324 if ((in_be16(&tbdf->cbd_sc) & BD_SC_READY) == 0)
Christophe Leroy907208c2017-07-06 10:23:22 +0200325 break;
Christophe Leroy70fd0712017-07-06 10:33:17 +0200326 udelay(1000);
Christophe Leroy907208c2017-07-06 10:23:22 +0200327 }
Christophe Leroy70fd0712017-07-06 10:33:17 +0200328 if (tm >= 1000)
329 printf("*** spi_xfer: Time out while xferring to/from SPI!\n");
Christophe Leroy907208c2017-07-06 10:23:22 +0200330
331 /* Clear CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200332 setbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200333
334 return count;
335}