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 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * PCI Configuration space access support for MPC85xx PCI Bridge |
| 27 | */ |
| 28 | #include <common.h> |
| 29 | #include <asm/cpm_85xx.h> |
| 30 | #include <pci.h> |
| 31 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 32 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 33 | #if defined(CONFIG_PCI) |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 34 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 35 | void |
| 36 | pci_mpc85xx_init(struct pci_controller *hose) |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 37 | { |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 38 | volatile immap_t *immap = (immap_t *)CFG_CCSRBAR; |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 39 | volatile ccsr_pcix_t *pcix = &immap->im_pcix; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 40 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 41 | u16 reg16; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 42 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 43 | hose->first_busno = 0; |
| 44 | hose->last_busno = 0xff; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 45 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 46 | pci_set_region(hose->regions + 0, |
| 47 | CFG_PCI1_MEM_BASE, |
| 48 | CFG_PCI1_MEM_PHYS, |
| 49 | CFG_PCI1_MEM_SIZE, |
| 50 | PCI_REGION_MEM); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 51 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 52 | pci_set_region(hose->regions + 1, |
| 53 | CFG_PCI1_IO_BASE, |
| 54 | CFG_PCI1_IO_PHYS, |
| 55 | CFG_PCI1_IO_SIZE, |
| 56 | PCI_REGION_IO); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 57 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 58 | hose->region_count = 2; |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 59 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 60 | pci_setup_indirect(hose, |
| 61 | (CFG_IMMR+0x8000), |
| 62 | (CFG_IMMR+0x8004)); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 63 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 64 | pcix->potar1 = (CFG_PCI1_MEM_BASE >> 12) & 0x000fffff; |
| 65 | pcix->potear1 = 0x00000000; |
| 66 | pcix->powbar1 = (CFG_PCI1_MEM_BASE >> 12) & 0x000fffff; |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 67 | pcix->powbear1 = 0x00000000; |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 68 | pcix->powar1 = 0x8004401c; /* 512M MEM space */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 69 | |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 70 | pcix->potar2 = 0x00000000; |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 71 | pcix->potear2 = 0x00000000; |
| 72 | pcix->powbar2 = (CFG_PCI1_IO_BASE >> 12) & 0x000fffff; |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 73 | pcix->powbear2 = 0x00000000; |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 74 | pcix->powar2 = 0x80088017; /* 16M IO space */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 75 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 76 | pcix->pitar1 = 0x00000000; |
| 77 | pcix->piwbar1 = 0x00000000; |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 78 | pcix->piwar1 = 0xa0f5501e; /* Enable, Prefetch, Local Mem, |
| 79 | * Snoop R/W, 2G */ |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 80 | |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 81 | /* |
| 82 | * Hose scan. |
| 83 | */ |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 84 | pci_register_hose(hose); |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 85 | |
Stefan Roese | 527b5a5 | 2005-11-07 13:43:06 +0100 | [diff] [blame] | 86 | pci_read_config_word (PCI_BDF(0,0,0), PCI_COMMAND, ®16); |
| 87 | reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY; |
| 88 | pci_write_config_word(PCI_BDF(0,0,0), PCI_COMMAND, reg16); |
| 89 | |
| 90 | /* |
| 91 | * Clear non-reserved bits in status register. |
| 92 | */ |
| 93 | pci_write_config_word(PCI_BDF(0,0,0), PCI_STATUS, 0xffff); |
| 94 | pci_write_config_byte(PCI_BDF(0,0,0), PCI_LATENCY_TIMER,0x80); |
| 95 | |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 96 | #if defined(CONFIG_MPC8555CDS) || defined(CONFIG_MPC8541CDS) |
| 97 | /* |
| 98 | * This is a SW workaround for an apparent HW problem |
| 99 | * in the PCI controller on the MPC85555/41 CDS boards. |
| 100 | * The first config cycle must be to a valid, known |
| 101 | * device on the PCI bus in order to trick the PCI |
| 102 | * controller state machine into a known valid state. |
| 103 | * Without this, the first config cycle has the chance |
| 104 | * of hanging the controller permanently, just leaving |
| 105 | * it in a semi-working state, or leaving it working. |
| 106 | * |
| 107 | * Pick on the Tundra, Device 17, to get it right. |
| 108 | */ |
| 109 | { |
| 110 | u8 header_type; |
| 111 | |
| 112 | pci_hose_read_config_byte(hose, |
| 113 | PCI_BDF(0,17,0), |
| 114 | PCI_HEADER_TYPE, |
| 115 | &header_type); |
| 116 | } |
wdenk | cf33678 | 2004-10-10 20:23:57 +0000 | [diff] [blame] | 117 | #endif |
| 118 | |
wdenk | 9aea953 | 2004-08-01 23:02:45 +0000 | [diff] [blame] | 119 | hose->last_busno = pci_hose_scan(hose); |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 120 | } |
wdenk | 0ac6f8b | 2004-07-09 23:27:13 +0000 | [diff] [blame] | 121 | |
wdenk | 42d1f03 | 2003-10-15 23:53:47 +0000 | [diff] [blame] | 122 | #endif /* CONFIG_PCI */ |