diff options
author | Joakim Tjernlund <joakim.tjernlund@infinera.com> | 2017-09-12 19:56:41 +0200 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2018-08-08 08:23:48 -0700 |
commit | 6ce83fb3d6ac1cd25772b3c8c1265afbfa42f718 (patch) | |
tree | c34f38c831d61a5f2943ff96658f1f98e764061f /drivers/pci | |
parent | b2486b40dce98ca26bcb6e1dda69efb1b0443b9a (diff) | |
download | u-boot-6ce83fb3d6ac1cd25772b3c8c1265afbfa42f718.tar.gz u-boot-6ce83fb3d6ac1cd25772b3c8c1265afbfa42f718.tar.bz2 u-boot-6ce83fb3d6ac1cd25772b3c8c1265afbfa42f718.zip |
FSL PCI: Configure PCIe reference ratio
Most FSL PCIe controllers expects 333 MHz PCI reference clock.
This clock is derived from the CCB but in many cases the ref.
clock is not 333 MHz and a divisor needs to be configured.
This adds PEX_CCB_DIV #define which can be defined for each
type of CPU/platform.
Signed-off-by: Joakim Tjernlund <joakim.tjernlund@infinera.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/fsl_pci_init.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/pci/fsl_pci_init.c b/drivers/pci/fsl_pci_init.c index 375b8549c5..b4c8556686 100644 --- a/drivers/pci/fsl_pci_init.c +++ b/drivers/pci/fsl_pci_init.c @@ -321,6 +321,12 @@ void fsl_pci_init(struct pci_controller *hose, struct fsl_pci_info *pci_info) pci_setup_indirect(hose, cfg_addr, cfg_data); +#ifdef PEX_CCB_DIV + /* Configure the PCIE controller core clock ratio */ + pci_hose_write_config_dword(hose, dev, 0x440, + ((gd->bus_clk / 1000000) * + (16 / PEX_CCB_DIV)) / 333); +#endif block_rev = in_be32(&pci->block_rev1); if (PEX_IP_BLK_REV_2_2 <= block_rev) { pi = &pci->pit[2]; /* 0xDC0 */ |