blob: 3ddbe717756e9b11c100905982e7cbb9fedd9b4e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala86902b82006-01-12 19:51:38 -06002/*
Kim Phillips9993e192009-07-18 18:42:13 -05003 * Copyright (C) 2006-2009 Freescale Semiconductor, Inc.
Kumar Gala86902b82006-01-12 19:51:38 -06004 */
5
Simon Glass2cf431c2019-11-14 12:57:47 -07006#include <init.h>
Kumar Gala86902b82006-01-12 19:51:38 -06007#include <asm/mmu.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -07008#include <asm/io.h>
Kumar Gala86902b82006-01-12 19:51:38 -06009#include <common.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -070010#include <mpc83xx.h>
Kumar Gala86902b82006-01-12 19:51:38 -060011#include <pci.h>
Kumar Gala86902b82006-01-12 19:51:38 -060012#include <i2c.h>
Ira W. Snyder162338e2008-08-22 11:00:13 -070013#include <asm/fsl_i2c.h>
Simon Glassc05ed002020-05-10 11:40:11 -060014#include <linux/delay.h>
Kumar Gala86902b82006-01-12 19:51:38 -060015
Ira W. Snyder162338e2008-08-22 11:00:13 -070016static struct pci_region pci1_regions[] = {
17 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020018 bus_start: CONFIG_SYS_PCI1_MEM_BASE,
19 phys_start: CONFIG_SYS_PCI1_MEM_PHYS,
20 size: CONFIG_SYS_PCI1_MEM_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070021 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
Kumar Gala86902b82006-01-12 19:51:38 -060022 },
Ira W. Snyder162338e2008-08-22 11:00:13 -070023 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020024 bus_start: CONFIG_SYS_PCI1_IO_BASE,
25 phys_start: CONFIG_SYS_PCI1_IO_PHYS,
26 size: CONFIG_SYS_PCI1_IO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070027 flags: PCI_REGION_IO
28 },
29 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020030 bus_start: CONFIG_SYS_PCI1_MMIO_BASE,
31 phys_start: CONFIG_SYS_PCI1_MMIO_PHYS,
32 size: CONFIG_SYS_PCI1_MMIO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070033 flags: PCI_REGION_MEM
34 },
35};
36
37#ifdef CONFIG_MPC83XX_PCI2
38static struct pci_region pci2_regions[] = {
39 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040 bus_start: CONFIG_SYS_PCI2_MEM_BASE,
41 phys_start: CONFIG_SYS_PCI2_MEM_PHYS,
42 size: CONFIG_SYS_PCI2_MEM_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070043 flags: PCI_REGION_MEM | PCI_REGION_PREFETCH
44 },
45 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046 bus_start: CONFIG_SYS_PCI2_IO_BASE,
47 phys_start: CONFIG_SYS_PCI2_IO_PHYS,
48 size: CONFIG_SYS_PCI2_IO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070049 flags: PCI_REGION_IO
50 },
51 {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052 bus_start: CONFIG_SYS_PCI2_MMIO_BASE,
53 phys_start: CONFIG_SYS_PCI2_MMIO_PHYS,
54 size: CONFIG_SYS_PCI2_MMIO_SIZE,
Ira W. Snyder162338e2008-08-22 11:00:13 -070055 flags: PCI_REGION_MEM
56 },
Kumar Gala86902b82006-01-12 19:51:38 -060057};
58#endif
59
Ira W. Snyder447ad572008-08-22 11:00:15 -070060#ifndef CONFIG_PCISLAVE
Ira W. Snyder162338e2008-08-22 11:00:13 -070061void pib_init(void)
Kumar Gala86902b82006-01-12 19:51:38 -060062{
Ben Warren183da6d2006-09-12 10:15:53 -040063 u8 val8, orig_i2c_bus;
Kumar Gala86902b82006-01-12 19:51:38 -060064 /*
65 * Assign PIB PMC slot to desired PCI bus
66 */
Ben Warren183da6d2006-09-12 10:15:53 -040067 /* Switch temporarily to I2C bus #2 */
68 orig_i2c_bus = i2c_get_bus_num();
Wolfgang Denkdd520bf2006-11-30 18:02:20 +010069 i2c_set_bus_num(1);
Kumar Gala86902b82006-01-12 19:51:38 -060070
71 val8 = 0;
72 i2c_write(0x23, 0x6, 1, &val8, 1);
73 i2c_write(0x23, 0x7, 1, &val8, 1);
74 val8 = 0xff;
75 i2c_write(0x23, 0x2, 1, &val8, 1);
76 i2c_write(0x23, 0x3, 1, &val8, 1);
77
78 val8 = 0;
79 i2c_write(0x26, 0x6, 1, &val8, 1);
80 val8 = 0x34;
81 i2c_write(0x26, 0x7, 1, &val8, 1);
Mario Six1cbc10c2019-01-21 09:17:51 +010082#if defined(CONFIG_PCI_64BIT)
Kumar Gala86902b82006-01-12 19:51:38 -060083 val8 = 0xf4; /* PMC2:PCI1/64-bit */
Mario Six1cbc10c2019-01-21 09:17:51 +010084#elif defined(CONFIG_PCI_ALL_PCI1)
Kumar Gala86902b82006-01-12 19:51:38 -060085 val8 = 0xf3; /* PMC1:PCI1 PMC2:PCI1 PMC3:PCI1 */
Mario Six1cbc10c2019-01-21 09:17:51 +010086#elif defined(CONFIG_PCI_ONE_PCI1)
Kumar Gala86902b82006-01-12 19:51:38 -060087 val8 = 0xf9; /* PMC1:PCI1 PMC2:PCI2 PMC3:PCI2 */
88#else
89 val8 = 0xf5; /* PMC1:PCI1 PMC2:PCI1 PMC3:PCI2 */
90#endif
91 i2c_write(0x26, 0x2, 1, &val8, 1);
92 val8 = 0xff;
93 i2c_write(0x26, 0x3, 1, &val8, 1);
94 val8 = 0;
95 i2c_write(0x27, 0x6, 1, &val8, 1);
96 i2c_write(0x27, 0x7, 1, &val8, 1);
97 val8 = 0xff;
98 i2c_write(0x27, 0x2, 1, &val8, 1);
99 val8 = 0xef;
100 i2c_write(0x27, 0x3, 1, &val8, 1);
101 asm("eieio");
102
Mario Six1cbc10c2019-01-21 09:17:51 +0100103#if defined(CONFIG_PCI_64BIT)
Kumar Gala86902b82006-01-12 19:51:38 -0600104 printf("PCI1: 64-bit on PMC2\n");
Mario Six1cbc10c2019-01-21 09:17:51 +0100105#elif defined(CONFIG_PCI_ALL_PCI1)
Kumar Gala86902b82006-01-12 19:51:38 -0600106 printf("PCI1: 32-bit on PMC1, PMC2, PMC3\n");
Mario Six1cbc10c2019-01-21 09:17:51 +0100107#elif defined(CONFIG_PCI_ONE_PCI1)
Kumar Gala86902b82006-01-12 19:51:38 -0600108 printf("PCI1: 32-bit on PMC1\n");
109 printf("PCI2: 32-bit on PMC2, PMC3\n");
110#else
111 printf("PCI1: 32-bit on PMC1, PMC2\n");
112 printf("PCI2: 32-bit on PMC3\n");
113#endif
Ben Warren183da6d2006-09-12 10:15:53 -0400114 /* Reset to original I2C bus */
Timur Tabibe5e6182006-11-03 19:15:00 -0600115 i2c_set_bus_num(orig_i2c_bus);
Kumar Gala86902b82006-01-12 19:51:38 -0600116}
117
Ira W. Snyder162338e2008-08-22 11:00:13 -0700118void pci_init_board(void)
Kumar Gala86902b82006-01-12 19:51:38 -0600119{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200120 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Ira W. Snyder162338e2008-08-22 11:00:13 -0700121 volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk;
122 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
123#ifndef CONFIG_MPC83XX_PCI2
124 struct pci_region *reg[] = { pci1_regions };
125#else
126 struct pci_region *reg[] = { pci1_regions, pci2_regions };
127#endif
Kumar Gala86902b82006-01-12 19:51:38 -0600128
Ira W. Snyder162338e2008-08-22 11:00:13 -0700129 /* initialize the PCA9555PW IO expander on the PIB board */
Kumar Gala86902b82006-01-12 19:51:38 -0600130 pib_init();
131
Ira W. Snyder162338e2008-08-22 11:00:13 -0700132 /* Enable all 8 PCI_CLK_OUTPUTS */
Kumar Gala86902b82006-01-12 19:51:38 -0600133 clk->occr = 0xff000000;
134 udelay(2000);
135
Ira W. Snyder162338e2008-08-22 11:00:13 -0700136 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200137 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Kumar Gala86902b82006-01-12 19:51:38 -0600138 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
139
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Kumar Gala8fe9bf62006-04-20 13:45:32 -0500141 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
Kumar Gala86902b82006-01-12 19:51:38 -0600142
Ira W. Snyder162338e2008-08-22 11:00:13 -0700143 udelay(2000);
Kumar Gala86902b82006-01-12 19:51:38 -0600144
Ira W. Snyder162338e2008-08-22 11:00:13 -0700145#ifndef CONFIG_MPC83XX_PCI2
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500146 mpc83xx_pci_init(1, reg);
Ira W. Snyder162338e2008-08-22 11:00:13 -0700147#else
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500148 mpc83xx_pci_init(2, reg);
Kumar Gala86902b82006-01-12 19:51:38 -0600149#endif
Kumar Gala86902b82006-01-12 19:51:38 -0600150}
Kumar Gala8fe9bf62006-04-20 13:45:32 -0500151
Ira W. Snyder447ad572008-08-22 11:00:15 -0700152#else
153void pci_init_board(void)
154{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200155 volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700156 volatile law83xx_t *pci_law = immr->sysconf.pcilaw;
157 volatile pcictrl83xx_t *pci_ctrl = &immr->pci_ctrl[0];
158 struct pci_region *reg[] = { pci1_regions };
159
Ira W. Snyder447ad572008-08-22 11:00:15 -0700160 /* Configure PCI Local Access Windows */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200161 pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700162 pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_1G;
163
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200164 pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR;
Ira W. Snyder447ad572008-08-22 11:00:15 -0700165 pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_4M;
166
Peter Tyser6aa3d3b2010-09-14 19:13:50 -0500167 mpc83xx_pci_init(1, reg);
Ira W. Snyder447ad572008-08-22 11:00:15 -0700168
169 /* Configure PCI Inbound Translation Windows (3 1MB windows) */
170 pci_ctrl->pitar0 = 0x0;
171 pci_ctrl->pibar0 = 0x0;
172 pci_ctrl->piwar0 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
173 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
174
175 pci_ctrl->pitar1 = 0x0;
176 pci_ctrl->pibar1 = 0x0;
177 pci_ctrl->piebar1 = 0x0;
178 pci_ctrl->piwar1 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
179 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
180
181 pci_ctrl->pitar2 = 0x0;
182 pci_ctrl->pibar2 = 0x0;
183 pci_ctrl->piebar2 = 0x0;
184 pci_ctrl->piwar2 = PIWAR_EN | PIWAR_PF | PIWAR_RTT_SNOOP |
185 PIWAR_WTT_SNOOP | PIWAR_IWS_1M;
186
187 /* Unlock the configuration bit */
188 mpc83xx_pcislave_unlock(0);
189 printf("PCI: Agent mode enabled\n");
190}
191#endif /* CONFIG_PCISLAVE */