Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1 | /* |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 2 | * (C) Copyright 2006 - 2008 |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * Copyright (c) 2005 Cisco Systems. All rights reserved. |
| 6 | * Roland Dreier <rolandd@cisco.com> |
| 7 | * |
| 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | */ |
| 22 | |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 23 | /* define DEBUG for debugging output (obviously ;-)) */ |
Stefan Roese | ff68f66 | 2007-10-05 09:22:33 +0200 | [diff] [blame] | 24 | #if 0 |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 25 | #define DEBUG |
| 26 | #endif |
| 27 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 28 | #include <common.h> |
| 29 | #include <pci.h> |
Stefan Roese | b578fb4 | 2008-07-10 11:38:26 +0200 | [diff] [blame] | 30 | #include <ppc4xx.h> |
| 31 | #include <asm/processor.h> |
| 32 | #include <asm-ppc/io.h> |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 33 | |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 34 | #if (defined(CONFIG_440SPE) || defined(CONFIG_405EX) || \ |
| 35 | defined(CONFIG_460EX) || defined(CONFIG_460GT)) && \ |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 36 | defined(CONFIG_PCI) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 37 | |
Stefan Roese | c7c6da2 | 2007-10-03 07:34:10 +0200 | [diff] [blame] | 38 | #include <asm/4xx_pcie.h> |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 39 | |
| 40 | enum { |
| 41 | PTYPE_ENDPOINT = 0x0, |
| 42 | PTYPE_LEGACY_ENDPOINT = 0x1, |
| 43 | PTYPE_ROOT_PORT = 0x4, |
| 44 | |
| 45 | LNKW_X1 = 0x1, |
| 46 | LNKW_X4 = 0x4, |
| 47 | LNKW_X8 = 0x8 |
| 48 | }; |
| 49 | |
Stefan Roese | d4cb2d1 | 2007-10-13 16:43:23 +0200 | [diff] [blame] | 50 | static int validate_endpoint(struct pci_controller *hose) |
| 51 | { |
| 52 | if (hose->cfg_data == (u8 *)CFG_PCIE0_CFGBASE) |
| 53 | return (is_end_point(0)); |
| 54 | else if (hose->cfg_data == (u8 *)CFG_PCIE1_CFGBASE) |
| 55 | return (is_end_point(1)); |
| 56 | #if CFG_PCIE_NR_PORTS > 2 |
| 57 | else if (hose->cfg_data == (u8 *)CFG_PCIE2_CFGBASE) |
| 58 | return (is_end_point(2)); |
| 59 | #endif |
| 60 | |
| 61 | return 0; |
| 62 | } |
| 63 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 64 | static u8* pcie_get_base(struct pci_controller *hose, unsigned int devfn) |
| 65 | { |
| 66 | u8 *base = (u8*)hose->cfg_data; |
| 67 | |
| 68 | /* use local configuration space for the first bus */ |
| 69 | if (PCI_BUS(devfn) == 0) { |
| 70 | if (hose->cfg_data == (u8*)CFG_PCIE0_CFGBASE) |
| 71 | base = (u8*)CFG_PCIE0_XCFGBASE; |
| 72 | if (hose->cfg_data == (u8*)CFG_PCIE1_CFGBASE) |
| 73 | base = (u8*)CFG_PCIE1_XCFGBASE; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 74 | #if CFG_PCIE_NR_PORTS > 2 |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 75 | if (hose->cfg_data == (u8*)CFG_PCIE2_CFGBASE) |
| 76 | base = (u8*)CFG_PCIE2_XCFGBASE; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 77 | #endif |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | return base; |
| 81 | } |
| 82 | |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 83 | static void pcie_dmer_disable(void) |
Grzegorz Bernacki | c924098 | 2007-07-31 18:51:48 +0200 | [diff] [blame] | 84 | { |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 85 | mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE), |
| 86 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) | GPL_DMER_MASK_DISA); |
| 87 | mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE), |
| 88 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) | GPL_DMER_MASK_DISA); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 89 | #if CFG_PCIE_NR_PORTS > 2 |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 90 | mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE), |
| 91 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) | GPL_DMER_MASK_DISA); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 92 | #endif |
Grzegorz Bernacki | c924098 | 2007-07-31 18:51:48 +0200 | [diff] [blame] | 93 | } |
| 94 | |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 95 | static void pcie_dmer_enable(void) |
Grzegorz Bernacki | c924098 | 2007-07-31 18:51:48 +0200 | [diff] [blame] | 96 | { |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 97 | mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE0_BASE), |
| 98 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) & ~GPL_DMER_MASK_DISA); |
| 99 | mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE1_BASE), |
| 100 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) & ~GPL_DMER_MASK_DISA); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 101 | #if CFG_PCIE_NR_PORTS > 2 |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 102 | mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE2_BASE), |
| 103 | mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) & ~GPL_DMER_MASK_DISA); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 104 | #endif |
Grzegorz Bernacki | c924098 | 2007-07-31 18:51:48 +0200 | [diff] [blame] | 105 | } |
| 106 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 107 | static int pcie_read_config(struct pci_controller *hose, unsigned int devfn, |
| 108 | int offset, int len, u32 *val) { |
| 109 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 110 | u8 *address; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 111 | *val = 0; |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 112 | |
Stefan Roese | d4cb2d1 | 2007-10-13 16:43:23 +0200 | [diff] [blame] | 113 | if (validate_endpoint(hose)) |
| 114 | return 0; /* No upstream config access */ |
| 115 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 116 | /* |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 117 | * Bus numbers are relative to hose->first_busno |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 118 | */ |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 119 | devfn -= PCI_BDF(hose->first_busno, 0, 0); |
| 120 | |
| 121 | /* |
| 122 | * NOTICE: configuration space ranges are currenlty mapped only for |
| 123 | * the first 16 buses, so such limit must be imposed. In case more |
| 124 | * buses are required the TLB settings in board/amcc/<board>/init.S |
| 125 | * need to be altered accordingly (one bus takes 1 MB of memory space). |
| 126 | */ |
| 127 | if (PCI_BUS(devfn) >= 16) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 128 | return 0; |
| 129 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 130 | /* |
| 131 | * Only single device/single function is supported for the primary and |
| 132 | * secondary buses of the 440SPe host bridge. |
| 133 | */ |
| 134 | if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) && |
| 135 | ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1))) |
| 136 | return 0; |
Stefan Roese | 738815c | 2007-10-02 11:44:46 +0200 | [diff] [blame] | 137 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 138 | address = pcie_get_base(hose, devfn); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 139 | offset += devfn << 4; |
| 140 | |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 141 | /* |
| 142 | * Reading from configuration space of non-existing device can |
| 143 | * generate transaction errors. For the read duration we suppress |
| 144 | * assertion of machine check exceptions to avoid those. |
| 145 | */ |
| 146 | pcie_dmer_disable (); |
| 147 | |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 148 | debug("%s: cfg_data=%08x offset=%08x\n", __func__, hose->cfg_data, offset); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 149 | switch (len) { |
| 150 | case 1: |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 151 | *val = in_8(hose->cfg_data + offset); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 152 | break; |
| 153 | case 2: |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 154 | *val = in_le16((u16 *)(hose->cfg_data + offset)); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 155 | break; |
| 156 | default: |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 157 | *val = in_le32((u32*)(hose->cfg_data + offset)); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 158 | break; |
| 159 | } |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 160 | |
| 161 | pcie_dmer_enable (); |
| 162 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 163 | return 0; |
| 164 | } |
| 165 | |
| 166 | static int pcie_write_config(struct pci_controller *hose, unsigned int devfn, |
| 167 | int offset, int len, u32 val) { |
| 168 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 169 | u8 *address; |
Stefan Roese | 738815c | 2007-10-02 11:44:46 +0200 | [diff] [blame] | 170 | |
Stefan Roese | d4cb2d1 | 2007-10-13 16:43:23 +0200 | [diff] [blame] | 171 | if (validate_endpoint(hose)) |
| 172 | return 0; /* No upstream config access */ |
| 173 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 174 | /* |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 175 | * Bus numbers are relative to hose->first_busno |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 176 | */ |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 177 | devfn -= PCI_BDF(hose->first_busno, 0, 0); |
Stefan Roese | 738815c | 2007-10-02 11:44:46 +0200 | [diff] [blame] | 178 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 179 | /* |
| 180 | * Same constraints as in pcie_read_config(). |
| 181 | */ |
| 182 | if (PCI_BUS(devfn) >= 16) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 183 | return 0; |
| 184 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 185 | if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) && |
| 186 | ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1))) |
| 187 | return 0; |
Stefan Roese | 738815c | 2007-10-02 11:44:46 +0200 | [diff] [blame] | 188 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 189 | address = pcie_get_base(hose, devfn); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 190 | offset += devfn << 4; |
| 191 | |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 192 | /* |
| 193 | * Suppress MCK exceptions, similar to pcie_read_config() |
| 194 | */ |
| 195 | pcie_dmer_disable (); |
| 196 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 197 | switch (len) { |
| 198 | case 1: |
| 199 | out_8(hose->cfg_data + offset, val); |
| 200 | break; |
| 201 | case 2: |
| 202 | out_le16((u16 *)(hose->cfg_data + offset), val); |
| 203 | break; |
| 204 | default: |
| 205 | out_le32((u32 *)(hose->cfg_data + offset), val); |
| 206 | break; |
| 207 | } |
Grzegorz Bernacki | 15ee473 | 2007-09-07 17:46:18 +0200 | [diff] [blame] | 208 | |
| 209 | pcie_dmer_enable (); |
| 210 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | int pcie_read_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 *val) |
| 215 | { |
| 216 | u32 v; |
| 217 | int rv; |
| 218 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 219 | rv = pcie_read_config(hose, dev, offset, 1, &v); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 220 | *val = (u8)v; |
| 221 | return rv; |
| 222 | } |
| 223 | |
| 224 | int pcie_read_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 *val) |
| 225 | { |
| 226 | u32 v; |
| 227 | int rv; |
| 228 | |
| 229 | rv = pcie_read_config(hose, dev, offset, 2, &v); |
| 230 | *val = (u16)v; |
| 231 | return rv; |
| 232 | } |
| 233 | |
| 234 | int pcie_read_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 *val) |
| 235 | { |
| 236 | u32 v; |
| 237 | int rv; |
| 238 | |
| 239 | rv = pcie_read_config(hose, dev, offset, 3, &v); |
| 240 | *val = (u32)v; |
| 241 | return rv; |
| 242 | } |
| 243 | |
| 244 | int pcie_write_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 val) |
| 245 | { |
| 246 | return pcie_write_config(hose,(u32)dev,offset,1,val); |
| 247 | } |
| 248 | |
| 249 | int pcie_write_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 val) |
| 250 | { |
| 251 | return pcie_write_config(hose,(u32)dev,offset,2,(u32 )val); |
| 252 | } |
| 253 | |
| 254 | int pcie_write_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 val) |
| 255 | { |
| 256 | return pcie_write_config(hose,(u32)dev,offset,3,(u32 )val); |
| 257 | } |
| 258 | |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 259 | #if defined(CONFIG_440SPE) |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 260 | static void ppc4xx_setup_utl(u32 port) { |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 261 | |
| 262 | volatile void *utl_base = NULL; |
| 263 | |
| 264 | /* |
| 265 | * Map UTL registers |
| 266 | */ |
| 267 | switch (port) { |
| 268 | case 0: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 269 | mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x0000000c); |
| 270 | mtdcr(DCRN_PEGPL_REGBAL(PCIE0), 0x20000000); |
| 271 | mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 272 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 273 | break; |
| 274 | |
| 275 | case 1: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 276 | mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x0000000c); |
| 277 | mtdcr(DCRN_PEGPL_REGBAL(PCIE1), 0x20001000); |
| 278 | mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 279 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 280 | break; |
| 281 | |
| 282 | case 2: |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 283 | mtdcr(DCRN_PEGPL_REGBAH(PCIE2), 0x0000000c); |
| 284 | mtdcr(DCRN_PEGPL_REGBAL(PCIE2), 0x20002000); |
| 285 | mtdcr(DCRN_PEGPL_REGMSK(PCIE2), 0x00007001); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 286 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE2), 0x68782800); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 287 | break; |
| 288 | } |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 289 | utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port); |
Wolfgang Denk | 1685091 | 2006-08-27 18:10:01 +0200 | [diff] [blame] | 290 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 291 | /* |
| 292 | * Set buffer allocations and then assert VRB and TXE. |
| 293 | */ |
| 294 | out_be32(utl_base + PEUTL_OUTTR, 0x08000000); |
| 295 | out_be32(utl_base + PEUTL_INTR, 0x02000000); |
| 296 | out_be32(utl_base + PEUTL_OPDBSZ, 0x10000000); |
| 297 | out_be32(utl_base + PEUTL_PBBSZ, 0x53000000); |
| 298 | out_be32(utl_base + PEUTL_IPHBSZ, 0x08000000); |
| 299 | out_be32(utl_base + PEUTL_IPDBSZ, 0x10000000); |
| 300 | out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000); |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 301 | out_be32(utl_base + PEUTL_PCTL, 0x80800066); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | static int check_error(void) |
| 305 | { |
| 306 | u32 valPE0, valPE1, valPE2; |
| 307 | int err = 0; |
| 308 | |
| 309 | /* SDR0_PEGPLLLCT1 reset */ |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 310 | if (!(valPE0 = SDR_READ(PESDR0_PLLLCT1) & 0x01000000)) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 311 | printf("PCIE: SDR0_PEGPLLLCT1 reset error 0x%x\n", valPE0); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 312 | |
| 313 | valPE0 = SDR_READ(PESDR0_RCSSET); |
| 314 | valPE1 = SDR_READ(PESDR1_RCSSET); |
| 315 | valPE2 = SDR_READ(PESDR2_RCSSET); |
| 316 | |
| 317 | /* SDR0_PExRCSSET rstgu */ |
| 318 | if (!(valPE0 & 0x01000000) || |
| 319 | !(valPE1 & 0x01000000) || |
| 320 | !(valPE2 & 0x01000000)) { |
| 321 | printf("PCIE: SDR0_PExRCSSET rstgu error\n"); |
| 322 | err = -1; |
| 323 | } |
| 324 | |
| 325 | /* SDR0_PExRCSSET rstdl */ |
| 326 | if (!(valPE0 & 0x00010000) || |
| 327 | !(valPE1 & 0x00010000) || |
| 328 | !(valPE2 & 0x00010000)) { |
| 329 | printf("PCIE: SDR0_PExRCSSET rstdl error\n"); |
| 330 | err = -1; |
| 331 | } |
| 332 | |
| 333 | /* SDR0_PExRCSSET rstpyn */ |
| 334 | if ((valPE0 & 0x00001000) || |
| 335 | (valPE1 & 0x00001000) || |
| 336 | (valPE2 & 0x00001000)) { |
| 337 | printf("PCIE: SDR0_PExRCSSET rstpyn error\n"); |
| 338 | err = -1; |
| 339 | } |
| 340 | |
| 341 | /* SDR0_PExRCSSET hldplb */ |
| 342 | if ((valPE0 & 0x10000000) || |
| 343 | (valPE1 & 0x10000000) || |
| 344 | (valPE2 & 0x10000000)) { |
| 345 | printf("PCIE: SDR0_PExRCSSET hldplb error\n"); |
| 346 | err = -1; |
| 347 | } |
| 348 | |
| 349 | /* SDR0_PExRCSSET rdy */ |
| 350 | if ((valPE0 & 0x00100000) || |
| 351 | (valPE1 & 0x00100000) || |
| 352 | (valPE2 & 0x00100000)) { |
| 353 | printf("PCIE: SDR0_PExRCSSET rdy error\n"); |
| 354 | err = -1; |
| 355 | } |
| 356 | |
| 357 | /* SDR0_PExRCSSET shutdown */ |
| 358 | if ((valPE0 & 0x00000100) || |
| 359 | (valPE1 & 0x00000100) || |
| 360 | (valPE2 & 0x00000100)) { |
| 361 | printf("PCIE: SDR0_PExRCSSET shutdown error\n"); |
| 362 | err = -1; |
| 363 | } |
| 364 | return err; |
| 365 | } |
| 366 | |
| 367 | /* |
| 368 | * Initialize PCI Express core |
| 369 | */ |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 370 | int ppc4xx_init_pcie(void) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 371 | { |
| 372 | int time_out = 20; |
| 373 | |
| 374 | /* Set PLL clock receiver to LVPECL */ |
| 375 | SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) | 1 << 28); |
| 376 | |
| 377 | if (check_error()) |
| 378 | return -1; |
| 379 | |
| 380 | if (!(SDR_READ(PESDR0_PLLLCT2) & 0x10000)) |
| 381 | { |
| 382 | printf("PCIE: PESDR_PLLCT2 resistance calibration failed (0x%08x)\n", |
| 383 | SDR_READ(PESDR0_PLLLCT2)); |
| 384 | return -1; |
| 385 | } |
| 386 | /* De-assert reset of PCIe PLL, wait for lock */ |
| 387 | SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) & ~(1 << 24)); |
| 388 | udelay(3); |
| 389 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 390 | while (time_out) { |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 391 | if (!(SDR_READ(PESDR0_PLLLCT3) & 0x10000000)) { |
| 392 | time_out--; |
| 393 | udelay(1); |
| 394 | } else |
| 395 | break; |
| 396 | } |
| 397 | if (!time_out) { |
| 398 | printf("PCIE: VCO output not locked\n"); |
| 399 | return -1; |
| 400 | } |
| 401 | return 0; |
| 402 | } |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 403 | #endif |
| 404 | |
| 405 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 406 | static void ppc4xx_setup_utl(u32 port) |
| 407 | { |
| 408 | volatile void *utl_base = NULL; |
| 409 | |
| 410 | /* |
| 411 | * Map UTL registers at 0x0801_n000 (4K 0xfff mask) PEGPLn_REGMSK |
| 412 | */ |
| 413 | switch (port) { |
| 414 | case 0: |
| 415 | mtdcr(DCRN_PEGPL_REGBAH(PCIE0), U64_TO_U32_HIGH(CFG_PCIE0_UTLBASE)); |
| 416 | mtdcr(DCRN_PEGPL_REGBAL(PCIE0), U64_TO_U32_LOW(CFG_PCIE0_UTLBASE)); |
| 417 | mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001); /* BAM 11100000=4KB */ |
| 418 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0); |
| 419 | break; |
| 420 | |
| 421 | case 1: |
| 422 | mtdcr(DCRN_PEGPL_REGBAH(PCIE1), U64_TO_U32_HIGH(CFG_PCIE0_UTLBASE)); |
| 423 | mtdcr(DCRN_PEGPL_REGBAL(PCIE1), U64_TO_U32_LOW(CFG_PCIE0_UTLBASE) |
| 424 | + 0x1000); |
| 425 | mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001); /* BAM 11100000=4KB */ |
| 426 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0); |
| 427 | break; |
| 428 | } |
| 429 | utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port); |
| 430 | |
| 431 | /* |
| 432 | * Set buffer allocations and then assert VRB and TXE. |
| 433 | */ |
| 434 | out_be32(utl_base + PEUTL_PBCTL, 0x0800000c); /* PLBME, CRRE */ |
| 435 | out_be32(utl_base + PEUTL_OUTTR, 0x08000000); |
| 436 | out_be32(utl_base + PEUTL_INTR, 0x02000000); |
| 437 | out_be32(utl_base + PEUTL_OPDBSZ, 0x04000000); /* OPD = 512 Bytes */ |
| 438 | out_be32(utl_base + PEUTL_PBBSZ, 0x00000000); /* Max 512 Bytes */ |
| 439 | out_be32(utl_base + PEUTL_IPHBSZ, 0x02000000); |
| 440 | out_be32(utl_base + PEUTL_IPDBSZ, 0x04000000); /* IPD = 512 Bytes */ |
| 441 | out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000); |
| 442 | out_be32(utl_base + PEUTL_PCTL, 0x80800066); /* VRB,TXE,timeout=default */ |
| 443 | } |
| 444 | |
| 445 | /* |
| 446 | * TODO: double check PCI express SDR based on the latest user manual |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 447 | * Some registers specified here no longer exist.. has to be |
| 448 | * updated based on the final EAS spec. |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 449 | */ |
| 450 | static int check_error(void) |
| 451 | { |
| 452 | u32 valPE0, valPE1; |
| 453 | int err = 0; |
| 454 | |
| 455 | valPE0 = SDR_READ(SDRN_PESDR_RCSSET(0)); |
| 456 | valPE1 = SDR_READ(SDRN_PESDR_RCSSET(1)); |
| 457 | |
| 458 | /* SDR0_PExRCSSET rstgu */ |
| 459 | if (!(valPE0 & PESDRx_RCSSET_RSTGU) || !(valPE1 & PESDRx_RCSSET_RSTGU)) { |
| 460 | printf("PCIE: SDR0_PExRCSSET rstgu error\n"); |
| 461 | err = -1; |
| 462 | } |
| 463 | |
| 464 | /* SDR0_PExRCSSET rstdl */ |
| 465 | if (!(valPE0 & PESDRx_RCSSET_RSTDL) || !(valPE1 & PESDRx_RCSSET_RSTDL)) { |
| 466 | printf("PCIE: SDR0_PExRCSSET rstdl error\n"); |
| 467 | err = -1; |
| 468 | } |
| 469 | |
| 470 | /* SDR0_PExRCSSET rstpyn */ |
| 471 | if ((valPE0 & PESDRx_RCSSET_RSTPYN) || (valPE1 & PESDRx_RCSSET_RSTPYN)) { |
| 472 | printf("PCIE: SDR0_PExRCSSET rstpyn error\n"); |
| 473 | err = -1; |
| 474 | } |
| 475 | |
| 476 | /* SDR0_PExRCSSET hldplb */ |
| 477 | if ((valPE0 & PESDRx_RCSSET_HLDPLB) || (valPE1 & PESDRx_RCSSET_HLDPLB)) { |
| 478 | printf("PCIE: SDR0_PExRCSSET hldplb error\n"); |
| 479 | err = -1; |
| 480 | } |
| 481 | |
| 482 | /* SDR0_PExRCSSET rdy */ |
| 483 | if ((valPE0 & PESDRx_RCSSET_RDY) || (valPE1 & PESDRx_RCSSET_RDY)) { |
| 484 | printf("PCIE: SDR0_PExRCSSET rdy error\n"); |
| 485 | err = -1; |
| 486 | } |
| 487 | |
| 488 | return err; |
| 489 | } |
| 490 | |
| 491 | /* |
| 492 | * Initialize PCI Express core as described in User Manual |
| 493 | * TODO: double check PE SDR PLL Register with the updated user manual. |
| 494 | */ |
| 495 | int ppc4xx_init_pcie(void) |
| 496 | { |
| 497 | if (check_error()) |
| 498 | return -1; |
| 499 | |
| 500 | return 0; |
| 501 | } |
| 502 | #endif /* CONFIG_460EX */ |
| 503 | |
| 504 | #if defined(CONFIG_405EX) |
Stefan Roese | f31d38b | 2007-11-16 14:16:54 +0100 | [diff] [blame] | 505 | static void ppc4xx_setup_utl(u32 port) |
| 506 | { |
| 507 | u32 utl_base; |
| 508 | |
| 509 | /* |
| 510 | * Map UTL registers at 0xef4f_n000 (4K 0xfff mask) PEGPLn_REGMSK |
| 511 | */ |
| 512 | switch (port) { |
| 513 | case 0: |
| 514 | mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x00000000); |
| 515 | mtdcr(DCRN_PEGPL_REGBAL(PCIE0), CFG_PCIE0_UTLBASE); |
Stefan Roese | 653811a | 2007-11-18 14:44:44 +0100 | [diff] [blame] | 516 | mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001); /* 4k region, valid */ |
Stefan Roese | f31d38b | 2007-11-16 14:16:54 +0100 | [diff] [blame] | 517 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0); |
| 518 | break; |
| 519 | |
| 520 | case 1: |
| 521 | mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x00000000); |
| 522 | mtdcr(DCRN_PEGPL_REGBAL(PCIE1), CFG_PCIE1_UTLBASE); |
Stefan Roese | 653811a | 2007-11-18 14:44:44 +0100 | [diff] [blame] | 523 | mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001); /* 4k region, valid */ |
Stefan Roese | f31d38b | 2007-11-16 14:16:54 +0100 | [diff] [blame] | 524 | mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0); |
| 525 | |
| 526 | break; |
| 527 | } |
| 528 | utl_base = (port==0) ? CFG_PCIE0_UTLBASE : CFG_PCIE1_UTLBASE; |
| 529 | |
| 530 | /* |
| 531 | * Set buffer allocations and then assert VRB and TXE. |
| 532 | */ |
| 533 | out_be32((u32 *)(utl_base + PEUTL_OUTTR), 0x02000000); |
| 534 | out_be32((u32 *)(utl_base + PEUTL_INTR), 0x02000000); |
| 535 | out_be32((u32 *)(utl_base + PEUTL_OPDBSZ), 0x04000000); |
| 536 | out_be32((u32 *)(utl_base + PEUTL_PBBSZ), 0x21000000); |
| 537 | out_be32((u32 *)(utl_base + PEUTL_IPHBSZ), 0x02000000); |
| 538 | out_be32((u32 *)(utl_base + PEUTL_IPDBSZ), 0x04000000); |
| 539 | out_be32((u32 *)(utl_base + PEUTL_RCIRQEN), 0x00f00000); |
| 540 | out_be32((u32 *)(utl_base + PEUTL_PCTL), 0x80800066); |
| 541 | |
| 542 | out_be32((u32 *)(utl_base + PEUTL_PBCTL), 0x0800000c); |
| 543 | out_be32((u32 *)(utl_base + PEUTL_RCSTA), |
| 544 | in_be32((u32 *)(utl_base + PEUTL_RCSTA)) | 0x000040000); |
| 545 | } |
| 546 | |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 547 | int ppc4xx_init_pcie(void) |
| 548 | { |
| 549 | /* |
| 550 | * Nothing to do on 405EX |
| 551 | */ |
| 552 | return 0; |
| 553 | } |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 554 | #endif /* CONFIG_405EX */ |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 555 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 556 | /* |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 557 | * Board-specific pcie initialization |
| 558 | * Platform code can reimplement ppc4xx_init_pcie_port_hw() if needed |
| 559 | */ |
| 560 | |
| 561 | /* |
| 562 | * Initialize various parts of the PCI Express core for our port: |
| 563 | * |
| 564 | * - Set as a root port and enable max width |
| 565 | * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4). |
| 566 | * - Set up UTL configuration. |
| 567 | * - Increase SERDES drive strength to levels suggested by AMCC. |
| 568 | * - De-assert RSTPYN, RSTDL and RSTGU. |
| 569 | * |
| 570 | * NOTICE for 440SPE revB chip: PESDRn_UTLSET2 is not set - we leave it |
| 571 | * with default setting 0x11310000. The register has new fields, |
| 572 | * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core |
| 573 | * hang. |
| 574 | */ |
| 575 | #if defined(CONFIG_440SPE) |
| 576 | int __ppc4xx_init_pcie_port_hw(int port, int rootport) |
| 577 | { |
| 578 | u32 val = 1 << 24; |
| 579 | u32 utlset1; |
| 580 | |
| 581 | if (rootport) { |
| 582 | val = PTYPE_ROOT_PORT << 20; |
| 583 | utlset1 = 0x21222222; |
| 584 | } else { |
| 585 | val = PTYPE_LEGACY_ENDPOINT << 20; |
| 586 | utlset1 = 0x20222222; |
| 587 | } |
| 588 | |
| 589 | if (port == 0) |
| 590 | val |= LNKW_X8 << 12; |
| 591 | else |
| 592 | val |= LNKW_X4 << 12; |
| 593 | |
| 594 | SDR_WRITE(SDRN_PESDR_DLPSET(port), val); |
| 595 | SDR_WRITE(SDRN_PESDR_UTLSET1(port), utlset1); |
| 596 | if (!ppc440spe_revB()) |
| 597 | SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x11000000); |
| 598 | SDR_WRITE(SDRN_PESDR_HSSL0SET1(port), 0x35000000); |
| 599 | SDR_WRITE(SDRN_PESDR_HSSL1SET1(port), 0x35000000); |
| 600 | SDR_WRITE(SDRN_PESDR_HSSL2SET1(port), 0x35000000); |
| 601 | SDR_WRITE(SDRN_PESDR_HSSL3SET1(port), 0x35000000); |
| 602 | if (port == 0) { |
| 603 | SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000); |
| 604 | SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000); |
| 605 | SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000); |
| 606 | SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000); |
| 607 | } |
| 608 | SDR_WRITE(SDRN_PESDR_RCSSET(port), (SDR_READ(SDRN_PESDR_RCSSET(port)) & |
| 609 | ~(1 << 24 | 1 << 16)) | 1 << 12); |
| 610 | |
| 611 | return 0; |
| 612 | } |
| 613 | #endif /* CONFIG_440SPE */ |
| 614 | |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 615 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 616 | int __ppc4xx_init_pcie_port_hw(int port, int rootport) |
| 617 | { |
Stefan Roese | dd1c552 | 2008-07-01 17:03:19 +0200 | [diff] [blame] | 618 | u32 val; |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 619 | u32 utlset1; |
| 620 | |
Stefan Roese | dd1c552 | 2008-07-01 17:03:19 +0200 | [diff] [blame] | 621 | if (rootport) |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 622 | val = PTYPE_ROOT_PORT << 20; |
Stefan Roese | dd1c552 | 2008-07-01 17:03:19 +0200 | [diff] [blame] | 623 | else |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 624 | val = PTYPE_LEGACY_ENDPOINT << 20; |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 625 | |
| 626 | if (port == 0) { |
| 627 | val |= LNKW_X1 << 12; |
Stefan Roese | dd1c552 | 2008-07-01 17:03:19 +0200 | [diff] [blame] | 628 | utlset1 = 0x20000000; |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 629 | } else { |
| 630 | val |= LNKW_X4 << 12; |
Stefan Roese | dd1c552 | 2008-07-01 17:03:19 +0200 | [diff] [blame] | 631 | utlset1 = 0x20101101; |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | SDR_WRITE(SDRN_PESDR_DLPSET(port), val); |
| 635 | SDR_WRITE(SDRN_PESDR_UTLSET1(port), utlset1); |
| 636 | SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x01210000); |
| 637 | |
| 638 | switch (port) { |
| 639 | case 0: |
| 640 | SDR_WRITE(PESDR0_L0CDRCTL, 0x00003230); |
| 641 | SDR_WRITE(PESDR0_L0DRV, 0x00000136); |
| 642 | SDR_WRITE(PESDR0_L0CLK, 0x00000006); |
| 643 | |
| 644 | SDR_WRITE(PESDR0_PHY_CTL_RST,0x10000000); |
| 645 | break; |
| 646 | |
| 647 | case 1: |
| 648 | SDR_WRITE(PESDR1_L0CDRCTL, 0x00003230); |
| 649 | SDR_WRITE(PESDR1_L1CDRCTL, 0x00003230); |
| 650 | SDR_WRITE(PESDR1_L2CDRCTL, 0x00003230); |
| 651 | SDR_WRITE(PESDR1_L3CDRCTL, 0x00003230); |
| 652 | SDR_WRITE(PESDR1_L0DRV, 0x00000136); |
| 653 | SDR_WRITE(PESDR1_L1DRV, 0x00000136); |
| 654 | SDR_WRITE(PESDR1_L2DRV, 0x00000136); |
| 655 | SDR_WRITE(PESDR1_L3DRV, 0x00000136); |
| 656 | SDR_WRITE(PESDR1_L0CLK, 0x00000006); |
| 657 | SDR_WRITE(PESDR1_L1CLK, 0x00000006); |
| 658 | SDR_WRITE(PESDR1_L2CLK, 0x00000006); |
| 659 | SDR_WRITE(PESDR1_L3CLK, 0x00000006); |
| 660 | |
| 661 | SDR_WRITE(PESDR1_PHY_CTL_RST,0x10000000); |
| 662 | break; |
| 663 | } |
| 664 | |
| 665 | SDR_WRITE(SDRN_PESDR_RCSSET(port), SDR_READ(SDRN_PESDR_RCSSET(port)) | |
| 666 | (PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTPYN)); |
| 667 | |
| 668 | /* Poll for PHY reset */ |
| 669 | switch (port) { |
| 670 | case 0: |
| 671 | while (!(SDR_READ(PESDR0_RSTSTA) & 0x1)) |
| 672 | udelay(10); |
| 673 | break; |
| 674 | case 1: |
| 675 | while (!(SDR_READ(PESDR1_RSTSTA) & 0x1)) |
| 676 | udelay(10); |
| 677 | break; |
| 678 | } |
| 679 | |
| 680 | SDR_WRITE(SDRN_PESDR_RCSSET(port), |
| 681 | (SDR_READ(SDRN_PESDR_RCSSET(port)) & |
| 682 | ~(PESDRx_RCSSET_RSTGU | PESDRx_RCSSET_RSTDL)) | |
| 683 | PESDRx_RCSSET_RSTPYN); |
| 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | #endif /* CONFIG_440SPE */ |
| 688 | |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 689 | #if defined(CONFIG_405EX) |
| 690 | int __ppc4xx_init_pcie_port_hw(int port, int rootport) |
| 691 | { |
| 692 | u32 val; |
| 693 | |
| 694 | if (rootport) |
| 695 | val = 0x00401000; |
| 696 | else |
| 697 | val = 0x00101000; |
| 698 | |
| 699 | SDR_WRITE(SDRN_PESDR_DLPSET(port), val); |
Stefan Roese | 7d0a406 | 2007-11-13 08:06:11 +0100 | [diff] [blame] | 700 | SDR_WRITE(SDRN_PESDR_UTLSET1(port), 0x00000000); |
| 701 | SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x01010000); |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 702 | SDR_WRITE(SDRN_PESDR_PHYSET1(port), 0x720F0000); |
| 703 | SDR_WRITE(SDRN_PESDR_PHYSET2(port), 0x70600003); |
| 704 | |
| 705 | /* Assert the PE0_PHY reset */ |
| 706 | SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01010000); |
| 707 | udelay(1000); |
| 708 | |
| 709 | /* deassert the PE0_hotreset */ |
Stefan Roese | 5cb4af4 | 2007-10-18 07:39:38 +0200 | [diff] [blame] | 710 | if (is_end_point(port)) |
| 711 | SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01111000); |
| 712 | else |
| 713 | SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01101000); |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 714 | |
| 715 | /* poll for phy !reset */ |
| 716 | while (!(SDR_READ(SDRN_PESDR_PHYSTA(port)) & 0x00001000)) |
| 717 | ; |
| 718 | |
| 719 | /* deassert the PE0_gpl_utl_reset */ |
| 720 | SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x00101000); |
| 721 | |
| 722 | if (port == 0) |
| 723 | mtdcr(DCRN_PEGPL_CFG(PCIE0), 0x10000000); /* guarded on */ |
| 724 | else |
| 725 | mtdcr(DCRN_PEGPL_CFG(PCIE1), 0x10000000); /* guarded on */ |
| 726 | |
| 727 | return 0; |
| 728 | } |
| 729 | #endif /* CONFIG_405EX */ |
| 730 | |
| 731 | int ppc4xx_init_pcie_port_hw(int port, int rootport) |
Stefan Roese | 653811a | 2007-11-18 14:44:44 +0100 | [diff] [blame] | 732 | __attribute__((weak, alias("__ppc4xx_init_pcie_port_hw"))); |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 733 | |
| 734 | /* |
| 735 | * We map PCI Express configuration access into the 512MB regions |
| 736 | * |
| 737 | * NOTICE: revB is very strict about PLB real addressess and ranges to |
| 738 | * be mapped for config space; it seems to only work with d_nnnn_nnnn |
| 739 | * range (hangs the core upon config transaction attempts when set |
| 740 | * otherwise) while revA uses c_nnnn_nnnn. |
| 741 | * |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 742 | * For 440SPe revA: |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 743 | * PCIE0: 0xc_4000_0000 |
| 744 | * PCIE1: 0xc_8000_0000 |
| 745 | * PCIE2: 0xc_c000_0000 |
| 746 | * |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 747 | * For 440SPe revB: |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 748 | * PCIE0: 0xd_0000_0000 |
| 749 | * PCIE1: 0xd_2000_0000 |
| 750 | * PCIE2: 0xd_4000_0000 |
| 751 | * |
| 752 | * For 405EX: |
| 753 | * PCIE0: 0xa000_0000 |
| 754 | * PCIE1: 0xc000_0000 |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 755 | * |
| 756 | * For 460EX/GT: |
| 757 | * PCIE0: 0xd_0000_0000 |
| 758 | * PCIE1: 0xd_2000_0000 |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 759 | */ |
| 760 | static inline u64 ppc4xx_get_cfgaddr(int port) |
| 761 | { |
| 762 | #if defined(CONFIG_405EX) |
| 763 | if (port == 0) |
| 764 | return (u64)CFG_PCIE0_CFGBASE; |
| 765 | else |
| 766 | return (u64)CFG_PCIE1_CFGBASE; |
| 767 | #endif |
| 768 | #if defined(CONFIG_440SPE) |
| 769 | if (ppc440spe_revB()) { |
| 770 | switch (port) { |
| 771 | default: /* to satisfy compiler */ |
| 772 | case 0: |
| 773 | return 0x0000000d00000000ULL; |
| 774 | case 1: |
| 775 | return 0x0000000d20000000ULL; |
| 776 | case 2: |
| 777 | return 0x0000000d40000000ULL; |
| 778 | } |
| 779 | } else { |
| 780 | switch (port) { |
| 781 | default: /* to satisfy compiler */ |
| 782 | case 0: |
| 783 | return 0x0000000c40000000ULL; |
| 784 | case 1: |
| 785 | return 0x0000000c80000000ULL; |
| 786 | case 2: |
| 787 | return 0x0000000cc0000000ULL; |
| 788 | } |
| 789 | } |
| 790 | #endif |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 791 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 792 | if (port == 0) |
| 793 | return 0x0000000d00000000ULL; |
| 794 | else |
| 795 | return 0x0000000d20000000ULL; |
| 796 | #endif |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 797 | } |
| 798 | |
| 799 | /* |
| 800 | * 4xx boards as end point and root point setup |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 801 | * and |
| 802 | * testing inbound and out bound windows |
| 803 | * |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 804 | * 4xx boards can be plugged into another 4xx boards or you can get PCI-E |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 805 | * cable which can be used to setup loop back from one port to another port. |
| 806 | * Please rememeber that unless there is a endpoint plugged in to root port it |
| 807 | * will not initialize. It is the same in case of endpoint , unless there is |
| 808 | * root port attached it will not initialize. |
| 809 | * |
| 810 | * In this release of software all the PCI-E ports are configured as either |
| 811 | * endpoint or rootpoint.In future we will have support for selective ports |
| 812 | * setup as endpoint and root point in single board. |
| 813 | * |
| 814 | * Once your board came up as root point , you can verify by reading |
| 815 | * /proc/bus/pci/devices. Where you can see the configuration registers |
| 816 | * of end point device attached to the port. |
| 817 | * |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 818 | * Enpoint cofiguration can be verified by connecting 4xx board to any |
| 819 | * host or another 4xx board. Then try to scan the device. In case of |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 820 | * linux use "lspci" or appripriate os command. |
| 821 | * |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 822 | * How do I verify the inbound and out bound windows ? (4xx to 4xx) |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 823 | * in this configuration inbound and outbound windows are setup to access |
| 824 | * sram memroy area. SRAM is at 0x4 0000 0000 , on PLB bus. This address |
| 825 | * is mapped at 0x90000000. From u-boot prompt write data 0xb000 0000, |
| 826 | * This is waere your POM(PLB out bound memory window) mapped. then |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 827 | * read the data from other 4xx board's u-boot prompt at address |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 828 | * 0x9000 0000(SRAM). Data should match. |
| 829 | * In case of inbound , write data to u-boot command prompt at 0xb000 0000 |
| 830 | * which is mapped to 0x4 0000 0000. Now on rootpoint yucca u-boot prompt check |
| 831 | * data at 0x9000 0000(SRAM).Data should match. |
| 832 | */ |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 833 | int ppc4xx_init_pcie_port(int port, int rootport) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 834 | { |
| 835 | static int core_init; |
| 836 | volatile u32 val = 0; |
| 837 | int attempts; |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 838 | u64 addr; |
| 839 | u32 low, high; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 840 | |
| 841 | if (!core_init) { |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 842 | if (ppc4xx_init_pcie()) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 843 | return -1; |
Stefan Roese | d4cb2d1 | 2007-10-13 16:43:23 +0200 | [diff] [blame] | 844 | ++core_init; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | /* |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 848 | * Initialize various parts of the PCI Express core for our port |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 849 | */ |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 850 | ppc4xx_init_pcie_port_hw(port, rootport); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 851 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 852 | /* |
| 853 | * Notice: the following delay has critical impact on device |
| 854 | * initialization - if too short (<50ms) the link doesn't get up. |
| 855 | */ |
| 856 | mdelay(100); |
| 857 | |
Stefan Roese | 6d95289 | 2007-10-03 21:16:32 +0200 | [diff] [blame] | 858 | val = SDR_READ(SDRN_PESDR_RCSSTS(port)); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 859 | if (val & (1 << 20)) { |
| 860 | printf("PCIE%d: PGRST failed %08x\n", port, val); |
| 861 | return -1; |
| 862 | } |
| 863 | |
| 864 | /* |
| 865 | * Verify link is up |
| 866 | */ |
Stefan Roese | 6d95289 | 2007-10-03 21:16:32 +0200 | [diff] [blame] | 867 | val = SDR_READ(SDRN_PESDR_LOOP(port)); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 868 | if (!(val & 0x00001000)) { |
| 869 | printf("PCIE%d: link is not up.\n", port); |
| 870 | return -1; |
| 871 | } |
| 872 | |
| 873 | /* |
| 874 | * Setup UTL registers - but only on revA! |
| 875 | * We use default settings for revB chip. |
| 876 | */ |
| 877 | if (!ppc440spe_revB()) |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 878 | ppc4xx_setup_utl(port); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 879 | |
| 880 | /* |
| 881 | * We map PCI Express configuration access into the 512MB regions |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 882 | */ |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 883 | addr = ppc4xx_get_cfgaddr(port); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 884 | low = U64_TO_U32_LOW(addr); |
| 885 | high = U64_TO_U32_HIGH(addr); |
Rafal Jaworowski | 36b904a | 2006-08-11 12:35:52 +0200 | [diff] [blame] | 886 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 887 | switch (port) { |
| 888 | case 0: |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 889 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), high); |
| 890 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), low); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 891 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */ |
| 892 | break; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 893 | case 1: |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 894 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), high); |
| 895 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), low); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 896 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */ |
| 897 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 898 | #if CFG_PCIE_NR_PORTS > 2 |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 899 | case 2: |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 900 | mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), high); |
| 901 | mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), low); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 902 | mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */ |
| 903 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 904 | #endif |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /* |
| 908 | * Check for VC0 active and assert RDY. |
| 909 | */ |
| 910 | attempts = 10; |
Stefan Roese | 6d95289 | 2007-10-03 21:16:32 +0200 | [diff] [blame] | 911 | while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 16))) { |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 912 | if (!(attempts--)) { |
| 913 | printf("PCIE%d: VC0 not active\n", port); |
| 914 | return -1; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 915 | } |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 916 | mdelay(1000); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 917 | } |
Stefan Roese | 6d95289 | 2007-10-03 21:16:32 +0200 | [diff] [blame] | 918 | SDR_WRITE(SDRN_PESDR_RCSSET(port), |
| 919 | SDR_READ(SDRN_PESDR_RCSSET(port)) | 1 << 20); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 920 | mdelay(100); |
| 921 | |
| 922 | return 0; |
| 923 | } |
| 924 | |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 925 | int ppc4xx_init_pcie_rootport(int port) |
| 926 | { |
| 927 | return ppc4xx_init_pcie_port(port, 1); |
| 928 | } |
| 929 | |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 930 | int ppc4xx_init_pcie_endport(int port) |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 931 | { |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 932 | return ppc4xx_init_pcie_port(port, 0); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 933 | } |
| 934 | |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 935 | void ppc4xx_setup_pcie_rootpoint(struct pci_controller *hose, int port) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 936 | { |
| 937 | volatile void *mbase = NULL; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 938 | volatile void *rmbase = NULL; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 939 | |
| 940 | pci_set_ops(hose, |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 941 | pcie_read_config_byte, |
| 942 | pcie_read_config_word, |
| 943 | pcie_read_config_dword, |
| 944 | pcie_write_config_byte, |
| 945 | pcie_write_config_word, |
| 946 | pcie_write_config_dword); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 947 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 948 | switch (port) { |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 949 | case 0: |
| 950 | mbase = (u32 *)CFG_PCIE0_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 951 | rmbase = (u32 *)CFG_PCIE0_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 952 | hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE; |
| 953 | break; |
| 954 | case 1: |
| 955 | mbase = (u32 *)CFG_PCIE1_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 956 | rmbase = (u32 *)CFG_PCIE1_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 957 | hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE; |
| 958 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 959 | #if CFG_PCIE_NR_PORTS > 2 |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 960 | case 2: |
| 961 | mbase = (u32 *)CFG_PCIE2_XCFGBASE; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 962 | rmbase = (u32 *)CFG_PCIE2_CFGBASE; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 963 | hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE; |
| 964 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 965 | #endif |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 966 | } |
| 967 | |
| 968 | /* |
| 969 | * Set bus numbers on our root port |
| 970 | */ |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 971 | out_8((u8 *)mbase + PCI_PRIMARY_BUS, 0); |
| 972 | out_8((u8 *)mbase + PCI_SECONDARY_BUS, 1); |
| 973 | out_8((u8 *)mbase + PCI_SUBORDINATE_BUS, 1); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 974 | |
| 975 | /* |
| 976 | * Set up outbound translation to hose->mem_space from PLB |
| 977 | * addresses at an offset of 0xd_0000_0000. We set the low |
| 978 | * bits of the mask to 11 to turn off splitting into 8 |
| 979 | * subregions and to enable the outbound translation. |
| 980 | */ |
| 981 | out_le32(mbase + PECFG_POM0LAH, 0x00000000); |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 982 | out_le32(mbase + PECFG_POM0LAL, CFG_PCIE_MEMBASE + |
| 983 | port * CFG_PCIE_MEMSIZE); |
| 984 | debug("PECFG_POM0LA=%08x.%08x\n", in_le32(mbase + PECFG_POM0LAH), |
| 985 | in_le32(mbase + PECFG_POM0LAL)); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 986 | |
| 987 | switch (port) { |
| 988 | case 0: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 989 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), CFG_PCIE_ADDR_HIGH); |
| 990 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 991 | port * CFG_PCIE_MEMSIZE); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 992 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff); |
| 993 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 994 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 995 | debug("0:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n", |
| 996 | mfdcr(DCRN_PEGPL_OMR1BAH(PCIE0)), |
| 997 | mfdcr(DCRN_PEGPL_OMR1BAL(PCIE0)), |
| 998 | mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE0)), |
| 999 | mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE0))); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1000 | break; |
| 1001 | case 1: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1002 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), CFG_PCIE_ADDR_HIGH); |
| 1003 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1004 | port * CFG_PCIE_MEMSIZE); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1005 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff); |
| 1006 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1007 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 1008 | debug("1:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n", |
| 1009 | mfdcr(DCRN_PEGPL_OMR1BAH(PCIE1)), |
| 1010 | mfdcr(DCRN_PEGPL_OMR1BAL(PCIE1)), |
| 1011 | mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE1)), |
| 1012 | mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE1))); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1013 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1014 | #if CFG_PCIE_NR_PORTS > 2 |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1015 | case 2: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1016 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), CFG_PCIE_ADDR_HIGH); |
| 1017 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1018 | port * CFG_PCIE_MEMSIZE); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1019 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff); |
| 1020 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1021 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 4dbee8a | 2007-10-05 07:57:20 +0200 | [diff] [blame] | 1022 | debug("2:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n", |
| 1023 | mfdcr(DCRN_PEGPL_OMR1BAH(PCIE2)), |
| 1024 | mfdcr(DCRN_PEGPL_OMR1BAL(PCIE2)), |
| 1025 | mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE2)), |
| 1026 | mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE2))); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1027 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1028 | #endif |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | /* Set up 16GB inbound memory window at 0 */ |
| 1032 | out_le32(mbase + PCI_BASE_ADDRESS_0, 0); |
| 1033 | out_le32(mbase + PCI_BASE_ADDRESS_1, 0); |
| 1034 | out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc); |
| 1035 | out_le32(mbase + PECFG_BAR0LMPA, 0); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1036 | |
| 1037 | out_le32(mbase + PECFG_PIM01SAH, 0xffff0000); |
| 1038 | out_le32(mbase + PECFG_PIM01SAL, 0x00000000); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1039 | out_le32(mbase + PECFG_PIM0LAL, 0); |
| 1040 | out_le32(mbase + PECFG_PIM0LAH, 0); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1041 | out_le32(mbase + PECFG_PIM1LAL, 0x00000000); |
| 1042 | out_le32(mbase + PECFG_PIM1LAH, 0x00000004); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1043 | out_le32(mbase + PECFG_PIMEN, 0x1); |
| 1044 | |
| 1045 | /* Enable I/O, Mem, and Busmaster cycles */ |
| 1046 | out_le16((u16 *)(mbase + PCI_COMMAND), |
| 1047 | in_le16((u16 *)(mbase + PCI_COMMAND)) | |
| 1048 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
Stefan Roese | 738815c | 2007-10-02 11:44:46 +0200 | [diff] [blame] | 1049 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 1050 | /* Set Device and Vendor Id */ |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1051 | out_le16(mbase + 0x200, 0xaaa0 + port); |
| 1052 | out_le16(mbase + 0x202, 0xbed0 + port); |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 1053 | |
| 1054 | /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */ |
| 1055 | out_le32(mbase + 0x208, 0x06040001); |
| 1056 | |
Stefan Roese | 19e93b1 | 2007-10-05 14:23:43 +0200 | [diff] [blame] | 1057 | printf("PCIE%d: successfully set as root-complex\n", port); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1058 | } |
| 1059 | |
Stefan Roese | 026f711 | 2007-10-03 07:48:09 +0200 | [diff] [blame] | 1060 | int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port) |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1061 | { |
| 1062 | volatile void *mbase = NULL; |
| 1063 | int attempts = 0; |
| 1064 | |
| 1065 | pci_set_ops(hose, |
| 1066 | pcie_read_config_byte, |
| 1067 | pcie_read_config_word, |
| 1068 | pcie_read_config_dword, |
| 1069 | pcie_write_config_byte, |
| 1070 | pcie_write_config_word, |
| 1071 | pcie_write_config_dword); |
| 1072 | |
| 1073 | switch (port) { |
| 1074 | case 0: |
| 1075 | mbase = (u32 *)CFG_PCIE0_XCFGBASE; |
| 1076 | hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE; |
| 1077 | break; |
| 1078 | case 1: |
| 1079 | mbase = (u32 *)CFG_PCIE1_XCFGBASE; |
| 1080 | hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE; |
| 1081 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1082 | #if defined(CFG_PCIE2_CFGBASE) |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1083 | case 2: |
| 1084 | mbase = (u32 *)CFG_PCIE2_XCFGBASE; |
| 1085 | hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE; |
| 1086 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1087 | #endif |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | /* |
| 1091 | * Set up outbound translation to hose->mem_space from PLB |
| 1092 | * addresses at an offset of 0xd_0000_0000. We set the low |
| 1093 | * bits of the mask to 11 to turn off splitting into 8 |
| 1094 | * subregions and to enable the outbound translation. |
| 1095 | */ |
| 1096 | out_le32(mbase + PECFG_POM0LAH, 0x00001ff8); |
| 1097 | out_le32(mbase + PECFG_POM0LAL, 0x00001000); |
| 1098 | |
| 1099 | switch (port) { |
| 1100 | case 0: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1101 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), CFG_PCIE_ADDR_HIGH); |
| 1102 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1103 | port * CFG_PCIE_MEMSIZE); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1104 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff); |
| 1105 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1106 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1107 | break; |
| 1108 | case 1: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1109 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), CFG_PCIE_ADDR_HIGH); |
| 1110 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1111 | port * CFG_PCIE_MEMSIZE); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1112 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff); |
| 1113 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1114 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1115 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1116 | #if CFG_PCIE_NR_PORTS > 2 |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1117 | case 2: |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1118 | mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), CFG_PCIE_ADDR_HIGH); |
| 1119 | mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE + |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1120 | port * CFG_PCIE_MEMSIZE); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1121 | mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff); |
| 1122 | mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1123 | ~(CFG_PCIE_MEMSIZE - 1) | 3); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1124 | break; |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1125 | #endif |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1126 | } |
| 1127 | |
Stefan Roese | 5cb4af4 | 2007-10-18 07:39:38 +0200 | [diff] [blame] | 1128 | /* Set up 64MB inbound memory window at 0 */ |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1129 | out_le32(mbase + PCI_BASE_ADDRESS_0, 0); |
| 1130 | out_le32(mbase + PCI_BASE_ADDRESS_1, 0); |
Stefan Roese | 5cb4af4 | 2007-10-18 07:39:38 +0200 | [diff] [blame] | 1131 | |
| 1132 | out_le32(mbase + PECFG_PIM01SAH, 0xffffffff); |
| 1133 | out_le32(mbase + PECFG_PIM01SAL, 0xfc000000); |
| 1134 | |
| 1135 | /* Setup BAR0 */ |
| 1136 | out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffff); |
| 1137 | out_le32(mbase + PECFG_BAR0LMPA, 0xfc000000 | PCI_BASE_ADDRESS_MEM_TYPE_64); |
| 1138 | |
| 1139 | /* Disable BAR1 & BAR2 */ |
| 1140 | out_le32(mbase + PECFG_BAR1MPA, 0); |
| 1141 | out_le32(mbase + PECFG_BAR2HMPA, 0); |
| 1142 | out_le32(mbase + PECFG_BAR2LMPA, 0); |
| 1143 | |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1144 | out_le32(mbase + PECFG_PIM0LAL, U64_TO_U32_LOW(CFG_PCIE_INBOUND_BASE)); |
| 1145 | out_le32(mbase + PECFG_PIM0LAH, U64_TO_U32_HIGH(CFG_PCIE_INBOUND_BASE)); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1146 | out_le32(mbase + PECFG_PIMEN, 0x1); |
| 1147 | |
| 1148 | /* Enable I/O, Mem, and Busmaster cycles */ |
| 1149 | out_le16((u16 *)(mbase + PCI_COMMAND), |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1150 | in_le16((u16 *)(mbase + PCI_COMMAND)) | |
| 1151 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER); |
Stefan Roese | 9792377 | 2007-10-05 09:18:23 +0200 | [diff] [blame] | 1152 | out_le16(mbase + 0x200, 0xcaad); /* Setting vendor ID */ |
| 1153 | out_le16(mbase + 0x202, 0xfeed); /* Setting device ID */ |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1154 | |
Stefan Roese | 5cb4af4 | 2007-10-18 07:39:38 +0200 | [diff] [blame] | 1155 | /* Set Class Code to Processor/PPC */ |
| 1156 | out_le32(mbase + 0x208, 0x0b200001); |
| 1157 | |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1158 | attempts = 10; |
Stefan Roese | 6d95289 | 2007-10-03 21:16:32 +0200 | [diff] [blame] | 1159 | while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 8))) { |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1160 | if (!(attempts--)) { |
| 1161 | printf("PCIE%d: BME not active\n", port); |
| 1162 | return -1; |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1163 | } |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1164 | mdelay(1000); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1165 | } |
Stefan Roese | 03d344b | 2007-10-03 10:38:09 +0200 | [diff] [blame] | 1166 | |
Stefan Roese | 19e93b1 | 2007-10-05 14:23:43 +0200 | [diff] [blame] | 1167 | printf("PCIE%d: successfully set as endpoint\n", port); |
Stefan Roese | 2b393b0 | 2006-08-29 08:05:15 +0200 | [diff] [blame] | 1168 | |
| 1169 | return 0; |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 1170 | } |
Stefan Roese | 5fb692c | 2007-01-18 10:25:34 +0100 | [diff] [blame] | 1171 | #endif /* CONFIG_440SPE && CONFIG_PCI */ |