Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 |
| 3 | * Vipin Kumar, STMicroelectronics, <vipin.kumar@st.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
| 11 | /* |
| 12 | * High Level Configuration Options |
| 13 | * (easy to change) |
| 14 | */ |
Simon Glass | 6ef2e75 | 2016-09-12 23:18:30 -0600 | [diff] [blame] | 15 | #if defined(CONFIG_SPEAR300) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 16 | #define CONFIG_SPEAR3XX |
Simon Glass | 6ef2e75 | 2016-09-12 23:18:30 -0600 | [diff] [blame] | 17 | #elif defined(CONFIG_SPEAR310) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 18 | #define CONFIG_SPEAR3XX |
Simon Glass | 6ef2e75 | 2016-09-12 23:18:30 -0600 | [diff] [blame] | 19 | #elif defined(CONFIG_SPEAR320) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 20 | #define CONFIG_SPEAR3XX |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 21 | #endif |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 22 | |
Simon Glass | 6ef2e75 | 2016-09-12 23:18:30 -0600 | [diff] [blame] | 23 | #if defined(CONFIG_USBTTY) |
Vipin KUMAR | f273e5b | 2012-05-07 13:06:46 +0530 | [diff] [blame] | 24 | #define CONFIG_SPEAR_USBTTY |
| 25 | #endif |
| 26 | |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 27 | #include <configs/spear-common.h> |
| 28 | |
Vipin KUMAR | deb0056 | 2012-05-07 13:06:42 +0530 | [diff] [blame] | 29 | /* Ethernet driver configuration */ |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 30 | #define CONFIG_DW_ALTDESCRIPTOR |
Vipin KUMAR | deb0056 | 2012-05-07 13:06:42 +0530 | [diff] [blame] | 31 | |
Vipin KUMAR | 8eb0ee6 | 2012-05-07 13:06:43 +0530 | [diff] [blame] | 32 | #if defined(CONFIG_SPEAR310) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 33 | #define CONFIG_MACB |
Vipin KUMAR | 8eb0ee6 | 2012-05-07 13:06:43 +0530 | [diff] [blame] | 34 | #define CONFIG_MACB0_PHY 0x01 |
| 35 | #define CONFIG_MACB1_PHY 0x03 |
| 36 | #define CONFIG_MACB2_PHY 0x05 |
| 37 | #define CONFIG_MACB3_PHY 0x07 |
| 38 | |
| 39 | #elif defined(CONFIG_SPEAR320) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 40 | #define CONFIG_MACB |
Vipin KUMAR | 8eb0ee6 | 2012-05-07 13:06:43 +0530 | [diff] [blame] | 41 | #define CONFIG_MACB0_PHY 0x01 |
| 42 | |
| 43 | #endif |
| 44 | |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 45 | /* Serial Configuration (PL011) */ |
| 46 | #define CONFIG_SYS_SERIAL0 0xD0000000 |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 47 | |
| 48 | #if defined(CONFIG_SPEAR300) |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 49 | #define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0} |
| 50 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 51 | #elif defined(CONFIG_SPEAR310) |
| 52 | |
| 53 | #if (CONFIG_CONS_INDEX) |
| 54 | #undef CONFIG_PL011_CLOCK |
| 55 | #define CONFIG_PL011_CLOCK (83 * 1000 * 1000) |
| 56 | #endif |
| 57 | |
| 58 | #define CONFIG_SYS_SERIAL1 0xB2000000 |
| 59 | #define CONFIG_SYS_SERIAL2 0xB2080000 |
| 60 | #define CONFIG_SYS_SERIAL3 0xB2100000 |
| 61 | #define CONFIG_SYS_SERIAL4 0xB2180000 |
| 62 | #define CONFIG_SYS_SERIAL5 0xB2200000 |
| 63 | #define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0, \ |
| 64 | (void *)CONFIG_SYS_SERIAL1, \ |
| 65 | (void *)CONFIG_SYS_SERIAL2, \ |
| 66 | (void *)CONFIG_SYS_SERIAL3, \ |
| 67 | (void *)CONFIG_SYS_SERIAL4, \ |
| 68 | (void *)CONFIG_SYS_SERIAL5 } |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 69 | #elif defined(CONFIG_SPEAR320) |
| 70 | |
| 71 | #if (CONFIG_CONS_INDEX) |
| 72 | #undef CONFIG_PL011_CLOCK |
| 73 | #define CONFIG_PL011_CLOCK (83 * 1000 * 1000) |
| 74 | #endif |
| 75 | |
| 76 | #define CONFIG_SYS_SERIAL1 0xA3000000 |
| 77 | #define CONFIG_SYS_SERIAL2 0xA4000000 |
| 78 | #define CONFIG_PL01x_PORTS {(void *)CONFIG_SYS_SERIAL0, \ |
| 79 | (void *)CONFIG_SYS_SERIAL1, \ |
| 80 | (void *)CONFIG_SYS_SERIAL2 } |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 81 | #endif |
| 82 | |
| 83 | #if defined(CONFIG_SPEAR_EMI) |
| 84 | |
| 85 | #define CONFIG_SYS_FLASH_CFI |
| 86 | #define CONFIG_FLASH_CFI_DRIVER |
| 87 | |
| 88 | #if defined(CONFIG_SPEAR310) |
Vipin Kumar | 484e0b0 | 2012-05-07 13:06:54 +0530 | [diff] [blame] | 89 | #define CONFIG_SYS_FLASH_PROTECTION |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 90 | #define CONFIG_SYS_FLASH_BASE 0x50000000 |
| 91 | #define CONFIG_SYS_CS1_FLASH_BASE 0x60000000 |
| 92 | #define CONFIG_SYS_CS2_FLASH_BASE 0x70000000 |
| 93 | #define CONFIG_SYS_CS3_FLASH_BASE 0x80000000 |
| 94 | #define CONFIG_SYS_CS4_FLASH_BASE 0x90000000 |
| 95 | #define CONFIG_SYS_CS5_FLASH_BASE 0xA0000000 |
| 96 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \ |
| 97 | CONFIG_SYS_CS1_FLASH_BASE, \ |
| 98 | CONFIG_SYS_CS2_FLASH_BASE, \ |
| 99 | CONFIG_SYS_CS3_FLASH_BASE, \ |
| 100 | CONFIG_SYS_CS4_FLASH_BASE, \ |
| 101 | CONFIG_SYS_CS5_FLASH_BASE } |
| 102 | #define CONFIG_SYS_MAX_FLASH_BANKS 6 |
| 103 | |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 104 | #elif defined(CONFIG_SPEAR320) |
Vipin Kumar | 484e0b0 | 2012-05-07 13:06:54 +0530 | [diff] [blame] | 105 | #define CONFIG_SYS_FLASH_PROTECTION |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 106 | #define CONFIG_SYS_FLASH_BASE 0x44000000 |
| 107 | #define CONFIG_SYS_CS1_FLASH_BASE 0x45000000 |
| 108 | #define CONFIG_SYS_CS2_FLASH_BASE 0x46000000 |
| 109 | #define CONFIG_SYS_CS3_FLASH_BASE 0x47000000 |
| 110 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \ |
| 111 | CONFIG_SYS_CS1_FLASH_BASE, \ |
| 112 | CONFIG_SYS_CS2_FLASH_BASE, \ |
| 113 | CONFIG_SYS_CS3_FLASH_BASE } |
| 114 | #define CONFIG_SYS_MAX_FLASH_BANKS 4 |
| 115 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 116 | #endif |
| 117 | |
| 118 | #define CONFIG_SYS_MAX_FLASH_SECT (127 + 8) |
Amit Virdi | 9b382b4 | 2012-05-07 13:07:02 +0530 | [diff] [blame] | 119 | #define CONFIG_SYS_FLASH_QUIET_TEST |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 120 | |
| 121 | #endif |
| 122 | |
Vipin KUMAR | 1fa943b | 2012-05-22 00:15:55 +0000 | [diff] [blame] | 123 | /* NAND flash configuration */ |
| 124 | #define CONFIG_SYS_FSMC_NAND_SP |
| 125 | #define CONFIG_SYS_FSMC_NAND_8BIT |
| 126 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 127 | #if defined(CONFIG_SPEAR300) |
Amit Virdi | bc0bdf4 | 2012-05-07 13:07:01 +0530 | [diff] [blame] | 128 | #define CONFIG_SYS_NAND_BASE 0x80000000 |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 129 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 130 | #elif defined(CONFIG_SPEAR310) |
Amit Virdi | bc0bdf4 | 2012-05-07 13:07:01 +0530 | [diff] [blame] | 131 | #define CONFIG_SYS_NAND_BASE 0x40000000 |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 132 | |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 133 | #elif defined(CONFIG_SPEAR320) |
Amit Virdi | bc0bdf4 | 2012-05-07 13:07:01 +0530 | [diff] [blame] | 134 | #define CONFIG_SYS_NAND_BASE 0x50000000 |
Vipin KUMAR | 7da6923 | 2010-01-15 19:15:53 +0530 | [diff] [blame] | 135 | |
Vipin KUMAR | 080cfee | 2010-01-15 19:15:52 +0530 | [diff] [blame] | 136 | #endif |
| 137 | |
Vipin KUMAR | 1b7935c | 2012-05-07 13:06:48 +0530 | [diff] [blame] | 138 | /* Environment Settings */ |
| 139 | #if defined(CONFIG_SPEAR300) |
| 140 | #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_EXTRA_ENV_USBTTY |
| 141 | |
| 142 | #elif defined(CONFIG_SPEAR310) || defined(CONFIG_SPEAR320) |
| 143 | #define CONFIG_EXTRA_ENV_UNLOCK "unlock=yes\0" |
| 144 | #define CONFIG_EXTRA_ENV_SETTINGS CONFIG_EXTRA_ENV_USBTTY \ |
| 145 | CONFIG_EXTRA_ENV_UNLOCK |
| 146 | #endif |
| 147 | |
Vipin KUMAR | 7e07415 | 2010-01-15 19:15:50 +0530 | [diff] [blame] | 148 | #endif /* __CONFIG_H */ |