Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <ioports.h> |
| 10 | #include <mpc83xx.h> |
| 11 | #include <asm/mpc8349_pci.h> |
| 12 | #include <i2c.h> |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 13 | #include <spi.h> |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 14 | #include <miiphy.h> |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 15 | #ifdef CONFIG_SYS_FSL_DDR2 |
| 16 | #include <fsl_ddr_sdram.h> |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 17 | #else |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 18 | #include <spd_sdram.h> |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 19 | #endif |
Jon Loeliger | a30a549 | 2008-03-04 10:03:03 -0600 | [diff] [blame] | 20 | |
Kim Phillips | b3458d2 | 2007-12-20 15:57:28 -0600 | [diff] [blame] | 21 | #if defined(CONFIG_OF_LIBFDT) |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 22 | #include <libfdt.h> |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 23 | #endif |
| 24 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 25 | int fixed_sdram(void); |
| 26 | void sdram_init(void); |
| 27 | |
Peter Tyser | 0f89860 | 2009-05-22 17:23:24 -0500 | [diff] [blame] | 28 | #if defined(CONFIG_DDR_ECC) && defined(CONFIG_MPC83xx) |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 29 | void ddr_enable_ecc(unsigned int dram_size); |
| 30 | #endif |
| 31 | |
| 32 | int board_early_init_f (void) |
| 33 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | volatile u8* bcsr = (volatile u8*)CONFIG_SYS_BCSR; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 35 | |
| 36 | /* Enable flash write */ |
| 37 | bcsr[1] &= ~0x01; |
| 38 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 39 | #ifdef CONFIG_SYS_USE_MPC834XSYS_USB_PHY |
Kumar Gala | 8fe9bf6 | 2006-04-20 13:45:32 -0500 | [diff] [blame] | 40 | /* Use USB PHY on SYS board */ |
| 41 | bcsr[5] |= 0x02; |
| 42 | #endif |
| 43 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 44 | return 0; |
| 45 | } |
| 46 | |
| 47 | #define ns2clk(ns) (ns / (1000000000 / CONFIG_8349_CLKIN) + 1) |
| 48 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 49 | phys_size_t initdram (int board_type) |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 50 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 51 | volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR; |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 52 | phys_size_t msize = 0; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 53 | |
| 54 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im) |
| 55 | return -1; |
| 56 | |
| 57 | /* DDR SDRAM - Main SODIMM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 58 | im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_BASE & LAWBAR_BAR; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 59 | #if defined(CONFIG_SPD_EEPROM) |
York Sun | 5614e71 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 60 | #ifndef CONFIG_SYS_FSL_DDR2 |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 61 | msize = spd_sdram() * 1024 * 1024; |
| 62 | #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER) |
| 63 | ddr_enable_ecc(msize); |
| 64 | #endif |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 65 | #else |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 66 | msize = fsl_ddr_sdram(); |
| 67 | #endif |
| 68 | #else |
| 69 | msize = fixed_sdram() * 1024 * 1024; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 70 | #endif |
| 71 | /* |
| 72 | * Initialize SDRAM if it is on local bus. |
| 73 | */ |
| 74 | sdram_init(); |
| 75 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 76 | /* return total bus SDRAM size(bytes) -- DDR */ |
York Sun | d4b9106 | 2011-08-26 11:32:45 -0700 | [diff] [blame] | 77 | return msize; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | #if !defined(CONFIG_SPD_EEPROM) |
| 81 | /************************************************************************* |
| 82 | * fixed sdram init -- doesn't use serial presence detect. |
| 83 | ************************************************************************/ |
| 84 | int fixed_sdram(void) |
| 85 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR; |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 87 | u32 msize = CONFIG_SYS_DDR_SIZE; |
| 88 | u32 ddr_size = msize << 20; /* DDR size in bytes */ |
| 89 | u32 ddr_size_log2 = __ilog2(ddr_size); |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 90 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 92 | im->sysconf.ddrlaw[0].ar = LAWAR_EN | ((ddr_size_log2 - 1) & LAWAR_SIZE); |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 93 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 94 | #if (CONFIG_SYS_DDR_SIZE != 256) |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 95 | #warning Currenly any ddr size other than 256 is not supported |
| 96 | #endif |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 97 | #ifdef CONFIG_DDR_II |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | im->ddr.csbnds[2].csbnds = CONFIG_SYS_DDR_CS2_BNDS; |
| 99 | im->ddr.cs_config[2] = CONFIG_SYS_DDR_CS2_CONFIG; |
| 100 | im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0; |
| 101 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 102 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
| 103 | im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3; |
| 104 | im->ddr.sdram_cfg = CONFIG_SYS_DDR_SDRAM_CFG; |
| 105 | im->ddr.sdram_cfg2 = CONFIG_SYS_DDR_SDRAM_CFG2; |
| 106 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
| 107 | im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE2; |
| 108 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
| 109 | im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL; |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 110 | #else |
Joe Hershberger | 2e651b2 | 2011-10-11 23:57:31 -0500 | [diff] [blame] | 111 | |
| 112 | #if ((CONFIG_SYS_DDR_SDRAM_BASE & 0x00FFFFFF) != 0) |
| 113 | #warning Chip select bounds is only configurable in 16MB increments |
| 114 | #endif |
| 115 | im->ddr.csbnds[2].csbnds = |
| 116 | ((CONFIG_SYS_DDR_SDRAM_BASE >> CSBNDS_SA_SHIFT) & CSBNDS_SA) | |
| 117 | (((CONFIG_SYS_DDR_SDRAM_BASE + ddr_size - 1) >> |
| 118 | CSBNDS_EA_SHIFT) & CSBNDS_EA); |
| 119 | im->ddr.cs_config[2] = CONFIG_SYS_DDR_CS2_CONFIG; |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 120 | |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 121 | /* currently we use only one CS, so disable the other banks */ |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 122 | im->ddr.cs_config[0] = 0; |
| 123 | im->ddr.cs_config[1] = 0; |
| 124 | im->ddr.cs_config[3] = 0; |
| 125 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 126 | im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1; |
| 127 | im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2; |
Wolfgang Denk | cf48eb9 | 2006-04-16 10:51:58 +0200 | [diff] [blame] | 128 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 129 | im->ddr.sdram_cfg = |
| 130 | SDRAM_CFG_SREN |
| 131 | #if defined(CONFIG_DDR_2T_TIMING) |
| 132 | | SDRAM_CFG_2T_EN |
| 133 | #endif |
| 134 | | 2 << SDRAM_CFG_SDRAM_TYPE_SHIFT; |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 135 | #if defined (CONFIG_DDR_32BIT) |
| 136 | /* for 32-bit mode burst length is 8 */ |
| 137 | im->ddr.sdram_cfg |= (SDRAM_CFG_32_BE | SDRAM_CFG_8_BE); |
| 138 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 139 | im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 140 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 141 | im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL; |
Xie Xiaobo | d61853c | 2007-02-14 18:27:17 +0800 | [diff] [blame] | 142 | #endif |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 143 | udelay(200); |
| 144 | |
Rafal Jaworowski | dc9e499 | 2006-03-16 17:46:46 +0100 | [diff] [blame] | 145 | /* enable DDR controller */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 146 | im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 147 | return msize; |
| 148 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 149 | #endif/*!CONFIG_SYS_SPD_EEPROM*/ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 150 | |
| 151 | |
| 152 | int checkboard (void) |
| 153 | { |
Ira W. Snyder | 447ad57 | 2008-08-22 11:00:15 -0700 | [diff] [blame] | 154 | /* |
| 155 | * Warning: do not read the BCSR registers here |
| 156 | * |
| 157 | * There is a timing bug in the 8349E and 8349EA BCSR code |
| 158 | * version 1.2 (read from BCSR 11) that will cause the CFI |
| 159 | * flash initialization code to overwrite BCSR 0, disabling |
| 160 | * the serial ports and gigabit ethernet |
| 161 | */ |
| 162 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 163 | puts("Board: Freescale MPC8349EMDS\n"); |
| 164 | return 0; |
| 165 | } |
| 166 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 167 | /* |
| 168 | * if MPC8349EMDS is soldered with SDRAM |
| 169 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 170 | #if defined(CONFIG_SYS_BR2_PRELIM) \ |
| 171 | && defined(CONFIG_SYS_OR2_PRELIM) \ |
| 172 | && defined(CONFIG_SYS_LBLAWBAR2_PRELIM) \ |
| 173 | && defined(CONFIG_SYS_LBLAWAR2_PRELIM) |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 174 | /* |
| 175 | * Initialize SDRAM memory on the Local Bus. |
| 176 | */ |
| 177 | |
| 178 | void sdram_init(void) |
| 179 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 180 | volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR; |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 181 | volatile fsl_lbc_t *lbc = &immap->im_lbc; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 182 | uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 183 | |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 184 | /* |
| 185 | * Setup SDRAM Base and Option Registers, already done in cpu_init.c |
| 186 | */ |
| 187 | |
| 188 | /* setup mtrpt, lsrt and lbcr for LB bus */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 189 | lbc->lbcr = CONFIG_SYS_LBC_LBCR; |
| 190 | lbc->mrtpr = CONFIG_SYS_LBC_MRTPR; |
| 191 | lbc->lsrt = CONFIG_SYS_LBC_LSRT; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 192 | asm("sync"); |
| 193 | |
| 194 | /* |
| 195 | * Configure the SDRAM controller Machine Mode Register. |
| 196 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 197 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5; /* 0x40636733; normal operation */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 198 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 199 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_1; /* 0x68636733; precharge all the banks */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 200 | asm("sync"); |
| 201 | *sdram_addr = 0xff; |
| 202 | udelay(100); |
| 203 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 204 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_2; /* 0x48636733; auto refresh */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 205 | asm("sync"); |
| 206 | /*1 times*/ |
| 207 | *sdram_addr = 0xff; |
| 208 | udelay(100); |
| 209 | /*2 times*/ |
| 210 | *sdram_addr = 0xff; |
| 211 | udelay(100); |
| 212 | /*3 times*/ |
| 213 | *sdram_addr = 0xff; |
| 214 | udelay(100); |
| 215 | /*4 times*/ |
| 216 | *sdram_addr = 0xff; |
| 217 | udelay(100); |
| 218 | /*5 times*/ |
| 219 | *sdram_addr = 0xff; |
| 220 | udelay(100); |
| 221 | /*6 times*/ |
| 222 | *sdram_addr = 0xff; |
| 223 | udelay(100); |
| 224 | /*7 times*/ |
| 225 | *sdram_addr = 0xff; |
| 226 | udelay(100); |
| 227 | /*8 times*/ |
| 228 | *sdram_addr = 0xff; |
| 229 | udelay(100); |
| 230 | |
| 231 | /* 0x58636733; mode register write operation */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 232 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_4; |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 233 | asm("sync"); |
| 234 | *sdram_addr = 0xff; |
| 235 | udelay(100); |
| 236 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 237 | lbc->lsdmr = CONFIG_SYS_LBC_LSDMR_5; /* 0x40636733; normal operation */ |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 238 | asm("sync"); |
| 239 | *sdram_addr = 0xff; |
| 240 | udelay(100); |
| 241 | } |
| 242 | #else |
| 243 | void sdram_init(void) |
| 244 | { |
Marian Balakowicz | 991425f | 2006-03-14 16:24:38 +0100 | [diff] [blame] | 245 | } |
| 246 | #endif |
Marian Balakowicz | d326f4a | 2006-03-16 15:19:35 +0100 | [diff] [blame] | 247 | |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 248 | /* |
| 249 | * The following are used to control the SPI chip selects for the SPI command. |
| 250 | */ |
Ben Warren | f8cc312 | 2008-06-08 23:28:33 -0700 | [diff] [blame] | 251 | #ifdef CONFIG_MPC8XXX_SPI |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 252 | |
| 253 | #define SPI_CS_MASK 0x80000000 |
| 254 | |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 255 | int spi_cs_is_valid(unsigned int bus, unsigned int cs) |
| 256 | { |
| 257 | return bus == 0 && cs == 0; |
| 258 | } |
| 259 | |
| 260 | void spi_cs_activate(struct spi_slave *slave) |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 261 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 262 | volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0]; |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 263 | |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 264 | iopd->dat &= ~SPI_CS_MASK; |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 265 | } |
| 266 | |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 267 | void spi_cs_deactivate(struct spi_slave *slave) |
| 268 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 269 | volatile gpio83xx_t *iopd = &((immap_t *)CONFIG_SYS_IMMR)->gpio[0]; |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 270 | |
Haavard Skinnemoen | d255bb0 | 2008-05-16 11:10:31 +0200 | [diff] [blame] | 271 | iopd->dat |= SPI_CS_MASK; |
| 272 | } |
Ben Warren | 80ddd22 | 2008-01-16 22:37:42 -0500 | [diff] [blame] | 273 | #endif /* CONFIG_HARD_SPI */ |
| 274 | |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 275 | #if defined(CONFIG_OF_BOARD_SETUP) |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 276 | int ft_board_setup(void *blob, bd_t *bd) |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 277 | { |
Kim Phillips | 3fde9e8 | 2007-08-15 22:30:33 -0500 | [diff] [blame] | 278 | ft_cpu_setup(blob, bd); |
| 279 | #ifdef CONFIG_PCI |
| 280 | ft_pci_setup(blob, bd); |
| 281 | #endif |
Simon Glass | e895a4b | 2014-10-23 18:58:47 -0600 | [diff] [blame] | 282 | |
| 283 | return 0; |
Kim Phillips | bf0b542 | 2006-11-01 00:10:40 -0600 | [diff] [blame] | 284 | } |
| 285 | #endif |