]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
907208c4 CL |
2 | /* |
3 | * Copyright (c) 2001 Navin Boppuri / Prashant Patel | |
4 | * <[email protected]>, | |
5 | * <[email protected]> | |
6 | * Copyright (c) 2001 Gerd Mennchen <[email protected]> | |
7 | * Copyright (c) 2001 Wolfgang Denk, DENX Software Engineering, <[email protected]>. | |
907208c4 CL |
8 | */ |
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 [email protected] | |
16 | * | |
17 | */ | |
18 | ||
19 | #include <common.h> | |
fb0204e4 | 20 | #include <dm.h> |
907208c4 | 21 | #include <mpc8xx.h> |
fb0204e4 CL |
22 | #include <spi.h> |
23 | ||
18f8d4c6 | 24 | #include <asm/cpm_8xx.h> |
fb0204e4 | 25 | #include <asm/io.h> |
907208c4 | 26 | |
ba3da734 CL |
27 | #define CPM_SPI_BASE_RX CPM_SPI_BASE |
28 | #define CPM_SPI_BASE_TX (CPM_SPI_BASE + sizeof(cbd_t)) | |
29 | ||
907208c4 CL |
30 | #define MAX_BUFFER 0x104 |
31 | ||
fb0204e4 | 32 | static int mpc8xx_spi_probe(struct udevice *dev) |
907208c4 | 33 | { |
ba3da734 CL |
34 | immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR; |
35 | cpm8xx_t __iomem *cp = &immr->im_cpm; | |
36 | spi_t __iomem *spi = (spi_t __iomem *)&cp->cp_dparam[PROFF_SPI]; | |
37 | cbd_t __iomem *tbdf, *rbdf; | |
907208c4 | 38 | |
907208c4 | 39 | /* Disable relocation */ |
ba3da734 | 40 | out_be16(&spi->spi_rpbase, 0); |
907208c4 CL |
41 | |
42 | /* 1 */ | |
43 | /* ------------------------------------------------ | |
44 | * Initialize Port B SPI pins -> page 34-8 MPC860UM | |
45 | * (we are only in Master Mode !) | |
46 | * ------------------------------------------------ */ | |
47 | ||
48 | /* -------------------------------------------- | |
49 | * GPIO or per. Function | |
50 | * PBPAR[28] = 1 [0x00000008] -> PERI: (SPIMISO) | |
51 | * PBPAR[29] = 1 [0x00000004] -> PERI: (SPIMOSI) | |
52 | * PBPAR[30] = 1 [0x00000002] -> PERI: (SPICLK) | |
53 | * PBPAR[31] = 0 [0x00000001] -> GPIO: (CS for PCUE/CCM-EEPROM) | |
54 | * -------------------------------------------- */ | |
ba3da734 | 55 | clrsetbits_be32(&cp->cp_pbpar, 0x00000001, 0x0000000E); /* set bits */ |
907208c4 CL |
56 | |
57 | /* ---------------------------------------------- | |
58 | * In/Out or per. Function 0/1 | |
59 | * PBDIR[28] = 1 [0x00000008] -> PERI1: SPIMISO | |
60 | * PBDIR[29] = 1 [0x00000004] -> PERI1: SPIMOSI | |
61 | * PBDIR[30] = 1 [0x00000002] -> PERI1: SPICLK | |
62 | * PBDIR[31] = 1 [0x00000001] -> GPIO OUT: CS for PCUE/CCM-EEPROM | |
63 | * ---------------------------------------------- */ | |
ba3da734 | 64 | setbits_be32(&cp->cp_pbdir, 0x0000000F); |
907208c4 CL |
65 | |
66 | /* ---------------------------------------------- | |
67 | * open drain or active output | |
68 | * PBODR[28] = 1 [0x00000008] -> open drain: SPIMISO | |
69 | * PBODR[29] = 0 [0x00000004] -> active output SPIMOSI | |
70 | * PBODR[30] = 0 [0x00000002] -> active output: SPICLK | |
70fd0710 | 71 | * PBODR[31] = 0 [0x00000001] -> active output GPIO OUT: CS for PCUE/CCM |
907208c4 CL |
72 | * ---------------------------------------------- */ |
73 | ||
ba3da734 | 74 | clrsetbits_be16(&cp->cp_pbodr, 0x00000007, 0x00000008); |
907208c4 CL |
75 | |
76 | /* Initialize the parameter ram. | |
77 | * We need to make sure many things are initialized to zero | |
78 | */ | |
ba3da734 CL |
79 | out_be32(&spi->spi_rstate, 0); |
80 | out_be32(&spi->spi_rdp, 0); | |
81 | out_be16(&spi->spi_rbptr, 0); | |
82 | out_be16(&spi->spi_rbc, 0); | |
83 | out_be32(&spi->spi_rxtmp, 0); | |
84 | out_be32(&spi->spi_tstate, 0); | |
85 | out_be32(&spi->spi_tdp, 0); | |
86 | out_be16(&spi->spi_tbptr, 0); | |
87 | out_be16(&spi->spi_tbc, 0); | |
88 | out_be32(&spi->spi_txtmp, 0); | |
907208c4 CL |
89 | |
90 | /* 3 */ | |
91 | /* Set up the SPI parameters in the parameter ram */ | |
ba3da734 CL |
92 | out_be16(&spi->spi_rbase, CPM_SPI_BASE_RX); |
93 | out_be16(&spi->spi_tbase, CPM_SPI_BASE_TX); | |
907208c4 CL |
94 | |
95 | /***********IMPORTANT******************/ | |
96 | ||
97 | /* | |
98 | * Setting transmit and receive buffer descriptor pointers | |
99 | * initially to rbase and tbase. Only the microcode patches | |
100 | * documentation talks about initializing this pointer. This | |
101 | * is missing from the sample I2C driver. If you dont | |
102 | * initialize these pointers, the kernel hangs. | |
103 | */ | |
ba3da734 CL |
104 | out_be16(&spi->spi_rbptr, CPM_SPI_BASE_RX); |
105 | out_be16(&spi->spi_tbptr, CPM_SPI_BASE_TX); | |
907208c4 CL |
106 | |
107 | /* 4 */ | |
108 | /* Init SPI Tx + Rx Parameters */ | |
ba3da734 | 109 | while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG) |
907208c4 | 110 | ; |
ba3da734 CL |
111 | |
112 | out_be16(&cp->cp_cpcr, mk_cr_cmd(CPM_CR_CH_SPI, CPM_CR_INIT_TRX) | | |
113 | CPM_CR_FLG); | |
114 | while (in_be16(&cp->cp_cpcr) & CPM_CR_FLG) | |
907208c4 CL |
115 | ; |
116 | ||
117 | /* 5 */ | |
118 | /* Set SDMA configuration register */ | |
ba3da734 | 119 | out_be32(&immr->im_siu_conf.sc_sdcr, 0x0001); |
907208c4 CL |
120 | |
121 | /* 6 */ | |
122 | /* Set to big endian. */ | |
ba3da734 CL |
123 | out_8(&spi->spi_tfcr, SMC_EB); |
124 | out_8(&spi->spi_rfcr, SMC_EB); | |
907208c4 CL |
125 | |
126 | /* 7 */ | |
127 | /* Set maximum receive size. */ | |
ba3da734 | 128 | out_be16(&spi->spi_mrblr, MAX_BUFFER); |
907208c4 CL |
129 | |
130 | /* 8 + 9 */ | |
131 | /* tx and rx buffer descriptors */ | |
ba3da734 CL |
132 | tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX]; |
133 | rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX]; | |
907208c4 | 134 | |
ba3da734 CL |
135 | clrbits_be16(&tbdf->cbd_sc, BD_SC_READY); |
136 | clrbits_be16(&rbdf->cbd_sc, BD_SC_EMPTY); | |
907208c4 | 137 | |
907208c4 | 138 | /* 10 + 11 */ |
ba3da734 CL |
139 | out_8(&cp->cp_spim, 0); /* Mask all SPI events */ |
140 | out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */ | |
907208c4 | 141 | |
fb0204e4 | 142 | return 0; |
907208c4 CL |
143 | } |
144 | ||
fb0204e4 CL |
145 | static int mpc8xx_spi_xfer(struct udevice *dev, unsigned int bitlen, |
146 | const void *dout, void *din, unsigned long flags) | |
907208c4 | 147 | { |
ba3da734 CL |
148 | immap_t __iomem *immr = (immap_t __iomem *)CONFIG_SYS_IMMR; |
149 | cpm8xx_t __iomem *cp = &immr->im_cpm; | |
ba3da734 | 150 | cbd_t __iomem *tbdf, *rbdf; |
907208c4 | 151 | int tm; |
fb0204e4 | 152 | size_t count = (bitlen + 7) / 8; |
907208c4 | 153 | |
fb0204e4 CL |
154 | if (count > MAX_BUFFER) |
155 | return -EINVAL; | |
907208c4 | 156 | |
ba3da734 CL |
157 | tbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_TX]; |
158 | rbdf = (cbd_t __iomem *)&cp->cp_dpmem[CPM_SPI_BASE_RX]; | |
907208c4 CL |
159 | |
160 | /* Set CS for device */ | |
ba3da734 | 161 | clrbits_be32(&cp->cp_pbdat, 0x0001); |
907208c4 CL |
162 | |
163 | /* Setting tx bd status and data length */ | |
fb0204e4 | 164 | out_be32(&tbdf->cbd_bufaddr, (ulong)dout); |
ba3da734 CL |
165 | out_be16(&tbdf->cbd_sc, BD_SC_READY | BD_SC_LAST | BD_SC_WRAP); |
166 | out_be16(&tbdf->cbd_datlen, count); | |
907208c4 CL |
167 | |
168 | /* Setting rx bd status and data length */ | |
fb0204e4 | 169 | out_be32(&rbdf->cbd_bufaddr, (ulong)din); |
ba3da734 CL |
170 | out_be16(&rbdf->cbd_sc, BD_SC_EMPTY | BD_SC_WRAP); |
171 | out_be16(&rbdf->cbd_datlen, 0); /* rx length has no significance */ | |
172 | ||
173 | clrsetbits_be16(&cp->cp_spmode, ~SPMODE_LOOP, SPMODE_REV | SPMODE_MSTR | | |
174 | SPMODE_EN | SPMODE_LEN(8) | SPMODE_PM(0x8)); | |
175 | out_8(&cp->cp_spim, 0); /* Mask all SPI events */ | |
176 | out_8(&cp->cp_spie, SPI_EMASK); /* Clear all SPI events */ | |
907208c4 CL |
177 | |
178 | /* start spi transfer */ | |
ba3da734 | 179 | setbits_8(&cp->cp_spcom, SPI_STR); /* Start transmit */ |
907208c4 CL |
180 | |
181 | /* -------------------------------- | |
182 | * Wait for SPI transmit to get out | |
183 | * or time out (1 second = 1000 ms) | |
184 | * -------------------------------- */ | |
70fd0710 | 185 | for (tm = 0; tm < 1000; ++tm) { |
ba3da734 | 186 | if (in_8(&cp->cp_spie) & SPI_TXB) /* Tx Buffer Empty */ |
907208c4 | 187 | break; |
ba3da734 | 188 | if ((in_be16(&tbdf->cbd_sc) & BD_SC_READY) == 0) |
907208c4 | 189 | break; |
70fd0710 | 190 | udelay(1000); |
907208c4 | 191 | } |
70fd0710 CL |
192 | if (tm >= 1000) |
193 | printf("*** spi_xfer: Time out while xferring to/from SPI!\n"); | |
907208c4 CL |
194 | |
195 | /* Clear CS for device */ | |
ba3da734 | 196 | setbits_be32(&cp->cp_pbdat, 0x0001); |
907208c4 CL |
197 | |
198 | return count; | |
199 | } | |
fb0204e4 CL |
200 | |
201 | static const struct dm_spi_ops mpc8xx_spi_ops = { | |
202 | .xfer = mpc8xx_spi_xfer, | |
203 | }; | |
204 | ||
205 | static const struct udevice_id mpc8xx_spi_ids[] = { | |
206 | { .compatible = "fsl,mpc8xx-spi" }, | |
207 | { } | |
208 | }; | |
209 | ||
210 | U_BOOT_DRIVER(mpc8xx_spi) = { | |
211 | .name = "mpc8xx_spi", | |
212 | .id = UCLASS_SPI, | |
213 | .of_match = mpc8xx_spi_ids, | |
214 | .ops = &mpc8xx_spi_ops, | |
215 | .probe = mpc8xx_spi_probe, | |
216 | }; |