Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 1 | /* |
Haiying Wang | 57b6e9c | 2007-01-22 12:37:30 -0600 | [diff] [blame] | 2 | * Copyright 2006, 2007 Freescale Semiconductor. |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [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 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <pci.h> |
| 25 | #include <asm/processor.h> |
| 26 | #include <asm/immap_86xx.h> |
Kumar Gala | 9bbd643 | 2009-04-02 13:22:48 -0500 | [diff] [blame] | 27 | #include <asm/fsl_pci.h> |
Kumar Gala | cad506c | 2008-08-26 15:01:35 -0500 | [diff] [blame] | 28 | #include <asm/fsl_ddr_sdram.h> |
Haiying Wang | 57b6e9c | 2007-01-22 12:37:30 -0600 | [diff] [blame] | 29 | #include <asm/io.h> |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 30 | #include <libfdt.h> |
| 31 | #include <fdt_support.h> |
Ben Warren | 65b8623 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 32 | #include <netdev.h> |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 33 | |
Jon Loeliger | de5fbb8 | 2007-08-15 12:20:40 -0500 | [diff] [blame] | 34 | #include "../common/pixis.h" |
Jon Loeliger | 72f8a8e | 2006-05-31 11:24:28 -0500 | [diff] [blame] | 35 | |
Becky Bruce | cc064ed | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 36 | phys_size_t fixed_sdram(void); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 37 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 38 | int board_early_init_f(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 39 | { |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 40 | return 0; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 41 | } |
| 42 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 43 | int checkboard(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 44 | { |
Kumar Gala | aba6397 | 2009-07-15 13:45:00 -0500 | [diff] [blame] | 45 | u8 vboot; |
| 46 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 47 | |
| 48 | printf ("Board: MPC8641HPCN, Sys ID: 0x%02x, " |
| 49 | "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ", |
| 50 | in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER), |
| 51 | in_8(pixis_base + PIXIS_PVER)); |
| 52 | |
| 53 | vboot = in_8(pixis_base + PIXIS_VBOOT); |
| 54 | if (vboot & PIXIS_VBOOT_FMAP) |
| 55 | printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6)); |
| 56 | else |
| 57 | puts ("Promjet\n"); |
| 58 | |
Becky Bruce | 977d705 | 2009-02-12 10:43:32 -0600 | [diff] [blame] | 59 | #ifdef CONFIG_PHYS_64BIT |
| 60 | printf (" 36-bit physical address map\n"); |
| 61 | #endif |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 62 | return 0; |
| 63 | } |
| 64 | |
| 65 | |
Becky Bruce | bd99ae7 | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 66 | phys_size_t |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 67 | initdram(int board_type) |
| 68 | { |
Becky Bruce | cc064ed | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 69 | phys_size_t dram_size = 0; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 70 | |
| 71 | #if defined(CONFIG_SPD_EEPROM) |
Kumar Gala | cad506c | 2008-08-26 15:01:35 -0500 | [diff] [blame] | 72 | dram_size = fsl_ddr_sdram(); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 73 | #else |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 74 | dram_size = fixed_sdram(); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 75 | #endif |
| 76 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 77 | #if defined(CONFIG_SYS_RAMBOOT) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 78 | puts(" DDR: "); |
| 79 | return dram_size; |
| 80 | #endif |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 81 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 82 | puts(" DDR: "); |
| 83 | return dram_size; |
| 84 | } |
| 85 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 86 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 87 | #if !defined(CONFIG_SPD_EEPROM) |
Jon Loeliger | 465b9d8 | 2006-04-27 10:15:16 -0500 | [diff] [blame] | 88 | /* |
| 89 | * Fixed sdram init -- doesn't use serial presence detect. |
| 90 | */ |
Becky Bruce | cc064ed | 2008-10-31 17:13:32 -0500 | [diff] [blame] | 91 | phys_size_t |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 92 | fixed_sdram(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 93 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #if !defined(CONFIG_SYS_RAMBOOT) |
| 95 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR; |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 96 | volatile ccsr_ddr_t *ddr = &immap->im_ddr1; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 97 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS; |
| 99 | ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG; |
| 100 | ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 101 | ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 102 | ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 103 | ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
Peter Tyser | af5829cb | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 104 | ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2; |
| 106 | ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 107 | ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT; |
| 108 | ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL; |
| 109 | ddr->sdram_ocd_cntl = CONFIG_SYS_DDR_OCD_CTRL; |
| 110 | ddr->sdram_ocd_status = CONFIG_SYS_DDR_OCD_STATUS; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 111 | |
| 112 | #if defined (CONFIG_DDR_ECC) |
| 113 | ddr->err_disable = 0x0000008D; |
| 114 | ddr->err_sbe = 0x00ff0000; |
| 115 | #endif |
| 116 | asm("sync;isync"); |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 117 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 118 | udelay(500); |
| 119 | |
| 120 | #if defined (CONFIG_DDR_ECC) |
| 121 | /* Enable ECC checking */ |
Peter Tyser | af5829cb | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 122 | ddr->sdram_cfg = (CONFIG_SYS_DDR_CONTROL | 0x20000000); |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 123 | #else |
Peter Tyser | af5829cb | 2009-07-17 10:14:45 -0500 | [diff] [blame] | 124 | ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 125 | ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 126 | #endif |
| 127 | asm("sync; isync"); |
Jon Loeliger | e65e32e | 2006-05-31 12:44:44 -0500 | [diff] [blame] | 128 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 129 | udelay(500); |
| 130 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 131 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 132 | } |
| 133 | #endif /* !defined(CONFIG_SPD_EEPROM) */ |
| 134 | |
| 135 | |
| 136 | #if defined(CONFIG_PCI) |
Becky Bruce | bbafb23 | 2008-10-31 17:14:00 -0500 | [diff] [blame] | 137 | static struct pci_controller pci1_hose; |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 138 | #endif /* CONFIG_PCI */ |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 139 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 140 | #ifdef CONFIG_PCI2 |
| 141 | static struct pci_controller pci2_hose; |
| 142 | #endif /* CONFIG_PCI2 */ |
| 143 | |
| 144 | int first_free_busno = 0; |
| 145 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 146 | void pci_init_board(void) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 147 | { |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 148 | #ifdef CONFIG_PCI1 |
| 149 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 150 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 151 | struct pci_controller *hose = &pci1_hose; |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 152 | struct pci_region *r = hose->regions; |
Becky Bruce | 6c2bec3 | 2008-10-31 17:14:14 -0500 | [diff] [blame] | 153 | volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR; |
| 154 | volatile ccsr_gur_t *gur = &immap->im_gur; |
| 155 | uint devdisr = gur->devdisr; |
| 156 | uint io_sel = (gur->pordevsr & MPC8641_PORDEVSR_IO_SEL) |
| 157 | >> MPC8641_PORDEVSR_IO_SEL_SHIFT; |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 158 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 159 | #ifdef DEBUG |
Jon Loeliger | 6bcd30c | 2008-02-20 14:22:26 -0600 | [diff] [blame] | 160 | uint host1_agent = (gur->porbmsr & MPC8641_PORBMSR_HA) |
| 161 | >> MPC8641_PORBMSR_HA_SHIFT; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 162 | uint pex1_agent = (host1_agent == 0) || (host1_agent == 1); |
| 163 | #endif |
| 164 | if ((io_sel == 2 || io_sel == 3 || io_sel == 5 |
| 165 | || io_sel == 6 || io_sel == 7 || io_sel == 0xF) |
| 166 | && !(devdisr & MPC86xx_DEVDISR_PCIEX1)) { |
| 167 | debug("PCI-EXPRESS 1: %s \n", pex1_agent ? "Agent" : "Host"); |
| 168 | debug("0x%08x=0x%08x ", &pci->pme_msg_det, pci->pme_msg_det); |
| 169 | if (pci->pme_msg_det) { |
| 170 | pci->pme_msg_det = 0xffffffff; |
| 171 | debug(" with errors. Clearing. Now 0x%08x", |
| 172 | pci->pme_msg_det); |
| 173 | } |
| 174 | debug("\n"); |
| 175 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 176 | /* outbound memory */ |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 177 | pci_set_region(r++, |
Becky Bruce | d3b51a2 | 2009-02-03 18:10:53 -0600 | [diff] [blame] | 178 | CONFIG_SYS_PCI1_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 179 | CONFIG_SYS_PCI1_MEM_PHYS, |
| 180 | CONFIG_SYS_PCI1_MEM_SIZE, |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 181 | PCI_REGION_MEM); |
| 182 | |
| 183 | /* outbound io */ |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 184 | pci_set_region(r++, |
Becky Bruce | d3b51a2 | 2009-02-03 18:10:53 -0600 | [diff] [blame] | 185 | CONFIG_SYS_PCI1_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 186 | CONFIG_SYS_PCI1_IO_PHYS, |
| 187 | CONFIG_SYS_PCI1_IO_SIZE, |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 188 | PCI_REGION_IO); |
| 189 | |
Becky Bruce | 5dc9e1a | 2009-02-03 18:10:49 -0600 | [diff] [blame] | 190 | /* inbound */ |
| 191 | r += fsl_pci_setup_inbound_windows(r); |
| 192 | |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 193 | hose->region_count = r - hose->regions; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 194 | |
| 195 | hose->first_busno=first_free_busno; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 196 | |
Kumar Gala | 65e198d | 2009-08-03 20:44:55 -0500 | [diff] [blame^] | 197 | fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data); |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 198 | |
| 199 | first_free_busno=hose->last_busno+1; |
| 200 | printf (" PCI-EXPRESS 1 on bus %02x - %02x\n", |
| 201 | hose->first_busno,hose->last_busno); |
| 202 | |
| 203 | /* |
| 204 | * Activate ULI1575 legacy chip by performing a fake |
| 205 | * memory access. Needed to make ULI RTC work. |
| 206 | */ |
Becky Bruce | d3b51a2 | 2009-02-03 18:10:53 -0600 | [diff] [blame] | 207 | in_be32((unsigned *) ((char *)(CONFIG_SYS_PCI1_MEM_VIRT |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 208 | + CONFIG_SYS_PCI1_MEM_SIZE - 0x1000000))); |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 209 | |
| 210 | } else { |
| 211 | puts("PCI-EXPRESS 1: Disabled\n"); |
| 212 | } |
| 213 | } |
| 214 | #else |
| 215 | puts("PCI-EXPRESS1: Disabled\n"); |
| 216 | #endif /* CONFIG_PCI1 */ |
| 217 | |
| 218 | #ifdef CONFIG_PCI2 |
| 219 | { |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 220 | volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI2_ADDR; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 221 | struct pci_controller *hose = &pci2_hose; |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 222 | struct pci_region *r = hose->regions; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 223 | |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 224 | /* outbound memory */ |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 225 | pci_set_region(r++, |
Becky Bruce | d3b51a2 | 2009-02-03 18:10:53 -0600 | [diff] [blame] | 226 | CONFIG_SYS_PCI2_MEM_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 227 | CONFIG_SYS_PCI2_MEM_PHYS, |
| 228 | CONFIG_SYS_PCI2_MEM_SIZE, |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 229 | PCI_REGION_MEM); |
| 230 | |
| 231 | /* outbound io */ |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 232 | pci_set_region(r++, |
Becky Bruce | d3b51a2 | 2009-02-03 18:10:53 -0600 | [diff] [blame] | 233 | CONFIG_SYS_PCI2_IO_BUS, |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 234 | CONFIG_SYS_PCI2_IO_PHYS, |
| 235 | CONFIG_SYS_PCI2_IO_SIZE, |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 236 | PCI_REGION_IO); |
| 237 | |
Becky Bruce | 5dc9e1a | 2009-02-03 18:10:49 -0600 | [diff] [blame] | 238 | /* inbound */ |
| 239 | r += fsl_pci_setup_inbound_windows(r); |
| 240 | |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 241 | hose->region_count = r - hose->regions; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 242 | |
| 243 | hose->first_busno=first_free_busno; |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 244 | |
Kumar Gala | 65e198d | 2009-08-03 20:44:55 -0500 | [diff] [blame^] | 245 | fsl_pci_init(hose, (u32)&pci->cfg_addr, (u32)&pci->cfg_data); |
Ed Swarthout | 91080f7 | 2007-08-02 14:09:49 -0500 | [diff] [blame] | 246 | |
| 247 | first_free_busno=hose->last_busno+1; |
| 248 | printf (" PCI-EXPRESS 2 on bus %02x - %02x\n", |
| 249 | hose->first_busno,hose->last_busno); |
| 250 | } |
| 251 | #else |
| 252 | puts("PCI-EXPRESS 2: Disabled\n"); |
| 253 | #endif /* CONFIG_PCI2 */ |
| 254 | |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 255 | } |
| 256 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 257 | |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 258 | #if defined(CONFIG_OF_BOARD_SETUP) |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 259 | void |
| 260 | ft_board_setup(void *blob, bd_t *bd) |
| 261 | { |
Becky Bruce | 48d3ce2 | 2008-11-07 13:46:19 -0600 | [diff] [blame] | 262 | int off; |
| 263 | u64 *tmp; |
| 264 | u32 *addrcells; |
| 265 | |
Jon Loeliger | 84640c9 | 2008-02-18 14:01:56 -0600 | [diff] [blame] | 266 | ft_cpu_setup(blob, bd); |
Jon Loeliger | 6160aa4 | 2007-11-28 14:47:18 -0600 | [diff] [blame] | 267 | |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 268 | #ifdef CONFIG_PCI1 |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 269 | ft_fsl_pci_setup(blob, "pci0", &pci1_hose); |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 270 | #endif |
| 271 | #ifdef CONFIG_PCI2 |
Kumar Gala | 7772ccd | 2008-10-22 14:38:55 -0500 | [diff] [blame] | 272 | ft_fsl_pci_setup(blob, "pci1", &pci2_hose); |
Ed Swarthout | f835840 | 2007-08-30 01:58:48 -0500 | [diff] [blame] | 273 | #endif |
Becky Bruce | 48d3ce2 | 2008-11-07 13:46:19 -0600 | [diff] [blame] | 274 | |
| 275 | /* |
| 276 | * Warn if it looks like the device tree doesn't match u-boot. |
| 277 | * This is just an estimation, based on the location of CCSR, |
| 278 | * which is defined by the "reg" property in the soc node. |
| 279 | */ |
| 280 | off = fdt_path_offset(blob, "/soc8641"); |
| 281 | addrcells = (u32 *)fdt_getprop(blob, 0, "#address-cells", NULL); |
| 282 | tmp = (u64 *)fdt_getprop(blob, off, "reg", NULL); |
| 283 | |
| 284 | if (tmp) { |
| 285 | u64 addr; |
Becky Bruce | eccb5e7 | 2008-11-10 19:45:35 -0600 | [diff] [blame] | 286 | if (addrcells && (*addrcells == 1)) |
Becky Bruce | 48d3ce2 | 2008-11-07 13:46:19 -0600 | [diff] [blame] | 287 | addr = *(u32 *)tmp; |
Becky Bruce | eccb5e7 | 2008-11-10 19:45:35 -0600 | [diff] [blame] | 288 | else |
| 289 | addr = *tmp; |
Becky Bruce | 48d3ce2 | 2008-11-07 13:46:19 -0600 | [diff] [blame] | 290 | |
| 291 | if (addr != CONFIG_SYS_CCSRBAR_PHYS) |
| 292 | printf("WARNING: The CCSRBAR address in your .dts " |
| 293 | "does not match the address of the CCSR " |
| 294 | "in u-boot. This means your .dts might " |
| 295 | "be old.\n"); |
| 296 | } |
Jon Loeliger | 5c8aa97 | 2006-04-26 17:58:56 -0500 | [diff] [blame] | 297 | } |
| 298 | #endif |
| 299 | |
Jon Loeliger | 72f8a8e | 2006-05-31 11:24:28 -0500 | [diff] [blame] | 300 | |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 301 | /* |
| 302 | * get_board_sys_clk |
| 303 | * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ |
| 304 | */ |
| 305 | |
Jon Loeliger | 4fbb09c | 2006-08-22 12:25:27 -0500 | [diff] [blame] | 306 | unsigned long |
| 307 | get_board_sys_clk(ulong dummy) |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 308 | { |
| 309 | u8 i, go_bit, rd_clks; |
| 310 | ulong val = 0; |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 311 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 312 | |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 313 | go_bit = in_8(pixis_base + PIXIS_VCTL); |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 314 | go_bit &= 0x01; |
| 315 | |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 316 | rd_clks = in_8(pixis_base + PIXIS_VCFGEN0); |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 317 | rd_clks &= 0x1C; |
| 318 | |
| 319 | /* |
| 320 | * Only if both go bit and the SCLK bit in VCFGEN0 are set |
| 321 | * should we be using the AUX register. Remember, we also set the |
| 322 | * GO bit to boot from the alternate bank on the on-board flash |
| 323 | */ |
| 324 | |
| 325 | if (go_bit) { |
| 326 | if (rd_clks == 0x1c) |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 327 | i = in_8(pixis_base + PIXIS_AUX); |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 328 | else |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 329 | i = in_8(pixis_base + PIXIS_SPD); |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 330 | } else { |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 331 | i = in_8(pixis_base + PIXIS_SPD); |
Haiying Wang | 43d624d | 2006-07-28 12:41:18 -0400 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | i &= 0x07; |
| 335 | |
| 336 | switch (i) { |
| 337 | case 0: |
| 338 | val = 33000000; |
| 339 | break; |
| 340 | case 1: |
| 341 | val = 40000000; |
| 342 | break; |
| 343 | case 2: |
| 344 | val = 50000000; |
| 345 | break; |
| 346 | case 3: |
| 347 | val = 66000000; |
| 348 | break; |
| 349 | case 4: |
| 350 | val = 83000000; |
| 351 | break; |
| 352 | case 5: |
| 353 | val = 100000000; |
| 354 | break; |
| 355 | case 6: |
| 356 | val = 134000000; |
| 357 | break; |
| 358 | case 7: |
| 359 | val = 166000000; |
| 360 | break; |
| 361 | } |
| 362 | |
| 363 | return val; |
| 364 | } |
Ben Warren | 65b8623 | 2008-08-31 21:41:08 -0700 | [diff] [blame] | 365 | |
| 366 | int board_eth_init(bd_t *bis) |
| 367 | { |
| 368 | /* Initialize TSECs */ |
| 369 | cpu_eth_init(bis); |
| 370 | return pci_eth_init(bis); |
| 371 | } |
Peter Tyser | 6945440 | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 372 | |
| 373 | void board_reset(void) |
| 374 | { |
Kumar Gala | 146c4b2 | 2009-07-22 10:12:39 -0500 | [diff] [blame] | 375 | u8 *pixis_base = (u8 *)PIXIS_BASE; |
| 376 | |
| 377 | out_8(pixis_base + PIXIS_RST, 0); |
Peter Tyser | 6945440 | 2009-02-05 11:25:25 -0600 | [diff] [blame] | 378 | |
| 379 | while (1) |
| 380 | ; |
| 381 | } |
Becky Bruce | bd9c0cf | 2009-03-31 18:38:37 -0500 | [diff] [blame] | 382 | |
Kumar Gala | 56d150e | 2009-03-31 23:02:38 -0500 | [diff] [blame] | 383 | #ifdef CONFIG_MP |
Becky Bruce | bd9c0cf | 2009-03-31 18:38:37 -0500 | [diff] [blame] | 384 | extern void cpu_mp_lmb_reserve(struct lmb *lmb); |
| 385 | |
| 386 | void board_lmb_reserve(struct lmb *lmb) |
| 387 | { |
| 388 | cpu_mp_lmb_reserve(lmb); |
| 389 | } |
| 390 | #endif |