2010-07-03 06:25:03 +08:00
|
|
|
/*
|
|
|
|
* P1022DS board specific routines
|
|
|
|
*
|
|
|
|
* Authors: Travis Wheatley <travis.wheatley@freescale.com>
|
|
|
|
* Dave Liu <daveliu@freescale.com>
|
|
|
|
* Timur Tabi <timur@freescale.com>
|
|
|
|
*
|
|
|
|
* Copyright 2010 Freescale Semiconductor, Inc.
|
|
|
|
*
|
|
|
|
* This file is taken from the Freescale P1022DS BSP, with modifications:
|
|
|
|
* 2) No AMP support
|
|
|
|
* 3) No PCI endpoint support
|
|
|
|
*
|
|
|
|
* This file is licensed under the terms of the GNU General Public License
|
|
|
|
* version 2. This program is licensed "as is" without any warranty of any
|
|
|
|
* kind, whether express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/of_platform.h>
|
2010-09-01 00:39:25 +08:00
|
|
|
#include <linux/memblock.h>
|
2010-10-07 17:36:43 +08:00
|
|
|
#include <asm/div64.h>
|
2010-07-03 06:25:03 +08:00
|
|
|
#include <asm/mpic.h>
|
|
|
|
#include <asm/swiotlb.h>
|
|
|
|
|
|
|
|
#include <sysdev/fsl_soc.h>
|
|
|
|
#include <sysdev/fsl_pci.h>
|
2011-12-12 06:49:14 +08:00
|
|
|
#include <asm/udbg.h>
|
2010-10-07 17:36:43 +08:00
|
|
|
#include <asm/fsl_guts.h>
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
#include <asm/fsl_lbc.h>
|
2011-12-02 14:27:58 +08:00
|
|
|
#include "smp.h"
|
2010-10-07 17:36:43 +08:00
|
|
|
|
2011-11-18 01:56:16 +08:00
|
|
|
#include "mpc85xx.h"
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
|
|
|
|
|
2011-11-18 15:50:01 +08:00
|
|
|
#define PMUXCR_ELBCDIU_MASK 0xc0000000
|
|
|
|
#define PMUXCR_ELBCDIU_NOR16 0x80000000
|
|
|
|
#define PMUXCR_ELBCDIU_DIU 0x40000000
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
/*
|
|
|
|
* Board-specific initialization of the DIU. This code should probably be
|
|
|
|
* executed when the DIU is opened, rather than in arch code, but the DIU
|
|
|
|
* driver does not have a mechanism for this (yet).
|
|
|
|
*
|
|
|
|
* This is especially problematic on the P1022DS because the local bus (eLBC)
|
|
|
|
* and the DIU video signals share the same pins, which means that enabling the
|
|
|
|
* DIU will disable access to NOR flash.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* DIU Pixel Clock bits of the CLKDVDR Global Utilities register */
|
|
|
|
#define CLKDVDR_PXCKEN 0x80000000
|
|
|
|
#define CLKDVDR_PXCKINV 0x10000000
|
|
|
|
#define CLKDVDR_PXCKDLY 0x06000000
|
|
|
|
#define CLKDVDR_PXCLK_MASK 0x00FF0000
|
|
|
|
|
|
|
|
/* Some ngPIXIS register definitions */
|
2011-11-18 15:50:01 +08:00
|
|
|
#define PX_CTL 3
|
|
|
|
#define PX_BRDCFG0 8
|
|
|
|
#define PX_BRDCFG1 9
|
|
|
|
|
|
|
|
#define PX_BRDCFG0_ELBC_SPI_MASK 0xc0
|
|
|
|
#define PX_BRDCFG0_ELBC_SPI_ELBC 0x00
|
|
|
|
#define PX_BRDCFG0_ELBC_SPI_NULL 0xc0
|
|
|
|
#define PX_BRDCFG0_ELBC_DIU 0x02
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
#define PX_BRDCFG1_DVIEN 0x80
|
|
|
|
#define PX_BRDCFG1_DFPEN 0x40
|
|
|
|
#define PX_BRDCFG1_BACKLIGHT 0x20
|
|
|
|
#define PX_BRDCFG1_DDCEN 0x10
|
|
|
|
|
2011-11-18 15:50:01 +08:00
|
|
|
#define PX_CTL_ALTACC 0x80
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
/*
|
|
|
|
* DIU Area Descriptor
|
|
|
|
*
|
|
|
|
* Note that we need to byte-swap the value before it's written to the AD
|
|
|
|
* register. So even though the registers don't look like they're in the same
|
|
|
|
* bit positions as they are on the MPC8610, the same value is written to the
|
|
|
|
* AD register on the MPC8610 and on the P1022.
|
|
|
|
*/
|
|
|
|
#define AD_BYTE_F 0x10000000
|
|
|
|
#define AD_ALPHA_C_MASK 0x0E000000
|
|
|
|
#define AD_ALPHA_C_SHIFT 25
|
|
|
|
#define AD_BLUE_C_MASK 0x01800000
|
|
|
|
#define AD_BLUE_C_SHIFT 23
|
|
|
|
#define AD_GREEN_C_MASK 0x00600000
|
|
|
|
#define AD_GREEN_C_SHIFT 21
|
|
|
|
#define AD_RED_C_MASK 0x00180000
|
|
|
|
#define AD_RED_C_SHIFT 19
|
|
|
|
#define AD_PALETTE 0x00040000
|
|
|
|
#define AD_PIXEL_S_MASK 0x00030000
|
|
|
|
#define AD_PIXEL_S_SHIFT 16
|
|
|
|
#define AD_COMP_3_MASK 0x0000F000
|
|
|
|
#define AD_COMP_3_SHIFT 12
|
|
|
|
#define AD_COMP_2_MASK 0x00000F00
|
|
|
|
#define AD_COMP_2_SHIFT 8
|
|
|
|
#define AD_COMP_1_MASK 0x000000F0
|
|
|
|
#define AD_COMP_1_SHIFT 4
|
|
|
|
#define AD_COMP_0_MASK 0x0000000F
|
|
|
|
#define AD_COMP_0_SHIFT 0
|
|
|
|
|
|
|
|
#define MAKE_AD(alpha, red, blue, green, size, c0, c1, c2, c3) \
|
|
|
|
cpu_to_le32(AD_BYTE_F | (alpha << AD_ALPHA_C_SHIFT) | \
|
|
|
|
(blue << AD_BLUE_C_SHIFT) | (green << AD_GREEN_C_SHIFT) | \
|
|
|
|
(red << AD_RED_C_SHIFT) | (c3 << AD_COMP_3_SHIFT) | \
|
|
|
|
(c2 << AD_COMP_2_SHIFT) | (c1 << AD_COMP_1_SHIFT) | \
|
|
|
|
(c0 << AD_COMP_0_SHIFT) | (size << AD_PIXEL_S_SHIFT))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p1022ds_get_pixel_format: return the Area Descriptor for a given pixel depth
|
|
|
|
*
|
|
|
|
* The Area Descriptor is a 32-bit value that determine which bits in each
|
|
|
|
* pixel are to be used for each color.
|
|
|
|
*/
|
2011-07-10 04:38:14 +08:00
|
|
|
static u32 p1022ds_get_pixel_format(enum fsl_diu_monitor_port port,
|
|
|
|
unsigned int bits_per_pixel)
|
2010-10-07 17:36:43 +08:00
|
|
|
{
|
|
|
|
switch (bits_per_pixel) {
|
|
|
|
case 32:
|
|
|
|
/* 0x88883316 */
|
|
|
|
return MAKE_AD(3, 2, 0, 1, 3, 8, 8, 8, 8);
|
|
|
|
case 24:
|
|
|
|
/* 0x88082219 */
|
|
|
|
return MAKE_AD(4, 0, 1, 2, 2, 0, 8, 8, 8);
|
|
|
|
case 16:
|
|
|
|
/* 0x65053118 */
|
|
|
|
return MAKE_AD(4, 2, 1, 0, 1, 5, 6, 5, 0);
|
|
|
|
default:
|
|
|
|
pr_err("fsl-diu: unsupported pixel depth %u\n", bits_per_pixel);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p1022ds_set_gamma_table: update the gamma table, if necessary
|
|
|
|
*
|
|
|
|
* On some boards, the gamma table for some ports may need to be modified.
|
|
|
|
* This is not the case on the P1022DS, so we do nothing.
|
|
|
|
*/
|
2011-07-10 04:38:14 +08:00
|
|
|
static void p1022ds_set_gamma_table(enum fsl_diu_monitor_port port,
|
|
|
|
char *gamma_table_base)
|
2010-10-07 17:36:43 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
struct fsl_law {
|
|
|
|
u32 lawbar;
|
|
|
|
u32 reserved1;
|
|
|
|
u32 lawar;
|
|
|
|
u32 reserved[5];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define LAWBAR_MASK 0x00F00000
|
|
|
|
#define LAWBAR_SHIFT 12
|
|
|
|
|
|
|
|
#define LAWAR_EN 0x80000000
|
|
|
|
#define LAWAR_TGT_MASK 0x01F00000
|
|
|
|
#define LAW_TRGT_IF_LBC (0x04 << 20)
|
|
|
|
|
|
|
|
#define LAWAR_MASK (LAWAR_EN | LAWAR_TGT_MASK)
|
|
|
|
#define LAWAR_MATCH (LAWAR_EN | LAW_TRGT_IF_LBC)
|
|
|
|
|
|
|
|
#define BR_BA 0xFFFF8000
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map a BRx value to a physical address
|
|
|
|
*
|
|
|
|
* The localbus BRx registers only store the lower 32 bits of the address. To
|
|
|
|
* obtain the upper four bits, we need to scan the LAW table. The entry which
|
|
|
|
* maps to the localbus will contain the upper four bits.
|
|
|
|
*/
|
|
|
|
static phys_addr_t lbc_br_to_phys(const void *ecm, unsigned int count, u32 br)
|
|
|
|
{
|
|
|
|
#ifndef CONFIG_PHYS_64BIT
|
|
|
|
/*
|
|
|
|
* If we only have 32-bit addressing, then the BRx address *is* the
|
|
|
|
* physical address.
|
|
|
|
*/
|
|
|
|
return br & BR_BA;
|
|
|
|
#else
|
|
|
|
const struct fsl_law *law = ecm + 0xc08;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++) {
|
|
|
|
u64 lawbar = in_be32(&law[i].lawbar);
|
|
|
|
u32 lawar = in_be32(&law[i].lawar);
|
|
|
|
|
|
|
|
if ((lawar & LAWAR_MASK) == LAWAR_MATCH)
|
|
|
|
/* Extract the upper four bits */
|
|
|
|
return (br & BR_BA) | ((lawbar & LAWBAR_MASK) << 12);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
/**
|
|
|
|
* p1022ds_set_monitor_port: switch the output to a different monitor port
|
|
|
|
*/
|
2011-07-10 04:38:14 +08:00
|
|
|
static void p1022ds_set_monitor_port(enum fsl_diu_monitor_port port)
|
2010-10-07 17:36:43 +08:00
|
|
|
{
|
2011-11-18 15:50:01 +08:00
|
|
|
struct device_node *guts_node;
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
struct device_node *lbc_node = NULL;
|
|
|
|
struct device_node *law_node = NULL;
|
2012-03-20 00:06:39 +08:00
|
|
|
struct ccsr_guts __iomem *guts;
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
struct fsl_lbc_regs *lbc = NULL;
|
|
|
|
void *ecm = NULL;
|
2011-11-18 15:50:01 +08:00
|
|
|
u8 __iomem *lbc_lcs0_ba = NULL;
|
|
|
|
u8 __iomem *lbc_lcs1_ba = NULL;
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
phys_addr_t cs0_addr, cs1_addr;
|
|
|
|
const __be32 *iprop;
|
|
|
|
unsigned int num_laws;
|
2011-11-18 15:50:01 +08:00
|
|
|
u8 b;
|
|
|
|
|
|
|
|
/* Map the global utilities registers. */
|
|
|
|
guts_node = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
|
|
|
|
if (!guts_node) {
|
|
|
|
pr_err("p1022ds: missing global utilties device node\n");
|
2010-10-07 17:36:43 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-18 15:50:01 +08:00
|
|
|
guts = of_iomap(guts_node, 0);
|
|
|
|
if (!guts) {
|
|
|
|
pr_err("p1022ds: could not map global utilties device\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
lbc_node = of_find_compatible_node(NULL, NULL, "fsl,p1022-elbc");
|
|
|
|
if (!lbc_node) {
|
|
|
|
pr_err("p1022ds: missing localbus node\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
lbc = of_iomap(lbc_node, 0);
|
|
|
|
if (!lbc) {
|
|
|
|
pr_err("p1022ds: could not map localbus node\n");
|
2011-11-18 15:50:01 +08:00
|
|
|
goto exit;
|
2010-10-07 17:36:43 +08:00
|
|
|
}
|
2011-11-18 15:50:01 +08:00
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
law_node = of_find_compatible_node(NULL, NULL, "fsl,ecm-law");
|
|
|
|
if (!law_node) {
|
|
|
|
pr_err("p1022ds: missing local access window node\n");
|
2011-11-18 15:50:01 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
ecm = of_iomap(law_node, 0);
|
|
|
|
if (!ecm) {
|
|
|
|
pr_err("p1022ds: could not map local access window node\n");
|
2011-11-18 15:50:01 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
iprop = of_get_property(law_node, "fsl,num-laws", 0);
|
|
|
|
if (!iprop) {
|
|
|
|
pr_err("p1022ds: LAW node is missing fsl,num-laws property\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
num_laws = be32_to_cpup(iprop);
|
|
|
|
|
|
|
|
cs0_addr = lbc_br_to_phys(ecm, num_laws, in_be32(&lbc->bank[0].br));
|
|
|
|
cs1_addr = lbc_br_to_phys(ecm, num_laws, in_be32(&lbc->bank[1].br));
|
|
|
|
|
|
|
|
lbc_lcs0_ba = ioremap(cs0_addr, 1);
|
|
|
|
lbc_lcs1_ba = ioremap(cs1_addr, 1);
|
|
|
|
|
2011-11-18 15:50:01 +08:00
|
|
|
/* Make sure we're in indirect mode first. */
|
|
|
|
if ((in_be32(&guts->pmuxcr) & PMUXCR_ELBCDIU_MASK) !=
|
|
|
|
PMUXCR_ELBCDIU_DIU) {
|
|
|
|
struct device_node *pixis_node;
|
|
|
|
void __iomem *pixis;
|
|
|
|
|
|
|
|
pixis_node =
|
|
|
|
of_find_compatible_node(NULL, NULL, "fsl,p1022ds-fpga");
|
|
|
|
if (!pixis_node) {
|
|
|
|
pr_err("p1022ds: missing pixis node\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
pixis = of_iomap(pixis_node, 0);
|
|
|
|
of_node_put(pixis_node);
|
|
|
|
if (!pixis) {
|
|
|
|
pr_err("p1022ds: could not map pixis registers\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enable indirect PIXIS mode. */
|
|
|
|
setbits8(pixis + PX_CTL, PX_CTL_ALTACC);
|
|
|
|
iounmap(pixis);
|
|
|
|
|
|
|
|
/* Switch the board mux to the DIU */
|
|
|
|
out_8(lbc_lcs0_ba, PX_BRDCFG0); /* BRDCFG0 */
|
|
|
|
b = in_8(lbc_lcs1_ba);
|
|
|
|
b |= PX_BRDCFG0_ELBC_DIU;
|
|
|
|
out_8(lbc_lcs1_ba, b);
|
|
|
|
|
|
|
|
/* Set the chip mux to DIU mode. */
|
|
|
|
clrsetbits_be32(&guts->pmuxcr, PMUXCR_ELBCDIU_MASK,
|
|
|
|
PMUXCR_ELBCDIU_DIU);
|
|
|
|
in_be32(&guts->pmuxcr);
|
|
|
|
}
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
|
2011-07-10 04:38:14 +08:00
|
|
|
switch (port) {
|
|
|
|
case FSL_DIU_PORT_DVI:
|
2010-10-07 17:36:43 +08:00
|
|
|
/* Enable the DVI port, disable the DFP and the backlight */
|
2011-11-18 15:50:01 +08:00
|
|
|
out_8(lbc_lcs0_ba, PX_BRDCFG1);
|
|
|
|
b = in_8(lbc_lcs1_ba);
|
|
|
|
b &= ~(PX_BRDCFG1_DFPEN | PX_BRDCFG1_BACKLIGHT);
|
|
|
|
b |= PX_BRDCFG1_DVIEN;
|
|
|
|
out_8(lbc_lcs1_ba, b);
|
2010-10-07 17:36:43 +08:00
|
|
|
break;
|
2011-07-10 04:38:14 +08:00
|
|
|
case FSL_DIU_PORT_LVDS:
|
2011-11-18 15:50:01 +08:00
|
|
|
/*
|
|
|
|
* LVDS also needs backlight enabled, otherwise the display
|
|
|
|
* will be blank.
|
|
|
|
*/
|
2010-10-07 17:36:43 +08:00
|
|
|
/* Enable the DFP port, disable the DVI and the backlight */
|
2011-11-18 15:50:01 +08:00
|
|
|
out_8(lbc_lcs0_ba, PX_BRDCFG1);
|
|
|
|
b = in_8(lbc_lcs1_ba);
|
|
|
|
b &= ~PX_BRDCFG1_DVIEN;
|
|
|
|
b |= PX_BRDCFG1_DFPEN | PX_BRDCFG1_BACKLIGHT;
|
|
|
|
out_8(lbc_lcs1_ba, b);
|
2010-10-07 17:36:43 +08:00
|
|
|
break;
|
|
|
|
default:
|
2011-07-10 04:38:14 +08:00
|
|
|
pr_err("p1022ds: unsupported monitor port %i\n", port);
|
2010-10-07 17:36:43 +08:00
|
|
|
}
|
2011-06-09 04:01:57 +08:00
|
|
|
|
2011-11-18 15:50:01 +08:00
|
|
|
exit:
|
|
|
|
if (lbc_lcs1_ba)
|
|
|
|
iounmap(lbc_lcs1_ba);
|
|
|
|
if (lbc_lcs0_ba)
|
|
|
|
iounmap(lbc_lcs0_ba);
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
if (lbc)
|
|
|
|
iounmap(lbc);
|
|
|
|
if (ecm)
|
|
|
|
iounmap(ecm);
|
2011-11-18 15:50:01 +08:00
|
|
|
if (guts)
|
|
|
|
iounmap(guts);
|
|
|
|
|
powerpc/85xx: use the BRx registers to enable indirect mode on the P1022DS
In order to enable the DIU video controller on the P1022DS, the FPGA needs
to be switched to "indirect mode", where the localbus is disabled and
the FPGA is accessed via writes to localbus chip select signals CS0 and CS1.
To obtain the address of CS0 and CS1, the platform driver uses an "indirect
pixis mode" device tree node. This node assumes that the localbus 'ranges'
property is sorted in chip-select order. That is, reg value 0 maps to
CS0, reg value 1 maps to CS1, etc. This is how the 'ranges' property is
supposed to be arranged.
Unfortunately, the 'ranges' property is often mis-arranged, and not just on
the P1022DS. Linux normally does not care, since it does not program the
localbus. But the indirect-mode code on the P1022DS does care.
The "proper" fix is to have U-Boot fix the 'ranges' property, but this would
be too cumbersome. The names and 'reg' properties of all the localbus
devices would also need to be updated, and determining which localbus device
maps to which chip select is board-specific.
Instead, we determine the CS0/CS1 base addresses the same way that U-boot
does -- by reading the BRx registers directly and mapping them to physical
addresses. This code is simpler and more reliable, and it does not require
a U-boot or device tree change.
Since the indirect pixis device tree node is no longer needed, the node is
deleted from the DTS.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2012-07-05 23:08:28 +08:00
|
|
|
of_node_put(law_node);
|
|
|
|
of_node_put(lbc_node);
|
2011-11-18 15:50:01 +08:00
|
|
|
of_node_put(guts_node);
|
2010-10-07 17:36:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* p1022ds_set_pixel_clock: program the DIU's clock
|
|
|
|
*
|
|
|
|
* @pixclock: the wavelength, in picoseconds, of the clock
|
|
|
|
*/
|
|
|
|
void p1022ds_set_pixel_clock(unsigned int pixclock)
|
|
|
|
{
|
|
|
|
struct device_node *guts_np = NULL;
|
2012-03-20 00:06:39 +08:00
|
|
|
struct ccsr_guts __iomem *guts;
|
2010-10-07 17:36:43 +08:00
|
|
|
unsigned long freq;
|
|
|
|
u64 temp;
|
|
|
|
u32 pxclk;
|
|
|
|
|
|
|
|
/* Map the global utilities registers. */
|
|
|
|
guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
|
|
|
|
if (!guts_np) {
|
|
|
|
pr_err("p1022ds: missing global utilties device node\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
guts = of_iomap(guts_np, 0);
|
|
|
|
of_node_put(guts_np);
|
|
|
|
if (!guts) {
|
|
|
|
pr_err("p1022ds: could not map global utilties device\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert pixclock from a wavelength to a frequency */
|
|
|
|
temp = 1000000000000ULL;
|
|
|
|
do_div(temp, pixclock);
|
|
|
|
freq = temp;
|
|
|
|
|
2011-06-24 03:48:54 +08:00
|
|
|
/*
|
|
|
|
* 'pxclk' is the ratio of the platform clock to the pixel clock.
|
|
|
|
* This number is programmed into the CLKDVDR register, and the valid
|
|
|
|
* range of values is 2-255.
|
|
|
|
*/
|
2010-10-07 17:36:43 +08:00
|
|
|
pxclk = DIV_ROUND_CLOSEST(fsl_get_sys_freq(), freq);
|
2011-06-24 03:48:54 +08:00
|
|
|
pxclk = clamp_t(u32, pxclk, 2, 255);
|
2010-10-07 17:36:43 +08:00
|
|
|
|
|
|
|
/* Disable the pixel clock, and set it to non-inverted and no delay */
|
|
|
|
clrbits32(&guts->clkdvdr,
|
|
|
|
CLKDVDR_PXCKEN | CLKDVDR_PXCKDLY | CLKDVDR_PXCLK_MASK);
|
|
|
|
|
|
|
|
/* Enable the clock and set the pxclk */
|
|
|
|
setbits32(&guts->clkdvdr, CLKDVDR_PXCKEN | (pxclk << 16));
|
2011-06-09 04:01:57 +08:00
|
|
|
|
|
|
|
iounmap(guts);
|
2010-10-07 17:36:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-07-10 04:38:14 +08:00
|
|
|
* p1022ds_valid_monitor_port: set the monitor port for sysfs
|
2010-10-07 17:36:43 +08:00
|
|
|
*/
|
2011-07-10 04:38:14 +08:00
|
|
|
enum fsl_diu_monitor_port
|
|
|
|
p1022ds_valid_monitor_port(enum fsl_diu_monitor_port port)
|
2010-10-07 17:36:43 +08:00
|
|
|
{
|
2011-07-10 04:38:14 +08:00
|
|
|
switch (port) {
|
|
|
|
case FSL_DIU_PORT_DVI:
|
|
|
|
case FSL_DIU_PORT_LVDS:
|
|
|
|
return port;
|
|
|
|
default:
|
|
|
|
return FSL_DIU_PORT_DVI; /* Dual-link LVDS is not supported */
|
|
|
|
}
|
2010-10-07 17:36:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2010-07-03 06:25:03 +08:00
|
|
|
|
|
|
|
void __init p1022_ds_pic_init(void)
|
|
|
|
{
|
2011-12-22 18:19:14 +08:00
|
|
|
struct mpic *mpic = mpic_alloc(NULL, 0, MPIC_BIG_ENDIAN |
|
2010-07-03 06:25:03 +08:00
|
|
|
MPIC_SINGLE_DEST_CPU,
|
|
|
|
0, 256, " OpenPIC ");
|
|
|
|
BUG_ON(mpic == NULL);
|
|
|
|
mpic_init(mpic);
|
|
|
|
}
|
|
|
|
|
2012-02-16 08:25:47 +08:00
|
|
|
#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Disables a node in the device tree.
|
|
|
|
*
|
|
|
|
* This function is called before kmalloc() is available, so the 'new' object
|
|
|
|
* should be allocated in the global area. The easiest way is to do that is
|
|
|
|
* to allocate one static local variable for each call to this function.
|
|
|
|
*/
|
|
|
|
static void __init disable_one_node(struct device_node *np, struct property *new)
|
|
|
|
{
|
2012-07-11 13:16:37 +08:00
|
|
|
prom_update_property(np, new);
|
2012-02-16 08:25:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* TRUE if there is a "video=fslfb" command-line parameter. */
|
|
|
|
static bool fslfb;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search for a "video=fslfb" command-line parameter, and set 'fslfb' to
|
|
|
|
* true if we find it.
|
|
|
|
*
|
|
|
|
* We need to use early_param() instead of __setup() because the normal
|
|
|
|
* __setup() gets called to late. However, early_param() gets called very
|
|
|
|
* early, before the device tree is unflattened, so all we can do now is set a
|
|
|
|
* global variable. Later on, p1022_ds_setup_arch() will use that variable
|
|
|
|
* to determine if we need to update the device tree.
|
|
|
|
*/
|
|
|
|
static int __init early_video_setup(char *options)
|
|
|
|
{
|
|
|
|
fslfb = (strncmp(options, "fslfb:", 6) == 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("video", early_video_setup);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-07-03 06:25:03 +08:00
|
|
|
/*
|
|
|
|
* Setup the architecture
|
|
|
|
*/
|
|
|
|
static void __init p1022_ds_setup_arch(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
struct device_node *np;
|
|
|
|
#endif
|
|
|
|
dma_addr_t max = 0xffffffff;
|
|
|
|
|
|
|
|
if (ppc_md.progress)
|
|
|
|
ppc_md.progress("p1022_ds_setup_arch()", 0);
|
|
|
|
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
for_each_compatible_node(np, "pci", "fsl,p1022-pcie") {
|
|
|
|
struct resource rsrc;
|
|
|
|
struct pci_controller *hose;
|
|
|
|
|
|
|
|
of_address_to_resource(np, 0, &rsrc);
|
|
|
|
|
|
|
|
if ((rsrc.start & 0xfffff) == 0x8000)
|
|
|
|
fsl_add_bridge(np, 1);
|
|
|
|
else
|
|
|
|
fsl_add_bridge(np, 0);
|
|
|
|
|
|
|
|
hose = pci_find_hose_for_OF_device(np);
|
|
|
|
max = min(max, hose->dma_window_base_cur +
|
|
|
|
hose->dma_window_size);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
#if defined(CONFIG_FB_FSL_DIU) || defined(CONFIG_FB_FSL_DIU_MODULE)
|
|
|
|
diu_ops.get_pixel_format = p1022ds_get_pixel_format;
|
|
|
|
diu_ops.set_gamma_table = p1022ds_set_gamma_table;
|
|
|
|
diu_ops.set_monitor_port = p1022ds_set_monitor_port;
|
|
|
|
diu_ops.set_pixel_clock = p1022ds_set_pixel_clock;
|
2011-07-10 04:38:14 +08:00
|
|
|
diu_ops.valid_monitor_port = p1022ds_valid_monitor_port;
|
2012-02-16 08:25:47 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable the NOR flash node if there is video=fslfb... command-line
|
|
|
|
* parameter. When the DIU is active, NOR flash is unavailable, so we
|
|
|
|
* have to disable the node before the MTD driver loads.
|
|
|
|
*/
|
|
|
|
if (fslfb) {
|
|
|
|
struct device_node *np =
|
|
|
|
of_find_compatible_node(NULL, NULL, "fsl,p1022-elbc");
|
|
|
|
|
|
|
|
if (np) {
|
|
|
|
np = of_find_compatible_node(np, NULL, "cfi-flash");
|
|
|
|
if (np) {
|
|
|
|
static struct property nor_status = {
|
|
|
|
.name = "status",
|
|
|
|
.value = "disabled",
|
|
|
|
.length = sizeof("disabled"),
|
|
|
|
};
|
|
|
|
|
|
|
|
pr_info("p1022ds: disabling %s node",
|
|
|
|
np->full_name);
|
|
|
|
disable_one_node(np, &nor_status);
|
|
|
|
of_node_put(np);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-10-07 17:36:43 +08:00
|
|
|
#endif
|
|
|
|
|
2010-07-03 06:25:03 +08:00
|
|
|
mpc85xx_smp_init();
|
|
|
|
|
|
|
|
#ifdef CONFIG_SWIOTLB
|
2012-06-05 11:55:04 +08:00
|
|
|
if ((memblock_end_of_DRAM() - 1) > max) {
|
2010-07-03 06:25:03 +08:00
|
|
|
ppc_swiotlb_enable = 1;
|
|
|
|
set_pci_dma_ops(&swiotlb_dma_ops);
|
|
|
|
ppc_md.pci_dma_dev_setup = pci_dma_dev_setup_swiotlb;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
pr_info("Freescale P1022 DS reference board\n");
|
|
|
|
}
|
|
|
|
|
2011-12-01 00:19:17 +08:00
|
|
|
machine_device_initcall(p1022_ds, mpc85xx_common_publish_devices);
|
2010-07-03 06:25:03 +08:00
|
|
|
|
|
|
|
machine_arch_initcall(p1022_ds, swiotlb_setup_bus_notifier);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called very early, device-tree isn't unflattened
|
|
|
|
*/
|
|
|
|
static int __init p1022_ds_probe(void)
|
|
|
|
{
|
|
|
|
unsigned long root = of_get_flat_dt_root();
|
|
|
|
|
|
|
|
return of_flat_dt_is_compatible(root, "fsl,p1022ds");
|
|
|
|
}
|
|
|
|
|
|
|
|
define_machine(p1022_ds) {
|
|
|
|
.name = "P1022 DS",
|
|
|
|
.probe = p1022_ds_probe,
|
|
|
|
.setup_arch = p1022_ds_setup_arch,
|
|
|
|
.init_IRQ = p1022_ds_pic_init,
|
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
.pcibios_fixup_bus = fsl_pcibios_fixup_bus,
|
|
|
|
#endif
|
|
|
|
.get_irq = mpic_get_irq,
|
|
|
|
.restart = fsl_rstcr_restart,
|
|
|
|
.calibrate_decr = generic_calibrate_decr,
|
|
|
|
.progress = udbg_progress,
|
|
|
|
};
|