Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 1 | /* |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 2 | * Copyright (C) 2006-2009 Freescale Semiconductor, Inc. |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 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 | /* |
| 14 | * PCI Configuration space access support for MPC83xx PCI Bridge |
| 15 | */ |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 16 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 17 | #include <asm/mmu.h> |
| 18 | #include <asm/io.h> |
| 19 | #include <common.h> |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 20 | #include <mpc83xx.h> |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 21 | #include <pci.h> |
| 22 | #include <i2c.h> |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 23 | #include <asm/fsl_i2c.h> |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 24 | #include "../common/pq-mds-pib.h" |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 28 | static struct pci_region pci1_regions[] = { |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 29 | { |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 30 | bus_start: CONFIG_SYS_PCI1_MEM_BASE, |
| 31 | phys_start: CONFIG_SYS_PCI1_MEM_PHYS, |
| 32 | size: CONFIG_SYS_PCI1_MEM_SIZE, |
| 33 | flags: PCI_REGION_MEM | PCI_REGION_PREFETCH |
| 34 | }, |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 35 | { |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 36 | bus_start: CONFIG_SYS_PCI1_IO_BASE, |
| 37 | phys_start: CONFIG_SYS_PCI1_IO_PHYS, |
| 38 | size: CONFIG_SYS_PCI1_IO_SIZE, |
| 39 | flags: PCI_REGION_IO |
| 40 | }, |
| 41 | { |
| 42 | bus_start: CONFIG_SYS_PCI1_MMIO_BASE, |
| 43 | phys_start: CONFIG_SYS_PCI1_MMIO_PHYS, |
| 44 | size: CONFIG_SYS_PCI1_MMIO_SIZE, |
| 45 | flags: PCI_REGION_MEM |
| 46 | }, |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 47 | }; |
| 48 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 49 | #ifdef CONFIG_MPC83XX_PCI2 |
| 50 | static struct pci_region pci2_regions[] = { |
| 51 | { |
| 52 | bus_start: CONFIG_SYS_PCI2_MEM_BASE, |
| 53 | phys_start: CONFIG_SYS_PCI2_MEM_PHYS, |
| 54 | size: CONFIG_SYS_PCI2_MEM_SIZE, |
| 55 | flags: PCI_REGION_MEM | PCI_REGION_PREFETCH |
| 56 | }, |
| 57 | { |
| 58 | bus_start: CONFIG_SYS_PCI2_IO_BASE, |
| 59 | phys_start: CONFIG_SYS_PCI2_IO_PHYS, |
| 60 | size: CONFIG_SYS_PCI2_IO_SIZE, |
| 61 | flags: PCI_REGION_IO |
| 62 | }, |
| 63 | { |
| 64 | bus_start: CONFIG_SYS_PCI2_MMIO_BASE, |
| 65 | phys_start: CONFIG_SYS_PCI2_MMIO_PHYS, |
| 66 | size: CONFIG_SYS_PCI2_MMIO_SIZE, |
| 67 | flags: PCI_REGION_MEM |
| 68 | }, |
| 69 | }; |
| 70 | #endif |
| 71 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 72 | void pci_init_board(void) |
| 73 | #ifdef CONFIG_PCISLAVE |
| 74 | { |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 75 | volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR; |
| 76 | volatile law83xx_t *pci_law = immr->sysconf.pcilaw; |
| 77 | volatile pcictrl83xx_t *pci_ctrl = &immr->pci_ctrl[0]; |
| 78 | struct pci_region *reg[] = { pci1_regions }; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 79 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 80 | /* Configure PCI Local Access Windows */ |
| 81 | pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR; |
| 82 | pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M; |
| 83 | |
| 84 | pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR; |
| 85 | pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_1M; |
| 86 | |
Peter Tyser | 6aa3d3b | 2010-09-14 19:13:50 -0500 | [diff] [blame] | 87 | mpc83xx_pci_init(1, reg); |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 88 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 89 | /* |
| 90 | * Configure PCI Inbound Translation Windows |
| 91 | */ |
| 92 | pci_ctrl[0].pitar0 = 0x0; |
| 93 | pci_ctrl[0].pibar0 = 0x0; |
| 94 | pci_ctrl[0].piwar0 = PIWAR_EN | PIWAR_RTT_SNOOP | |
| 95 | PIWAR_WTT_SNOOP | PIWAR_IWS_4K; |
| 96 | |
| 97 | pci_ctrl[0].pitar1 = 0x0; |
| 98 | pci_ctrl[0].pibar1 = 0x0; |
| 99 | pci_ctrl[0].piebar1 = 0x0; |
| 100 | pci_ctrl[0].piwar1 &= ~PIWAR_EN; |
| 101 | |
| 102 | pci_ctrl[0].pitar2 = 0x0; |
| 103 | pci_ctrl[0].pibar2 = 0x0; |
| 104 | pci_ctrl[0].piebar2 = 0x0; |
| 105 | pci_ctrl[0].piwar2 &= ~PIWAR_EN; |
| 106 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 107 | /* Unlock the configuration bit */ |
| 108 | mpc83xx_pcislave_unlock(0); |
| 109 | printf("PCI: Agent mode enabled\n"); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 110 | } |
| 111 | #else |
| 112 | { |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 113 | volatile immap_t *immr = (volatile immap_t *)CONFIG_SYS_IMMR; |
| 114 | volatile clk83xx_t *clk = (volatile clk83xx_t *)&immr->clk; |
| 115 | volatile law83xx_t *pci_law = immr->sysconf.pcilaw; |
| 116 | #ifndef CONFIG_MPC83XX_PCI2 |
| 117 | struct pci_region *reg[] = { pci1_regions }; |
| 118 | #else |
| 119 | struct pci_region *reg[] = { pci1_regions, pci2_regions }; |
| 120 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 121 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 122 | /* initialize the PCA9555PW IO expander on the PIB board */ |
| 123 | pib_init(); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 124 | |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 125 | #if defined(CONFIG_PCI_66M) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 126 | clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2; |
| 127 | printf("PCI clock is 66MHz\n"); |
Wolfgang Denk | 2ae1824 | 2010-10-06 09:05:45 +0200 | [diff] [blame] | 128 | #elif defined(CONFIG_PCI_33M) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 129 | clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2 | |
| 130 | OCCR_PCICD0 | OCCR_PCICD1 | OCCR_PCICD2 | OCCR_PCICR; |
| 131 | printf("PCI clock is 33MHz\n"); |
| 132 | #else |
| 133 | clk->occr = OCCR_PCICOE0 | OCCR_PCICOE1 | OCCR_PCICOE2; |
| 134 | printf("PCI clock is 66MHz\n"); |
| 135 | #endif |
| 136 | udelay(2000); |
| 137 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 138 | /* Configure PCI Local Access Windows */ |
| 139 | pci_law[0].bar = CONFIG_SYS_PCI1_MEM_PHYS & LAWBAR_BAR; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 140 | pci_law[0].ar = LAWAR_EN | LAWAR_SIZE_512M; |
| 141 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 142 | pci_law[1].bar = CONFIG_SYS_PCI1_IO_PHYS & LAWBAR_BAR; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 143 | pci_law[1].ar = LAWAR_EN | LAWAR_SIZE_1M; |
| 144 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 145 | udelay(2000); |
| 146 | |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 147 | #ifndef CONFIG_MPC83XX_PCI2 |
Peter Tyser | 6aa3d3b | 2010-09-14 19:13:50 -0500 | [diff] [blame] | 148 | mpc83xx_pci_init(1, reg); |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 149 | #else |
Peter Tyser | 6aa3d3b | 2010-09-14 19:13:50 -0500 | [diff] [blame] | 150 | mpc83xx_pci_init(2, reg); |
Kim Phillips | 9993e19 | 2009-07-18 18:42:13 -0500 | [diff] [blame] | 151 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 152 | } |
| 153 | #endif /* CONFIG_PCISLAVE */ |