blob: 1d0213a513cdb5797cb4679d6b1f055f755a9b8f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk9c53f402003-10-15 23:53:47 +00002/*
wdenk13eb2212004-07-09 23:27:13 +00003 * Copyright 2004 Freescale Semiconductor.
wdenk9c53f402003-10-15 23:53:47 +00004 * Copyright (C) 2003 Motorola Inc.
5 * Xianghua Xiao (x.xiao@motorola.com)
wdenk9c53f402003-10-15 23:53:47 +00006 */
7
8/*
9 * PCI Configuration space access support for MPC85xx PCI Bridge
10 */
11#include <common.h>
12#include <asm/cpm_85xx.h>
13#include <pci.h>
14
Hou Zhiqiang6ff48742019-04-22 21:50:34 +080015#if !defined(CONFIG_FSL_PCI_INIT) && !defined(CONFIG_DM_PCI)
wdenk13eb2212004-07-09 23:27:13 +000016
Kumar Gala3fe80872008-12-02 16:08:36 -060017#ifndef CONFIG_SYS_PCI1_MEM_BUS
18#define CONFIG_SYS_PCI1_MEM_BUS CONFIG_SYS_PCI1_MEM_BASE
19#endif
20
Kumar Gala64bb6d12008-12-02 16:08:37 -060021#ifndef CONFIG_SYS_PCI1_IO_BUS
22#define CONFIG_SYS_PCI1_IO_BUS CONFIG_SYS_PCI1_IO_BASE
23#endif
24
Kumar Gala3fe80872008-12-02 16:08:36 -060025#ifndef CONFIG_SYS_PCI2_MEM_BUS
26#define CONFIG_SYS_PCI2_MEM_BUS CONFIG_SYS_PCI2_MEM_BASE
27#endif
28
Kumar Gala64bb6d12008-12-02 16:08:37 -060029#ifndef CONFIG_SYS_PCI2_IO_BUS
30#define CONFIG_SYS_PCI2_IO_BUS CONFIG_SYS_PCI2_IO_BASE
31#endif
32
Matthew McClintockf5e4f282006-06-28 10:45:17 -050033static struct pci_controller *pci_hose;
34
wdenk492b9e72004-08-01 23:02:45 +000035void
Matthew McClintockf5e4f282006-06-28 10:45:17 -050036pci_mpc85xx_init(struct pci_controller *board_hose)
wdenk9c53f402003-10-15 23:53:47 +000037{
Matthew McClintockf5e4f282006-06-28 10:45:17 -050038 u16 reg16;
39 u32 dev;
40
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020041 volatile ccsr_pcix_t *pcix = (void *)(CONFIG_SYS_MPC85xx_PCIX_ADDR);
Matthew McClintock5b948822006-10-11 15:13:01 -050042#ifdef CONFIG_MPC85XX_PCI2
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020043 volatile ccsr_pcix_t *pcix2 = (void *)(CONFIG_SYS_MPC85xx_PCIX2_ADDR);
Matthew McClintock5b948822006-10-11 15:13:01 -050044#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020045 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
Matthew McClintockf5e4f282006-06-28 10:45:17 -050046 struct pci_controller * hose;
wdenk9c53f402003-10-15 23:53:47 +000047
Matthew McClintockf5e4f282006-06-28 10:45:17 -050048 pci_hose = board_hose;
49
50 hose = &pci_hose[0];
wdenk9c53f402003-10-15 23:53:47 +000051
wdenk13eb2212004-07-09 23:27:13 +000052 hose->first_busno = 0;
53 hose->last_busno = 0xff;
wdenk9c53f402003-10-15 23:53:47 +000054
wdenk492b9e72004-08-01 23:02:45 +000055 pci_setup_indirect(hose,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020056 (CONFIG_SYS_IMMR+0x8000),
57 (CONFIG_SYS_IMMR+0x8004));
wdenk9c53f402003-10-15 23:53:47 +000058
Matthew McClintockf5e4f282006-06-28 10:45:17 -050059 /*
60 * Hose scan.
61 */
62 dev = PCI_BDF(hose->first_busno, 0, 0);
63 pci_hose_read_config_word (hose, dev, PCI_COMMAND, &reg16);
64 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
65 pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
66
67 /*
68 * Clear non-reserved bits in status register.
69 */
70 pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
71
Peter Tyseraf7c3e32008-12-01 13:47:12 -060072 if (!(gur->pordevsr & MPC85xx_PORDEVSR_PCI1)) {
Matthew McClintockf5e4f282006-06-28 10:45:17 -050073 /* PCI-X init */
Matthew McClintock5817a862006-06-28 10:47:03 -050074 if (CONFIG_SYS_CLK_FREQ < 66000000)
75 printf("PCI-X will only work at 66 MHz\n");
76
Matthew McClintockf5e4f282006-06-28 10:45:17 -050077 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
78 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
79 pci_hose_write_config_word(hose, dev, PCIX_COMMAND, reg16);
80 }
81
Kumar Gala3fe80872008-12-02 16:08:36 -060082 pcix->potar1 = (CONFIG_SYS_PCI1_MEM_BUS >> 12) & 0x000fffff;
wdenk492b9e72004-08-01 23:02:45 +000083 pcix->potear1 = 0x00000000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020084 pcix->powbar1 = (CONFIG_SYS_PCI1_MEM_PHYS >> 12) & 0x000fffff;
wdenk13eb2212004-07-09 23:27:13 +000085 pcix->powbear1 = 0x00000000;
Matthew McClintockf5e4f282006-06-28 10:45:17 -050086 pcix->powar1 = (POWAR_EN | POWAR_MEM_READ |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020087 POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI1_MEM_SIZE) - 1));
wdenk9c53f402003-10-15 23:53:47 +000088
Kumar Gala64bb6d12008-12-02 16:08:37 -060089 pcix->potar2 = (CONFIG_SYS_PCI1_IO_BUS >> 12) & 0x000fffff;
wdenk492b9e72004-08-01 23:02:45 +000090 pcix->potear2 = 0x00000000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020091 pcix->powbar2 = (CONFIG_SYS_PCI1_IO_PHYS >> 12) & 0x000fffff;
wdenk13eb2212004-07-09 23:27:13 +000092 pcix->powbear2 = 0x00000000;
Matthew McClintockf5e4f282006-06-28 10:45:17 -050093 pcix->powar2 = (POWAR_EN | POWAR_IO_READ |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020094 POWAR_IO_WRITE | (__ilog2(CONFIG_SYS_PCI1_IO_SIZE) - 1));
wdenk9c53f402003-10-15 23:53:47 +000095
wdenk13eb2212004-07-09 23:27:13 +000096 pcix->pitar1 = 0x00000000;
97 pcix->piwbar1 = 0x00000000;
Matthew McClintockf5e4f282006-06-28 10:45:17 -050098 pcix->piwar1 = (PIWAR_EN | PIWAR_PF | PIWAR_LOCAL |
99 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP | PIWAR_MEM_2G);
wdenk9c53f402003-10-15 23:53:47 +0000100
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500101 pcix->powar3 = 0;
102 pcix->powar4 = 0;
103 pcix->piwar2 = 0;
104 pcix->piwar3 = 0;
wdenk0424e5d2004-10-10 20:23:57 +0000105
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500106 pci_set_region(hose->regions + 0,
Kumar Gala3fe80872008-12-02 16:08:36 -0600107 CONFIG_SYS_PCI1_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200108 CONFIG_SYS_PCI1_MEM_PHYS,
109 CONFIG_SYS_PCI1_MEM_SIZE,
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500110 PCI_REGION_MEM);
Stefan Roese8c695512005-11-07 13:43:06 +0100111
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500112 pci_set_region(hose->regions + 1,
Kumar Gala64bb6d12008-12-02 16:08:37 -0600113 CONFIG_SYS_PCI1_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200114 CONFIG_SYS_PCI1_IO_PHYS,
115 CONFIG_SYS_PCI1_IO_SIZE,
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500116 PCI_REGION_IO);
117
118 hose->region_count = 2;
119
120 pci_register_hose(hose);
Stefan Roese8c695512005-11-07 13:43:06 +0100121
York Sunee38a222016-11-16 11:24:45 -0800122#if defined(CONFIG_TARGET_MPC8555CDS) || defined(CONFIG_TARGET_MPC8541CDS)
wdenk0424e5d2004-10-10 20:23:57 +0000123 /*
124 * This is a SW workaround for an apparent HW problem
125 * in the PCI controller on the MPC85555/41 CDS boards.
126 * The first config cycle must be to a valid, known
127 * device on the PCI bus in order to trick the PCI
128 * controller state machine into a known valid state.
129 * Without this, the first config cycle has the chance
130 * of hanging the controller permanently, just leaving
131 * it in a semi-working state, or leaving it working.
132 *
133 * Pick on the Tundra, Device 17, to get it right.
134 */
135 {
136 u8 header_type;
137
138 pci_hose_read_config_byte(hose,
Randy Vinson1dfd6d92007-02-27 19:42:22 -0700139 PCI_BDF(0,BRIDGE_ID,0),
wdenk0424e5d2004-10-10 20:23:57 +0000140 PCI_HEADER_TYPE,
141 &header_type);
142 }
wdenk0424e5d2004-10-10 20:23:57 +0000143#endif
144
wdenk492b9e72004-08-01 23:02:45 +0000145 hose->last_busno = pci_hose_scan(hose);
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500146
147#ifdef CONFIG_MPC85XX_PCI2
148 hose = &pci_hose[1];
149
150 hose->first_busno = pci_hose[0].last_busno + 1;
151 hose->last_busno = 0xff;
152
153 pci_setup_indirect(hose,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200154 (CONFIG_SYS_IMMR+0x9000),
155 (CONFIG_SYS_IMMR+0x9004));
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500156
157 dev = PCI_BDF(hose->first_busno, 0, 0);
158 pci_hose_read_config_word (hose, dev, PCI_COMMAND, &reg16);
159 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
160 pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16);
161
162 /*
163 * Clear non-reserved bits in status register.
164 */
165 pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff);
166
Kumar Gala3fe80872008-12-02 16:08:36 -0600167 pcix2->potar1 = (CONFIG_SYS_PCI2_MEM_BUS >> 12) & 0x000fffff;
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500168 pcix2->potear1 = 0x00000000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200169 pcix2->powbar1 = (CONFIG_SYS_PCI2_MEM_PHYS >> 12) & 0x000fffff;
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500170 pcix2->powbear1 = 0x00000000;
171 pcix2->powar1 = (POWAR_EN | POWAR_MEM_READ |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200172 POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI2_MEM_SIZE) - 1));
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500173
Kumar Gala64bb6d12008-12-02 16:08:37 -0600174 pcix2->potar2 = (CONFIG_SYS_PCI2_IO_BUS >> 12) & 0x000fffff;
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500175 pcix2->potear2 = 0x00000000;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200176 pcix2->powbar2 = (CONFIG_SYS_PCI2_IO_PHYS >> 12) & 0x000fffff;
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500177 pcix2->powbear2 = 0x00000000;
178 pcix2->powar2 = (POWAR_EN | POWAR_IO_READ |
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200179 POWAR_IO_WRITE | (__ilog2(CONFIG_SYS_PCI2_IO_SIZE) - 1));
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500180
181 pcix2->pitar1 = 0x00000000;
182 pcix2->piwbar1 = 0x00000000;
183 pcix2->piwar1 = (PIWAR_EN | PIWAR_PF | PIWAR_LOCAL |
184 PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP | PIWAR_MEM_2G);
185
186 pcix2->powar3 = 0;
187 pcix2->powar4 = 0;
188 pcix2->piwar2 = 0;
189 pcix2->piwar3 = 0;
190
191 pci_set_region(hose->regions + 0,
Kumar Gala3fe80872008-12-02 16:08:36 -0600192 CONFIG_SYS_PCI2_MEM_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200193 CONFIG_SYS_PCI2_MEM_PHYS,
194 CONFIG_SYS_PCI2_MEM_SIZE,
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500195 PCI_REGION_MEM);
196
197 pci_set_region(hose->regions + 1,
Kumar Gala64bb6d12008-12-02 16:08:37 -0600198 CONFIG_SYS_PCI2_IO_BUS,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200199 CONFIG_SYS_PCI2_IO_PHYS,
200 CONFIG_SYS_PCI2_IO_SIZE,
Matthew McClintockf5e4f282006-06-28 10:45:17 -0500201 PCI_REGION_IO);
202
203 hose->region_count = 2;
204
205 /*
206 * Hose scan.
207 */
208 pci_register_hose(hose);
209
210 hose->last_busno = pci_hose_scan(hose);
211#endif
wdenk9c53f402003-10-15 23:53:47 +0000212}
Kumar Gala591ac072009-09-02 09:00:50 -0500213#endif /* !CONFIG_FSL_PCI_INIT */