Kumar Gala | 47d41cc | 2009-02-05 20:40:57 -0600 | [diff] [blame] | 1 | /* |
Poonam Aggrwal | b8cdd01 | 2011-01-13 21:39:27 +0530 | [diff] [blame] | 2 | * Copyright 2009-2011 Freescale Semiconductor, Inc. |
Kumar Gala | 47d41cc | 2009-02-05 20:40:57 -0600 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License as |
| 6 | * published by the Free Software Foundation; either version 2 of |
| 7 | * the License, or (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 17 | * MA 02111-1307 USA |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #ifndef _ASM_CONFIG_H_ |
| 22 | #define _ASM_CONFIG_H_ |
| 23 | |
Kumar Gala | 243be8e | 2011-01-19 03:05:26 -0600 | [diff] [blame] | 24 | #ifdef CONFIG_MPC85xx |
| 25 | #include <asm/config_mpc85xx.h> |
| 26 | #endif |
| 27 | |
| 28 | #ifdef CONFIG_MPC86xx |
| 29 | #include <asm/config_mpc86xx.h> |
| 30 | #endif |
| 31 | |
Mingkai Hu | 273feaf | 2011-04-26 16:31:16 +0800 | [diff] [blame] | 32 | /* CONFIG_HARD_SPI triggers SPI bus initialization in PowerPC */ |
| 33 | #if defined(CONFIG_MPC8XXX_SPI) || defined(CONFIG_FSL_ESPI) |
| 34 | # ifndef CONFIG_HARD_SPI |
| 35 | # define CONFIG_HARD_SPI |
| 36 | # endif |
| 37 | #endif |
| 38 | |
Mike Frysinger | a16028d | 2009-11-03 11:35:59 -0500 | [diff] [blame] | 39 | #define CONFIG_LMB |
John Rigby | fca43cc | 2010-10-13 13:57:35 -0600 | [diff] [blame] | 40 | #define CONFIG_SYS_BOOT_RAMDISK_HIGH |
| 41 | #define CONFIG_SYS_BOOT_GET_CMDLINE |
| 42 | #define CONFIG_SYS_BOOT_GET_KBD |
Mike Frysinger | a16028d | 2009-11-03 11:35:59 -0500 | [diff] [blame] | 43 | |
Kumar Gala | 87c9063 | 2009-02-05 20:40:58 -0600 | [diff] [blame] | 44 | #ifndef CONFIG_MAX_MEM_MAPPED |
Becky Bruce | bd76729 | 2009-02-23 13:56:51 -0600 | [diff] [blame] | 45 | #if defined(CONFIG_4xx) || defined(CONFIG_E500) || defined(CONFIG_MPC86xx) |
Kumar Gala | 87c9063 | 2009-02-05 20:40:58 -0600 | [diff] [blame] | 46 | #define CONFIG_MAX_MEM_MAPPED ((phys_size_t)2 << 30) |
| 47 | #else |
Stefan Roese | 2ede879 | 2009-02-11 09:37:12 +0100 | [diff] [blame] | 48 | #define CONFIG_MAX_MEM_MAPPED (256 << 20) |
Kumar Gala | 87c9063 | 2009-02-05 20:40:58 -0600 | [diff] [blame] | 49 | #endif |
| 50 | #endif |
| 51 | |
Peter Tyser | f732a75 | 2009-07-15 00:01:08 -0500 | [diff] [blame] | 52 | /* Check if boards need to enable FSL DMA engine for SDRAM init */ |
| 53 | #if !defined(CONFIG_FSL_DMA) && defined(CONFIG_DDR_ECC) |
| 54 | #if (defined(CONFIG_MPC83xx) && defined(CONFIG_DDR_ECC_INIT_VIA_DMA)) || \ |
| 55 | ((defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)) && \ |
| 56 | !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)) |
Peter Tyser | 017f11f | 2009-06-30 17:15:40 -0500 | [diff] [blame] | 57 | #define CONFIG_FSL_DMA |
Kumar Gala | 47d41cc | 2009-02-05 20:40:57 -0600 | [diff] [blame] | 58 | #endif |
Peter Tyser | 017f11f | 2009-06-30 17:15:40 -0500 | [diff] [blame] | 59 | #endif |
| 60 | |
Kumar Gala | 243be8e | 2011-01-19 03:05:26 -0600 | [diff] [blame] | 61 | #ifndef CONFIG_MAX_CPUS |
Kumar Gala | 7e4259b | 2009-03-19 02:39:17 -0500 | [diff] [blame] | 62 | #define CONFIG_MAX_CPUS 1 |
Poonam Aggrwal | 0e87098 | 2009-07-31 12:08:14 +0530 | [diff] [blame] | 63 | #endif |
| 64 | |
Peter Tyser | 5ccd29c | 2009-10-23 15:55:47 -0500 | [diff] [blame] | 65 | /* |
| 66 | * Provide a default boot page translation virtual address that lines up with |
| 67 | * Freescale's default e500 reset page. |
| 68 | */ |
| 69 | #if (defined(CONFIG_E500) && defined(CONFIG_MP)) |
| 70 | #ifndef CONFIG_BPTR_VIRT_ADDR |
| 71 | #define CONFIG_BPTR_VIRT_ADDR 0xfffff000 |
| 72 | #endif |
| 73 | #endif |
| 74 | |
Kim Phillips | 929a213 | 2010-06-01 12:24:27 -0500 | [diff] [blame] | 75 | /* |
| 76 | * SEC (crypto unit) major compatible version determination |
| 77 | */ |
Kumar Gala | 243be8e | 2011-01-19 03:05:26 -0600 | [diff] [blame] | 78 | #if defined(CONFIG_MPC83xx) |
Kim Phillips | 929a213 | 2010-06-01 12:24:27 -0500 | [diff] [blame] | 79 | #define CONFIG_SYS_FSL_SEC_COMPAT 2 |
| 80 | #endif |
| 81 | |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 82 | /* Since so many PPC SOCs have a semi-common LBC, define this here */ |
| 83 | #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) || \ |
| 84 | defined(CONFIG_MPC83xx) |
Dipen Dudhat | d789b5f | 2011-01-20 16:29:35 +0530 | [diff] [blame] | 85 | #if !defined(CONFIG_FSL_IFC) |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 86 | #define CONFIG_FSL_LBC |
| 87 | #endif |
Dipen Dudhat | d789b5f | 2011-01-20 16:29:35 +0530 | [diff] [blame] | 88 | #endif |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 89 | |
Andy Fleming | 063c126 | 2011-04-08 02:10:54 -0500 | [diff] [blame] | 90 | /* The TSEC driver uses the PHYLIB infrastructure */ |
| 91 | #ifndef CONFIG_PHYLIB |
| 92 | #if defined(CONFIG_TSEC_ENET) |
| 93 | #define CONFIG_PHYLIB |
| 94 | |
| 95 | #include <config_phylib_all_drivers.h> |
| 96 | #endif /* TSEC_ENET */ |
| 97 | #endif /* !CONFIG_PHYLIB */ |
| 98 | |
Kumar Gala | c916d7c | 2011-04-13 08:37:44 -0500 | [diff] [blame] | 99 | /* The FMAN driver uses the PHYLIB infrastructure */ |
| 100 | #if defined(CONFIG_FMAN_ENET) |
| 101 | #define CONFIG_PHYLIB |
| 102 | #endif |
| 103 | |
Albert Aribaud | f2a37fc | 2010-08-08 05:17:05 +0530 | [diff] [blame] | 104 | /* All PPC boards must swap IDE bytes */ |
| 105 | #define CONFIG_IDE_SWAP_IO |
| 106 | |
Peter Tyser | 017f11f | 2009-06-30 17:15:40 -0500 | [diff] [blame] | 107 | #endif /* _ASM_CONFIG_H_ */ |