blob: bb3d84f4046f53342bc0390c02359a73a34d4866 [file] [log] [blame]
Timur Tabi30be4c92010-07-02 17:25:03 -05001/*
2 * P1022DS board specific routines
3 *
4 * Authors: Travis Wheatley <travis.wheatley@freescale.com>
5 * Dave Liu <daveliu@freescale.com>
6 * Timur Tabi <timur@freescale.com>
7 *
8 * Copyright 2010 Freescale Semiconductor, Inc.
9 *
10 * This file is taken from the Freescale P1022DS BSP, with modifications:
Timur Tabi30be4c92010-07-02 17:25:03 -050011 * 2) No AMP support
12 * 3) No PCI endpoint support
13 *
14 * This file is licensed under the terms of the GNU General Public License
15 * version 2. This program is licensed "as is" without any warranty of any
16 * kind, whether express or implied.
17 */
18
19#include <linux/pci.h>
20#include <linux/of_platform.h>
Kumar Galadc1c41f2010-08-31 11:39:25 -050021#include <linux/memblock.h>
Timur Tabi2c184cd2010-10-07 09:36:43 +000022#include <asm/div64.h>
Timur Tabi30be4c92010-07-02 17:25:03 -050023#include <asm/mpic.h>
24#include <asm/swiotlb.h>
25
26#include <sysdev/fsl_soc.h>
27#include <sysdev/fsl_pci.h>
Timur Tabi2c184cd2010-10-07 09:36:43 +000028#include <asm/fsl_guts.h>
Kyle Moffett582d3e02011-12-02 06:27:58 +000029#include "smp.h"
Timur Tabi2c184cd2010-10-07 09:36:43 +000030
Dmitry Eremin-Solenikov543a07b2011-11-17 21:56:16 +040031#include "mpc85xx.h"
32
Timur Tabi2c184cd2010-10-07 09:36:43 +000033#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
34
35/*
36 * Board-specific initialization of the DIU. This code should probably be
37 * executed when the DIU is opened, rather than in arch code, but the DIU
38 * driver does not have a mechanism for this (yet).
39 *
40 * This is especially problematic on the P1022DS because the local bus (eLBC)
41 * and the DIU video signals share the same pins, which means that enabling the
42 * DIU will disable access to NOR flash.
43 */
44
45/* DIU Pixel Clock bits of the CLKDVDR Global Utilities register */
46#define CLKDVDR_PXCKEN 0x80000000
47#define CLKDVDR_PXCKINV 0x10000000
48#define CLKDVDR_PXCKDLY 0x06000000
49#define CLKDVDR_PXCLK_MASK 0x00FF0000
50
51/* Some ngPIXIS register definitions */
52#define PX_BRDCFG1_DVIEN 0x80
53#define PX_BRDCFG1_DFPEN 0x40
54#define PX_BRDCFG1_BACKLIGHT 0x20
55#define PX_BRDCFG1_DDCEN 0x10
56
57/*
58 * DIU Area Descriptor
59 *
60 * Note that we need to byte-swap the value before it's written to the AD
61 * register. So even though the registers don't look like they're in the same
62 * bit positions as they are on the MPC8610, the same value is written to the
63 * AD register on the MPC8610 and on the P1022.
64 */
65#define AD_BYTE_F 0x10000000
66#define AD_ALPHA_C_MASK 0x0E000000
67#define AD_ALPHA_C_SHIFT 25
68#define AD_BLUE_C_MASK 0x01800000
69#define AD_BLUE_C_SHIFT 23
70#define AD_GREEN_C_MASK 0x00600000
71#define AD_GREEN_C_SHIFT 21
72#define AD_RED_C_MASK 0x00180000
73#define AD_RED_C_SHIFT 19
74#define AD_PALETTE 0x00040000
75#define AD_PIXEL_S_MASK 0x00030000
76#define AD_PIXEL_S_SHIFT 16
77#define AD_COMP_3_MASK 0x0000F000
78#define AD_COMP_3_SHIFT 12
79#define AD_COMP_2_MASK 0x00000F00
80#define AD_COMP_2_SHIFT 8
81#define AD_COMP_1_MASK 0x000000F0
82#define AD_COMP_1_SHIFT 4
83#define AD_COMP_0_MASK 0x0000000F
84#define AD_COMP_0_SHIFT 0
85
86#define MAKE_AD(alpha, red, blue, green, size, c0, c1, c2, c3) \
87 cpu_to_le32(AD_BYTE_F | (alpha << AD_ALPHA_C_SHIFT) | \
88 (blue << AD_BLUE_C_SHIFT) | (green << AD_GREEN_C_SHIFT) | \
89 (red << AD_RED_C_SHIFT) | (c3 << AD_COMP_3_SHIFT) | \
90 (c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \
91 (c0 << AD_COMP_0_SHIFT) | (size << AD_PIXEL_S_SHIFT))
92
93/**
94 * p1022ds_get_pixel_format: return the Area Descriptor for a given pixel depth
95 *
96 * The Area Descriptor is a 32-bit value that determine which bits in each
97 * pixel are to be used for each color.
98 */
Timur Tabi7653aaa2011-07-09 15:38:14 -050099static u32 p1022ds_get_pixel_format(enum fsl_diu_monitor_port port,
100 unsigned int bits_per_pixel)
Timur Tabi2c184cd2010-10-07 09:36:43 +0000101{
102 switch (bits_per_pixel) {
103 case 32:
104 /* 0x88883316 */
105 return MAKE_AD(3, 2, 0, 1, 3, 8, 8, 8, 8);
106 case 24:
107 /* 0x88082219 */
108 return MAKE_AD(4, 0, 1, 2, 2, 0, 8, 8, 8);
109 case 16:
110 /* 0x65053118 */
111 return MAKE_AD(4, 2, 1, 0, 1, 5, 6, 5, 0);
112 default:
113 pr_err("fsl-diu: unsupported pixel depth %u\n", bits_per_pixel);
114 return 0;
115 }
116}
117
118/**
119 * p1022ds_set_gamma_table: update the gamma table, if necessary
120 *
121 * On some boards, the gamma table for some ports may need to be modified.
122 * This is not the case on the P1022DS, so we do nothing.
123*/
Timur Tabi7653aaa2011-07-09 15:38:14 -0500124static void p1022ds_set_gamma_table(enum fsl_diu_monitor_port port,
125 char *gamma_table_base)
Timur Tabi2c184cd2010-10-07 09:36:43 +0000126{
127}
128
129/**
130 * p1022ds_set_monitor_port: switch the output to a different monitor port
131 *
132 */
Timur Tabi7653aaa2011-07-09 15:38:14 -0500133static void p1022ds_set_monitor_port(enum fsl_diu_monitor_port port)
Timur Tabi2c184cd2010-10-07 09:36:43 +0000134{
Timur Tabi499ccb272011-09-15 13:04:13 -0500135 struct device_node *np;
Timur Tabi31655952011-06-08 15:01:57 -0500136 void __iomem *pixis;
Timur Tabi2c184cd2010-10-07 09:36:43 +0000137 u8 __iomem *brdcfg1;
138
Timur Tabi499ccb272011-09-15 13:04:13 -0500139 np = of_find_compatible_node(NULL, NULL, "fsl,p1022ds-fpga");
140 if (!np)
141 /* older device trees used "fsl,p1022ds-pixis" */
142 np = of_find_compatible_node(NULL, NULL, "fsl,p1022ds-pixis");
143 if (!np) {
Timur Tabi2c184cd2010-10-07 09:36:43 +0000144 pr_err("p1022ds: missing ngPIXIS node\n");
145 return;
146 }
147
Timur Tabi499ccb272011-09-15 13:04:13 -0500148 pixis = of_iomap(np, 0);
Timur Tabi31655952011-06-08 15:01:57 -0500149 if (!pixis) {
Timur Tabi2c184cd2010-10-07 09:36:43 +0000150 pr_err("p1022ds: could not map ngPIXIS registers\n");
151 return;
152 }
Timur Tabi31655952011-06-08 15:01:57 -0500153 brdcfg1 = pixis + 9; /* BRDCFG1 is at offset 9 in the ngPIXIS */
Timur Tabi2c184cd2010-10-07 09:36:43 +0000154
Timur Tabi7653aaa2011-07-09 15:38:14 -0500155 switch (port) {
156 case FSL_DIU_PORT_DVI:
157 printk(KERN_INFO "%s:%u\n", __func__, __LINE__);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000158 /* Enable the DVI port, disable the DFP and the backlight */
159 clrsetbits_8(brdcfg1, PX_BRDCFG1_DFPEN | PX_BRDCFG1_BACKLIGHT,
160 PX_BRDCFG1_DVIEN);
161 break;
Timur Tabi7653aaa2011-07-09 15:38:14 -0500162 case FSL_DIU_PORT_LVDS:
163 printk(KERN_INFO "%s:%u\n", __func__, __LINE__);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000164 /* Enable the DFP port, disable the DVI and the backlight */
165 clrsetbits_8(brdcfg1, PX_BRDCFG1_DVIEN | PX_BRDCFG1_BACKLIGHT,
166 PX_BRDCFG1_DFPEN);
167 break;
168 default:
Timur Tabi7653aaa2011-07-09 15:38:14 -0500169 pr_err("p1022ds: unsupported monitor port %i\n", port);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000170 }
Timur Tabi31655952011-06-08 15:01:57 -0500171
172 iounmap(pixis);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000173}
174
175/**
176 * p1022ds_set_pixel_clock: program the DIU's clock
177 *
178 * @pixclock: the wavelength, in picoseconds, of the clock
179 */
180void p1022ds_set_pixel_clock(unsigned int pixclock)
181{
182 struct device_node *guts_np = NULL;
183 struct ccsr_guts_85xx __iomem *guts;
184 unsigned long freq;
185 u64 temp;
186 u32 pxclk;
187
188 /* Map the global utilities registers. */
189 guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
190 if (!guts_np) {
191 pr_err("p1022ds: missing global utilties device node\n");
192 return;
193 }
194
195 guts = of_iomap(guts_np, 0);
196 of_node_put(guts_np);
197 if (!guts) {
198 pr_err("p1022ds: could not map global utilties device\n");
199 return;
200 }
201
202 /* Convert pixclock from a wavelength to a frequency */
203 temp = 1000000000000ULL;
204 do_div(temp, pixclock);
205 freq = temp;
206
Timur Tabi7b93ecc2011-06-23 14:48:54 -0500207 /*
208 * 'pxclk' is the ratio of the platform clock to the pixel clock.
209 * This number is programmed into the CLKDVDR register, and the valid
210 * range of values is 2-255.
211 */
Timur Tabi2c184cd2010-10-07 09:36:43 +0000212 pxclk = DIV_ROUND_CLOSEST(fsl_get_sys_freq(), freq);
Timur Tabi7b93ecc2011-06-23 14:48:54 -0500213 pxclk = clamp_t(u32, pxclk, 2, 255);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000214
215 /* Disable the pixel clock, and set it to non-inverted and no delay */
216 clrbits32(&guts->clkdvdr,
217 CLKDVDR_PXCKEN | CLKDVDR_PXCKDLY | CLKDVDR_PXCLK_MASK);
218
219 /* Enable the clock and set the pxclk */
220 setbits32(&guts->clkdvdr, CLKDVDR_PXCKEN | (pxclk << 16));
Timur Tabi31655952011-06-08 15:01:57 -0500221
222 iounmap(guts);
Timur Tabi2c184cd2010-10-07 09:36:43 +0000223}
224
225/**
Timur Tabi7653aaa2011-07-09 15:38:14 -0500226 * p1022ds_valid_monitor_port: set the monitor port for sysfs
Timur Tabi2c184cd2010-10-07 09:36:43 +0000227 */
Timur Tabi7653aaa2011-07-09 15:38:14 -0500228enum fsl_diu_monitor_port
229p1022ds_valid_monitor_port(enum fsl_diu_monitor_port port)
Timur Tabi2c184cd2010-10-07 09:36:43 +0000230{
Timur Tabi7653aaa2011-07-09 15:38:14 -0500231 switch (port) {
232 case FSL_DIU_PORT_DVI:
233 case FSL_DIU_PORT_LVDS:
234 return port;
235 default:
236 return FSL_DIU_PORT_DVI; /* Dual-link LVDS is not supported */
237 }
Timur Tabi2c184cd2010-10-07 09:36:43 +0000238}
239
240#endif
Timur Tabi30be4c92010-07-02 17:25:03 -0500241
242void __init p1022_ds_pic_init(void)
243{
Kyle Moffett996983b2011-12-02 06:28:02 +0000244 struct mpic *mpic = mpic_alloc(NULL, 0,
Kyle Moffettbe8bec52011-12-02 06:28:03 +0000245 MPIC_WANTS_RESET |
Timur Tabi30be4c92010-07-02 17:25:03 -0500246 MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS |
247 MPIC_SINGLE_DEST_CPU,
248 0, 256, " OpenPIC ");
Timur Tabi30be4c92010-07-02 17:25:03 -0500249 BUG_ON(mpic == NULL);
Timur Tabi30be4c92010-07-02 17:25:03 -0500250 mpic_init(mpic);
251}
252
Timur Tabi30be4c92010-07-02 17:25:03 -0500253/*
254 * Setup the architecture
255 */
256static void __init p1022_ds_setup_arch(void)
257{
258#ifdef CONFIG_PCI
259 struct device_node *np;
260#endif
261 dma_addr_t max = 0xffffffff;
262
263 if (ppc_md.progress)
264 ppc_md.progress("p1022_ds_setup_arch()", 0);
265
266#ifdef CONFIG_PCI
267 for_each_compatible_node(np, "pci", "fsl,p1022-pcie") {
268 struct resource rsrc;
269 struct pci_controller *hose;
270
271 of_address_to_resource(np, 0, &rsrc);
272
273 if ((rsrc.start & 0xfffff) == 0x8000)
274 fsl_add_bridge(np, 1);
275 else
276 fsl_add_bridge(np, 0);
277
278 hose = pci_find_hose_for_OF_device(np);
279 max = min(max, hose->dma_window_base_cur +
280 hose->dma_window_size);
281 }
282#endif
283
Timur Tabi2c184cd2010-10-07 09:36:43 +0000284#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
285 diu_ops.get_pixel_format = p1022ds_get_pixel_format;
286 diu_ops.set_gamma_table = p1022ds_set_gamma_table;
287 diu_ops.set_monitor_port = p1022ds_set_monitor_port;
288 diu_ops.set_pixel_clock = p1022ds_set_pixel_clock;
Timur Tabi7653aaa2011-07-09 15:38:14 -0500289 diu_ops.valid_monitor_port = p1022ds_valid_monitor_port;
Timur Tabi2c184cd2010-10-07 09:36:43 +0000290#endif
291
Timur Tabi30be4c92010-07-02 17:25:03 -0500292 mpc85xx_smp_init();
Timur Tabi30be4c92010-07-02 17:25:03 -0500293
294#ifdef CONFIG_SWIOTLB
Kumar Galadc1c41f2010-08-31 11:39:25 -0500295 if (memblock_end_of_DRAM() > max) {
Timur Tabi30be4c92010-07-02 17:25:03 -0500296 ppc_swiotlb_enable = 1;
297 set_pci_dma_ops(&swiotlb_dma_ops);
298 ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_swiotlb;
299 }
300#endif
301
302 pr_info("Freescale P1022 DS reference board\n");
303}
304
305static struct of_device_id __initdata p1022_ds_ids[] = {
Timur Tabif7a07fd2010-08-19 16:28:12 -0500306 /* So that the DMA channel nodes can be probed individually: */
307 { .compatible = "fsl,eloplus-dma", },
Timur Tabi30be4c92010-07-02 17:25:03 -0500308 {},
309};
310
311static int __init p1022_ds_publish_devices(void)
312{
Dmitry Eremin-Solenikov46d026a2011-11-17 21:56:17 +0400313 mpc85xx_common_publish_devices();
Timur Tabi30be4c92010-07-02 17:25:03 -0500314 return of_platform_bus_probe(NULL, p1022_ds_ids, NULL);
315}
316machine_device_initcall(p1022_ds, p1022_ds_publish_devices);
317
318machine_arch_initcall(p1022_ds, swiotlb_setup_bus_notifier);
319
320/*
321 * Called very early, device-tree isn't unflattened
322 */
323static int __init p1022_ds_probe(void)
324{
325 unsigned long root = of_get_flat_dt_root();
326
327 return of_flat_dt_is_compatible(root, "fsl,p1022ds");
328}
329
330define_machine(p1022_ds) {
331 .name = "P1022 DS",
332 .probe = p1022_ds_probe,
333 .setup_arch = p1022_ds_setup_arch,
334 .init_IRQ = p1022_ds_pic_init,
335#ifdef CONFIG_PCI
336 .pcibios_fixup_bus = fsl_pcibios_fixup_bus,
337#endif
338 .get_irq = mpic_get_irq,
339 .restart = fsl_rstcr_restart,
340 .calibrate_decr = generic_calibrate_decr,
341 .progress = udbg_progress,
342};