Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 1 | /* |
| 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 Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 11 | * 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 Gala | dc1c41f | 2010-08-31 11:39:25 -0500 | [diff] [blame] | 21 | #include <linux/memblock.h> |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 22 | #include <asm/div64.h> |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 23 | #include <asm/mpic.h> |
| 24 | #include <asm/swiotlb.h> |
| 25 | |
| 26 | #include <sysdev/fsl_soc.h> |
| 27 | #include <sysdev/fsl_pci.h> |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 28 | #include <asm/fsl_guts.h> |
Kyle Moffett | 582d3e0 | 2011-12-02 06:27:58 +0000 | [diff] [blame] | 29 | #include "smp.h" |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 30 | |
Dmitry Eremin-Solenikov | 543a07b | 2011-11-17 21:56:16 +0400 | [diff] [blame] | 31 | #include "mpc85xx.h" |
| 32 | |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 33 | #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 Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 99 | static u32 p1022ds_get_pixel_format(enum fsl_diu_monitor_port port, |
| 100 | unsigned int bits_per_pixel) |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 101 | { |
| 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 Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 124 | static void p1022ds_set_gamma_table(enum fsl_diu_monitor_port port, |
| 125 | char *gamma_table_base) |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 126 | { |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * p1022ds_set_monitor_port: switch the output to a different monitor port |
| 131 | * |
| 132 | */ |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 133 | static void p1022ds_set_monitor_port(enum fsl_diu_monitor_port port) |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 134 | { |
Timur Tabi | 499ccb27 | 2011-09-15 13:04:13 -0500 | [diff] [blame] | 135 | struct device_node *np; |
Timur Tabi | 3165595 | 2011-06-08 15:01:57 -0500 | [diff] [blame] | 136 | void __iomem *pixis; |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 137 | u8 __iomem *brdcfg1; |
| 138 | |
Timur Tabi | 499ccb27 | 2011-09-15 13:04:13 -0500 | [diff] [blame] | 139 | 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 Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 144 | pr_err("p1022ds: missing ngPIXIS node\n"); |
| 145 | return; |
| 146 | } |
| 147 | |
Timur Tabi | 499ccb27 | 2011-09-15 13:04:13 -0500 | [diff] [blame] | 148 | pixis = of_iomap(np, 0); |
Timur Tabi | 3165595 | 2011-06-08 15:01:57 -0500 | [diff] [blame] | 149 | if (!pixis) { |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 150 | pr_err("p1022ds: could not map ngPIXIS registers\n"); |
| 151 | return; |
| 152 | } |
Timur Tabi | 3165595 | 2011-06-08 15:01:57 -0500 | [diff] [blame] | 153 | brdcfg1 = pixis + 9; /* BRDCFG1 is at offset 9 in the ngPIXIS */ |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 154 | |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 155 | switch (port) { |
| 156 | case FSL_DIU_PORT_DVI: |
| 157 | printk(KERN_INFO "%s:%u\n", __func__, __LINE__); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 158 | /* 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 Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 162 | case FSL_DIU_PORT_LVDS: |
| 163 | printk(KERN_INFO "%s:%u\n", __func__, __LINE__); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 164 | /* 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 Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 169 | pr_err("p1022ds: unsupported monitor port %i\n", port); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 170 | } |
Timur Tabi | 3165595 | 2011-06-08 15:01:57 -0500 | [diff] [blame] | 171 | |
| 172 | iounmap(pixis); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /** |
| 176 | * p1022ds_set_pixel_clock: program the DIU's clock |
| 177 | * |
| 178 | * @pixclock: the wavelength, in picoseconds, of the clock |
| 179 | */ |
| 180 | void 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 Tabi | 7b93ecc | 2011-06-23 14:48:54 -0500 | [diff] [blame] | 207 | /* |
| 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 Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 212 | pxclk = DIV_ROUND_CLOSEST(fsl_get_sys_freq(), freq); |
Timur Tabi | 7b93ecc | 2011-06-23 14:48:54 -0500 | [diff] [blame] | 213 | pxclk = clamp_t(u32, pxclk, 2, 255); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 214 | |
| 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 Tabi | 3165595 | 2011-06-08 15:01:57 -0500 | [diff] [blame] | 221 | |
| 222 | iounmap(guts); |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | /** |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 226 | * p1022ds_valid_monitor_port: set the monitor port for sysfs |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 227 | */ |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 228 | enum fsl_diu_monitor_port |
| 229 | p1022ds_valid_monitor_port(enum fsl_diu_monitor_port port) |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 230 | { |
Timur Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 231 | 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 Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | #endif |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 241 | |
| 242 | void __init p1022_ds_pic_init(void) |
| 243 | { |
Kyle Moffett | 996983b | 2011-12-02 06:28:02 +0000 | [diff] [blame] | 244 | struct mpic *mpic = mpic_alloc(NULL, 0, |
Kyle Moffett | be8bec5 | 2011-12-02 06:28:03 +0000 | [diff] [blame] | 245 | MPIC_WANTS_RESET | |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 246 | MPIC_BIG_ENDIAN | MPIC_BROKEN_FRR_NIRQS | |
| 247 | MPIC_SINGLE_DEST_CPU, |
| 248 | 0, 256, " OpenPIC "); |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 249 | BUG_ON(mpic == NULL); |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 250 | mpic_init(mpic); |
| 251 | } |
| 252 | |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 253 | /* |
| 254 | * Setup the architecture |
| 255 | */ |
| 256 | static 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 Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 284 | #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 Tabi | 7653aaa | 2011-07-09 15:38:14 -0500 | [diff] [blame] | 289 | diu_ops.valid_monitor_port = p1022ds_valid_monitor_port; |
Timur Tabi | 2c184cd | 2010-10-07 09:36:43 +0000 | [diff] [blame] | 290 | #endif |
| 291 | |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 292 | mpc85xx_smp_init(); |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 293 | |
| 294 | #ifdef CONFIG_SWIOTLB |
Kumar Gala | dc1c41f | 2010-08-31 11:39:25 -0500 | [diff] [blame] | 295 | if (memblock_end_of_DRAM() > max) { |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 296 | 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 | |
| 305 | static struct of_device_id __initdata p1022_ds_ids[] = { |
Timur Tabi | f7a07fd | 2010-08-19 16:28:12 -0500 | [diff] [blame] | 306 | /* So that the DMA channel nodes can be probed individually: */ |
| 307 | { .compatible = "fsl,eloplus-dma", }, |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 308 | {}, |
| 309 | }; |
| 310 | |
| 311 | static int __init p1022_ds_publish_devices(void) |
| 312 | { |
Dmitry Eremin-Solenikov | 46d026a | 2011-11-17 21:56:17 +0400 | [diff] [blame] | 313 | mpc85xx_common_publish_devices(); |
Timur Tabi | 30be4c9 | 2010-07-02 17:25:03 -0500 | [diff] [blame] | 314 | return of_platform_bus_probe(NULL, p1022_ds_ids, NULL); |
| 315 | } |
| 316 | machine_device_initcall(p1022_ds, p1022_ds_publish_devices); |
| 317 | |
| 318 | machine_arch_initcall(p1022_ds, swiotlb_setup_bus_notifier); |
| 319 | |
| 320 | /* |
| 321 | * Called very early, device-tree isn't unflattened |
| 322 | */ |
| 323 | static 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 | |
| 330 | define_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 | }; |