ADNPESC1_base_32.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /*
  2. * (C) Copyright 2004, 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. #ifndef __CONFIG_ADNPESC1_BASE_32_H
  24. #define __CONFIG_ADNPESC1_BASE_32_H
  25. /*
  26. * NIOS CPU configuration. (PART OF configs/ADNPESC1.h)
  27. *
  28. * Here we must define CPU dependencies. Any unsupported option have to
  29. * be undefined or defined with zero, example CPU without data cache / OCI:
  30. *
  31. * #define CONFIG_SYS_NIOS_CPU_ICACHE 4096
  32. * #define CONFIG_SYS_NIOS_CPU_DCACHE 0
  33. * #undef CONFIG_SYS_NIOS_CPU_OCI_BASE
  34. * #undef CONFIG_SYS_NIOS_CPU_OCI_SIZE
  35. */
  36. /* CPU core */
  37. #define CONFIG_SYS_NIOS_CPU_CLK 50000000 /* NIOS CPU clock */
  38. #define CONFIG_SYS_NIOS_CPU_ICACHE (0) /* instruction cache */
  39. #define CONFIG_SYS_NIOS_CPU_DCACHE (0) /* data cache */
  40. #define CONFIG_SYS_NIOS_CPU_REG_NUMS 512 /* number of register */
  41. #define CONFIG_SYS_NIOS_CPU_MUL 0 /* 16x16 MUL: no(0) */
  42. /* yes(1) */
  43. #define CONFIG_SYS_NIOS_CPU_MSTEP 1 /* 16x16 MSTEP: no(0) */
  44. /* yes(1) */
  45. #define CONFIG_SYS_NIOS_CPU_STACK 0x03000000 /* stack top addr */
  46. #define CONFIG_SYS_NIOS_CPU_VEC_BASE 0x02000000 /* IRQ vectors addr */
  47. #define CONFIG_SYS_NIOS_CPU_VEC_SIZE 256 /* size */
  48. #define CONFIG_SYS_NIOS_CPU_VEC_NUMS 64 /* numbers */
  49. #define CONFIG_SYS_NIOS_CPU_RST_VECT 0x00000000 /* RESET vector addr */
  50. #define CONFIG_SYS_NIOS_CPU_DBG_CORE 0 /* CPU debug: no(0) */
  51. /* yes(1) */
  52. /* The offset address in flash to check for the Nios signature "Ni".
  53. * (see GM_FlashExec in germs_monitor.s) */
  54. #define CONFIG_SYS_NIOS_CPU_EXES_OFFS 0x0C
  55. /* on-chip extensions */
  56. #undef CONFIG_SYS_NIOS_CPU_RAM_BASE /* on chip RAM addr */
  57. #undef CONFIG_SYS_NIOS_CPU_RAM_SIZE /* 64 KB size */
  58. #define CONFIG_SYS_NIOS_CPU_ROM_BASE 0x00000000 /* on chip ROM addr */
  59. #define CONFIG_SYS_NIOS_CPU_ROM_SIZE (2 * 1024) /* 2 KB size */
  60. #undef CONFIG_SYS_NIOS_CPU_OCI_BASE /* OCI core addr */
  61. #undef CONFIG_SYS_NIOS_CPU_OCI_SIZE /* size */
  62. /* timer */
  63. #define CONFIG_SYS_NIOS_CPU_TIMER_NUMS 1 /* number of timer */
  64. #define CONFIG_SYS_NIOS_CPU_TIMER0 0x00000840 /* TIMER0 addr */
  65. #define CONFIG_SYS_NIOS_CPU_TIMER0_IRQ 16 /* IRQ */
  66. #define CONFIG_SYS_NIOS_CPU_TIMER0_PER 1000 /* periode usec */
  67. #define CONFIG_SYS_NIOS_CPU_TIMER0_AR 0 /* always run: no(0) */
  68. /* yes(1) */
  69. #define CONFIG_SYS_NIOS_CPU_TIMER0_FP 0 /* fixed per: no(0) */
  70. /* yes(1) */
  71. #define CONFIG_SYS_NIOS_CPU_TIMER0_SS 1 /* snaphot: no(0) */
  72. /* yes(1) */
  73. /* serial i/o */
  74. #define CONFIG_SYS_NIOS_CPU_UART_NUMS 2 /* number of uarts */
  75. #define CONFIG_SYS_NIOS_CPU_UART0 0x00000800 /* UART0 addr */
  76. #define CONFIG_SYS_NIOS_CPU_UART0_IRQ 17 /* IRQ */
  77. #define CONFIG_SYS_NIOS_CPU_UART0_BR 115200 /* baudrate var(0) */
  78. #define CONFIG_SYS_NIOS_CPU_UART0_DB 8 /* data bit */
  79. #define CONFIG_SYS_NIOS_CPU_UART0_SB 1 /* stop bit */
  80. #define CONFIG_SYS_NIOS_CPU_UART0_PA 0 /* parity none(0) */
  81. /* odd(1) */
  82. /* even(2) */
  83. #define CONFIG_SYS_NIOS_CPU_UART0_HS 1 /* handshake: no(0) */
  84. /* crts(1) */
  85. #define CONFIG_SYS_NIOS_CPU_UART0_EOP 0 /* eop reg: no(0) */
  86. /* yes(1) */
  87. #define CONFIG_SYS_NIOS_CPU_UART1 0x00000820 /* UART1 addr */
  88. #define CONFIG_SYS_NIOS_CPU_UART1_IRQ 18 /* IRQ */
  89. #define CONFIG_SYS_NIOS_CPU_UART1_BR 115200 /* baudrate var(0) */
  90. #define CONFIG_SYS_NIOS_CPU_UART1_DB 8 /* data bit */
  91. #define CONFIG_SYS_NIOS_CPU_UART1_SB 1 /* stop bit */
  92. #define CONFIG_SYS_NIOS_CPU_UART1_PA 0 /* parity none(0) */
  93. /* odd(1) */
  94. /* even(2) */
  95. #define CONFIG_SYS_NIOS_CPU_UART1_HS 0 /* handshake: no(0) */
  96. /* crts(1) */
  97. #define CONFIG_SYS_NIOS_CPU_UART1_EOP 0 /* eop reg: no(0) */
  98. /* yes(1) */
  99. /* serial peripheral i/o */
  100. #define CONFIG_SYS_NIOS_CPU_SPI_NUMS 1 /* number of spis */
  101. #define CONFIG_SYS_NIOS_CPU_SPI0 0x000008c0 /* SPI0 addr */
  102. #define CONFIG_SYS_NIOS_CPU_SPI0_IRQ 25 /* IRQ */
  103. #define CONFIG_SYS_NIOS_CPU_SPI0_BITS 16 /* data bit */
  104. #define CONFIG_SYS_NIOS_CPU_SPI0_MA 1 /* is master: no(0) */
  105. /* yes(1) */
  106. #define CONFIG_SYS_NIOS_CPU_SPI0_SLN 1 /* num slaves */
  107. #define CONFIG_SYS_NIOS_CPU_SPI0_TCLK 250000 /* clock (Hz) */
  108. #define CONFIG_SYS_NIOS_CPU_SPI0_TDELAY 2 /* delay (usec) */
  109. #define CONFIG_SYS_NIOS_CPU_SPI0_FB 0 /* first bit msb(0) */
  110. /* lsb(1) */
  111. /* parallel i/o */
  112. #define CONFIG_SYS_NIOS_CPU_PIO_NUMS 14 /* number of parports */
  113. #define CONFIG_SYS_NIOS_CPU_PIO0 0x00000860 /* PIO0 addr */
  114. #undef CONFIG_SYS_NIOS_CPU_PIO0_IRQ /* w/o IRQ */
  115. #define CONFIG_SYS_NIOS_CPU_PIO0_BITS 8 /* number of bits */
  116. #define CONFIG_SYS_NIOS_CPU_PIO0_TYPE 0 /* io type: tris(0) */
  117. /* out(1) */
  118. /* in(2) */
  119. #define CONFIG_SYS_NIOS_CPU_PIO0_CAP 0 /* capture: no(0) */
  120. /* yes(1) */
  121. #define CONFIG_SYS_NIOS_CPU_PIO0_EDGE 0 /* edge type: none(0) */
  122. /* fall(1) */
  123. /* rise(2) */
  124. /* any(3) */
  125. #define CONFIG_SYS_NIOS_CPU_PIO0_ITYPE 0 /* IRQ type: none(0) */
  126. /* level(1)*/
  127. /* edge(2) */
  128. #define CONFIG_SYS_NIOS_CPU_PIO1 0x00000870 /* PIO1 addr */
  129. #undef CONFIG_SYS_NIOS_CPU_PIO1_IRQ /* w/o IRQ */
  130. #define CONFIG_SYS_NIOS_CPU_PIO1_BITS 8 /* number of bits */
  131. #define CONFIG_SYS_NIOS_CPU_PIO1_TYPE 0 /* io type: tris(0) */
  132. /* out(1) */
  133. /* in(2) */
  134. #define CONFIG_SYS_NIOS_CPU_PIO1_CAP 0 /* capture: no(0) */
  135. /* yes(1) */
  136. #define CONFIG_SYS_NIOS_CPU_PIO1_EDGE 0 /* edge type: none(0) */
  137. /* fall(1) */
  138. /* rise(2) */
  139. /* any(3) */
  140. #define CONFIG_SYS_NIOS_CPU_PIO1_ITYPE 0 /* IRQ type: none(0) */
  141. /* level(1)*/
  142. /* edge(2) */
  143. #define CONFIG_SYS_NIOS_CPU_PIO2 0x00000880 /* PIO2 addr */
  144. #undef CONFIG_SYS_NIOS_CPU_PIO2_IRQ /* w/o IRQ */
  145. #define CONFIG_SYS_NIOS_CPU_PIO2_BITS 4 /* number of bits */
  146. #define CONFIG_SYS_NIOS_CPU_PIO2_TYPE 0 /* io type: tris(0) */
  147. /* out(1) */
  148. /* in(2) */
  149. #define CONFIG_SYS_NIOS_CPU_PIO2_CAP 0 /* capture: no(0) */
  150. /* yes(1) */
  151. #define CONFIG_SYS_NIOS_CPU_PIO2_EDGE 0 /* edge type: none(0) */
  152. /* fall(1) */
  153. /* rise(2) */
  154. /* any(3) */
  155. #define CONFIG_SYS_NIOS_CPU_PIO2_ITYPE 0 /* IRQ type: none(0) */
  156. /* level(1)*/
  157. /* edge(2) */
  158. #define CONFIG_SYS_NIOS_CPU_PIO3 0x00000890 /* PIO3 addr */
  159. #undef CONFIG_SYS_NIOS_CPU_PIO3_IRQ /* w/o IRQ */
  160. #define CONFIG_SYS_NIOS_CPU_PIO3_BITS 1 /* number of bits */
  161. #define CONFIG_SYS_NIOS_CPU_PIO3_TYPE 2 /* io type: tris(0) */
  162. /* out(1) */
  163. /* in(2) */
  164. #define CONFIG_SYS_NIOS_CPU_PIO3_CAP 0 /* capture: no(0) */
  165. /* yes(1) */
  166. #define CONFIG_SYS_NIOS_CPU_PIO3_EDGE 0 /* edge type: none(0) */
  167. /* fall(1) */
  168. /* rise(2) */
  169. /* any(3) */
  170. #define CONFIG_SYS_NIOS_CPU_PIO3_ITYPE 0 /* IRQ type: none(0) */
  171. /* level(1)*/
  172. /* edge(2) */
  173. #define CONFIG_SYS_NIOS_CPU_PIO3 0x00000890 /* PIO3 addr */
  174. #undef CONFIG_SYS_NIOS_CPU_PIO3_IRQ /* w/o IRQ */
  175. #define CONFIG_SYS_NIOS_CPU_PIO3_BITS 1 /* number of bits */
  176. #define CONFIG_SYS_NIOS_CPU_PIO3_TYPE 2 /* io type: tris(0) */
  177. /* out(1) */
  178. /* in(2) */
  179. #define CONFIG_SYS_NIOS_CPU_PIO3_CAP 0 /* capture: no(0) */
  180. /* yes(1) */
  181. #define CONFIG_SYS_NIOS_CPU_PIO3_EDGE 0 /* edge type: none(0) */
  182. /* fall(1) */
  183. /* rise(2) */
  184. /* any(3) */
  185. #define CONFIG_SYS_NIOS_CPU_PIO3_ITYPE 0 /* IRQ type: none(0) */
  186. /* level(1)*/
  187. /* edge(2) */
  188. #define CONFIG_SYS_NIOS_CPU_PIO4 0x000008a0 /* PIO4 addr */
  189. #undef CONFIG_SYS_NIOS_CPU_PIO4_IRQ /* w/o IRQ */
  190. #define CONFIG_SYS_NIOS_CPU_PIO4_BITS 1 /* number of bits */
  191. #define CONFIG_SYS_NIOS_CPU_PIO4_TYPE 1 /* io type: tris(0) */
  192. /* out(1) */
  193. /* in(2) */
  194. #define CONFIG_SYS_NIOS_CPU_PIO4_CAP 0 /* capture: no(0) */
  195. /* yes(1) */
  196. #define CONFIG_SYS_NIOS_CPU_PIO4_EDGE 0 /* edge type: none(0) */
  197. /* fall(1) */
  198. /* rise(2) */
  199. /* any(3) */
  200. #define CONFIG_SYS_NIOS_CPU_PIO4_ITYPE 0 /* IRQ type: none(0) */
  201. /* level(1)*/
  202. /* edge(2) */
  203. #define CONFIG_SYS_NIOS_CPU_PIO5 0x000008b0 /* PIO5 addr */
  204. #undef CONFIG_SYS_NIOS_CPU_PIO5_IRQ /* w/o IRQ */
  205. #define CONFIG_SYS_NIOS_CPU_PIO5_BITS 1 /* number of bits */
  206. #define CONFIG_SYS_NIOS_CPU_PIO5_TYPE 1 /* io type: tris(0) */
  207. /* out(1) */
  208. /* in(2) */
  209. #define CONFIG_SYS_NIOS_CPU_PIO5_CAP 0 /* capture: no(0) */
  210. /* yes(1) */
  211. #define CONFIG_SYS_NIOS_CPU_PIO5_EDGE 0 /* edge type: none(0) */
  212. /* fall(1) */
  213. /* rise(2) */
  214. /* any(3) */
  215. #define CONFIG_SYS_NIOS_CPU_PIO5_ITYPE 0 /* IRQ type: none(0) */
  216. /* level(1)*/
  217. /* edge(2) */
  218. #define CONFIG_SYS_NIOS_CPU_PIO6 0x00000900 /* PIO6 addr */
  219. #define CONFIG_SYS_NIOS_CPU_PIO6_IRQ 20 /* IRQ */
  220. #define CONFIG_SYS_NIOS_CPU_PIO6_BITS 1 /* number of bits */
  221. #define CONFIG_SYS_NIOS_CPU_PIO6_TYPE 2 /* io type: tris(0) */
  222. /* out(1) */
  223. /* in(2) */
  224. #define CONFIG_SYS_NIOS_CPU_PIO6_CAP 1 /* capture: no(0) */
  225. /* yes(1) */
  226. #define CONFIG_SYS_NIOS_CPU_PIO6_EDGE 2 /* edge type: none(0) */
  227. /* fall(1) */
  228. /* rise(2) */
  229. /* any(3) */
  230. #define CONFIG_SYS_NIOS_CPU_PIO6_ITYPE 1 /* IRQ type: none(0) */
  231. /* level(1)*/
  232. /* edge(2) */
  233. #define CONFIG_SYS_NIOS_CPU_PIO7 0x00000910 /* PIO7 addr */
  234. #define CONFIG_SYS_NIOS_CPU_PIO7_IRQ 31 /* IRQ */
  235. #define CONFIG_SYS_NIOS_CPU_PIO7_BITS 1 /* number of bits */
  236. #define CONFIG_SYS_NIOS_CPU_PIO7_TYPE 2 /* io type: tris(0) */
  237. /* out(1) */
  238. /* in(2) */
  239. #define CONFIG_SYS_NIOS_CPU_PIO7_CAP 1 /* capture: no(0) */
  240. /* yes(1) */
  241. #define CONFIG_SYS_NIOS_CPU_PIO7_EDGE 2 /* edge type: none(0) */
  242. /* fall(1) */
  243. /* rise(2) */
  244. /* any(3) */
  245. #define CONFIG_SYS_NIOS_CPU_PIO7_ITYPE 1 /* IRQ type: none(0) */
  246. /* level(1)*/
  247. /* edge(2) */
  248. #define CONFIG_SYS_NIOS_CPU_PIO8 0x00000920 /* PIO8 addr */
  249. #define CONFIG_SYS_NIOS_CPU_PIO8_IRQ 32 /* IRQ */
  250. #define CONFIG_SYS_NIOS_CPU_PIO8_BITS 1 /* number of bits */
  251. #define CONFIG_SYS_NIOS_CPU_PIO8_TYPE 2 /* io type: tris(0) */
  252. /* out(1) */
  253. /* in(2) */
  254. #define CONFIG_SYS_NIOS_CPU_PIO8_CAP 1 /* capture: no(0) */
  255. /* yes(1) */
  256. #define CONFIG_SYS_NIOS_CPU_PIO8_EDGE 2 /* edge type: none(0) */
  257. /* fall(1) */
  258. /* rise(2) */
  259. /* any(3) */
  260. #define CONFIG_SYS_NIOS_CPU_PIO8_ITYPE 1 /* IRQ type: none(0) */
  261. /* level(1)*/
  262. /* edge(2) */
  263. #define CONFIG_SYS_NIOS_CPU_PIO9 0x00000930 /* PIO9 addr */
  264. #define CONFIG_SYS_NIOS_CPU_PIO9_IRQ 33 /* IRQ */
  265. #define CONFIG_SYS_NIOS_CPU_PIO9_BITS 1 /* number of bits */
  266. #define CONFIG_SYS_NIOS_CPU_PIO9_TYPE 2 /* io type: tris(0) */
  267. /* out(1) */
  268. /* in(2) */
  269. #define CONFIG_SYS_NIOS_CPU_PIO9_CAP 1 /* capture: no(0) */
  270. /* yes(1) */
  271. #define CONFIG_SYS_NIOS_CPU_PIO9_EDGE 2 /* edge type: none(0) */
  272. /* fall(1) */
  273. /* rise(2) */
  274. /* any(3) */
  275. #define CONFIG_SYS_NIOS_CPU_PIO9_ITYPE 1 /* IRQ type: none(0) */
  276. /* level(1)*/
  277. /* edge(2) */
  278. #define CONFIG_SYS_NIOS_CPU_PIO10 0x00000940 /* PIO10 addr */
  279. #define CONFIG_SYS_NIOS_CPU_PIO10_IRQ 34 /* IRQ */
  280. #define CONFIG_SYS_NIOS_CPU_PIO10_BITS 1 /* number of bits */
  281. #define CONFIG_SYS_NIOS_CPU_PIO10_TYPE 2 /* io type: tris(0) */
  282. /* out(1) */
  283. /* in(2) */
  284. #define CONFIG_SYS_NIOS_CPU_PIO10_CAP 1 /* capture: no(0) */
  285. /* yes(1) */
  286. #define CONFIG_SYS_NIOS_CPU_PIO10_EDGE 2 /* edge type: none(0) */
  287. /* fall(1) */
  288. /* rise(2) */
  289. /* any(3) */
  290. #define CONFIG_SYS_NIOS_CPU_PIO10_ITYPE 1 /* IRQ type: none(0) */
  291. /* level(1)*/
  292. /* edge(2) */
  293. #define CONFIG_SYS_NIOS_CPU_PIO11 0x00000950 /* PIO11 addr */
  294. #define CONFIG_SYS_NIOS_CPU_PIO11_IRQ 35 /* IRQ */
  295. #define CONFIG_SYS_NIOS_CPU_PIO11_BITS 1 /* number of bits */
  296. #define CONFIG_SYS_NIOS_CPU_PIO11_TYPE 2 /* io type: tris(0) */
  297. /* out(1) */
  298. /* in(2) */
  299. #define CONFIG_SYS_NIOS_CPU_PIO11_CAP 1 /* capture: no(0) */
  300. /* yes(1) */
  301. #define CONFIG_SYS_NIOS_CPU_PIO11_EDGE 2 /* edge type: none(0) */
  302. /* fall(1) */
  303. /* rise(2) */
  304. /* any(3) */
  305. #define CONFIG_SYS_NIOS_CPU_PIO11_ITYPE 1 /* IRQ type: none(0) */
  306. /* level(1)*/
  307. /* edge(2) */
  308. #define CONFIG_SYS_NIOS_CPU_PIO12 0x00000960 /* PIO12 addr */
  309. #define CONFIG_SYS_NIOS_CPU_PIO12_IRQ 36 /* IRQ */
  310. #define CONFIG_SYS_NIOS_CPU_PIO12_BITS 1 /* number of bits */
  311. #define CONFIG_SYS_NIOS_CPU_PIO12_TYPE 2 /* io type: tris(0) */
  312. /* out(1) */
  313. /* in(2) */
  314. #define CONFIG_SYS_NIOS_CPU_PIO12_CAP 1 /* capture: no(0) */
  315. /* yes(1) */
  316. #define CONFIG_SYS_NIOS_CPU_PIO12_EDGE 2 /* edge type: none(0) */
  317. /* fall(1) */
  318. /* rise(2) */
  319. /* any(3) */
  320. #define CONFIG_SYS_NIOS_CPU_PIO12_ITYPE 1 /* IRQ type: none(0) */
  321. /* level(1)*/
  322. /* edge(2) */
  323. #define CONFIG_SYS_NIOS_CPU_PIO13 0x00000970 /* PIO113 addr */
  324. #define CONFIG_SYS_NIOS_CPU_PIO13_IRQ 37 /* IRQ */
  325. #define CONFIG_SYS_NIOS_CPU_PIO13_BITS 1 /* number of bits */
  326. #define CONFIG_SYS_NIOS_CPU_PIO13_TYPE 2 /* io type: tris(0) */
  327. /* out(1) */
  328. /* in(2) */
  329. #define CONFIG_SYS_NIOS_CPU_PIO13_CAP 1 /* capture: no(0) */
  330. /* yes(1) */
  331. #define CONFIG_SYS_NIOS_CPU_PIO13_EDGE 2 /* edge type: none(0) */
  332. /* fall(1) */
  333. /* rise(2) */
  334. /* any(3) */
  335. #define CONFIG_SYS_NIOS_CPU_PIO13_ITYPE 1 /* IRQ type: none(0) */
  336. /* level(1)*/
  337. /* edge(2) */
  338. /* IDE i/f */
  339. #define CONFIG_SYS_NIOS_CPU_IDE_NUMS 2 /* number of IDE contr. */
  340. #define CONFIG_SYS_NIOS_CPU_IDE0 0x00001000 /* IDE0 addr */
  341. #define CONFIG_SYS_NIOS_CPU_IDE0_IRQ 36 /* IRQ */
  342. #define CONFIG_SYS_NIOS_CPU_IDE1 0x00001020 /* IDE1 addr */
  343. #define CONFIG_SYS_NIOS_CPU_IDE1_IRQ 37 /* IRQ */
  344. /* memory accessibility */
  345. #undef CONFIG_SYS_NIOS_CPU_SRAM_BASE /* board SRAM addr */
  346. #undef CONFIG_SYS_NIOS_CPU_SRAM_SIZE /* 1 MB size */
  347. #define CONFIG_SYS_NIOS_CPU_SDRAM_BASE 0x02000000 /* board SDRAM addr */
  348. #define CONFIG_SYS_NIOS_CPU_SDRAM_SIZE (16*1024*1024) /* 16 MB size */
  349. #define CONFIG_SYS_NIOS_CPU_FLASH_BASE 0x01000000 /* board Flash addr */
  350. #define CONFIG_SYS_NIOS_CPU_FLASH_SIZE (8*1024*1024) /* 8 MB size */
  351. /* LAN */
  352. #define CONFIG_SYS_NIOS_CPU_LAN_NUMS 1 /* number of LAN i/f */
  353. #define CONFIG_SYS_NIOS_CPU_LAN0_BASE 0x00010000 /* LAN0 addr */
  354. #define CONFIG_SYS_NIOS_CPU_LAN0_OFFS (0) /* offset */
  355. #define CONFIG_SYS_NIOS_CPU_LAN0_IRQ 20 /* IRQ */
  356. #define CONFIG_SYS_NIOS_CPU_LAN0_BUSW 16 /* buswidth*/
  357. #define CONFIG_SYS_NIOS_CPU_LAN0_TYPE 0 /* smc91111(0) */
  358. /* cs8900(1) */
  359. /* ex: openmac(2) */
  360. /* ex: alteramac(3) */
  361. /* external extension */
  362. #define CONFIG_SYS_NIOS_CPU_CS0_BASE 0x40000000 /* board EXT0 addr */
  363. #define CONFIG_SYS_NIOS_CPU_CS0_SIZE (16*1024*1024) /* max. 16 MB size */
  364. #define CONFIG_SYS_NIOS_CPU_CS1_BASE 0x41000000 /* board EXT1 addr */
  365. #define CONFIG_SYS_NIOS_CPU_CS1_SIZE (16*1024*1024) /* max. 16 MB size */
  366. #define CONFIG_SYS_NIOS_CPU_CS2_BASE 0x42000000 /* board EXT2 addr */
  367. #define CONFIG_SYS_NIOS_CPU_CS2_SIZE (16*1024*1024) /* max. 16 MB size */
  368. #define CONFIG_SYS_NIOS_CPU_CS3_BASE 0x43000000 /* board EXT3 addr */
  369. #define CONFIG_SYS_NIOS_CPU_CS3_SIZE (16*1024*1024) /* max. 16 MB size */
  370. /* symbolic redefinition (undef, if not present) */
  371. #define CONFIG_SYS_NIOS_CPU_TICK_TIMER 0 /* TIMER0: tick (needed)*/
  372. #undef CONFIG_SYS_NIOS_CPU_USER_TIMER /* TIMERx: users choice */
  373. #define CONFIG_SYS_NIOS_CPU_PORTA_PIO 0 /* PIO0: Port A */
  374. #define CONFIG_SYS_NIOS_CPU_PORTB_PIO 1 /* PIO1: Port D */
  375. #define CONFIG_SYS_NIOS_CPU_PORTC_PIO 2 /* PIO2: Port C */
  376. #define CONFIG_SYS_NIOS_CPU_RCM_PIO 3 /* PIO3: RCM jumper */
  377. #define CONFIG_SYS_NIOS_CPU_WDENA_PIO 4 /* PIO4: watchdog enable*/
  378. #define CONFIG_SYS_NIOS_CPU_WDTOG_PIO 5 /* PIO5: watchdog trigg.*/
  379. /* PIOx: LED bar */
  380. #ifdef CONFIG_DNPEVA2 /* DNP/EVA2 base board */
  381. #define CONFIG_SYS_NIOS_CPU_LED_PIO CONFIG_SYS_NIOS_CPU_PORTA_PIO
  382. #else
  383. #undef CONFIG_SYS_NIOS_CPU_LED_PIO /* no LED bar */
  384. #endif
  385. #endif /* __CONFIG_ADNPESC1_BASE_32_H */