wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003, Li-Pro.Net <www.li-pro.net> |
| 3 | * Stephan Linz <linz@li-pro.net> |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #ifndef __CONFIG_H |
| 25 | #define __CONFIG_H |
| 26 | |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 27 | /*********************************************************************** |
| 28 | * Include the whole NIOS CPU configuration. |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 29 | * |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 30 | * !!! HAVE TO BE HERE !!! DON'T MOVE THIS PART !!! |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 31 | * |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 32 | ***********************************************************************/ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 33 | |
| 34 | #if defined(CONFIG_NIOS_SAFE_32) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 35 | #include <configs/DK1S10_safe_32.h> |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 36 | #elif defined(CONFIG_NIOS_STANDARD_32) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 37 | #include <configs/DK1S10_standard_32.h> |
| 38 | #elif defined(CONFIG_NIOS_MTX_LDK_20) |
| 39 | #include <configs/DK1S10_mtx_ldk_20.h> |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 40 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 41 | #error *** CONFIG_SYS_ERROR: you have to setup right NIOS CPU configuration |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 42 | #endif |
| 43 | |
| 44 | /*------------------------------------------------------------------------ |
| 45 | * BOARD/CPU -- TOP-LEVEL |
| 46 | *----------------------------------------------------------------------*/ |
| 47 | #define CONFIG_NIOS 1 /* NIOS-32 core */ |
| 48 | #define CONFIG_DK1S10 1 /* Stratix DK-1S10 board*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_CLK_FREQ CONFIG_SYS_NIOS_CPU_CLK/* 50 MHz core clock */ |
| 50 | #define CONFIG_SYS_HZ 1000 /* 1 msec time tick */ |
| 51 | #undef CONFIG_SYS_CLKS_IN_HZ |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 52 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* enable early board-spec. init*/ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 53 | |
| 54 | /*------------------------------------------------------------------------ |
| 55 | * BASE ADDRESSES / SIZE (Flash, SRAM, SDRAM) |
| 56 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | #if (CONFIG_SYS_NIOS_CPU_SDRAM_SIZE != 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 58 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 59 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_NIOS_CPU_SDRAM_BASE |
| 60 | #define CONFIG_SYS_SDRAM_SIZE CONFIG_SYS_NIOS_CPU_SDRAM_SIZE |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 61 | |
| 62 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 63 | #error *** CONFIG_SYS_ERROR: you have to setup any SDRAM in NIOS CPU config |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | #if defined(CONFIG_SYS_NIOS_CPU_SRAM_BASE) && defined(CONFIG_SYS_NIOS_CPU_SRAM_SIZE) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 67 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 68 | #define CONFIG_SYS_SRAM_BASE CONFIG_SYS_NIOS_CPU_SRAM_BASE |
| 69 | #define CONFIG_SYS_SRAM_SIZE CONFIG_SYS_NIOS_CPU_SRAM_SIZE |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 70 | |
| 71 | #else |
| 72 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 73 | #undef CONFIG_SYS_SRAM_BASE |
| 74 | #undef CONFIG_SYS_SRAM_SIZE |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 75 | |
| 76 | #endif |
| 77 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 78 | #define CONFIG_SYS_VECT_BASE CONFIG_SYS_NIOS_CPU_VEC_BASE |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 79 | |
| 80 | /*------------------------------------------------------------------------ |
| 81 | * MEMORY ORGANIZATION - For the most part, you can put things pretty |
| 82 | * much anywhere. This is pretty flexible for Nios. So here we make some |
| 83 | * arbitrary choices & assume that the monitor is placed at the end of |
| 84 | * a memory resource (so you must make sure TEXT_BASE is chosen |
| 85 | * appropriately). |
| 86 | * |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 87 | * -The heap is placed below the monitor. |
| 88 | * -Global data is placed below the heap. |
| 89 | * -The stack is placed below global data (&grows down). |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 90 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 91 | #define CONFIG_SYS_MONITOR_LEN (256 * 1024) /* Reserve 256k */ |
| 92 | #define CONFIG_SYS_GBL_DATA_SIZE 128 /* Global data size rsvd*/ |
| 93 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 94 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 95 | #define CONFIG_SYS_MONITOR_BASE TEXT_BASE |
| 96 | #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - CONFIG_SYS_MALLOC_LEN) |
| 97 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_MALLOC_BASE - CONFIG_SYS_GBL_DATA_SIZE) |
| 98 | #define CONFIG_SYS_INIT_SP CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 99 | |
| 100 | /*------------------------------------------------------------------------ |
| 101 | * FLASH (AM29LV065D) |
| 102 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 103 | #if (CONFIG_SYS_NIOS_CPU_FLASH_SIZE != 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 104 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_NIOS_CPU_FLASH_BASE |
| 106 | #define CONFIG_SYS_FLASH_SIZE CONFIG_SYS_NIOS_CPU_FLASH_SIZE |
| 107 | #define CONFIG_SYS_MAX_FLASH_SECT 128 /* Max # sects per bank */ |
| 108 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max # of flash banks */ |
| 109 | #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Erase timeout (msec) */ |
| 110 | #define CONFIG_SYS_FLASH_WRITE_TOUT 100 /* Write timeout (msec) */ |
| 111 | #define CONFIG_SYS_FLASH_WORD_SIZE unsigned char /* flash word size */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 112 | |
| 113 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | #error *** CONFIG_SYS_ERROR: you have to setup any Flash memory in NIOS CPU config |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 115 | #endif |
| 116 | |
| 117 | /*------------------------------------------------------------------------ |
| 118 | * ENVIRONMENT |
| 119 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | #if (CONFIG_SYS_NIOS_CPU_FLASH_SIZE != 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 121 | |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 122 | #define CONFIG_ENV_IS_IN_FLASH 1 /* Environment in flash */ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 123 | |
| 124 | #if defined(CONFIG_NIOS_STANDARD_32) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 125 | #define CONFIG_ENV_ADDR CONFIG_SYS_FLASH_BASE /* Mem addr of env */ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 126 | #elif defined(CONFIG_NIOS_MTX_LDK_20) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 128 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | #error *** CONFIG_SYS_ERROR: you have to setup the environment base address CONFIG_ENV_ADDR |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 130 | #endif |
| 131 | |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 132 | #define CONFIG_ENV_SIZE (64 * 1024) /* 64 KByte (1 sector) */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 133 | #define CONFIG_ENV_OVERWRITE /* Serial/eth change Ok */ |
| 134 | |
| 135 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 136 | #define CONFIG_ENV_IS_NOWHERE 1 /* NO Environment */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 137 | #endif |
| 138 | |
| 139 | /*------------------------------------------------------------------------ |
| 140 | * CONSOLE |
| 141 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 142 | #if (CONFIG_SYS_NIOS_CPU_UART_NUMS != 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 143 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | #define CONFIG_SYS_NIOS_CONSOLE CONFIG_SYS_NIOS_CPU_UART0 /* 1st UART is Cons. */ |
wdenk | b54d32b | 2004-06-10 21:34:36 +0000 | [diff] [blame] | 145 | #define CONFIG_LOADS_ECHO 1 /* echo on for serial download */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 146 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 147 | #if (CONFIG_SYS_NIOS_CPU_UART0_BR != 0) |
| 148 | #define CONFIG_SYS_NIOS_FIXEDBAUD 1 /* Baudrate is fixed */ |
| 149 | #define CONFIG_BAUDRATE CONFIG_SYS_NIOS_CPU_UART0_BR |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 150 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 151 | #undef CONFIG_SYS_NIOS_FIXEDBAUD |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 152 | #define CONFIG_BAUDRATE 115200 |
| 153 | #endif |
| 154 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 155 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 156 | |
| 157 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 158 | #error *** CONFIG_SYS_ERROR: you have to setup at least one UART in NIOS CPU config |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 159 | #endif |
| 160 | |
| 161 | /*------------------------------------------------------------------------ |
| 162 | * TIMER FOR TIMEBASE -- Nios doesn't have the equivalent of ppc PIT, |
| 163 | * so an avalon bus timer is required. |
| 164 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 165 | #if (CONFIG_SYS_NIOS_CPU_TIMER_NUMS != 0) && defined(CONFIG_SYS_NIOS_CPU_TICK_TIMER) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 166 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 167 | #if (CONFIG_SYS_NIOS_CPU_TICK_TIMER == 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 168 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 169 | #define CONFIG_SYS_NIOS_TMRBASE CONFIG_SYS_NIOS_CPU_TIMER0 /* TIMER0 as tick */ |
| 170 | #define CONFIG_SYS_NIOS_TMRIRQ CONFIG_SYS_NIOS_CPU_TIMER0_IRQ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 171 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 172 | #if (CONFIG_SYS_NIOS_CPU_TIMER0_FP == 1) /* fixed period */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 173 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 174 | #if (CONFIG_SYS_NIOS_CPU_TIMER0_PER >= CONFIG_SYS_HZ) |
| 175 | #define CONFIG_SYS_NIOS_TMRMS (CONFIG_SYS_NIOS_CPU_TIMER0_PER / CONFIG_SYS_HZ) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 176 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 177 | #error *** CONFIG_SYS_ERROR: you have to use a timer periode greater than CONFIG_SYS_HZ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 178 | #endif |
| 179 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 180 | #undef CONFIG_SYS_NIOS_TMRCNT /* no preloadable counter value */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 181 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 182 | #elif (CONFIG_SYS_NIOS_CPU_TIMER0_FP == 0) /* variable period */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 183 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 184 | #if (CONFIG_SYS_HZ <= 1000) |
| 185 | #define CONFIG_SYS_NIOS_TMRMS (1000 / CONFIG_SYS_HZ) |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 186 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 187 | #error *** CONFIG_SYS_ERROR: sorry, CONFIG_SYS_HZ have to be less than 1000 |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 188 | #endif |
| 189 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 190 | #define CONFIG_SYS_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ) |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 191 | |
| 192 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 193 | #error *** CONFIG_SYS_ERROR: you have to define CONFIG_SYS_NIOS_CPU_TIMER0_FP correct |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 194 | #endif |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 195 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 196 | #elif (CONFIG_SYS_NIOS_CPU_TICK_TIMER == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 197 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 198 | #define CONFIG_SYS_NIOS_TMRBASE CONFIG_SYS_NIOS_CPU_TIMER1 /* TIMER1 as tick */ |
| 199 | #define CONFIG_SYS_NIOS_TMRIRQ CONFIG_SYS_NIOS_CPU_TIMER1_IRQ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 200 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 201 | #if (CONFIG_SYS_NIOS_CPU_TIMER1_FP == 1) /* fixed period */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 202 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 203 | #if (CONFIG_SYS_NIOS_CPU_TIMER1_PER >= CONFIG_SYS_HZ) |
| 204 | #define CONFIG_SYS_NIOS_TMRMS (CONFIG_SYS_NIOS_CPU_TIMER1_PER / CONFIG_SYS_HZ) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 205 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 206 | #error *** CONFIG_SYS_ERROR: you have to use a timer periode greater than CONFIG_SYS_HZ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 207 | #endif |
| 208 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 209 | #undef CONFIG_SYS_NIOS_TMRCNT /* no preloadable counter value */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 210 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | #elif (CONFIG_SYS_NIOS_CPU_TIMER1_FP == 0) /* variable period */ |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 212 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 213 | #if (CONFIG_SYS_HZ <= 1000) |
| 214 | #define CONFIG_SYS_NIOS_TMRMS (1000 / CONFIG_SYS_HZ) |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 215 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 216 | #error *** CONFIG_SYS_ERROR: sorry, CONFIG_SYS_HZ have to be less than 1000 |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 217 | #endif |
| 218 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 219 | #define CONFIG_SYS_NIOS_TMRCNT (CONFIG_SYS_CLK_FREQ / CONFIG_SYS_HZ) |
wdenk | 63e73c9 | 2004-02-23 22:22:28 +0000 | [diff] [blame] | 220 | |
| 221 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | #error *** CONFIG_SYS_ERROR: you have to define CONFIG_SYS_NIOS_CPU_TIMER1_FP correct |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 223 | #endif |
| 224 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 225 | #endif /* CONFIG_SYS_NIOS_CPU_TICK_TIMER */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 226 | |
| 227 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 228 | #error *** CONFIG_SYS_ERROR: you have to setup at least one TIMER in NIOS CPU config |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 229 | #endif |
| 230 | |
| 231 | /*------------------------------------------------------------------------ |
| 232 | * Ethernet -- needs work! |
| 233 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 234 | #if (CONFIG_SYS_NIOS_CPU_LAN_NUMS == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 235 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | #if (CONFIG_SYS_NIOS_CPU_LAN0_TYPE == 0) /* LAN91C111 */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 237 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 238 | #define CONFIG_DRIVER_SMC91111 /* Using SMC91c111 */ |
| 239 | #undef CONFIG_SMC91111_EXT_PHY /* Internal PHY */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 240 | #define CONFIG_SMC91111_BASE (CONFIG_SYS_NIOS_CPU_LAN0_BASE + CONFIG_SYS_NIOS_CPU_LAN0_OFFS) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 241 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 242 | #if (CONFIG_SYS_NIOS_CPU_LAN0_BUSW == 32) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 243 | #define CONFIG_SMC_USE_32_BIT 1 |
| 244 | #else /* no */ |
| 245 | #undef CONFIG_SMC_USE_32_BIT |
| 246 | #endif |
| 247 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 248 | #elif (CONFIG_SYS_NIOS_CPU_LAN0_TYPE == 1) /* CS8900A */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 249 | |
| 250 | /********************************************/ |
| 251 | /* !!! CS8900 is __not__ tested on NIOS !!! */ |
| 252 | /********************************************/ |
| 253 | #define CONFIG_DRIVER_CS8900 /* Using CS8900 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 254 | #define CS8900_BASE (CONFIG_SYS_NIOS_CPU_LAN0_BASE + CONFIG_SYS_NIOS_CPU_LAN0_OFFS) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 255 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 256 | #if (CONFIG_SYS_NIOS_CPU_LAN0_BUSW == 32) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 257 | #undef CS8900_BUS16 |
| 258 | #define CS8900_BUS32 1 |
| 259 | #else /* no */ |
| 260 | #define CS8900_BUS16 1 |
| 261 | #undef CS8900_BUS32 |
| 262 | #endif |
| 263 | |
| 264 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 265 | #error *** CONFIG_SYS_ERROR: invalid LAN0 chip type, check your NIOS CPU config |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 266 | #endif |
| 267 | |
| 268 | #define CONFIG_ETHADDR 08:00:3e:26:0a:5b |
| 269 | #define CONFIG_NETMASK 255.255.255.0 |
| 270 | #define CONFIG_IPADDR 192.168.2.21 |
| 271 | #define CONFIG_SERVERIP 192.168.2.16 |
| 272 | |
| 273 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 274 | #error *** CONFIG_SYS_ERROR: you have to setup just one LAN only or expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 275 | #endif |
| 276 | |
| 277 | /*------------------------------------------------------------------------ |
| 278 | * STATUS LEDs |
| 279 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 280 | #if (CONFIG_SYS_NIOS_CPU_PIO_NUMS != 0) && defined(CONFIG_SYS_NIOS_CPU_LED_PIO) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 281 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 282 | #if (CONFIG_SYS_NIOS_CPU_LED_PIO == 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 283 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 284 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO0 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 285 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 286 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 287 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 288 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO1 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 289 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 290 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 2) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 291 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 292 | #define STATUS_LED_BASE CONFIG_SYS_NIOS_CPU_PIO2 |
| 293 | #define STATUS_LED_BITS CONFIG_SYS_NIOS_CPU_PIO2_BITS |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 294 | #define STATUS_LED_ACTIVE 1 /* LED on for bit == 1 */ |
| 295 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | #if (CONFIG_SYS_NIOS_CPU_PIO2_TYPE == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 297 | #define STATUS_LED_WRONLY 1 |
| 298 | #else |
| 299 | #undef STATUS_LED_WRONLY |
| 300 | #endif |
| 301 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 302 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 3) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 303 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 304 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO3 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 305 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 306 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 4) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 307 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 308 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO4 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 309 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 310 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 5) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 311 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO5 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 313 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 314 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 6) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 315 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 316 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO6 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 317 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 318 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 7) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 319 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 320 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO7 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 321 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 322 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 8) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 323 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 324 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO8 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 325 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 326 | #elif (CONFIG_SYS_NIOS_CPU_LED_PIO == 9) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 327 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 328 | #error *** CONFIG_SYS_ERROR: status LEDs at PIO9 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 329 | |
| 330 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 331 | #error *** CONFIG_SYS_ERROR: you have to set CONFIG_SYS_NIOS_CPU_LED_PIO in right case |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 332 | #endif |
| 333 | |
| 334 | #define CONFIG_STATUS_LED 1 /* enable status led driver */ |
| 335 | |
| 336 | #define STATUS_LED_BIT (1 << 0) /* LED[0] */ |
| 337 | #define STATUS_LED_STATE STATUS_LED_BLINKING |
| 338 | #define STATUS_LED_BOOT_STATE STATUS_LED_OFF |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 339 | #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 10) /* ca. 1 Hz */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 340 | #define STATUS_LED_BOOT 0 /* boot LED */ |
| 341 | |
| 342 | #if (STATUS_LED_BITS > 1) |
| 343 | #define STATUS_LED_BIT1 (1 << 1) /* LED[1] */ |
| 344 | #define STATUS_LED_STATE1 STATUS_LED_OFF |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 345 | #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 50) /* ca. 5 Hz */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 346 | #define STATUS_LED_RED 1 /* fail LED */ |
| 347 | #endif |
| 348 | |
| 349 | #if (STATUS_LED_BITS > 2) |
| 350 | #define STATUS_LED_BIT2 (1 << 2) /* LED[2] */ |
| 351 | #define STATUS_LED_STATE2 STATUS_LED_OFF |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 352 | #define STATUS_LED_PERIOD2 (CONFIG_SYS_HZ / 10) /* ca. 1 Hz */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 353 | #define STATUS_LED_YELLOW 2 /* info LED */ |
| 354 | #endif |
| 355 | |
| 356 | #if (STATUS_LED_BITS > 3) |
| 357 | #define STATUS_LED_BIT3 (1 << 3) /* LED[3] */ |
| 358 | #define STATUS_LED_STATE3 STATUS_LED_OFF |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 359 | #define STATUS_LED_PERIOD3 (CONFIG_SYS_HZ / 10) /* ca. 1 Hz */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 360 | #define STATUS_LED_GREEN 3 /* info LED */ |
| 361 | #endif |
| 362 | |
| 363 | #define STATUS_LED_PAR 1 /* makes status_led.h happy */ |
| 364 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 365 | #endif /* CONFIG_SYS_NIOS_CPU_PIO_NUMS */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 366 | |
| 367 | /*------------------------------------------------------------------------ |
| 368 | * SEVEN SEGMENT LED DISPLAY |
| 369 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 370 | #if (CONFIG_SYS_NIOS_CPU_PIO_NUMS != 0) && defined(CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 371 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 372 | #if (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 0) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 373 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 374 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO0 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 375 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 376 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 377 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 378 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO1 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 379 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 380 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 2) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 381 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 382 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO2 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 383 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 384 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 3) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 385 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 386 | #define SEVENSEG_BASE CONFIG_SYS_NIOS_CPU_PIO3 |
| 387 | #define SEVENSEG_BITS CONFIG_SYS_NIOS_CPU_PIO3_BITS |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 388 | #define SEVENSEG_ACTIVE 0 /* LED on for bit == 1 */ |
| 389 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 390 | #if (CONFIG_SYS_NIOS_CPU_PIO3_TYPE == 1) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 391 | #define SEVENSEG_WRONLY 1 |
| 392 | #else |
| 393 | #undef SEVENSEG_WRONLY |
| 394 | #endif |
| 395 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 396 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 4) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 397 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 398 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO4 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 399 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 400 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 5) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 401 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 402 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO5 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 403 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 6) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 405 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 406 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO6 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 407 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 408 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 7) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 409 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 410 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO7 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 411 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 412 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 8) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 413 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 414 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO8 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 415 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 416 | #elif (CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO == 9) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 417 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 418 | #error *** CONFIG_SYS_ERROR: seven segment display at PIO9 not supported, expand your config.h |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 419 | |
| 420 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 421 | #error *** CONFIG_SYS_ERROR: you have to set CONFIG_SYS_NIOS_CPU_SEVENSEG_PIO in right case |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 422 | #endif |
| 423 | |
| 424 | #define CONFIG_SEVENSEG 1 /* enable seven segment led driver */ |
| 425 | |
| 426 | /* |
| 427 | * Dual 7-Segment Display pin assignment -- read more in your |
| 428 | * "Nios Development Board Reference Manual" |
| 429 | * |
| 430 | * |
| 431 | * (U8) HI:D[15..8] (U9) LO:D[7..0] |
| 432 | * ______ ______ |
| 433 | * | D14 | | D6 | |
| 434 | * | | | | |
| 435 | * D9| |D13 D1| |D5 |
| 436 | * |______| |______| ___ |
| 437 | * | D8 | | D0 | | A | |
| 438 | * | | | | F|___|B |
| 439 | * D10| |D12 D2| |D4 | G | |
| 440 | * |______| |______| E|___|C |
| 441 | * D11 * D3 * D * |
| 442 | * D15 D7 DP |
| 443 | * |
| 444 | */ |
| 445 | #define SEVENSEG_DIGIT_HI_LO_EQUAL 1 /* high nibble equal low nibble */ |
| 446 | #define SEVENSEG_DIGIT_A (1 << 6) /* bit 6 is segment A */ |
| 447 | #define SEVENSEG_DIGIT_B (1 << 5) /* bit 5 is segment B */ |
| 448 | #define SEVENSEG_DIGIT_C (1 << 4) /* bit 4 is segment C */ |
| 449 | #define SEVENSEG_DIGIT_D (1 << 3) /* bit 3 is segment D */ |
| 450 | #define SEVENSEG_DIGIT_E (1 << 2) /* bit 2 is segment E */ |
| 451 | #define SEVENSEG_DIGIT_F (1 << 1) /* bit 1 is segment F */ |
| 452 | #define SEVENSEG_DIGIT_G (1 << 0) /* bit 0 is segment G */ |
| 453 | #define SEVENSEG_DIGIT_DP (1 << 7) /* bit 7 is decimal point */ |
| 454 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 455 | #endif /* CONFIG_SYS_NIOS_CPU_PIO_NUMS */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 456 | |
Jon Loeliger | 3c3227f | 2007-07-07 20:40:43 -0500 | [diff] [blame] | 457 | /* |
Jon Loeliger | 1179943 | 2007-07-10 09:02:57 -0500 | [diff] [blame] | 458 | * BOOTP options |
| 459 | */ |
| 460 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 461 | #define CONFIG_BOOTP_BOOTPATH |
| 462 | #define CONFIG_BOOTP_GATEWAY |
| 463 | #define CONFIG_BOOTP_HOSTNAME |
| 464 | |
| 465 | |
| 466 | /* |
Jon Loeliger | 3c3227f | 2007-07-07 20:40:43 -0500 | [diff] [blame] | 467 | * Command line configuration. |
| 468 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 4e62041 | 2007-10-24 18:16:01 +0200 | [diff] [blame] | 469 | #include <config_cmd_default.h> |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 470 | |
Jean-Christophe PLAGNIOL-VILLARD | 4e62041 | 2007-10-24 18:16:01 +0200 | [diff] [blame] | 471 | #define CONFIG_CMD_CDP |
| 472 | #define CONFIG_CMD_DHCP |
| 473 | #define CONFIG_CMD_DIAG |
| 474 | #define CONFIG_CMD_DISPLAY |
| 475 | #define CONFIG_CMD_EXT2 |
| 476 | #define CONFIG_CMD_IMMAP |
| 477 | #define CONFIG_CMD_IRQ |
| 478 | #define CONFIG_CMD_PING |
| 479 | #define CONFIG_CMD_PORTIO |
| 480 | #define CONFIG_CMD_REGINFO |
| 481 | #define CONFIG_CMD_REISER |
| 482 | #define CONFIG_CMD_SAVES |
| 483 | #define CONFIG_CMD_SDRAM |
| 484 | #define CONFIG_CMD_SNTP |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 485 | |
Jean-Christophe PLAGNIOL-VILLARD | 4e62041 | 2007-10-24 18:16:01 +0200 | [diff] [blame] | 486 | #undef CONFIG_CMD_NFS |
| 487 | #undef CONFIG_CMD_XIMG |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 488 | |
| 489 | /*------------------------------------------------------------------------ |
| 490 | * KGDB |
| 491 | *----------------------------------------------------------------------*/ |
Jon Loeliger | 3c3227f | 2007-07-07 20:40:43 -0500 | [diff] [blame] | 492 | #if defined(CONFIG_CMD_KGDB) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 493 | #define CONFIG_KGDB_BAUDRATE 9600 |
| 494 | #endif |
| 495 | |
| 496 | /*------------------------------------------------------------------------ |
| 497 | * MISC |
| 498 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 499 | #define CONFIG_SYS_LONGHELP /* undef to save memory */ |
| 500 | #define CONFIG_SYS_PROMPT "DK1S10 > " /* Monitor Command Prompt */ |
| 501 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ |
| 502 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */ |
| 503 | #define CONFIG_SYS_MAXARGS 16 /* max number of command args*/ |
| 504 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 505 | |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 506 | /* Default load address */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 507 | #if (CONFIG_SYS_SRAM_SIZE != 0) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 508 | |
| 509 | /* default in SRAM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 510 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SRAM_BASE |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 511 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 512 | #elif (CONFIG_SYS_SDRAM_SIZE != 0) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 513 | |
| 514 | /* default in SDRAM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 515 | #if (CONFIG_SYS_SDRAM_BASE == CONFIG_SYS_NIOS_CPU_VEC_BASE) |
| 516 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_NIOS_CPU_VEC_SIZE) |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 517 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 518 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 519 | #endif |
| 520 | |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 521 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 522 | #undef CONFIG_SYS_LOAD_ADDR /* force error break */ |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 523 | #endif |
| 524 | |
| 525 | |
| 526 | /* MEM test area */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 527 | #if (CONFIG_SYS_SDRAM_SIZE != 0) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 528 | |
| 529 | /* SDRAM begin to stack area (1MB stack) */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 530 | #if (CONFIG_SYS_SDRAM_BASE == CONFIG_SYS_NIOS_CPU_VEC_BASE) |
| 531 | #define CONFIG_SYS_MEMTEST_START (CONFIG_SYS_SDRAM_BASE + CONFIG_SYS_NIOS_CPU_VEC_SIZE) |
| 532 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - (1024 * 1024)) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 533 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 534 | #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE |
| 535 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_INIT_SP - (1024 * 1024)) |
wdenk | ec4c544 | 2004-02-09 23:12:24 +0000 | [diff] [blame] | 536 | #endif |
| 537 | |
| 538 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 539 | #undef CONFIG_SYS_MEMTEST_START /* force error break */ |
| 540 | #undef CONFIG_SYS_MEMTEST_END |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 541 | #endif |
| 542 | |
Wolfgang Denk | 700a0c6 | 2005-08-08 01:03:24 +0200 | [diff] [blame] | 543 | /* |
| 544 | * JFFS2 partitions |
| 545 | * |
| 546 | */ |
| 547 | /* No command line, one static partition, whole device */ |
| 548 | #undef CONFIG_JFFS2_CMDLINE |
| 549 | #define CONFIG_JFFS2_DEV "nor0" |
| 550 | #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF |
| 551 | #define CONFIG_JFFS2_PART_OFFSET 0x00000000 |
| 552 | |
| 553 | /* mtdparts command line support */ |
| 554 | /* |
| 555 | #define CONFIG_JFFS2_CMDLINE |
| 556 | #define MTDIDS_DEFAULT "" |
| 557 | #define MTDPARTS_DEFAULT "" |
| 558 | */ |
wdenk | c935d3b | 2004-01-03 19:43:48 +0000 | [diff] [blame] | 559 | |
| 560 | #endif /* __CONFIG_H */ |