Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #include <asm/mmu.h> |
| 14 | #include <asm/io.h> |
| 15 | #include <common.h> |
| 16 | #include <mpc83xx.h> |
| 17 | #include <pci.h> |
| 18 | #include <i2c.h> |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 19 | #include <fdt_support.h> |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 20 | #include <asm/fsl_i2c.h> |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 21 | #include <asm/fsl_serdes.h> |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 22 | |
| 23 | #if defined(CONFIG_PCI) |
| 24 | static struct pci_region pci_regions[] = { |
| 25 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | bus_start: CONFIG_SYS_PCI_MEM_BASE, |
| 27 | phys_start: CONFIG_SYS_PCI_MEM_PHYS, |
| 28 | size: CONFIG_SYS_PCI_MEM_SIZE, |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 29 | flags: PCI_REGION_MEM | PCI_REGION_PREFETCH |
| 30 | }, |
| 31 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 32 | bus_start: CONFIG_SYS_PCI_MMIO_BASE, |
| 33 | phys_start: CONFIG_SYS_PCI_MMIO_PHYS, |
| 34 | size: CONFIG_SYS_PCI_MMIO_SIZE, |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 35 | flags: PCI_REGION_MEM |
| 36 | }, |
| 37 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | bus_start: CONFIG_SYS_PCI_IO_BASE, |
| 39 | phys_start: CONFIG_SYS_PCI_IO_PHYS, |
| 40 | size: CONFIG_SYS_PCI_IO_SIZE, |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 41 | flags: PCI_REGION_IO |
| 42 | } |
| 43 | }; |
| 44 | |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 45 | static struct pci_region pcie_regions_0[] = { |
| 46 | { |
| 47 | .bus_start = CONFIG_SYS_PCIE1_MEM_BASE, |
| 48 | .phys_start = CONFIG_SYS_PCIE1_MEM_PHYS, |
| 49 | .size = CONFIG_SYS_PCIE1_MEM_SIZE, |
| 50 | .flags = PCI_REGION_MEM, |
| 51 | }, |
| 52 | { |
| 53 | .bus_start = CONFIG_SYS_PCIE1_IO_BASE, |
| 54 | .phys_start = CONFIG_SYS_PCIE1_IO_PHYS, |
| 55 | .size = CONFIG_SYS_PCIE1_IO_SIZE, |
| 56 | .flags = PCI_REGION_IO, |
| 57 | }, |
| 58 | }; |
| 59 | |
| 60 | static struct pci_region pcie_regions_1[] = { |
| 61 | { |
| 62 | .bus_start = CONFIG_SYS_PCIE2_MEM_BASE, |
| 63 | .phys_start = CONFIG_SYS_PCIE2_MEM_PHYS, |
| 64 | .size = CONFIG_SYS_PCIE2_MEM_SIZE, |
| 65 | .flags = PCI_REGION_MEM, |
| 66 | }, |
| 67 | { |
| 68 | .bus_start = CONFIG_SYS_PCIE2_IO_BASE, |
| 69 | .phys_start = CONFIG_SYS_PCIE2_IO_PHYS, |
| 70 | .size = CONFIG_SYS_PCIE2_IO_SIZE, |
| 71 | .flags = PCI_REGION_IO, |
| 72 | }, |
| 73 | }; |
| 74 | |
| 75 | static int is_pex_x2(void) |
| 76 | { |
| 77 | const char *pex_x2 = getenv("pex_x2"); |
| 78 | |
| 79 | if (pex_x2 && !strcmp(pex_x2, "yes")) |
| 80 | return 1; |
| 81 | return 0; |
| 82 | } |
| 83 | |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 84 | void pci_init_board(void) |
| 85 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR; |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 87 | volatile sysconf83xx_t *sysconf = &immr->sysconf; |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 88 | volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk; |
| 89 | volatile law83xx_t *pci_law = immr->sysconf.pcilaw; |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 90 | volatile law83xx_t *pcie_law = sysconf->pcielaw; |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 91 | struct pci_region *reg[] = { pci_regions }; |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 92 | struct pci_region *pcie_reg[] = { pcie_regions_0, pcie_regions_1, }; |
| 93 | u32 spridr = in_be32(&immr->sysconf.spridr); |
| 94 | int pex2 = is_pex_x2(); |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 95 | |
Anton Vorontsov | 00f7bba | 2008-10-02 19:17:33 +0400 | [diff] [blame] | 96 | if (board_pci_host_broken()) |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 97 | goto skip_pci; |
Anton Vorontsov | 00f7bba | 2008-10-02 19:17:33 +0400 | [diff] [blame] | 98 | |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 99 | /* Enable all 5 PCI_CLK_OUTPUTS */ |
| 100 | clk->occr |= 0xf8000000; |
| 101 | udelay(2000); |
| 102 | |
| 103 | /* Configure PCI Local Access Windows */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 104 | pci_law[0].bar = CONFIG_SYS_PCI_MEM_PHYS & LAWBAR_BAR; |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 105 | pci_law[0].ar = LBLAWAR_EN | LBLAWAR_512MB; |
| 106 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | pci_law[1].bar = CONFIG_SYS_PCI_IO_PHYS & LAWBAR_BAR; |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 108 | pci_law[1].ar = LBLAWAR_EN | LBLAWAR_1MB; |
| 109 | |
| 110 | udelay(2000); |
| 111 | |
| 112 | mpc83xx_pci_init(1, reg, 0); |
Anton Vorontsov | 8b34557 | 2009-01-08 04:26:19 +0300 | [diff] [blame] | 113 | skip_pci: |
| 114 | /* There is no PEX in MPC8379 parts. */ |
| 115 | if (PARTID_NO_E(spridr) == SPR_8379) |
| 116 | return; |
| 117 | |
| 118 | /* Configure the clock for PCIE controller */ |
| 119 | clrsetbits_be32(&clk->sccr, SCCR_PCIEXP1CM | SCCR_PCIEXP2CM, |
| 120 | SCCR_PCIEXP1CM_1 | SCCR_PCIEXP2CM_1); |
| 121 | |
| 122 | /* Deassert the resets in the control register */ |
| 123 | out_be32(&sysconf->pecr1, 0xE0008000); |
| 124 | if (!pex2) |
| 125 | out_be32(&sysconf->pecr2, 0xE0008000); |
| 126 | udelay(2000); |
| 127 | |
| 128 | /* Configure PCI Express Local Access Windows */ |
| 129 | out_be32(&pcie_law[0].bar, CONFIG_SYS_PCIE1_BASE & LAWBAR_BAR); |
| 130 | out_be32(&pcie_law[0].ar, LBLAWAR_EN | LBLAWAR_512MB); |
| 131 | |
| 132 | out_be32(&pcie_law[1].bar, CONFIG_SYS_PCIE2_BASE & LAWBAR_BAR); |
| 133 | out_be32(&pcie_law[1].ar, LBLAWAR_EN | LBLAWAR_512MB); |
| 134 | |
| 135 | if (pex2) |
| 136 | fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX_X2, |
| 137 | FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V); |
| 138 | else |
| 139 | fsl_setup_serdes(CONFIG_FSL_SERDES2, FSL_SERDES_PROTO_PEX, |
| 140 | FSL_SERDES_CLK_100, FSL_SERDES_VDD_1V); |
| 141 | |
| 142 | mpc83xx_pcie_init(pex2 ? 1 : 2, pcie_reg, 0); |
| 143 | } |
| 144 | |
| 145 | void ft_pcie_fixup(void *blob, bd_t *bd) |
| 146 | { |
| 147 | const char *status = "disabled (PCIE1 is x2)"; |
| 148 | |
| 149 | if (!is_pex_x2()) |
| 150 | return; |
| 151 | |
| 152 | do_fixup_by_path(blob, "pci2", "status", status, |
| 153 | strlen(status) + 1, 1); |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 154 | } |
| 155 | #endif /* CONFIG_PCI */ |