2 * Copyright (C) 2007,2008 Freescale Semiconductor, Inc. All rights reserved.
4 * Author: John Rigby <jrigby@freescale.com>
9 * This is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
15 #include <linux/kernel.h>
17 #include <linux/irq.h>
18 #include <linux/of_platform.h>
19 #include <linux/fsl-diu-fb.h>
20 #include <linux/bootmem.h>
21 #include <sysdev/fsl_soc.h>
23 #include <asm/cacheflush.h>
24 #include <asm/machdep.h>
28 #include <asm/mpc5121.h>
29 #include <asm/mpc52xx_psc.h>
33 static struct mpc512x_reset_module __iomem
*reset_module_base
;
35 static void __init
mpc512x_restart_init(void)
37 struct device_node
*np
;
38 const char *reset_compat
;
40 reset_compat
= mpc512x_select_reset_compat();
41 np
= of_find_compatible_node(NULL
, NULL
, reset_compat
);
45 reset_module_base
= of_iomap(np
, 0);
49 void mpc512x_restart(char *cmd
)
51 if (reset_module_base
) {
52 /* Enable software reset "RSTE" */
53 out_be32(&reset_module_base
->rpr
, 0x52535445);
54 /* Set software hard reset */
55 out_be32(&reset_module_base
->rcr
, 0x2);
57 pr_err("Restart module not mapped.\n");
63 #if IS_ENABLED(CONFIG_FB_FSL_DIU)
65 struct fsl_diu_shared_fb
{
66 u8 gamma
[0x300]; /* 32-bit aligned! */
67 struct diu_ad ad0
; /* 32-bit aligned! */
73 #define DIU_DIV_MASK 0x000000ff
74 void mpc512x_set_pixel_clock(unsigned int pixclock
)
76 unsigned long bestval
, bestfreq
, speed
, busfreq
;
77 unsigned long minpixclock
, maxpixclock
, pixval
;
78 struct mpc512x_ccm __iomem
*ccm
;
79 struct device_node
*np
;
84 np
= of_find_compatible_node(NULL
, NULL
, "fsl,mpc5121-clock");
86 pr_err("Can't find clock control module.\n");
90 ccm
= of_iomap(np
, 0);
93 pr_err("Can't map clock control module reg.\n");
97 np
= of_find_node_by_type(NULL
, "cpu");
99 const unsigned int *prop
=
100 of_get_property(np
, "bus-frequency", NULL
);
106 pr_err("Can't get bus-frequency property\n");
110 pr_err("Can't find 'cpu' node.\n");
114 /* Pixel Clock configuration */
115 pr_debug("DIU: Bus Frequency = %lu\n", busfreq
);
116 speed
= busfreq
* 4; /* DIU_DIV ratio is 4 * CSB_CLK / DIU_CLK */
118 /* Calculate the pixel clock with the smallest error */
119 /* calculate the following in steps to avoid overflow */
120 pr_debug("DIU pixclock in ps - %d\n", pixclock
);
121 temp
= (1000000000 / pixclock
) * 1000;
123 pr_debug("DIU pixclock freq - %u\n", pixclock
);
125 temp
= temp
/ 20; /* pixclock * 0.05 */
126 pr_debug("deviation = %d\n", temp
);
127 minpixclock
= pixclock
- temp
;
128 maxpixclock
= pixclock
+ temp
;
129 pr_debug("DIU minpixclock - %lu\n", minpixclock
);
130 pr_debug("DIU maxpixclock - %lu\n", maxpixclock
);
131 pixval
= speed
/pixclock
;
132 pr_debug("DIU pixval = %lu\n", pixval
);
136 pr_debug("DIU bestval = %lu\n", bestval
);
139 for (i
= -1; i
<= 1; i
++) {
140 temp
= speed
/ (pixval
+i
);
141 pr_debug("DIU test pixval i=%d, pixval=%lu, temp freq. = %u\n",
143 if ((temp
< minpixclock
) || (temp
> maxpixclock
))
144 pr_debug("DIU exceeds monitor range (%lu to %lu)\n",
145 minpixclock
, maxpixclock
);
146 else if (abs(temp
- pixclock
) < err
) {
147 pr_debug("Entered the else if block %d\n", i
);
148 err
= abs(temp
- pixclock
);
149 bestval
= pixval
+ i
;
154 pr_debug("DIU chose = %lx\n", bestval
);
155 pr_debug("DIU error = %ld\n NomPixClk ", err
);
156 pr_debug("DIU: Best Freq = %lx\n", bestfreq
);
157 /* Modify DIU_DIV in CCM SCFR1 */
158 temp
= in_be32(&ccm
->scfr1
);
159 pr_debug("DIU: Current value of SCFR1: 0x%08x\n", temp
);
160 temp
&= ~DIU_DIV_MASK
;
161 temp
|= (bestval
& DIU_DIV_MASK
);
162 out_be32(&ccm
->scfr1
, temp
);
163 pr_debug("DIU: Modified value of SCFR1: 0x%08x\n", temp
);
167 enum fsl_diu_monitor_port
168 mpc512x_valid_monitor_port(enum fsl_diu_monitor_port port
)
170 return FSL_DIU_PORT_DVI
;
173 static struct fsl_diu_shared_fb
__attribute__ ((__aligned__(8))) diu_shared_fb
;
175 static inline void mpc512x_free_bootmem(struct page
*page
)
177 BUG_ON(PageTail(page
));
178 BUG_ON(atomic_read(&page
->_count
) > 1);
179 free_reserved_page(page
);
182 void mpc512x_release_bootmem(void)
184 unsigned long addr
= diu_shared_fb
.fb_phys
& PAGE_MASK
;
185 unsigned long size
= diu_shared_fb
.fb_len
;
186 unsigned long start
, end
;
188 if (diu_shared_fb
.in_use
) {
189 start
= PFN_UP(addr
);
190 end
= PFN_DOWN(addr
+ size
);
192 for (; start
< end
; start
++)
193 mpc512x_free_bootmem(pfn_to_page(start
));
195 diu_shared_fb
.in_use
= false;
197 diu_ops
.release_bootmem
= NULL
;
201 * Check if DIU was pre-initialized. If so, perform steps
202 * needed to continue displaying through the whole boot process.
203 * Move area descriptor and gamma table elsewhere, they are
204 * destroyed by bootmem allocator otherwise. The frame buffer
205 * address range will be reserved in setup_arch() after bootmem
208 void __init
mpc512x_init_diu(void)
210 struct device_node
*np
;
211 struct diu __iomem
*diu_reg
;
214 unsigned long mode
, pix_fmt
, res
, bpp
;
217 np
= of_find_compatible_node(NULL
, NULL
, "fsl,mpc5121-diu");
219 pr_err("No DIU node\n");
223 diu_reg
= of_iomap(np
, 0);
226 pr_err("Can't map DIU\n");
230 mode
= in_be32(&diu_reg
->diu_mode
);
231 if (mode
== MFB_MODE0
) {
232 pr_info("%s: DIU OFF\n", __func__
);
236 desc
= in_be32(&diu_reg
->desc
[0]);
237 vaddr
= ioremap(desc
, sizeof(struct diu_ad
));
239 pr_err("Can't map DIU area desc.\n");
242 memcpy(&diu_shared_fb
.ad0
, vaddr
, sizeof(struct diu_ad
));
243 /* flush fb area descriptor */
244 dst
= (unsigned long)&diu_shared_fb
.ad0
;
245 flush_dcache_range(dst
, dst
+ sizeof(struct diu_ad
) - 1);
247 res
= in_be32(&diu_reg
->disp_size
);
248 pix_fmt
= in_le32(vaddr
);
249 bpp
= ((pix_fmt
>> 16) & 0x3) + 1;
250 diu_shared_fb
.fb_phys
= in_le32(vaddr
+ 4);
251 diu_shared_fb
.fb_len
= ((res
& 0xfff0000) >> 16) * (res
& 0xfff) * bpp
;
252 diu_shared_fb
.in_use
= true;
255 desc
= in_be32(&diu_reg
->gamma
);
256 vaddr
= ioremap(desc
, sizeof(diu_shared_fb
.gamma
));
258 pr_err("Can't map DIU area desc.\n");
259 diu_shared_fb
.in_use
= false;
262 memcpy(&diu_shared_fb
.gamma
, vaddr
, sizeof(diu_shared_fb
.gamma
));
263 /* flush gamma table */
264 dst
= (unsigned long)&diu_shared_fb
.gamma
;
265 flush_dcache_range(dst
, dst
+ sizeof(diu_shared_fb
.gamma
) - 1);
268 out_be32(&diu_reg
->gamma
, virt_to_phys(&diu_shared_fb
.gamma
));
269 out_be32(&diu_reg
->desc
[1], 0);
270 out_be32(&diu_reg
->desc
[2], 0);
271 out_be32(&diu_reg
->desc
[0], virt_to_phys(&diu_shared_fb
.ad0
));
277 void __init
mpc512x_setup_diu(void)
282 * We do not allocate and configure new area for bitmap buffer
283 * because it would requere copying bitmap data (splash image)
284 * and so negatively affect boot time. Instead we reserve the
285 * already configured frame buffer area so that it won't be
286 * destroyed. The starting address of the area to reserve and
287 * also it's length is passed to reserve_bootmem(). It will be
288 * freed later on first open of fbdev, when splash image is not
291 if (diu_shared_fb
.in_use
) {
292 ret
= reserve_bootmem(diu_shared_fb
.fb_phys
,
293 diu_shared_fb
.fb_len
,
296 pr_err("%s: reserve bootmem failed\n", __func__
);
297 diu_shared_fb
.in_use
= false;
301 diu_ops
.set_pixel_clock
= mpc512x_set_pixel_clock
;
302 diu_ops
.valid_monitor_port
= mpc512x_valid_monitor_port
;
303 diu_ops
.release_bootmem
= mpc512x_release_bootmem
;
307 void __init
mpc512x_setup_diu(void) { /* EMPTY */ }
308 void __init
mpc512x_init_diu(void) { /* EMPTY */ }
311 void __init
mpc512x_init_IRQ(void)
313 struct device_node
*np
;
315 np
= of_find_compatible_node(NULL
, NULL
, "fsl,mpc5121-ipic");
323 * Initialize the default interrupt mapping priorities,
324 * in case the boot rom changed something on us.
326 ipic_set_default_priority();
330 * Nodes to do bus probe on, soc and localbus
332 static struct of_device_id __initdata of_bus_ids
[] = {
333 { .compatible
= "fsl,mpc5121-immr", },
334 { .compatible
= "fsl,mpc5121-localbus", },
335 { .compatible
= "fsl,mpc5121-mbx", },
336 { .compatible
= "fsl,mpc5121-nfc", },
337 { .compatible
= "fsl,mpc5121-sram", },
338 { .compatible
= "fsl,mpc5121-pci", },
339 { .compatible
= "gpio-leds", },
343 void __init
mpc512x_declare_of_platform_devices(void)
345 if (of_platform_bus_probe(NULL
, of_bus_ids
, NULL
))
346 printk(KERN_ERR __FILE__
": "
347 "Error while probing of_platform bus\n");
350 #define DEFAULT_FIFO_SIZE 16
352 const char *mpc512x_select_psc_compat(void)
354 if (of_machine_is_compatible("fsl,mpc5121"))
355 return "fsl,mpc5121-psc";
357 if (of_machine_is_compatible("fsl,mpc5125"))
358 return "fsl,mpc5125-psc";
363 const char *mpc512x_select_reset_compat(void)
365 if (of_machine_is_compatible("fsl,mpc5121"))
366 return "fsl,mpc5121-reset";
368 if (of_machine_is_compatible("fsl,mpc5125"))
369 return "fsl,mpc5125-reset";
374 static unsigned int __init
get_fifo_size(struct device_node
*np
,
377 const unsigned int *fp
;
379 fp
= of_get_property(np
, prop_name
, NULL
);
383 pr_warning("no %s property in %s node, defaulting to %d\n",
384 prop_name
, np
->full_name
, DEFAULT_FIFO_SIZE
);
386 return DEFAULT_FIFO_SIZE
;
389 #define FIFOC(_base) ((struct mpc512x_psc_fifo __iomem *) \
390 ((u32)(_base) + sizeof(struct mpc52xx_psc)))
392 /* Init PSC FIFO space for TX and RX slices */
393 void __init
mpc512x_psc_fifo_init(void)
395 struct device_node
*np
;
397 unsigned int tx_fifo_size
;
398 unsigned int rx_fifo_size
;
399 const char *psc_compat
;
400 int fifobase
= 0; /* current fifo address in 32 bit words */
402 psc_compat
= mpc512x_select_psc_compat();
404 pr_err("%s: no compatible devices found\n", __func__
);
408 for_each_compatible_node(np
, NULL
, psc_compat
) {
409 tx_fifo_size
= get_fifo_size(np
, "fsl,tx-fifo-size");
410 rx_fifo_size
= get_fifo_size(np
, "fsl,rx-fifo-size");
412 /* size in register is in 4 byte units */
420 psc
= of_iomap(np
, 0);
422 pr_err("%s: Can't map %s device\n",
423 __func__
, np
->full_name
);
427 /* FIFO space is 4KiB, check if requested size is available */
428 if ((fifobase
+ tx_fifo_size
+ rx_fifo_size
) > 0x1000) {
429 pr_err("%s: no fifo space available for %s\n",
430 __func__
, np
->full_name
);
433 * chances are that another device requests less
434 * fifo space, so we continue.
439 /* set tx and rx fifo size registers */
440 out_be32(&FIFOC(psc
)->txsz
, (fifobase
<< 16) | tx_fifo_size
);
441 fifobase
+= tx_fifo_size
;
442 out_be32(&FIFOC(psc
)->rxsz
, (fifobase
<< 16) | rx_fifo_size
);
443 fifobase
+= rx_fifo_size
;
445 /* reset and enable the slices */
446 out_be32(&FIFOC(psc
)->txcmd
, 0x80);
447 out_be32(&FIFOC(psc
)->txcmd
, 0x01);
448 out_be32(&FIFOC(psc
)->rxcmd
, 0x80);
449 out_be32(&FIFOC(psc
)->rxcmd
, 0x01);
455 void __init
mpc512x_init_early(void)
457 mpc512x_restart_init();
458 if (IS_ENABLED(CONFIG_FB_FSL_DIU
))
462 void __init
mpc512x_init(void)
465 mpc512x_declare_of_platform_devices();
466 mpc512x_psc_fifo_init();
469 void __init
mpc512x_setup_arch(void)
471 if (IS_ENABLED(CONFIG_FB_FSL_DIU
))
476 * mpc512x_cs_config - Setup chip select configuration
477 * @cs: chip select number
478 * @val: chip select configuration value
480 * Perform chip select configuration for devices on LocalPlus Bus.
481 * Intended to dynamically reconfigure the chip select parameters
482 * for configurable devices on the bus.
484 int mpc512x_cs_config(unsigned int cs
, u32 val
)
486 static struct mpc512x_lpc __iomem
*lpc
;
487 struct device_node
*np
;
493 np
= of_find_compatible_node(NULL
, NULL
, "fsl,mpc5121-lpc");
494 lpc
= of_iomap(np
, 0);
500 out_be32(&lpc
->cs_cfg
[cs
], val
);
503 EXPORT_SYMBOL(mpc512x_cs_config
);