blob: c651e668996bc4d7c2592f8f9602c81147d1f3b6 [file] [log] [blame]
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +03001/*
2 * General Purpose functions for the global management of the
3 * Communication Processor Module.
4 * Copyright (c) 1997 Dan error_act (dmalek@jlc.net)
5 *
6 * In addition to the individual control of the communication
7 * channels, there are a few functions that globally affect the
8 * communication processor.
9 *
10 * Buffer descriptors must be allocated from the dual ported memory
11 * space. The allocator for that is here. When the communication
12 * process is reset, we reclaim the memory available. There is
13 * currently no deallocator for this memory.
14 * The amount of space available is platform dependent. On the
15 * MBX, the EPPC software loads additional microcode into the
16 * communication processor, and uses some of the DP ram for this
17 * purpose. Current, the first 512 bytes and the last 256 bytes of
18 * memory are used. Right now I am conservative and only use the
19 * memory that can never be used for microcode. If there are
20 * applications that require more DP ram, we can expand the boundaries
21 * but then we have to be careful of any downloaded microcode.
22 */
23#include <linux/errno.h>
24#include <linux/sched.h>
25#include <linux/kernel.h>
26#include <linux/dma-mapping.h>
27#include <linux/param.h>
28#include <linux/string.h>
29#include <linux/mm.h>
30#include <linux/interrupt.h>
31#include <linux/irq.h>
32#include <linux/module.h>
Jochen Friedrichdc2380e2008-07-03 02:18:23 +100033#include <linux/spinlock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030035#include <asm/page.h>
36#include <asm/pgtable.h>
37#include <asm/8xx_immap.h>
Jochen Friedrichb5677d82008-01-25 15:31:42 +010038#include <asm/cpm1.h>
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030039#include <asm/io.h>
40#include <asm/tlbflush.h>
41#include <asm/rheap.h>
42#include <asm/prom.h>
Scott Wood15f8c602007-09-28 14:06:16 -050043#include <asm/cpm.h>
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030044
45#include <asm/fs_pd.h>
46
Jochen Friedrichdc2380e2008-07-03 02:18:23 +100047#ifdef CONFIG_8xx_GPIO
48#include <linux/of_gpio.h>
49#endif
50
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030051#define CPM_MAP_SIZE (0x4000)
52
Scott Woodfb533d02007-09-14 14:22:36 -050053cpm8xx_t __iomem *cpmp; /* Pointer to comm processor space */
54immap_t __iomem *mpc8xx_immr;
55static cpic8xx_t __iomem *cpic_reg;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030056
Grant Likelybae1d8f2012-02-14 14:06:50 -070057static struct irq_domain *cpm_pic_host;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030058
Lennert Buytenheka2073d52011-03-07 13:59:49 +000059static void cpm_mask_irq(struct irq_data *d)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030060{
Grant Likely476eb492011-05-04 15:02:15 +100061 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030062
63 clrbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
64}
65
Lennert Buytenheka2073d52011-03-07 13:59:49 +000066static void cpm_unmask_irq(struct irq_data *d)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030067{
Grant Likely476eb492011-05-04 15:02:15 +100068 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030069
70 setbits32(&cpic_reg->cpic_cimr, (1 << cpm_vec));
71}
72
Lennert Buytenheka2073d52011-03-07 13:59:49 +000073static void cpm_end_irq(struct irq_data *d)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030074{
Grant Likely476eb492011-05-04 15:02:15 +100075 unsigned int cpm_vec = (unsigned int)irqd_to_hwirq(d);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030076
77 out_be32(&cpic_reg->cpic_cisr, (1 << cpm_vec));
78}
79
80static struct irq_chip cpm_pic = {
Anton Blanchardfc380c02010-01-31 20:33:41 +000081 .name = "CPM PIC",
Lennert Buytenheka2073d52011-03-07 13:59:49 +000082 .irq_mask = cpm_mask_irq,
83 .irq_unmask = cpm_unmask_irq,
84 .irq_eoi = cpm_end_irq,
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +030085};
86
87int cpm_get_irq(void)
88{
89 int cpm_vec;
90
91 /* Get the vector by setting the ACK bit and then reading
92 * the register.
93 */
94 out_be16(&cpic_reg->cpic_civr, 1);
95 cpm_vec = in_be16(&cpic_reg->cpic_civr);
96 cpm_vec >>= 11;
97
98 return irq_linear_revmap(cpm_pic_host, cpm_vec);
99}
100
Grant Likelybae1d8f2012-02-14 14:06:50 -0700101static int cpm_pic_host_map(struct irq_domain *h, unsigned int virq,
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300102 irq_hw_number_t hw)
103{
104 pr_debug("cpm_pic_host_map(%d, 0x%lx)\n", virq, hw);
105
Thomas Gleixner98488db2011-03-25 15:43:57 +0100106 irq_set_status_flags(virq, IRQ_LEVEL);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100107 irq_set_chip_and_handler(virq, &cpm_pic, handle_fasteoi_irq);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300108 return 0;
109}
110
111/* The CPM can generate the error interrupt when there is a race condition
112 * between generating and masking interrupts. All we have to do is ACK it
113 * and return. This is a no-op function so we don't need any special
114 * tests in the interrupt handler.
115 */
Scott Wood4b218e92007-08-21 02:36:19 +1000116static irqreturn_t cpm_error_interrupt(int irq, void *dev)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300117{
118 return IRQ_HANDLED;
119}
120
121static struct irqaction cpm_error_irqaction = {
122 .handler = cpm_error_interrupt,
Thomas Gleixnere8003402013-02-13 23:38:51 +0100123 .flags = IRQF_NO_THREAD,
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300124 .name = "error",
125};
126
Grant Likely9f70b8e2012-01-26 12:24:34 -0700127static const struct irq_domain_ops cpm_pic_host_ops = {
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300128 .map = cpm_pic_host_map,
129};
130
131unsigned int cpm_pic_init(void)
132{
133 struct device_node *np = NULL;
134 struct resource res;
Michael Ellermanef24ba72016-09-06 21:53:24 +1000135 unsigned int sirq = 0, hwirq, eirq;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300136 int ret;
137
138 pr_debug("cpm_pic_init\n");
139
Scott Woodfb533d02007-09-14 14:22:36 -0500140 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1-pic");
141 if (np == NULL)
142 np = of_find_compatible_node(NULL, "cpm-pic", "CPM");
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300143 if (np == NULL) {
144 printk(KERN_ERR "CPM PIC init: can not find cpm-pic node\n");
145 return sirq;
146 }
Scott Woodfb533d02007-09-14 14:22:36 -0500147
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300148 ret = of_address_to_resource(np, 0, &res);
149 if (ret)
150 goto end;
151
Joe Perches28f65c112011-06-09 09:13:32 -0700152 cpic_reg = ioremap(res.start, resource_size(&res));
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300153 if (cpic_reg == NULL)
154 goto end;
155
156 sirq = irq_of_parse_and_map(np, 0);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000157 if (!sirq)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300158 goto end;
159
160 /* Initialize the CPM interrupt controller. */
Grant Likely476eb492011-05-04 15:02:15 +1000161 hwirq = (unsigned int)virq_to_hw(sirq);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300162 out_be32(&cpic_reg->cpic_cicr,
163 (CICR_SCD_SCC4 | CICR_SCC_SCC3 | CICR_SCB_SCC2 | CICR_SCA_SCC1) |
164 ((hwirq/2) << 13) | CICR_HP_MASK);
165
166 out_be32(&cpic_reg->cpic_cimr, 0);
167
Grant Likelya8db8cf2012-02-14 14:06:54 -0700168 cpm_pic_host = irq_domain_add_linear(np, 64, &cpm_pic_host_ops, NULL);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300169 if (cpm_pic_host == NULL) {
170 printk(KERN_ERR "CPM2 PIC: failed to allocate irq host!\n");
Michael Ellermanef24ba72016-09-06 21:53:24 +1000171 sirq = 0;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300172 goto end;
173 }
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300174
175 /* Install our own error handler. */
Scott Woodfb533d02007-09-14 14:22:36 -0500176 np = of_find_compatible_node(NULL, NULL, "fsl,cpm1");
177 if (np == NULL)
178 np = of_find_node_by_type(NULL, "cpm");
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300179 if (np == NULL) {
180 printk(KERN_ERR "CPM PIC init: can not find cpm node\n");
181 goto end;
182 }
Scott Woodfb533d02007-09-14 14:22:36 -0500183
Scott Wood4b218e92007-08-21 02:36:19 +1000184 eirq = irq_of_parse_and_map(np, 0);
Michael Ellermanef24ba72016-09-06 21:53:24 +1000185 if (!eirq)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300186 goto end;
187
188 if (setup_irq(eirq, &cpm_error_irqaction))
189 printk(KERN_ERR "Could not allocate CPM error IRQ!");
190
191 setbits32(&cpic_reg->cpic_cicr, CICR_IEN);
192
193end:
194 of_node_put(np);
195 return sirq;
196}
197
Scott Wood15f8c602007-09-28 14:06:16 -0500198void __init cpm_reset(void)
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300199{
Scott Woodfb533d02007-09-14 14:22:36 -0500200 sysconf8xx_t __iomem *siu_conf;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300201
Scott Woodfb533d02007-09-14 14:22:36 -0500202 mpc8xx_immr = ioremap(get_immrbase(), 0x4000);
203 if (!mpc8xx_immr) {
204 printk(KERN_CRIT "Could not map IMMR\n");
205 return;
206 }
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300207
Scott Woodfb533d02007-09-14 14:22:36 -0500208 cpmp = &mpc8xx_immr->im_cpm;
209
210#ifndef CONFIG_PPC_EARLY_DEBUG_CPM
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300211 /* Perform a reset.
212 */
Scott Woodfb533d02007-09-14 14:22:36 -0500213 out_be16(&cpmp->cp_cpcr, CPM_CR_RST | CPM_CR_FLG);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300214
215 /* Wait for it.
216 */
Scott Woodfb533d02007-09-14 14:22:36 -0500217 while (in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG);
218#endif
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300219
Scott Woodfb533d02007-09-14 14:22:36 -0500220#ifdef CONFIG_UCODE_PATCH
221 cpm_load_patch(cpmp);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300222#endif
223
224 /* Set SDMA Bus Request priority 5.
225 * On 860T, this also enables FEC priority 6. I am not sure
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300226 * this is what we really want for some applications, but the
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300227 * manual recommends it.
228 * Bit 25, FAM can also be set to use FEC aggressive mode (860T).
229 */
Scott Woodfb533d02007-09-14 14:22:36 -0500230 siu_conf = immr_map(im_siu_conf);
Christophe Leroy501ea7662016-02-04 11:07:48 +0100231 if ((mfspr(SPRN_IMMR) & 0xffff) == 0x0900) /* MPC885 */
232 out_be32(&siu_conf->sc_sdcr, 0x40);
233 else
234 out_be32(&siu_conf->sc_sdcr, 1);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300235 immr_unmap(siu_conf);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300236}
237
Jochen Friedrich362f9b62007-11-26 18:03:40 +0100238static DEFINE_SPINLOCK(cmd_lock);
239
240#define MAX_CR_CMD_LOOPS 10000
241
242int cpm_command(u32 command, u8 opcode)
243{
244 int i, ret;
245 unsigned long flags;
246
247 if (command & 0xffffff0f)
248 return -EINVAL;
249
250 spin_lock_irqsave(&cmd_lock, flags);
251
252 ret = 0;
253 out_be16(&cpmp->cp_cpcr, command | CPM_CR_FLG | (opcode << 8));
254 for (i = 0; i < MAX_CR_CMD_LOOPS; i++)
255 if ((in_be16(&cpmp->cp_cpcr) & CPM_CR_FLG) == 0)
256 goto out;
257
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100258 printk(KERN_ERR "%s(): Not able to issue CPM command\n", __func__);
Jochen Friedrich362f9b62007-11-26 18:03:40 +0100259 ret = -EIO;
260out:
261 spin_unlock_irqrestore(&cmd_lock, flags);
262 return ret;
263}
264EXPORT_SYMBOL(cpm_command);
265
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300266/* Set a baud rate generator. This needs lots of work. There are
267 * four BRGs, any of which can be wired to any channel.
268 * The internal baud rate clock is the system clock divided by 16.
269 * This assumes the baudrate is 16x oversampled by the uart.
270 */
271#define BRG_INT_CLK (get_brgfreq())
272#define BRG_UART_CLK (BRG_INT_CLK/16)
273#define BRG_UART_CLK_DIV16 (BRG_UART_CLK/16)
274
275void
276cpm_setbrg(uint brg, uint rate)
277{
Scott Woodfb533d02007-09-14 14:22:36 -0500278 u32 __iomem *bp;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300279
280 /* This is good enough to get SMCs running.....
281 */
Scott Woodfb533d02007-09-14 14:22:36 -0500282 bp = &cpmp->cp_brgc1;
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300283 bp += brg;
284 /* The BRG has a 12-bit counter. For really slow baud rates (or
285 * really fast processors), we may have to further divide by 16.
286 */
287 if (((BRG_UART_CLK / rate) - 1) < 4096)
Scott Woodfb533d02007-09-14 14:22:36 -0500288 out_be32(bp, (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300289 else
Scott Woodfb533d02007-09-14 14:22:36 -0500290 out_be32(bp, (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) |
Jochen Friedrichb5677d82008-01-25 15:31:42 +0100291 CPM_BRG_EN | CPM_BRG_DIV16);
Vitaly Bordugf2a0bd32007-01-24 22:41:24 +0300292}
293
Scott Wood663edbd2007-07-16 17:22:01 -0500294struct cpm_ioport16 {
Jochen Friedrich721c0c82007-11-22 17:54:13 +0100295 __be16 dir, par, odr_sor, dat, intr;
Scott Wood663edbd2007-07-16 17:22:01 -0500296 __be16 res[3];
297};
298
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000299struct cpm_ioport32b {
300 __be32 dir, par, odr, dat;
301};
302
303struct cpm_ioport32e {
304 __be32 dir, par, sor, odr, dat;
Scott Wood663edbd2007-07-16 17:22:01 -0500305};
306
307static void cpm1_set_pin32(int port, int pin, int flags)
308{
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000309 struct cpm_ioport32e __iomem *iop;
Scott Wood663edbd2007-07-16 17:22:01 -0500310 pin = 1 << (31 - pin);
311
312 if (port == CPM_PORTB)
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000313 iop = (struct cpm_ioport32e __iomem *)
Scott Wood663edbd2007-07-16 17:22:01 -0500314 &mpc8xx_immr->im_cpm.cp_pbdir;
315 else
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000316 iop = (struct cpm_ioport32e __iomem *)
Scott Wood663edbd2007-07-16 17:22:01 -0500317 &mpc8xx_immr->im_cpm.cp_pedir;
318
319 if (flags & CPM_PIN_OUTPUT)
320 setbits32(&iop->dir, pin);
321 else
322 clrbits32(&iop->dir, pin);
323
324 if (!(flags & CPM_PIN_GPIO))
325 setbits32(&iop->par, pin);
326 else
327 clrbits32(&iop->par, pin);
328
Jochen Friedrich721c0c82007-11-22 17:54:13 +0100329 if (port == CPM_PORTB) {
330 if (flags & CPM_PIN_OPENDRAIN)
331 setbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
332 else
333 clrbits16(&mpc8xx_immr->im_cpm.cp_pbodr, pin);
334 }
335
Scott Wood663edbd2007-07-16 17:22:01 -0500336 if (port == CPM_PORTE) {
337 if (flags & CPM_PIN_SECONDARY)
338 setbits32(&iop->sor, pin);
339 else
340 clrbits32(&iop->sor, pin);
341
342 if (flags & CPM_PIN_OPENDRAIN)
343 setbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
344 else
345 clrbits32(&mpc8xx_immr->im_cpm.cp_peodr, pin);
346 }
347}
348
349static void cpm1_set_pin16(int port, int pin, int flags)
350{
351 struct cpm_ioport16 __iomem *iop =
352 (struct cpm_ioport16 __iomem *)&mpc8xx_immr->im_ioport;
353
354 pin = 1 << (15 - pin);
355
356 if (port != 0)
357 iop += port - 1;
358
359 if (flags & CPM_PIN_OUTPUT)
360 setbits16(&iop->dir, pin);
361 else
362 clrbits16(&iop->dir, pin);
363
364 if (!(flags & CPM_PIN_GPIO))
365 setbits16(&iop->par, pin);
366 else
367 clrbits16(&iop->par, pin);
368
Jochen Friedrich721c0c82007-11-22 17:54:13 +0100369 if (port == CPM_PORTA) {
370 if (flags & CPM_PIN_OPENDRAIN)
371 setbits16(&iop->odr_sor, pin);
372 else
373 clrbits16(&iop->odr_sor, pin);
374 }
Scott Wood663edbd2007-07-16 17:22:01 -0500375 if (port == CPM_PORTC) {
376 if (flags & CPM_PIN_SECONDARY)
Jochen Friedrich721c0c82007-11-22 17:54:13 +0100377 setbits16(&iop->odr_sor, pin);
Scott Wood663edbd2007-07-16 17:22:01 -0500378 else
Jochen Friedrich721c0c82007-11-22 17:54:13 +0100379 clrbits16(&iop->odr_sor, pin);
Christophe Leroy726bd222017-05-01 09:38:13 +0200380 if (flags & CPM_PIN_FALLEDGE)
381 setbits16(&iop->intr, pin);
382 else
383 clrbits16(&iop->intr, pin);
Scott Wood663edbd2007-07-16 17:22:01 -0500384 }
385}
386
387void cpm1_set_pin(enum cpm_port port, int pin, int flags)
388{
389 if (port == CPM_PORTB || port == CPM_PORTE)
390 cpm1_set_pin32(port, pin, flags);
391 else
392 cpm1_set_pin16(port, pin, flags);
393}
394
395int cpm1_clk_setup(enum cpm_clk_target target, int clock, int mode)
396{
397 int shift;
398 int i, bits = 0;
399 u32 __iomem *reg;
400 u32 mask = 7;
401
402 u8 clk_map[][3] = {
403 {CPM_CLK_SCC1, CPM_BRG1, 0},
404 {CPM_CLK_SCC1, CPM_BRG2, 1},
405 {CPM_CLK_SCC1, CPM_BRG3, 2},
406 {CPM_CLK_SCC1, CPM_BRG4, 3},
407 {CPM_CLK_SCC1, CPM_CLK1, 4},
408 {CPM_CLK_SCC1, CPM_CLK2, 5},
409 {CPM_CLK_SCC1, CPM_CLK3, 6},
410 {CPM_CLK_SCC1, CPM_CLK4, 7},
411
412 {CPM_CLK_SCC2, CPM_BRG1, 0},
413 {CPM_CLK_SCC2, CPM_BRG2, 1},
414 {CPM_CLK_SCC2, CPM_BRG3, 2},
415 {CPM_CLK_SCC2, CPM_BRG4, 3},
416 {CPM_CLK_SCC2, CPM_CLK1, 4},
417 {CPM_CLK_SCC2, CPM_CLK2, 5},
418 {CPM_CLK_SCC2, CPM_CLK3, 6},
419 {CPM_CLK_SCC2, CPM_CLK4, 7},
420
421 {CPM_CLK_SCC3, CPM_BRG1, 0},
422 {CPM_CLK_SCC3, CPM_BRG2, 1},
423 {CPM_CLK_SCC3, CPM_BRG3, 2},
424 {CPM_CLK_SCC3, CPM_BRG4, 3},
425 {CPM_CLK_SCC3, CPM_CLK5, 4},
426 {CPM_CLK_SCC3, CPM_CLK6, 5},
427 {CPM_CLK_SCC3, CPM_CLK7, 6},
428 {CPM_CLK_SCC3, CPM_CLK8, 7},
429
430 {CPM_CLK_SCC4, CPM_BRG1, 0},
431 {CPM_CLK_SCC4, CPM_BRG2, 1},
432 {CPM_CLK_SCC4, CPM_BRG3, 2},
433 {CPM_CLK_SCC4, CPM_BRG4, 3},
434 {CPM_CLK_SCC4, CPM_CLK5, 4},
435 {CPM_CLK_SCC4, CPM_CLK6, 5},
436 {CPM_CLK_SCC4, CPM_CLK7, 6},
437 {CPM_CLK_SCC4, CPM_CLK8, 7},
438
439 {CPM_CLK_SMC1, CPM_BRG1, 0},
440 {CPM_CLK_SMC1, CPM_BRG2, 1},
441 {CPM_CLK_SMC1, CPM_BRG3, 2},
442 {CPM_CLK_SMC1, CPM_BRG4, 3},
443 {CPM_CLK_SMC1, CPM_CLK1, 4},
444 {CPM_CLK_SMC1, CPM_CLK2, 5},
445 {CPM_CLK_SMC1, CPM_CLK3, 6},
446 {CPM_CLK_SMC1, CPM_CLK4, 7},
447
448 {CPM_CLK_SMC2, CPM_BRG1, 0},
449 {CPM_CLK_SMC2, CPM_BRG2, 1},
450 {CPM_CLK_SMC2, CPM_BRG3, 2},
451 {CPM_CLK_SMC2, CPM_BRG4, 3},
452 {CPM_CLK_SMC2, CPM_CLK5, 4},
453 {CPM_CLK_SMC2, CPM_CLK6, 5},
454 {CPM_CLK_SMC2, CPM_CLK7, 6},
455 {CPM_CLK_SMC2, CPM_CLK8, 7},
456 };
457
458 switch (target) {
459 case CPM_CLK_SCC1:
460 reg = &mpc8xx_immr->im_cpm.cp_sicr;
461 shift = 0;
462 break;
463
464 case CPM_CLK_SCC2:
465 reg = &mpc8xx_immr->im_cpm.cp_sicr;
466 shift = 8;
467 break;
468
469 case CPM_CLK_SCC3:
470 reg = &mpc8xx_immr->im_cpm.cp_sicr;
471 shift = 16;
472 break;
473
474 case CPM_CLK_SCC4:
475 reg = &mpc8xx_immr->im_cpm.cp_sicr;
476 shift = 24;
477 break;
478
479 case CPM_CLK_SMC1:
480 reg = &mpc8xx_immr->im_cpm.cp_simode;
481 shift = 12;
482 break;
483
484 case CPM_CLK_SMC2:
485 reg = &mpc8xx_immr->im_cpm.cp_simode;
486 shift = 28;
487 break;
488
489 default:
490 printk(KERN_ERR "cpm1_clock_setup: invalid clock target\n");
491 return -EINVAL;
492 }
493
Scott Wood663edbd2007-07-16 17:22:01 -0500494 for (i = 0; i < ARRAY_SIZE(clk_map); i++) {
495 if (clk_map[i][0] == target && clk_map[i][1] == clock) {
496 bits = clk_map[i][2];
497 break;
498 }
499 }
500
501 if (i == ARRAY_SIZE(clk_map)) {
502 printk(KERN_ERR "cpm1_clock_setup: invalid clock combination\n");
503 return -EINVAL;
504 }
505
506 bits <<= shift;
507 mask <<= shift;
Wolfgang Ocker1cca2d22010-04-03 16:11:43 +0200508
509 if (reg == &mpc8xx_immr->im_cpm.cp_sicr) {
510 if (mode == CPM_CLK_RTX) {
511 bits |= bits << 3;
512 mask |= mask << 3;
513 } else if (mode == CPM_CLK_RX) {
514 bits <<= 3;
515 mask <<= 3;
516 }
517 }
518
Scott Wood663edbd2007-07-16 17:22:01 -0500519 out_be32(reg, (in_be32(reg) & ~mask) | bits);
520
521 return 0;
522}
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000523
524/*
525 * GPIO LIB API implementation
526 */
527#ifdef CONFIG_8xx_GPIO
528
529struct cpm1_gpio16_chip {
530 struct of_mm_gpio_chip mm_gc;
531 spinlock_t lock;
532
533 /* shadowed data register to clear/set bits safely */
534 u16 cpdata;
Christophe Leroy726bd222017-05-01 09:38:13 +0200535
536 /* IRQ associated with Pins when relevant */
537 int irq[16];
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000538};
539
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000540static void cpm1_gpio16_save_regs(struct of_mm_gpio_chip *mm_gc)
541{
Christophe Leroy41017a72016-08-11 10:50:40 +0200542 struct cpm1_gpio16_chip *cpm1_gc =
543 container_of(mm_gc, struct cpm1_gpio16_chip, mm_gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000544 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
545
546 cpm1_gc->cpdata = in_be16(&iop->dat);
547}
548
549static int cpm1_gpio16_get(struct gpio_chip *gc, unsigned int gpio)
550{
551 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
552 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
553 u16 pin_mask;
554
555 pin_mask = 1 << (15 - gpio);
556
557 return !!(in_be16(&iop->dat) & pin_mask);
558}
559
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200560static void __cpm1_gpio16_set(struct of_mm_gpio_chip *mm_gc, u16 pin_mask,
561 int value)
562{
Linus Walleije65078f2015-12-08 15:00:49 +0100563 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200564 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
565
566 if (value)
567 cpm1_gc->cpdata |= pin_mask;
568 else
569 cpm1_gc->cpdata &= ~pin_mask;
570
571 out_be16(&iop->dat, cpm1_gc->cpdata);
572}
573
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000574static void cpm1_gpio16_set(struct gpio_chip *gc, unsigned int gpio, int value)
575{
576 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100577 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200578 unsigned long flags;
579 u16 pin_mask = 1 << (15 - gpio);
580
581 spin_lock_irqsave(&cpm1_gc->lock, flags);
582
583 __cpm1_gpio16_set(mm_gc, pin_mask, value);
584
585 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
586}
587
Christophe Leroy726bd222017-05-01 09:38:13 +0200588static int cpm1_gpio16_to_irq(struct gpio_chip *gc, unsigned int gpio)
589{
590 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
591 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
592
593 return cpm1_gc->irq[gpio] ? : -ENXIO;
594}
595
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200596static int cpm1_gpio16_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
597{
598 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100599 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000600 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
601 unsigned long flags;
602 u16 pin_mask = 1 << (15 - gpio);
603
604 spin_lock_irqsave(&cpm1_gc->lock, flags);
605
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200606 setbits16(&iop->dir, pin_mask);
607 __cpm1_gpio16_set(mm_gc, pin_mask, val);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000608
609 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000610
611 return 0;
612}
613
614static int cpm1_gpio16_dir_in(struct gpio_chip *gc, unsigned int gpio)
615{
616 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100617 struct cpm1_gpio16_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000618 struct cpm_ioport16 __iomem *iop = mm_gc->regs;
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200619 unsigned long flags;
620 u16 pin_mask = 1 << (15 - gpio);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000621
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200622 spin_lock_irqsave(&cpm1_gc->lock, flags);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000623
624 clrbits16(&iop->dir, pin_mask);
625
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200626 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
627
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000628 return 0;
629}
630
631int cpm1_gpiochip_add16(struct device_node *np)
632{
633 struct cpm1_gpio16_chip *cpm1_gc;
634 struct of_mm_gpio_chip *mm_gc;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000635 struct gpio_chip *gc;
Christophe Leroy726bd222017-05-01 09:38:13 +0200636 u16 mask;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000637
638 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
639 if (!cpm1_gc)
640 return -ENOMEM;
641
642 spin_lock_init(&cpm1_gc->lock);
643
Christophe Leroy726bd222017-05-01 09:38:13 +0200644 if (!of_property_read_u16(np, "fsl,cpm1-gpio-irq-mask", &mask)) {
645 int i, j;
646
647 for (i = 0, j = 0; i < 16; i++)
648 if (mask & (1 << (15 - i)))
649 cpm1_gc->irq[i] = irq_of_parse_and_map(np, j++);
650 }
651
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000652 mm_gc = &cpm1_gc->mm_gc;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600653 gc = &mm_gc->gc;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000654
655 mm_gc->save_regs = cpm1_gpio16_save_regs;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000656 gc->ngpio = 16;
657 gc->direction_input = cpm1_gpio16_dir_in;
658 gc->direction_output = cpm1_gpio16_dir_out;
659 gc->get = cpm1_gpio16_get;
660 gc->set = cpm1_gpio16_set;
Christophe Leroy726bd222017-05-01 09:38:13 +0200661 gc->to_irq = cpm1_gpio16_to_irq;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000662
Linus Walleije65078f2015-12-08 15:00:49 +0100663 return of_mm_gpiochip_add_data(np, mm_gc, cpm1_gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000664}
665
666struct cpm1_gpio32_chip {
667 struct of_mm_gpio_chip mm_gc;
668 spinlock_t lock;
669
670 /* shadowed data register to clear/set bits safely */
671 u32 cpdata;
672};
673
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000674static void cpm1_gpio32_save_regs(struct of_mm_gpio_chip *mm_gc)
675{
Christophe Leroy41017a72016-08-11 10:50:40 +0200676 struct cpm1_gpio32_chip *cpm1_gc =
677 container_of(mm_gc, struct cpm1_gpio32_chip, mm_gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000678 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
679
680 cpm1_gc->cpdata = in_be32(&iop->dat);
681}
682
683static int cpm1_gpio32_get(struct gpio_chip *gc, unsigned int gpio)
684{
685 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
686 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
687 u32 pin_mask;
688
689 pin_mask = 1 << (31 - gpio);
690
691 return !!(in_be32(&iop->dat) & pin_mask);
692}
693
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200694static void __cpm1_gpio32_set(struct of_mm_gpio_chip *mm_gc, u32 pin_mask,
695 int value)
696{
Linus Walleije65078f2015-12-08 15:00:49 +0100697 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200698 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
699
700 if (value)
701 cpm1_gc->cpdata |= pin_mask;
702 else
703 cpm1_gc->cpdata &= ~pin_mask;
704
705 out_be32(&iop->dat, cpm1_gc->cpdata);
706}
707
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000708static void cpm1_gpio32_set(struct gpio_chip *gc, unsigned int gpio, int value)
709{
710 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100711 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200712 unsigned long flags;
713 u32 pin_mask = 1 << (31 - gpio);
714
715 spin_lock_irqsave(&cpm1_gc->lock, flags);
716
717 __cpm1_gpio32_set(mm_gc, pin_mask, value);
718
719 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
720}
721
722static int cpm1_gpio32_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
723{
724 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100725 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000726 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
727 unsigned long flags;
728 u32 pin_mask = 1 << (31 - gpio);
729
730 spin_lock_irqsave(&cpm1_gc->lock, flags);
731
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200732 setbits32(&iop->dir, pin_mask);
733 __cpm1_gpio32_set(mm_gc, pin_mask, val);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000734
735 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000736
737 return 0;
738}
739
740static int cpm1_gpio32_dir_in(struct gpio_chip *gc, unsigned int gpio)
741{
742 struct of_mm_gpio_chip *mm_gc = to_of_mm_gpio_chip(gc);
Linus Walleije65078f2015-12-08 15:00:49 +0100743 struct cpm1_gpio32_chip *cpm1_gc = gpiochip_get_data(&mm_gc->gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000744 struct cpm_ioport32b __iomem *iop = mm_gc->regs;
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200745 unsigned long flags;
746 u32 pin_mask = 1 << (31 - gpio);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000747
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200748 spin_lock_irqsave(&cpm1_gc->lock, flags);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000749
750 clrbits32(&iop->dir, pin_mask);
751
Jochen Friedrichf1eaf162008-08-27 12:32:25 +0200752 spin_unlock_irqrestore(&cpm1_gc->lock, flags);
753
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000754 return 0;
755}
756
757int cpm1_gpiochip_add32(struct device_node *np)
758{
759 struct cpm1_gpio32_chip *cpm1_gc;
760 struct of_mm_gpio_chip *mm_gc;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000761 struct gpio_chip *gc;
762
763 cpm1_gc = kzalloc(sizeof(*cpm1_gc), GFP_KERNEL);
764 if (!cpm1_gc)
765 return -ENOMEM;
766
767 spin_lock_init(&cpm1_gc->lock);
768
769 mm_gc = &cpm1_gc->mm_gc;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600770 gc = &mm_gc->gc;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000771
772 mm_gc->save_regs = cpm1_gpio32_save_regs;
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000773 gc->ngpio = 32;
774 gc->direction_input = cpm1_gpio32_dir_in;
775 gc->direction_output = cpm1_gpio32_dir_out;
776 gc->get = cpm1_gpio32_get;
777 gc->set = cpm1_gpio32_set;
778
Linus Walleije65078f2015-12-08 15:00:49 +0100779 return of_mm_gpiochip_add_data(np, mm_gc, cpm1_gc);
Jochen Friedrichdc2380e2008-07-03 02:18:23 +1000780}
781
782static int cpm_init_par_io(void)
783{
784 struct device_node *np;
785
786 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-a")
787 cpm1_gpiochip_add16(np);
788
789 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-b")
790 cpm1_gpiochip_add32(np);
791
792 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-c")
793 cpm1_gpiochip_add16(np);
794
795 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-d")
796 cpm1_gpiochip_add16(np);
797
798 /* Port E uses CPM2 layout */
799 for_each_compatible_node(np, NULL, "fsl,cpm1-pario-bank-e")
800 cpm2_gpiochip_add32(np);
801 return 0;
802}
803arch_initcall(cpm_init_par_io);
804
805#endif /* CONFIG_8xx_GPIO */