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