wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004, Psyent Corporation <www.psyent.com> |
| 3 | * Scott McNutt <smcnutt@psyent.com> |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __CONFIG_H |
| 9 | #define __CONFIG_H |
| 10 | |
| 11 | /*------------------------------------------------------------------------ |
| 12 | * BOARD/CPU |
| 13 | *----------------------------------------------------------------------*/ |
| 14 | #define CONFIG_PCI5441 1 /* PCI-5441 board */ |
| 15 | #define CONFIG_SYS_CLK_FREQ 50000000 /* 50 MHz core clk */ |
| 16 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 17 | #define CONFIG_SYS_RESET_ADDR 0x00000000 /* Hard-reset address */ |
| 18 | #define CONFIG_SYS_EXCEPTION_ADDR 0x01000020 /* Exception entry point*/ |
| 19 | #define CONFIG_SYS_NIOS_SYSID_BASE 0x00920828 /* System id address */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 20 | #define CONFIG_BOARD_EARLY_INIT_F 1 /* enable early board-spec. init*/ |
| 21 | |
| 22 | /*------------------------------------------------------------------------ |
| 23 | * CACHE -- the following will support II/s and II/f. The II/s does not |
| 24 | * have dcache, so the cache instructions will behave as NOPs. |
| 25 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 26 | #define CONFIG_SYS_ICACHE_SIZE 4096 /* 4 KByte total */ |
| 27 | #define CONFIG_SYS_ICACHELINE_SIZE 32 /* 32 bytes/line */ |
| 28 | #define CONFIG_SYS_DCACHE_SIZE 2048 /* 2 KByte (II/f) */ |
| 29 | #define CONFIG_SYS_DCACHELINE_SIZE 4 /* 4 bytes/line (II/f) */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 30 | |
| 31 | /*------------------------------------------------------------------------ |
| 32 | * MEMORY BASE ADDRESSES |
| 33 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 34 | #define CONFIG_SYS_FLASH_BASE 0x00000000 /* FLASH base addr */ |
| 35 | #define CONFIG_SYS_FLASH_SIZE 0x00800000 /* 8 MByte */ |
| 36 | #define CONFIG_SYS_SDRAM_BASE 0x01000000 /* SDRAM base addr */ |
| 37 | #define CONFIG_SYS_SDRAM_SIZE 0x01000000 /* 16 MByte */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 38 | |
| 39 | /*------------------------------------------------------------------------ |
| 40 | * MEMORY ORGANIZATION |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 41 | * -Monitor at top. |
| 42 | * -The heap is placed below the monitor. |
| 43 | * -Global data is placed below the heap. |
| 44 | * -The stack is placed below global data (&grows down). |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 45 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | #define CONFIG_SYS_MONITOR_LEN (128 * 1024) /* Reserve 128k */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 47 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128*1024) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 48 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 49 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 50 | #define CONFIG_SYS_MALLOC_BASE (CONFIG_SYS_MONITOR_BASE - CONFIG_SYS_MALLOC_LEN) |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 51 | #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_MALLOC_BASE - GENERATED_GBL_DATA_SIZE) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #define CONFIG_SYS_INIT_SP CONFIG_SYS_GBL_DATA_OFFSET |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 53 | |
| 54 | /*------------------------------------------------------------------------ |
| 55 | * FLASH (AM29LV065D) |
| 56 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | #define CONFIG_SYS_MAX_FLASH_SECT 128 /* Max # sects per bank */ |
| 58 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* Max # of flash banks */ |
| 59 | #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Erase timeout (msec) */ |
| 60 | #define CONFIG_SYS_FLASH_WRITE_TOUT 100 /* Write timeout (msec) */ |
| 61 | #define CONFIG_SYS_FLASH_WORD_SIZE unsigned char /* flash word size */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 62 | |
| 63 | /*------------------------------------------------------------------------ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above |
| 65 | * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 66 | * reset address, no? This will keep the environment in user region |
| 67 | * of flash. NOTE: the monitor length must be multiple of sector size |
| 68 | * (which is common practice). |
| 69 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 5a1aceb | 2008-09-10 22:48:04 +0200 | [diff] [blame] | 70 | #define CONFIG_ENV_IS_IN_FLASH 1 /* Environment in flash */ |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 71 | #define CONFIG_ENV_SIZE (64 * 1024) /* 64 KByte (1 sector) */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 72 | #define CONFIG_ENV_OVERWRITE /* Serial change Ok */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 73 | #define CONFIG_ENV_ADDR (CONFIG_SYS_RESET_ADDR + CONFIG_SYS_MONITOR_LEN) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 74 | |
| 75 | /*------------------------------------------------------------------------ |
| 76 | * CONSOLE |
| 77 | *----------------------------------------------------------------------*/ |
Scott McNutt | c9d4f46 | 2010-03-19 19:03:28 -0400 | [diff] [blame] | 78 | #define CONFIG_ALTERA_UART 1 /* Use altera uart */ |
| 79 | #if defined(CONFIG_ALTERA_JTAG_UART) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 80 | #define CONFIG_SYS_NIOS_CONSOLE 0x00920820 /* JTAG UART base addr */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 81 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 82 | #define CONFIG_SYS_NIOS_CONSOLE 0x009208a0 /* UART base addr */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 83 | #endif |
| 84 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 85 | #define CONFIG_SYS_NIOS_FIXEDBAUD 1 /* Baudrate is fixed */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 86 | #define CONFIG_BAUDRATE 115200 /* Initial baudrate */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #define CONFIG_SYS_BAUDRATE_TABLE {115200} /* It's fixed ;-) */ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 88 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | #define CONFIG_SYS_CONSOLE_INFO_QUIET 1 /* Suppress console info*/ |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 90 | |
| 91 | /*------------------------------------------------------------------------ |
| 92 | * DEBUG |
| 93 | *----------------------------------------------------------------------*/ |
| 94 | #undef CONFIG_ROM_STUBS /* Stubs not in ROM */ |
| 95 | |
| 96 | /*------------------------------------------------------------------------ |
| 97 | * TIMEBASE -- |
| 98 | * |
| 99 | * The high res timer defaults to 1 msec. Since it includes the period |
Scott McNutt | 3a89a91 | 2010-03-30 20:23:04 -0400 | [diff] [blame] | 100 | * registers, the interrupt frequency can be reduced using TMRCNT. |
| 101 | * If the default period is acceptable, TMRCNT can be left undefined. |
| 102 | * TMRMS represents the desired mecs per tick (msecs per interrupt). |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 103 | *----------------------------------------------------------------------*/ |
Graeme Russ | e110c4f | 2011-07-15 02:18:56 +0000 | [diff] [blame] | 104 | #define CONFIG_SYS_LOW_RES_TIMER |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 105 | #define CONFIG_SYS_NIOS_TMRBASE 0x00920860 /* Tick timer base addr */ |
Scott McNutt | 3a89a91 | 2010-03-30 20:23:04 -0400 | [diff] [blame] | 106 | #define CONFIG_SYS_NIOS_TMRIRQ 3 /* Timer IRQ num */ |
| 107 | #define CONFIG_SYS_NIOS_TMRMS 10 /* Desired period (msec)*/ |
| 108 | #define CONFIG_SYS_NIOS_TMRCNT \ |
| 109 | (CONFIG_SYS_NIOS_TMRMS * (CONFIG_SYS_CLK_FREQ/1000)) |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 110 | |
Jon Loeliger | acf0269 | 2007-07-08 14:49:44 -0500 | [diff] [blame] | 111 | |
| 112 | /* |
Jon Loeliger | a1aa0bb | 2007-07-10 09:22:23 -0500 | [diff] [blame] | 113 | * BOOTP options |
| 114 | */ |
| 115 | #define CONFIG_BOOTP_BOOTFILESIZE |
| 116 | #define CONFIG_BOOTP_BOOTPATH |
| 117 | #define CONFIG_BOOTP_GATEWAY |
| 118 | #define CONFIG_BOOTP_HOSTNAME |
| 119 | |
| 120 | |
| 121 | /* |
Jon Loeliger | acf0269 | 2007-07-08 14:49:44 -0500 | [diff] [blame] | 122 | * Command line configuration. |
| 123 | */ |
| 124 | #define CONFIG_CMD_BDI |
| 125 | #define CONFIG_CMD_ECHO |
Mike Frysinger | bdab39d | 2009-01-28 19:08:14 -0500 | [diff] [blame] | 126 | #define CONFIG_CMD_SAVEENV |
Jon Loeliger | acf0269 | 2007-07-08 14:49:44 -0500 | [diff] [blame] | 127 | #define CONFIG_CMD_FLASH |
| 128 | #define CONFIG_CMD_IMI |
| 129 | #define CONFIG_CMD_IRQ |
| 130 | #define CONFIG_CMD_LOADS |
| 131 | #define CONFIG_CMD_LOADB |
| 132 | #define CONFIG_CMD_MEMORY |
| 133 | #define CONFIG_CMD_MISC |
| 134 | #define CONFIG_CMD_RUN |
| 135 | #define CONFIG_CMD_SAVES |
| 136 | |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 137 | |
| 138 | /*------------------------------------------------------------------------ |
| 139 | * MISC |
| 140 | *----------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 141 | #define CONFIG_SYS_LONGHELP /* Provide extended help*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 142 | #define CONFIG_SYS_CBSIZE 256 /* Console I/O buf size */ |
| 143 | #define CONFIG_SYS_MAXARGS 16 /* Max command args */ |
| 144 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot arg buf size */ |
| 145 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print buf size */ |
| 146 | #define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE /* Default load address */ |
| 147 | #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE /* Start addr for test */ |
| 148 | #define CONFIG_SYS_MEMTEST_END CONFIG_SYS_INIT_SP - 0x00020000 |
wdenk | 5c952cf | 2004-10-10 21:27:30 +0000 | [diff] [blame] | 149 | |
| 150 | #endif /* __CONFIG_H */ |