]> git.sur5r.net Git - u-boot/blob - include/configs/nios2-generic.h
nios2: Switch to generic timer
[u-boot] / include / configs / nios2-generic.h
1 /*
2  * (C) Copyright 2005, Psyent Corporation <www.psyent.com>
3  * Scott McNutt <smcnutt@psyent.com>
4  * (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
5  *
6  * SPDX-License-Identifier:     GPL-2.0+
7  */
8
9 #ifndef __CONFIG_H
10 #define __CONFIG_H
11
12 /*
13  * BOARD/CPU
14  */
15 #include "../board/altera/nios2-generic/custom_fpga.h" /* fpga parameters */
16 #define CONFIG_BOARD_NAME "nios2-generic" /* custom board name */
17 #define CONFIG_BOARD_EARLY_INIT_F       /* enable early board-spec. init */
18 #define CONFIG_BOARD_EARLY_INIT_R
19 #define CONFIG_DISPLAY_CPUINFO
20 #define CONFIG_DISPLAY_BOARDINFO
21 #define CONFIG_SYS_NIOS_SYSID_BASE      CONFIG_SYS_SYSID_BASE
22
23 /*
24  * SERIAL
25  */
26 #define CONFIG_ALTERA_JTAG_UART
27 #if defined(CONFIG_ALTERA_JTAG_UART)
28 # define CONFIG_SYS_NIOS_CONSOLE        CONFIG_SYS_JTAG_UART_BASE
29 #else
30 # define CONFIG_SYS_NIOS_CONSOLE        CONFIG_SYS_UART_BASE
31 #endif
32
33 #define CONFIG_ALTERA_JTAG_UART_BYPASS
34 #define CONFIG_SYS_NIOS_FIXEDBAUD
35 #define CONFIG_BAUDRATE         CONFIG_SYS_UART_BAUD
36 #define CONFIG_SYS_BAUDRATE_TABLE       {CONFIG_BAUDRATE}
37 #define CONFIG_SYS_CONSOLE_INFO_QUIET   /* Suppress console info */
38
39 /*
40  * TIMER
41  */
42 #define CONFIG_SYS_TIMER_RATE           CONFIG_SYS_TIMER_FREQ
43 #define CONFIG_SYS_NIOS_TMRMS           10      /* FIXME: Desired period (msec)*/
44
45 /*
46  * STATUS LED
47  */
48 #define CONFIG_ALTERA_PIO
49 #define CONFIG_SYS_ALTERA_PIO_NUM       1
50 #define CONFIG_SYS_ALTERA_PIO_GPIO_NUM  LED_PIO_WIDTH
51
52 #define CONFIG_STATUS_LED               /* Enable status driver */
53 #define CONFIG_BOARD_SPECIFIC_LED
54 #define CONFIG_GPIO_LED         /* Enable GPIO LED driver */
55 #define CONFIG_GPIO                     /* Enable GPIO driver */
56 #define LED_PIO_BASE                    USER_LED_PIO_8OUT_BASE
57 #define LED_PIO_WIDTH                   8
58 #define LED_PIO_RSTVAL                  0xff
59
60 #define STATUS_LED_BIT                  0       /* Bit-0 on GPIO */
61 #define STATUS_LED_STATE                1       /* Blinking */
62 #define STATUS_LED_PERIOD       (500 / CONFIG_SYS_NIOS_TMRMS) /* 500 msec */
63
64 /*
65  * BOOTP options
66  */
67 #define CONFIG_BOOTP_BOOTFILESIZE
68 #define CONFIG_BOOTP_BOOTPATH
69 #define CONFIG_BOOTP_GATEWAY
70 #define CONFIG_BOOTP_HOSTNAME
71
72 /*
73  * FDT options
74  */
75 #define CONFIG_OF_LIBFDT
76 #define CONFIG_OF_BOARD_SETUP
77 #define CONFIG_LMB
78
79 /*
80  * ENVIRONMENT -- Put environment in sector CONFIG_SYS_MONITOR_LEN above
81  * CONFIG_SYS_RESET_ADDR, since we assume the monitor is stored at the
82  * reset address, no? This will keep the environment in user region
83  * of flash. NOTE: the monitor length must be multiple of sector size
84  * (which is common practice).
85  */
86 #define CONFIG_ENV_IS_IN_FLASH
87
88 #define CONFIG_ENV_SIZE         0x20000 /* 128k, 1 sector */
89 #define CONFIG_ENV_OVERWRITE            /* Serial change Ok     */
90 #define CONFIG_ENV_ADDR         ((CONFIG_SYS_RESET_ADDR + \
91                                           CONFIG_SYS_MONITOR_LEN) | \
92                                          CONFIG_SYS_FLASH_BASE)
93
94 /*
95  * MEMORY ORGANIZATION
96  * -Monitor at top of sdram.
97  * -The heap is placed below the monitor
98  * -The stack is placed below the heap (&grows down).
99  */
100 #define CONFIG_MONITOR_IS_IN_RAM
101 #define CONFIG_SYS_MONITOR_LEN          0x40000 /* Reserve 256k */
102 #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_SDRAM_BASE + \
103                                          CONFIG_SYS_SDRAM_SIZE - \
104                                          CONFIG_SYS_MONITOR_LEN)
105 #define CONFIG_SYS_MALLOC_LEN           (CONFIG_ENV_SIZE + 0x20000)
106 #define CONFIG_SYS_MALLOC_BASE          (CONFIG_SYS_MONITOR_BASE - \
107                                          CONFIG_SYS_MALLOC_LEN)
108 #define CONFIG_SYS_INIT_SP              CONFIG_SYS_MALLOC_BASE
109
110 /*
111  * MISC
112  */
113 #define CONFIG_SYS_LONGHELP             /* Provide extended help */
114 #define CONFIG_SYS_CBSIZE               256     /* Console I/O buf size */
115 #define CONFIG_SYS_MAXARGS              16      /* Max command args     */
116 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE /* Bootarg buf size */
117 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE + \
118                                         sizeof(CONFIG_SYS_PROMPT) + \
119                                          16)    /* Print buf size */
120 #define CONFIG_SYS_LOAD_ADDR            CONFIG_SYS_SDRAM_BASE
121 #define CONFIG_SYS_MEMTEST_START        CONFIG_SYS_SDRAM_BASE
122 #define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_INIT_SP - 0x20000)
123 #define CONFIG_CMDLINE_EDITING
124
125 #endif /* __CONFIG_H */