blob: 188e60ac08c46ba9e30b56aac681402ed932de7d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dave Liu19580e62007-09-18 12:37:57 +08002/*
Kim Phillips9993e192009-07-18 18:42:13 -05003 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
Dave Liu19580e62007-09-18 12:37:57 +08004 */
5
Simon Glass2cf431c2019-11-14 12:57:47 -07006#include <init.h>
Dave Liu19580e62007-09-18 12:37:57 +08007#include <asm/mmu.h>
8#include <asm/io.h>
9#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Dave Liu19580e62007-09-18 12:37:57 +080011#include <mpc83xx.h>
12#include <pci.h>
13#include <i2c.h>
Anton Vorontsov8b345572009-01-08 04:26:19 +030014#include <fdt_support.h>
Dave Liu19580e62007-09-18 12:37:57 +080015#include <asm/fsl_i2c.h>
Kumar Gala7e1afb62010-04-20 10:02:24 -050016#include <asm/fsl_mpc83xx_serdes.h>
Simon Glassc05ed002020-05-10 11:40:11 -060017#include <linux/delay.h>
Dave Liu19580e62007-09-18 12:37:57 +080018
Dave Liu19580e62007-09-18 12:37:57 +080019static struct pci_region pci_regions[] = {
20 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020021 bus_start: CONFIG_SYS_PCI_MEM_BASE,
22 phys_start: CONFIG_SYS_PCI_MEM_PHYS,
23 size: CONFIG_SYS_PCI_MEM_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080024 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
25 },
26 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027 bus_start: CONFIG_SYS_PCI_MMIO_BASE,
28 phys_start: CONFIG_SYS_PCI_MMIO_PHYS,
29 size: CONFIG_SYS_PCI_MMIO_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080030 flags: PCI_REGION_MEM
31 },
32 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020033 bus_start: CONFIG_SYS_PCI_IO_BASE,
34 phys_start: CONFIG_SYS_PCI_IO_PHYS,
35 size: CONFIG_SYS_PCI_IO_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080036 flags: PCI_REGION_IO
37 }
38};
39
Anton Vorontsov8b345572009-01-08 04:26:19 +030040static struct pci_region pcie_regions_0[] = {
41 {
42 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
43 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
44 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
45 .flags = PCI_REGION_MEM,
46 },
47 {
48 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
49 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
50 .size = CONFIG_SYS_PCIE1_IO_SIZE,
51 .flags = PCI_REGION_IO,
52 },
53};
54
55static struct pci_region pcie_regions_1[] = {
56 {
57 .bus_start = CONFIG_SYS_PCIE2_MEM_BASE,
58 .phys_start = CONFIG_SYS_PCIE2_MEM_PHYS,
59 .size = CONFIG_SYS_PCIE2_MEM_SIZE,
60 .flags = PCI_REGION_MEM,
61 },
62 {
63 .bus_start = CONFIG_SYS_PCIE2_IO_BASE,
64 .phys_start = CONFIG_SYS_PCIE2_IO_PHYS,
65 .size = CONFIG_SYS_PCIE2_IO_SIZE,
66 .flags = PCI_REGION_IO,
67 },
68};
69
70static int is_pex_x2(void)
71{
Simon Glass00caae62017-08-03 12:22:12 -060072 const char *pex_x2 = env_get("pex_x2");
Anton Vorontsov8b345572009-01-08 04:26:19 +030073
74 if (pex_x2 && !strcmp(pex_x2, "yes"))
75 return 1;
76 return 0;
77}
78
Dave Liu19580e62007-09-18 12:37:57 +080079void pci_init_board(void)
80{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Anton Vorontsov8b345572009-01-08 04:26:19 +030082 volatile sysconf83xx_t *sysconf = &immr->sysconf;
Dave Liu19580e62007-09-18 12:37:57 +080083 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
84 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
Anton Vorontsov8b345572009-01-08 04:26:19 +030085 volatile law83xx_t *pcie_law = sysconf->pcielaw;
Dave Liu19580e62007-09-18 12:37:57 +080086 struct pci_region *reg[] = { pci_regions };
Anton Vorontsov8b345572009-01-08 04:26:19 +030087 struct pci_region *pcie_reg[] = { pcie_regions_0, pcie_regions_1, };
88 u32 spridr = in_be32(&immr->sysconf.spridr);
89 int pex2 = is_pex_x2();
Dave Liu19580e62007-09-18 12:37:57 +080090
Anton Vorontsov00f7bba2008-10-02 19:17:33 +040091 if (board_pci_host_broken())
Anton Vorontsov8b345572009-01-08 04:26:19 +030092 goto skip_pci;
Anton Vorontsov00f7bba2008-10-02 19:17:33 +040093
Dave Liu19580e62007-09-18 12:37:57 +080094 /* Enable all 5 PCI_CLK_OUTPUTS */
95 clk->occr |= 0xf8000000;
96 udelay(2000);
97
98 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099 pci_law[0].bar = CONFIG_SYS_PCI_MEM_PHYS & LAWBAR_BAR;
Dave Liu19580e62007-09-18 12:37:57 +0800100 pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB;
101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102 pci_law[1].bar = CONFIG_SYS_PCI_IO_PHYS & LAWBAR_BAR;
Dave Liu19580e62007-09-18 12:37:57 +0800103 pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB;
104
105 udelay(2000);
106
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500107 mpc83xx_pci_init(1, reg);
Anton Vorontsov8b345572009-01-08 04:26:19 +0300108skip_pci:
109 /* There is no PEX in MPC8379 parts. */
110 if (PARTID_NO_E(spridr) == SPR_8379)
111 return;
112
Anton Vorontsov7e2ec1d2009-02-19 18:20:39 +0300113 if (pex2)
114 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX_X2,
115 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
116 else
117 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX,
118 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
119
Anton Vorontsov8b345572009-01-08 04:26:19 +0300120 /* Configure the clock for PCIE controller */
121 clrsetbits_be32(&clk->sccr, SCCR_PCIEXP1CM | SCCR_PCIEXP2CM,
122 SCCR_PCIEXP1CM_1 | SCCR_PCIEXP2CM_1);
123
124 /* Deassert the resets in the control register */
125 out_be32(&sysconf->pecr1, 0xE0008000);
126 if (!pex2)
127 out_be32(&sysconf->pecr2, 0xE0008000);
128 udelay(2000);
129
130 /* Configure PCI Express Local Access Windows */
131 out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
132 out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
133
134 out_be32(&pcie_law[1].bar, CONFIG_SYS_PCIE2_BASE & LAWBAR_BAR);
135 out_be32(&pcie_law[1].ar, LBLAWAR_EN | LBLAWAR_512MB);
136
Kim Phillipse2229352010-09-30 13:40:34 -0500137 mpc83xx_pcie_init(pex2 ? 1 : 2, pcie_reg);
Anton Vorontsov8b345572009-01-08 04:26:19 +0300138}
139
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +0900140void ft_pcie_fixup(void *blob, struct bd_info *bd)
Anton Vorontsov8b345572009-01-08 04:26:19 +0300141{
142 const char *status = "disabled (PCIE1 is x2)";
143
144 if (!is_pex_x2())
145 return;
146
147 do_fixup_by_path(blob, "pci2", "status", status,
148 strlen(status) + 1, 1);
Dave Liu19580e62007-09-18 12:37:57 +0800149}