blob: 42176389521b3c9036e1f606e2cfc2c044bcec49 [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
6#include <asm/mmu.h>
7#include <asm/io.h>
8#include <common.h>
9#include <mpc83xx.h>
10#include <pci.h>
11#include <i2c.h>
Anton Vorontsov8b345572009-01-08 04:26:19 +030012#include <fdt_support.h>
Dave Liu19580e62007-09-18 12:37:57 +080013#include <asm/fsl_i2c.h>
Kumar Gala7e1afb62010-04-20 10:02:24 -050014#include <asm/fsl_mpc83xx_serdes.h>
Dave Liu19580e62007-09-18 12:37:57 +080015
Dave Liu19580e62007-09-18 12:37:57 +080016static struct pci_region pci_regions[] = {
17 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020018 bus_start: CONFIG_SYS_PCI_MEM_BASE,
19 phys_start: CONFIG_SYS_PCI_MEM_PHYS,
20 size: CONFIG_SYS_PCI_MEM_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080021 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
22 },
23 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020024 bus_start: CONFIG_SYS_PCI_MMIO_BASE,
25 phys_start: CONFIG_SYS_PCI_MMIO_PHYS,
26 size: CONFIG_SYS_PCI_MMIO_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080027 flags: PCI_REGION_MEM
28 },
29 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030 bus_start: CONFIG_SYS_PCI_IO_BASE,
31 phys_start: CONFIG_SYS_PCI_IO_PHYS,
32 size: CONFIG_SYS_PCI_IO_SIZE,
Dave Liu19580e62007-09-18 12:37:57 +080033 flags: PCI_REGION_IO
34 }
35};
36
Anton Vorontsov8b345572009-01-08 04:26:19 +030037static struct pci_region pcie_regions_0[] = {
38 {
39 .bus_start = CONFIG_SYS_PCIE1_MEM_BASE,
40 .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS,
41 .size = CONFIG_SYS_PCIE1_MEM_SIZE,
42 .flags = PCI_REGION_MEM,
43 },
44 {
45 .bus_start = CONFIG_SYS_PCIE1_IO_BASE,
46 .phys_start = CONFIG_SYS_PCIE1_IO_PHYS,
47 .size = CONFIG_SYS_PCIE1_IO_SIZE,
48 .flags = PCI_REGION_IO,
49 },
50};
51
52static struct pci_region pcie_regions_1[] = {
53 {
54 .bus_start = CONFIG_SYS_PCIE2_MEM_BASE,
55 .phys_start = CONFIG_SYS_PCIE2_MEM_PHYS,
56 .size = CONFIG_SYS_PCIE2_MEM_SIZE,
57 .flags = PCI_REGION_MEM,
58 },
59 {
60 .bus_start = CONFIG_SYS_PCIE2_IO_BASE,
61 .phys_start = CONFIG_SYS_PCIE2_IO_PHYS,
62 .size = CONFIG_SYS_PCIE2_IO_SIZE,
63 .flags = PCI_REGION_IO,
64 },
65};
66
67static int is_pex_x2(void)
68{
Simon Glass00caae62017-08-03 12:22:12 -060069 const char *pex_x2 = env_get("pex_x2");
Anton Vorontsov8b345572009-01-08 04:26:19 +030070
71 if (pex_x2 && !strcmp(pex_x2, "yes"))
72 return 1;
73 return 0;
74}
75
Dave Liu19580e62007-09-18 12:37:57 +080076void pci_init_board(void)
77{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Anton Vorontsov8b345572009-01-08 04:26:19 +030079 volatile sysconf83xx_t *sysconf = &immr->sysconf;
Dave Liu19580e62007-09-18 12:37:57 +080080 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
81 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
Anton Vorontsov8b345572009-01-08 04:26:19 +030082 volatile law83xx_t *pcie_law = sysconf->pcielaw;
Dave Liu19580e62007-09-18 12:37:57 +080083 struct pci_region *reg[] = { pci_regions };
Anton Vorontsov8b345572009-01-08 04:26:19 +030084 struct pci_region *pcie_reg[] = { pcie_regions_0, pcie_regions_1, };
85 u32 spridr = in_be32(&immr->sysconf.spridr);
86 int pex2 = is_pex_x2();
Dave Liu19580e62007-09-18 12:37:57 +080087
Anton Vorontsov00f7bba2008-10-02 19:17:33 +040088 if (board_pci_host_broken())
Anton Vorontsov8b345572009-01-08 04:26:19 +030089 goto skip_pci;
Anton Vorontsov00f7bba2008-10-02 19:17:33 +040090
Dave Liu19580e62007-09-18 12:37:57 +080091 /* Enable all 5 PCI_CLK_OUTPUTS */
92 clk->occr |= 0xf8000000;
93 udelay(2000);
94
95 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 pci_law[0].bar = CONFIG_SYS_PCI_MEM_PHYS & LAWBAR_BAR;
Dave Liu19580e62007-09-18 12:37:57 +080097 pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB;
98
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099 pci_law[1].bar = CONFIG_SYS_PCI_IO_PHYS & LAWBAR_BAR;
Dave Liu19580e62007-09-18 12:37:57 +0800100 pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB;
101
102 udelay(2000);
103
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500104 mpc83xx_pci_init(1, reg);
Anton Vorontsov8b345572009-01-08 04:26:19 +0300105skip_pci:
106 /* There is no PEX in MPC8379 parts. */
107 if (PARTID_NO_E(spridr) == SPR_8379)
108 return;
109
Anton Vorontsov7e2ec1d2009-02-19 18:20:39 +0300110 if (pex2)
111 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX_X2,
112 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
113 else
114 fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX,
115 FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V);
116
Anton Vorontsov8b345572009-01-08 04:26:19 +0300117 /* Configure the clock for PCIE controller */
118 clrsetbits_be32(&clk->sccr, SCCR_PCIEXP1CM | SCCR_PCIEXP2CM,
119 SCCR_PCIEXP1CM_1 | SCCR_PCIEXP2CM_1);
120
121 /* Deassert the resets in the control register */
122 out_be32(&sysconf->pecr1, 0xE0008000);
123 if (!pex2)
124 out_be32(&sysconf->pecr2, 0xE0008000);
125 udelay(2000);
126
127 /* Configure PCI Express Local Access Windows */
128 out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR);
129 out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB);
130
131 out_be32(&pcie_law[1].bar, CONFIG_SYS_PCIE2_BASE & LAWBAR_BAR);
132 out_be32(&pcie_law[1].ar, LBLAWAR_EN | LBLAWAR_512MB);
133
Kim Phillipse2229352010-09-30 13:40:34 -0500134 mpc83xx_pcie_init(pex2 ? 1 : 2, pcie_reg);
Anton Vorontsov8b345572009-01-08 04:26:19 +0300135}
136
137void ft_pcie_fixup(void *blob, bd_t *bd)
138{
139 const char *status = "disabled (PCIE1 is x2)";
140
141 if (!is_pex_x2())
142 return;
143
144 do_fixup_by_path(blob, "pci2", "status", status,
145 strlen(status) + 1, 1);
Dave Liu19580e62007-09-18 12:37:57 +0800146}