wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 1 | /* |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 2 | * Copyright 2004 Freescale Semiconductor. |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 3 | * Copyright (C) 2003 Motorola Inc. |
| 4 | * Xianghua Xiao (x.xiao@motorola.com) |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * PCI Configuration space access support for MPC85xx PCI Bridge |
| 11 | */ |
| 12 | #include <common.h> |
| 13 | #include <asm/cpm_85xx.h> |
| 14 | #include <pci.h> |
| 15 | |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 16 | #if !defined(CONFIG_FSL_PCI_INIT) |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 17 | |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 18 | #ifndef CONFIG_SYS_PCI1_MEM_BUS |
| 19 | #define CONFIG_SYS_PCI1_MEM_BUS CONFIG_SYS_PCI1_MEM_BASE |
| 20 | #endif |
| 21 | |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 22 | #ifndef CONFIG_SYS_PCI1_IO_BUS |
| 23 | #define CONFIG_SYS_PCI1_IO_BUS CONFIG_SYS_PCI1_IO_BASE |
| 24 | #endif |
| 25 | |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 26 | #ifndef CONFIG_SYS_PCI2_MEM_BUS |
| 27 | #define CONFIG_SYS_PCI2_MEM_BUS CONFIG_SYS_PCI2_MEM_BASE |
| 28 | #endif |
| 29 | |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 30 | #ifndef CONFIG_SYS_PCI2_IO_BUS |
| 31 | #define CONFIG_SYS_PCI2_IO_BUS CONFIG_SYS_PCI2_IO_BASE |
| 32 | #endif |
| 33 | |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 34 | static struct pci_controller *pci_hose; |
| 35 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 36 | void |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 37 | pci_mpc85xx_init(struct pci_controller *board_hose) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 38 | { |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 39 | u16 reg16; |
| 40 | u32 dev; |
| 41 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | volatile ccsr_pcix_t *pcix = (void *)(CONFIG_SYS_MPC85xx_PCIX_ADDR); |
Matthew McClintock | 7376eb8 | 2006-10-11 15:13:01 -0500 | [diff] [blame] | 43 | #ifdef CONFIG_MPC85XX_PCI2 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 44 | volatile ccsr_pcix_t *pcix2 = (void *)(CONFIG_SYS_MPC85xx_PCIX2_ADDR); |
Matthew McClintock | 7376eb8 | 2006-10-11 15:13:01 -0500 | [diff] [blame] | 45 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 47 | struct pci_controller * hose; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 48 | |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 49 | pci_hose = board_hose; |
| 50 | |
| 51 | hose = &pci_hose[0]; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 52 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 53 | hose->first_busno = 0; |
| 54 | hose->last_busno = 0xff; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 55 | |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 56 | pci_setup_indirect(hose, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | (CONFIG_SYS_IMMR+0x8000), |
| 58 | (CONFIG_SYS_IMMR+0x8004)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 59 | |
| 60 | /* |
| 61 | * Hose scan. |
| 62 | */ |
| 63 | dev = PCI_BDF(hose->first_busno, 0, 0); |
| 64 | pci_hose_read_config_word (hose, dev, PCI_COMMAND, ®16); |
| 65 | reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY; |
| 66 | pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16); |
| 67 | |
| 68 | /* |
| 69 | * Clear non-reserved bits in status register. |
| 70 | */ |
| 71 | pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff); |
| 72 | |
Peter Tyser | 9427ccd | 2008-12-01 13:47:12 -0600 | [diff] [blame] | 73 | if (!(gur->pordevsr & MPC85xx_PORDEVSR_PCI1)) { |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 74 | /* PCI-X init */ |
Matthew McClintock | 38433cc | 2006-06-28 10:47:03 -0500 | [diff] [blame] | 75 | if (CONFIG_SYS_CLK_FREQ < 66000000) |
| 76 | printf("PCI-X will only work at 66 MHz\n"); |
| 77 | |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 78 | reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ |
| 79 | | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E; |
| 80 | pci_hose_write_config_word(hose, dev, PCIX_COMMAND, reg16); |
| 81 | } |
| 82 | |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 83 | pcix->potar1 = (CONFIG_SYS_PCI1_MEM_BUS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 84 | pcix->potear1 = 0x00000000; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 85 | pcix->powbar1 = (CONFIG_SYS_PCI1_MEM_PHYS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 86 | pcix->powbear1 = 0x00000000; |
| 87 | pcix->powar1 = (POWAR_EN | POWAR_MEM_READ | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 88 | POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI1_MEM_SIZE) - 1)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 89 | |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 90 | pcix->potar2 = (CONFIG_SYS_PCI1_IO_BUS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 91 | pcix->potear2 = 0x00000000; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | pcix->powbar2 = (CONFIG_SYS_PCI1_IO_PHYS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 93 | pcix->powbear2 = 0x00000000; |
| 94 | pcix->powar2 = (POWAR_EN | POWAR_IO_READ | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 95 | POWAR_IO_WRITE | (__ilog2(CONFIG_SYS_PCI1_IO_SIZE) - 1)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 96 | |
| 97 | pcix->pitar1 = 0x00000000; |
| 98 | pcix->piwbar1 = 0x00000000; |
| 99 | pcix->piwar1 = (PIWAR_EN | PIWAR_PF | PIWAR_LOCAL | |
| 100 | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP | PIWAR_MEM_2G); |
| 101 | |
| 102 | pcix->powar3 = 0; |
| 103 | pcix->powar4 = 0; |
| 104 | pcix->piwar2 = 0; |
| 105 | pcix->piwar3 = 0; |
| 106 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 107 | pci_set_region(hose->regions + 0, |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 108 | CONFIG_SYS_PCI1_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 109 | CONFIG_SYS_PCI1_MEM_PHYS, |
| 110 | CONFIG_SYS_PCI1_MEM_SIZE, |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 111 | PCI_REGION_MEM); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 112 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 113 | pci_set_region(hose->regions + 1, |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 114 | CONFIG_SYS_PCI1_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 115 | CONFIG_SYS_PCI1_IO_PHYS, |
| 116 | CONFIG_SYS_PCI1_IO_SIZE, |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 117 | PCI_REGION_IO); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 118 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 119 | hose->region_count = 2; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 120 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 121 | pci_register_hose(hose); |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 122 | |
York Sun | 2f2d54b | 2016-11-16 11:24:45 -0800 | [diff] [blame] | 123 | #if defined(CONFIG_TARGET_MPC8555CDS) || defined(CONFIG_TARGET_MPC8541CDS) |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 124 | /* |
| 125 | * This is a SW workaround for an apparent HW problem |
| 126 | * in the PCI controller on the MPC85555/41 CDS boards. |
| 127 | * The first config cycle must be to a valid, known |
| 128 | * device on the PCI bus in order to trick the PCI |
| 129 | * controller state machine into a known valid state. |
| 130 | * Without this, the first config cycle has the chance |
| 131 | * of hanging the controller permanently, just leaving |
| 132 | * it in a semi-working state, or leaving it working. |
| 133 | * |
| 134 | * Pick on the Tundra, Device 17, to get it right. |
| 135 | */ |
| 136 | { |
| 137 | u8 header_type; |
| 138 | |
| 139 | pci_hose_read_config_byte(hose, |
Randy Vinson | 7f3f2bd | 2007-02-27 19:42:22 -0700 | [diff] [blame] | 140 | PCI_BDF(0,BRIDGE_ID,0), |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 141 | PCI_HEADER_TYPE, |
| 142 | &header_type); |
| 143 | } |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 144 | #endif |
| 145 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 146 | hose->last_busno = pci_hose_scan(hose); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 147 | |
| 148 | #ifdef CONFIG_MPC85XX_PCI2 |
| 149 | hose = &pci_hose[1]; |
| 150 | |
| 151 | hose->first_busno = pci_hose[0].last_busno + 1; |
| 152 | hose->last_busno = 0xff; |
| 153 | |
| 154 | pci_setup_indirect(hose, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 155 | (CONFIG_SYS_IMMR+0x9000), |
| 156 | (CONFIG_SYS_IMMR+0x9004)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 157 | |
| 158 | dev = PCI_BDF(hose->first_busno, 0, 0); |
| 159 | pci_hose_read_config_word (hose, dev, PCI_COMMAND, ®16); |
| 160 | reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY; |
| 161 | pci_hose_write_config_word(hose, dev, PCI_COMMAND, reg16); |
| 162 | |
| 163 | /* |
| 164 | * Clear non-reserved bits in status register. |
| 165 | */ |
| 166 | pci_hose_write_config_word(hose, dev, PCI_STATUS, 0xffff); |
| 167 | |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 168 | pcix2->potar1 = (CONFIG_SYS_PCI2_MEM_BUS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 169 | pcix2->potear1 = 0x00000000; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 170 | pcix2->powbar1 = (CONFIG_SYS_PCI2_MEM_PHYS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 171 | pcix2->powbear1 = 0x00000000; |
| 172 | pcix2->powar1 = (POWAR_EN | POWAR_MEM_READ | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 173 | POWAR_MEM_WRITE | (__ilog2(CONFIG_SYS_PCI2_MEM_SIZE) - 1)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 174 | |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 175 | pcix2->potar2 = (CONFIG_SYS_PCI2_IO_BUS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 176 | pcix2->potear2 = 0x00000000; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 177 | pcix2->powbar2 = (CONFIG_SYS_PCI2_IO_PHYS >> 12) & 0x000fffff; |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 178 | pcix2->powbear2 = 0x00000000; |
| 179 | pcix2->powar2 = (POWAR_EN | POWAR_IO_READ | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 180 | POWAR_IO_WRITE | (__ilog2(CONFIG_SYS_PCI2_IO_SIZE) - 1)); |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 181 | |
| 182 | pcix2->pitar1 = 0x00000000; |
| 183 | pcix2->piwbar1 = 0x00000000; |
| 184 | pcix2->piwar1 = (PIWAR_EN | PIWAR_PF | PIWAR_LOCAL | |
| 185 | PIWAR_READ_SNOOP | PIWAR_WRITE_SNOOP | PIWAR_MEM_2G); |
| 186 | |
| 187 | pcix2->powar3 = 0; |
| 188 | pcix2->powar4 = 0; |
| 189 | pcix2->piwar2 = 0; |
| 190 | pcix2->piwar3 = 0; |
| 191 | |
| 192 | pci_set_region(hose->regions + 0, |
Kumar Gala | 10795f4 | 2008-12-02 16:08:36 -0600 | [diff] [blame] | 193 | CONFIG_SYS_PCI2_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 194 | CONFIG_SYS_PCI2_MEM_PHYS, |
| 195 | CONFIG_SYS_PCI2_MEM_SIZE, |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 196 | PCI_REGION_MEM); |
| 197 | |
| 198 | pci_set_region(hose->regions + 1, |
Kumar Gala | 5f91ef6 | 2008-12-02 16:08:37 -0600 | [diff] [blame] | 199 | CONFIG_SYS_PCI2_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 200 | CONFIG_SYS_PCI2_IO_PHYS, |
| 201 | CONFIG_SYS_PCI2_IO_SIZE, |
Matthew McClintock | 0874546 | 2006-06-28 10:45:17 -0500 | [diff] [blame] | 202 | PCI_REGION_IO); |
| 203 | |
| 204 | hose->region_count = 2; |
| 205 | |
| 206 | /* |
| 207 | * Hose scan. |
| 208 | */ |
| 209 | pci_register_hose(hose); |
| 210 | |
| 211 | hose->last_busno = pci_hose_scan(hose); |
| 212 | #endif |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 213 | } |
Kumar Gala | 5052a77 | 2009-09-02 09:00:50 -0500 | [diff] [blame] | 214 | #endif /* !CONFIG_FSL_PCI_INIT */ |