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