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