blob: b5bd558526b7c19a0a69416071b6690c0158da12 [file] [log] [blame]
Christophe Leroy907208c2017-07-06 10:23:22 +02001/*
2 * Copyright (c) 2001 Navin Boppuri / Prashant Patel
3 * <nboppuri@trinetcommunication.com>,
4 * <pmpatel@trinetcommunication.com>
5 * Copyright (c) 2001 Gerd Mennchen <Gerd.Mennchen@icn.siemens.de>
6 * Copyright (c) 2001 Wolfgang Denk, DENX Software Engineering, <wd@denx.de>.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11/*
12 * MPC8xx CPM SPI interface.
13 *
14 * Parts of this code are probably not portable and/or specific to
15 * the board which I used for the tests. Please send fixes/complaints
16 * to wd@denx.de
17 *
18 */
19
20#include <common.h>
21#include <mpc8xx.h>
22#include <commproc.h>
23#include <linux/ctype.h>
24#include <malloc.h>
25#include <post.h>
26#include <serial.h>
27
Christophe Leroy907208c2017-07-06 10:23:22 +020028#define SPI_EEPROM_WREN 0x06
29#define SPI_EEPROM_RDSR 0x05
30#define SPI_EEPROM_READ 0x03
31#define SPI_EEPROM_WRITE 0x02
32
33/* ---------------------------------------------------------------
34 * Offset for initial SPI buffers in DPRAM:
35 * We need a 520 byte scratch DPRAM area to use at an early stage.
36 * It is used between the two initialization calls (spi_init_f()
37 * and spi_init_r()).
38 * The value 0xb00 makes it far enough from the start of the data
39 * area (as well as from the stack pointer).
40 * --------------------------------------------------------------- */
41#ifndef CONFIG_SYS_SPI_INIT_OFFSET
42#define CONFIG_SYS_SPI_INIT_OFFSET 0xB00
43#endif
44
Christophe Leroyba3da732017-07-06 10:33:13 +020045#define CPM_SPI_BASE_RX CPM_SPI_BASE
46#define CPM_SPI_BASE_TX (CPM_SPI_BASE + sizeof(cbd_t))
47
Christophe Leroy907208c2017-07-06 10:23:22 +020048/* -------------------
49 * Function prototypes
50 * ------------------- */
Christophe Leroy70fd0712017-07-06 10:33:17 +020051ssize_t spi_xfer(size_t);
Christophe Leroy907208c2017-07-06 10:23:22 +020052
53/* -------------------
54 * Variables
55 * ------------------- */
56
57#define MAX_BUFFER 0x104
58
59/* ----------------------------------------------------------------------
60 * Initially we place the RX and TX buffers at a fixed location in DPRAM!
61 * ---------------------------------------------------------------------- */
62static uchar *rxbuf =
Christophe Leroy70fd0712017-07-06 10:33:17 +020063 (uchar *)&((cpm8xx_t *)&((immap_t *)CONFIG_SYS_IMMR)->im_cpm)->cp_dpmem
Christophe Leroy907208c2017-07-06 10:23:22 +020064 [CONFIG_SYS_SPI_INIT_OFFSET];
65static uchar *txbuf =
Christophe Leroy70fd0712017-07-06 10:33:17 +020066 (uchar *)&((cpm8xx_t *)&((immap_t *)CONFIG_SYS_IMMR)->im_cpm)->cp_dpmem
Christophe Leroy907208c2017-07-06 10:23:22 +020067 [CONFIG_SYS_SPI_INIT_OFFSET+MAX_BUFFER];
68
69/* **************************************************************************
70 *
71 * Function: spi_init_f
72 *
73 * Description: Init SPI-Controller (ROM part)
74 *
75 * return: ---
76 *
77 * *********************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +020078void spi_init_f(void)
Christophe Leroy907208c2017-07-06 10:23:22 +020079{
Christophe Leroyba3da732017-07-06 10:33:13 +020080 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
81 cpm8xx_t __iomem *cp = &immr->im_cpm;
82 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
83 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +020084
Christophe Leroy907208c2017-07-06 10:23:22 +020085 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +020086 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +020087
88/* 1 */
89 /* ------------------------------------------------
90 * Initialize Port B SPI pins -> page 34-8 MPC860UM
91 * (we are only in Master Mode !)
92 * ------------------------------------------------ */
93
94 /* --------------------------------------------
95 * GPIO or per. Function
96 * PBPAR[28] = 1 [0x00000008] -> PERI: (SPIMISO)
97 * PBPAR[29] = 1 [0x00000004] -> PERI: (SPIMOSI)
98 * PBPAR[30] = 1 [0x00000002] -> PERI: (SPICLK)
99 * PBPAR[31] = 0 [0x00000001] -> GPIO: (CS for PCUE/CCM-EEPROM)
100 * -------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +0200101 clrsetbits_be32(&cp->cp_pbpar, 0x00000001, 0x0000000E); /* set bits */
Christophe Leroy907208c2017-07-06 10:23:22 +0200102
103 /* ----------------------------------------------
104 * In/Out or per. Function 0/1
105 * PBDIR[28] = 1 [0x00000008] -> PERI1: SPIMISO
106 * PBDIR[29] = 1 [0x00000004] -> PERI1: SPIMOSI
107 * PBDIR[30] = 1 [0x00000002] -> PERI1: SPICLK
108 * PBDIR[31] = 1 [0x00000001] -> GPIO OUT: CS for PCUE/CCM-EEPROM
109 * ---------------------------------------------- */
Christophe Leroyba3da732017-07-06 10:33:13 +0200110 setbits_be32(&cp->cp_pbdir, 0x0000000F);
Christophe Leroy907208c2017-07-06 10:23:22 +0200111
112 /* ----------------------------------------------
113 * open drain or active output
114 * PBODR[28] = 1 [0x00000008] -> open drain: SPIMISO
115 * PBODR[29] = 0 [0x00000004] -> active output SPIMOSI
116 * PBODR[30] = 0 [0x00000002] -> active output: SPICLK
Christophe Leroy70fd0712017-07-06 10:33:17 +0200117 * PBODR[31] = 0 [0x00000001] -> active output GPIO OUT: CS for PCUE/CCM
Christophe Leroy907208c2017-07-06 10:23:22 +0200118 * ---------------------------------------------- */
119
Christophe Leroyba3da732017-07-06 10:33:13 +0200120 clrsetbits_be16(&cp->cp_pbodr, 0x00000007, 0x00000008);
Christophe Leroy907208c2017-07-06 10:23:22 +0200121
122 /* Initialize the parameter ram.
123 * We need to make sure many things are initialized to zero
124 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200125 out_be32(&spi->spi_rstate, 0);
126 out_be32(&spi->spi_rdp, 0);
127 out_be16(&spi->spi_rbptr, 0);
128 out_be16(&spi->spi_rbc, 0);
129 out_be32(&spi->spi_rxtmp, 0);
130 out_be32(&spi->spi_tstate, 0);
131 out_be32(&spi->spi_tdp, 0);
132 out_be16(&spi->spi_tbptr, 0);
133 out_be16(&spi->spi_tbc, 0);
134 out_be32(&spi->spi_txtmp, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200135
136/* 3 */
137 /* Set up the SPI parameters in the parameter ram */
Christophe Leroyba3da732017-07-06 10:33:13 +0200138 out_be16(&spi->spi_rbase, CPM_SPI_BASE_RX);
139 out_be16(&spi->spi_tbase, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +0200140
141 /***********IMPORTANT******************/
142
143 /*
144 * Setting transmit and receive buffer descriptor pointers
145 * initially to rbase and tbase. Only the microcode patches
146 * documentation talks about initializing this pointer. This
147 * is missing from the sample I2C driver. If you dont
148 * initialize these pointers, the kernel hangs.
149 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200150 out_be16(&spi->spi_rbptr, CPM_SPI_BASE_RX);
151 out_be16(&spi->spi_tbptr, CPM_SPI_BASE_TX);
Christophe Leroy907208c2017-07-06 10:23:22 +0200152
153/* 4 */
154 /* Init SPI Tx + Rx Parameters */
Christophe Leroyba3da732017-07-06 10:33:13 +0200155 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200156 ;
Christophe Leroyba3da732017-07-06 10:33:13 +0200157
158 out_be16(&cp->cp_cpcr, mk_cr_cmd(CPM_CR_CH_SPI, CPM_CR_INIT_TRX) |
159 CPM_CR_FLG);
160 while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG)
Christophe Leroy907208c2017-07-06 10:23:22 +0200161 ;
162
163/* 5 */
164 /* Set SDMA configuration register */
Christophe Leroyba3da732017-07-06 10:33:13 +0200165 out_be32(&immr->im_siu_conf.sc_sdcr, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200166
167/* 6 */
168 /* Set to big endian. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200169 out_8(&spi->spi_tfcr, SMC_EB);
170 out_8(&spi->spi_rfcr, SMC_EB);
Christophe Leroy907208c2017-07-06 10:23:22 +0200171
172/* 7 */
173 /* Set maximum receive size. */
Christophe Leroyba3da732017-07-06 10:33:13 +0200174 out_be16(&spi->spi_mrblr, MAX_BUFFER);
Christophe Leroy907208c2017-07-06 10:23:22 +0200175
176/* 8 + 9 */
177 /* tx and rx buffer descriptors */
Christophe Leroyba3da732017-07-06 10:33:13 +0200178 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
179 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200180
Christophe Leroyba3da732017-07-06 10:33:13 +0200181 clrbits_be16(&tbdf->cbd_sc, BD_SC_READY);
182 clrbits_be16(&rbdf->cbd_sc, BD_SC_EMPTY);
Christophe Leroy907208c2017-07-06 10:23:22 +0200183
184 /* Set the bd's rx and tx buffer address pointers */
Christophe Leroyba3da732017-07-06 10:33:13 +0200185 out_be32(&rbdf->cbd_bufaddr, (ulong)rxbuf);
186 out_be32(&tbdf->cbd_bufaddr, (ulong)txbuf);
Christophe Leroy907208c2017-07-06 10:23:22 +0200187
188/* 10 + 11 */
Christophe Leroyba3da732017-07-06 10:33:13 +0200189 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
190 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200191
192 return;
193}
194
195/* **************************************************************************
196 *
197 * Function: spi_init_r
198 *
199 * Description: Init SPI-Controller (RAM part) -
200 * The malloc engine is ready and we can move our buffers to
201 * normal RAM
202 *
203 * return: ---
204 *
205 * *********************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200206void spi_init_r(void)
Christophe Leroy907208c2017-07-06 10:23:22 +0200207{
Christophe Leroyba3da732017-07-06 10:33:13 +0200208 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
209 cpm8xx_t __iomem *cp = &immr->im_cpm;
210 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
211 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +0200212
Christophe Leroy907208c2017-07-06 10:23:22 +0200213 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +0200214 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200215
216 /* tx and rx buffer descriptors */
Christophe Leroyba3da732017-07-06 10:33:13 +0200217 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
218 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200219
220 /* Allocate memory for RX and TX buffers */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200221 rxbuf = (uchar *)malloc(MAX_BUFFER);
222 txbuf = (uchar *)malloc(MAX_BUFFER);
Christophe Leroy907208c2017-07-06 10:23:22 +0200223
Christophe Leroyba3da732017-07-06 10:33:13 +0200224 out_be32(&rbdf->cbd_bufaddr, (ulong)rxbuf);
225 out_be32(&tbdf->cbd_bufaddr, (ulong)txbuf);
Christophe Leroy907208c2017-07-06 10:23:22 +0200226
227 return;
228}
229
230/****************************************************************************
231 * Function: spi_write
232 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200233ssize_t spi_write(uchar *addr, int alen, uchar *buffer, int len)
Christophe Leroy907208c2017-07-06 10:23:22 +0200234{
235 int i;
236
237 memset(rxbuf, 0, MAX_BUFFER);
238 memset(txbuf, 0, MAX_BUFFER);
239 *txbuf = SPI_EEPROM_WREN; /* write enable */
240 spi_xfer(1);
241 memcpy(txbuf, addr, alen);
242 *txbuf = SPI_EEPROM_WRITE; /* WRITE memory array */
243 memcpy(alen + txbuf, buffer, len);
244 spi_xfer(alen + len);
245 /* ignore received data */
246 for (i = 0; i < 1000; i++) {
247 *txbuf = SPI_EEPROM_RDSR; /* read status */
248 txbuf[1] = 0;
249 spi_xfer(2);
Christophe Leroy70fd0712017-07-06 10:33:17 +0200250 if (!(rxbuf[1] & 1))
Christophe Leroy907208c2017-07-06 10:23:22 +0200251 break;
Christophe Leroy907208c2017-07-06 10:23:22 +0200252 udelay(1000);
253 }
Christophe Leroy70fd0712017-07-06 10:33:17 +0200254 if (i >= 1000)
255 printf("*** spi_write: Time out while writing!\n");
Christophe Leroy907208c2017-07-06 10:23:22 +0200256
257 return len;
258}
259
260/****************************************************************************
261 * Function: spi_read
262 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200263ssize_t spi_read(uchar *addr, int alen, uchar *buffer, int len)
Christophe Leroy907208c2017-07-06 10:23:22 +0200264{
265 memset(rxbuf, 0, MAX_BUFFER);
266 memset(txbuf, 0, MAX_BUFFER);
267 memcpy(txbuf, addr, alen);
268 *txbuf = SPI_EEPROM_READ; /* READ memory array */
269
270 /*
271 * There is a bug in 860T (?) that cuts the last byte of input
272 * if we're reading into DPRAM. The solution we choose here is
273 * to always read len+1 bytes (we have one extra byte at the
274 * end of the buffer).
275 */
276 spi_xfer(alen + len + 1);
277 memcpy(buffer, alen + rxbuf, len);
278
279 return len;
280}
281
282/****************************************************************************
283 * Function: spi_xfer
284 **************************************************************************** */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200285ssize_t spi_xfer(size_t count)
Christophe Leroy907208c2017-07-06 10:23:22 +0200286{
Christophe Leroyba3da732017-07-06 10:33:13 +0200287 immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR;
288 cpm8xx_t __iomem *cp = &immr->im_cpm;
289 spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI];
290 cbd_t __iomem *tbdf, *rbdf;
Christophe Leroy907208c2017-07-06 10:23:22 +0200291 int tm;
292
Christophe Leroy907208c2017-07-06 10:23:22 +0200293 /* Disable relocation */
Christophe Leroyba3da732017-07-06 10:33:13 +0200294 out_be16(&spi->spi_rpbase, 0);
Christophe Leroy907208c2017-07-06 10:23:22 +0200295
Christophe Leroyba3da732017-07-06 10:33:13 +0200296 tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX];
297 rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX];
Christophe Leroy907208c2017-07-06 10:23:22 +0200298
299 /* Set CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200300 clrbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200301
302 /* Setting tx bd status and data length */
Christophe Leroyba3da732017-07-06 10:33:13 +0200303 out_be16(&tbdf->cbd_sc, BD_SC_READY | BD_SC_LAST | BD_SC_WRAP);
304 out_be16(&tbdf->cbd_datlen, count);
Christophe Leroy907208c2017-07-06 10:23:22 +0200305
306 /* Setting rx bd status and data length */
Christophe Leroyba3da732017-07-06 10:33:13 +0200307 out_be16(&rbdf->cbd_sc, BD_SC_EMPTY | BD_SC_WRAP);
308 out_be16(&rbdf->cbd_datlen, 0); /* rx length has no significance */
Christophe Leroy907208c2017-07-06 10:23:22 +0200309
Christophe Leroyba3da732017-07-06 10:33:13 +0200310 clrsetbits_be16(&cp->cp_spmode, ~SPMODE_LOOP, SPMODE_REV | SPMODE_MSTR |
311 SPMODE_EN | SPMODE_LEN(8) | SPMODE_PM(0x8));
312 out_8(&cp->cp_spim, 0); /* Mask all SPI events */
313 out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */
Christophe Leroy907208c2017-07-06 10:23:22 +0200314
315 /* start spi transfer */
Christophe Leroyba3da732017-07-06 10:33:13 +0200316 setbits_8(&cp->cp_spcom, SPI_STR); /* Start transmit */
Christophe Leroy907208c2017-07-06 10:23:22 +0200317
318 /* --------------------------------
319 * Wait for SPI transmit to get out
320 * or time out (1 second = 1000 ms)
321 * -------------------------------- */
Christophe Leroy70fd0712017-07-06 10:33:17 +0200322 for (tm = 0; tm < 1000; ++tm) {
Christophe Leroyba3da732017-07-06 10:33:13 +0200323 if (in_8(&cp->cp_spie) & SPI_TXB) /* Tx Buffer Empty */
Christophe Leroy907208c2017-07-06 10:23:22 +0200324 break;
Christophe Leroyba3da732017-07-06 10:33:13 +0200325 if ((in_be16(&tbdf->cbd_sc) & BD_SC_READY) == 0)
Christophe Leroy907208c2017-07-06 10:23:22 +0200326 break;
Christophe Leroy70fd0712017-07-06 10:33:17 +0200327 udelay(1000);
Christophe Leroy907208c2017-07-06 10:23:22 +0200328 }
Christophe Leroy70fd0712017-07-06 10:33:17 +0200329 if (tm >= 1000)
330 printf("*** spi_xfer: Time out while xferring to/from SPI!\n");
Christophe Leroy907208c2017-07-06 10:23:22 +0200331
332 /* Clear CS for device */
Christophe Leroyba3da732017-07-06 10:33:13 +0200333 setbits_be32(&cp->cp_pbdat, 0x0001);
Christophe Leroy907208c2017-07-06 10:23:22 +0200334
335 return count;
336}