GEN860T.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717
  1. /*
  2. * (C) Copyright 2000
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. * Keith Outwater, keith_outwater@mvis.com
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /*
  25. * board/config_GEN860T.h - board specific configuration options
  26. */
  27. #ifndef __CONFIG_GEN860T_H
  28. #define __CONFIG_H
  29. /*
  30. * High Level Configuration Options
  31. */
  32. #define CONFIG_MPC860
  33. #define CONFIG_GEN860T
  34. /*
  35. * Identify the board
  36. */
  37. #define CONFIG_IDENT_STRING " GEN860T"
  38. /*
  39. * Don't depend on the RTC clock to determine clock frequency -
  40. * the 860's internal rtc uses a 32.768 KHz clock which is
  41. * generated by the DS1337 - and the DS1337 clock can be turned off.
  42. */
  43. #define CONFIG_8xx_GCLK_FREQ 66600000
  44. /*
  45. * The RS-232 console port is on SMC1
  46. */
  47. #define CONFIG_8xx_CONS_SMC1
  48. #define CONFIG_BAUDRATE 38400
  49. /*
  50. * Set allowable console baud rates
  51. */
  52. #define CFG_BAUDRATE_TABLE { 9600, \
  53. 19200, \
  54. 38400, \
  55. 57600, \
  56. 115200, \
  57. }
  58. /*
  59. * Print console information
  60. */
  61. #undef CFG_CONSOLE_INFO_QUIET
  62. /*
  63. * Set the autoboot delay in seconds. A delay of -1 disables autoboot
  64. */
  65. #define CONFIG_BOOTDELAY 5
  66. /*
  67. * Pass the clock frequency to the Linux kernel in units of MHz
  68. */
  69. #define CONFIG_CLOCKS_IN_MHZ
  70. #define CONFIG_PREBOOT \
  71. "echo;echo"
  72. #undef CONFIG_BOOTARGS
  73. #define CONFIG_BOOTCOMMAND \
  74. "bootp;" \
  75. "setenv bootargs root=/dev/nfs rw nfsroot=$(serverip):$(rootpath) " \
  76. "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask):$(hostname)::off; " \
  77. "bootm"
  78. /*
  79. * Turn off echo for serial download by default. Allow baud rate to be changed
  80. * for downloads
  81. */
  82. #undef CONFIG_LOADS_ECHO
  83. #define CFG_LOADS_BAUD_CHANGE
  84. /*
  85. * Set default load address for tftp network downloads
  86. */
  87. #define CFG_TFTP_LOADADDR 0x01000000
  88. /*
  89. * Turn off the watchdog timer
  90. */
  91. #undef CONFIG_WATCHDOG
  92. /*
  93. * Do not reboot if a panic occurs
  94. */
  95. #define CONFIG_PANIC_HANG
  96. /*
  97. * Enable the status LED
  98. */
  99. #define CONFIG_STATUS_LED
  100. /*
  101. * Reset address. We pick an address such that when an instruction
  102. * is executed at that address, a machine check exception occurs
  103. */
  104. #define CFG_RESET_ADDRESS ((ulong) -1)
  105. /*
  106. * BOOTP options
  107. */
  108. #define CONFIG_BOOTP_MASK ( CONFIG_BOOTP_DEFAULT | \
  109. CONFIG_BOOTP_BOOTFILESIZE \
  110. )
  111. /*
  112. * The GEN860T network interface uses the on-chip 10/100 FEC with
  113. * an Intel LXT971A PHY connected to the 860T's MII. The PHY's
  114. * MII address is hardwired on the board to zero.
  115. */
  116. #define CONFIG_FEC_ENET
  117. #define CFG_DISCOVER_PHY
  118. #define CONFIG_MII
  119. #define CONFIG_PHY_ADDR 0
  120. /*
  121. * Set default IP stuff just to get bootstrap entries into the
  122. * environment so that we can autoscript the full default environment.
  123. */
  124. #define CONFIG_ETHADDR 9a:52:63:15:85:25
  125. #define CONFIG_SERVERIP 10.0.4.200
  126. #define CONFIG_IPADDR 10.0.4.111
  127. /*
  128. * This board has a 32 kibibyte EEPROM (Atmel AT24C256) connected to
  129. * the MPC860T I2C interface.
  130. */
  131. #define CFG_I2C_EEPROM_ADDR 0x50
  132. #define CFG_EEPROM_PAGE_WRITE_BITS 6 /* 64 byte pages */
  133. #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 12 /* 10 mS w/ 20% margin */
  134. #define CFG_I2C_EEPROM_ADDR_LEN 2 /* need 16 bit address */
  135. #define CFG_ENV_EEPROM_SIZE (32 * 1024)
  136. #undef CONFIG_HARD_I2C
  137. #define CONFIG_SOFT_I2C
  138. /*
  139. * Configure software I2C support (taken from IP860 BSP).
  140. * The I2C bus is connected to the GEN860T's 'dedicated' I2C
  141. * pins, i.e. PB26 and PB27
  142. */
  143. #define PB_SCL 0x00000020 /* PB 26 */
  144. #define PB_SDA 0x00000010 /* PB 27 */
  145. #define I2C_INIT (immr->im_cpm.cp_pbdir |= PB_SCL)
  146. #define I2C_ACTIVE (immr->im_cpm.cp_pbdir |= PB_SDA)
  147. #define I2C_TRISTATE (immr->im_cpm.cp_pbdir &= ~PB_SDA)
  148. #define I2C_READ ((immr->im_cpm.cp_pbdat & PB_SDA) != 0)
  149. #define I2C_SDA(bit) if(bit) immr->im_cpm.cp_pbdat |= PB_SDA; \
  150. else immr->im_cpm.cp_pbdat &= ~PB_SDA
  151. #define I2C_SCL(bit) if(bit) immr->im_cpm.cp_pbdat |= PB_SCL; \
  152. else immr->im_cpm.cp_pbdat &= ~PB_SCL
  153. #define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */
  154. #define CFG_I2C_SPEED 100000 /* clock speed in Hz */
  155. #define CFG_I2C_SLAVE 0xFE /* I2C slave address */
  156. /*
  157. * Allow environment overwrites by anyone
  158. */
  159. #define CONFIG_ENV_OVERWRITE
  160. /*
  161. * The MPC860's internal RTC is horribly broken in rev D masks. Three
  162. * internal MPC860T circuit nodes were inadvertently left floating; this
  163. * causes KAPWR current in power down mode to be three orders of magnitude
  164. * higher than specified in the datasheet (from 10 uA to 10 mA). No
  165. * reasonable battery can keep that kind RTC running during powerdown for any
  166. * length of time, so we use an external RTC on the I2C bus instead.
  167. */
  168. #undef CONFIG_RTC_MPC8xx
  169. #define CONFIG_RTC_DS1337
  170. #define CFG_I2C_RTC_ADDR 0x68
  171. /*
  172. * Allow partial commands to be matched to uniqueness.
  173. */
  174. #define CFG_MATCH_PARTIAL_CMD
  175. /*
  176. * List of available monitor commands. Use the system default list
  177. * plus add some of the "non-standard" commands back in.
  178. * See ./cmd_confdefs.h
  179. */
  180. #define CONFIG_COMMANDS ( CONFIG_CMD_DFL | \
  181. CFG_CMD_ASKENV | \
  182. CFG_CMD_DHCP | \
  183. CFG_CMD_I2C | \
  184. CFG_CMD_DOC | \
  185. CFG_CMD_EEPROM | \
  186. CFG_CMD_REGINFO | \
  187. CFG_CMD_IMMAP | \
  188. CFG_CMD_ELF | \
  189. CFG_CMD_DATE | \
  190. CFG_CMD_DATE | \
  191. CFG_CMD_FPGA | \
  192. CFG_CMD_MII | \
  193. CFG_CMD_BEDBUG \
  194. )
  195. /*
  196. * There is no IDE/PCMCIA hardware support on the board.
  197. */
  198. #undef CONFIG_IDE_PCMCIA
  199. #undef CONFIG_IDE_LED
  200. #undef CONFIG_IDE_RESET
  201. /*
  202. * Enable the call to misc_init_r() for miscellaneous platform
  203. * dependent initialization.
  204. */
  205. #define CONFIG_MISC_INIT_R
  206. /*
  207. * Enable call to last_stage_init() so we can twiddle some LEDS :)
  208. */
  209. #define CONFIG_LAST_STAGE_INIT
  210. /*
  211. * Virtex2 FPGA configuration support
  212. */
  213. #define CONFIG_FPGA_COUNT 1
  214. #define CONFIG_FPGA CFG_XILINX_VIRTEX2
  215. #define CFG_FPGA_PROG_FEEDBACK
  216. /************************************************************************
  217. * This must be included AFTER the definition of any CONFIG_COMMANDS
  218. */
  219. #include <cmd_confdefs.h>
  220. /*
  221. * Verbose help from command monitor.
  222. */
  223. #define CFG_LONGHELP
  224. #define CFG_PROMPT "gen860t> "
  225. /*
  226. * Use the "hush" command parser
  227. */
  228. #define CFG_HUSH_PARSER
  229. #define CFG_PROMPT_HUSH_PS2 "> "
  230. /*
  231. * Set buffer size for console I/O
  232. */
  233. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  234. #define CFG_CBSIZE 1024
  235. #else
  236. #define CFG_CBSIZE 256
  237. #endif
  238. /*
  239. * Print buffer size
  240. */
  241. #define CFG_PBSIZE (CFG_CBSIZE + sizeof(CFG_PROMPT) + 16)
  242. /*
  243. * Maximum number of arguments that a command can accept
  244. */
  245. #define CFG_MAXARGS 16
  246. /*
  247. * Boot argument buffer size
  248. */
  249. #define CFG_BARGSIZE CFG_CBSIZE
  250. /*
  251. * Default memory test range
  252. */
  253. #define CFG_MEMTEST_START 0x0100000
  254. #define CFG_MEMTEST_END (CFG_MEMTEST_START + (128 * 1024))
  255. /*
  256. * Select the more full-featured memory test
  257. */
  258. #define CFG_ALT_MEMTEST
  259. /*
  260. * Default load address
  261. */
  262. #define CFG_LOAD_ADDR 0x01000000
  263. /*
  264. * Set decrementer frequency (1 ms ticks)
  265. */
  266. #define CFG_HZ 1000
  267. /*
  268. * Device memory map (after SDRAM remap to 0x0):
  269. *
  270. * CS Device Base Addr Size
  271. * ----------------------------------------------------
  272. * CS0* Flash 0x40000000 64 M
  273. * CS1* SDRAM 0x00000000 16 M
  274. * CS2* Disk-On-Chip 0x50000000 32 K
  275. * CS3* FPGA 0x60000000 64 M
  276. * CS4* SelectMap 0x70000000 32 K
  277. * CS5* Mil-Std 1553 I/F 0x80000000 32 K
  278. * CS6* Unused
  279. * CS7* Unused
  280. * IMMR 860T Registers 0xfff00000
  281. */
  282. /*
  283. * Base addresses and block sizes
  284. */
  285. #define CFG_IMMR 0xFF000000
  286. #define SDRAM_BASE 0x00000000
  287. #define SDRAM_SIZE (64 * 1024 * 1024)
  288. #define FLASH_BASE 0x40000000
  289. #define FLASH_SIZE (16 * 1024 * 1024)
  290. #define DOC_BASE 0x50000000
  291. #define DOC_SIZE (32 * 1024)
  292. #define FPGA_BASE 0x60000000
  293. #define FPGA_SIZE (64 * 1024 * 1024)
  294. #define SELECTMAP_BASE 0x70000000
  295. #define SELECTMAP_SIZE (32 * 1024)
  296. #define M1553_BASE 0x80000000
  297. #define M1553_SIZE (64 * 1024)
  298. /*
  299. * Definitions for initial stack pointer and data area (in DPRAM)
  300. */
  301. #define CFG_INIT_RAM_ADDR CFG_IMMR
  302. #define CFG_INIT_RAM_END 0x2F00 /* End of used area in DPRAM */
  303. #define CFG_INIT_DATA_SIZE 64 /* # bytes reserved for initial data*/
  304. #define CFG_GBL_DATA_OFFSET (CFG_INIT_RAM_END - CFG_INIT_DATA_SIZE)
  305. #define CFG_INIT_SP_OFFSET CFG_GBL_DATA_OFFSET
  306. /*
  307. * Start addresses for the final memory configuration
  308. * (Set up by the startup code)
  309. * Please note that CFG_SDRAM_BASE _must_ start at 0
  310. */
  311. #define CFG_SDRAM_BASE SDRAM_BASE
  312. /*
  313. * FLASH organization
  314. */
  315. #define CFG_FLASH_BASE FLASH_BASE
  316. #define CFG_FLASH_SIZE FLASH_SIZE
  317. #define CFG_FLASH_SECT_SIZE (128 * 1024)
  318. #define CFG_MAX_FLASH_BANKS 1
  319. #define CFG_MAX_FLASH_SECT 128
  320. /*
  321. * The timeout values are for an entire chip and are in milliseconds.
  322. * Yes I know that the write timeout is huge. Accroding to the
  323. * datasheet a single byte takes 630 uS (round to 1 ms) max at worst
  324. * case VCC and temp after 100K programming cycles. It works out
  325. * to 280 minutes (might as well be forever).
  326. */
  327. #define CFG_FLASH_ERASE_TOUT (CFG_MAX_FLASH_SECT * 5000)
  328. #define CFG_FLASH_WRITE_TOUT (CFG_MAX_FLASH_SECT * 128 * 1024 * 1)
  329. /*
  330. * Allow direct writes to FLASH from tftp transfers (** dangerous **)
  331. */
  332. #define CFG_DIRECT_FLASH_TFTP
  333. /*
  334. * Reserve memory for U-Boot.
  335. */
  336. #define CFG_MAX_U_BOOT_SECT 3
  337. #if defined(DEBUG)
  338. #define CFG_MONITOR_LEN (512 * 1024)
  339. #else
  340. #define CFG_MONITOR_LEN (256 * 1024)
  341. #endif
  342. #define CFG_MONITOR_BASE CFG_FLASH_BASE
  343. /*
  344. * Select environment placement. NOTE that u-boot.lds must
  345. * be edited if this is changed!
  346. */
  347. #undef CFG_ENV_IS_IN_FLASH
  348. #define CFG_ENV_IS_IN_EEPROM
  349. #if defined(CFG_ENV_IS_IN_EEPROM)
  350. #define CFG_ENV_SIZE (2 * 1024)
  351. #define CFG_ENV_OFFSET (CFG_ENV_EEPROM_SIZE - (8 * 1024))
  352. #else
  353. #define CFG_ENV_SIZE (4 * 1024)
  354. #define CFG_ENV_OFFSET (CFG_MAX_U_BOOT_SECT * CFG_FLASH_SECT_SIZE)
  355. #endif
  356. /*
  357. * Reserve memory for malloc()
  358. */
  359. #define CFG_MALLOC_LEN (128 * 1024)
  360. /*
  361. * For booting Linux, the board info and command line data
  362. * have to be in the first 8 MB of memory, since this is
  363. * the maximum mapped by the Linux kernel during initialization.
  364. */
  365. #define CFG_BOOTMAPSZ (8 * 1024 * 1024)
  366. /*
  367. * Cache Configuration
  368. */
  369. #define CFG_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */
  370. #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
  371. #define CFG_CACHELINE_SHIFT 4 /* log base 2 of above value */
  372. #endif
  373. /*------------------------------------------------------------------------
  374. * SYPCR - System Protection Control UM 11-9
  375. * -----------------------------------------------------------------------
  376. * SYPCR can only be written once after reset!
  377. *
  378. * Software & Bus Monitor Timer max, Bus Monitor enable, SW Watchdog freeze
  379. */
  380. #if defined(CONFIG_WATCHDOG)
  381. #define CFG_SYPCR ( SYPCR_SWTC | \
  382. SYPCR_BMT | \
  383. SYPCR_BME | \
  384. SYPCR_SWF | \
  385. SYPCR_SWE | \
  386. SYPCR_SWRI | \
  387. SYPCR_SWP \
  388. )
  389. #else
  390. #define CFG_SYPCR ( SYPCR_SWTC | \
  391. SYPCR_BMT | \
  392. SYPCR_BME | \
  393. SYPCR_SWF | \
  394. SYPCR_SWP \
  395. )
  396. #endif
  397. /*-----------------------------------------------------------------------
  398. * SIUMCR - SIU Module Configuration UM 11-6
  399. *-----------------------------------------------------------------------
  400. * Set debug pin mux, enable SPKROUT and GPLB5*.
  401. */
  402. #define CFG_SIUMCR ( SIUMCR_DBGC11 | \
  403. SIUMCR_DBPC11 | \
  404. SIUMCR_MLRC11 | \
  405. SIUMCR_GB5E \
  406. )
  407. /*-----------------------------------------------------------------------
  408. * TBSCR - Time Base Status and Control UM 11-26
  409. *-----------------------------------------------------------------------
  410. * Clear Reference Interrupt Status, Timebase freeze enabled
  411. */
  412. #define CFG_TBSCR ( TBSCR_REFA | \
  413. TBSCR_REFB | \
  414. TBSCR_TBF \
  415. )
  416. /*-----------------------------------------------------------------------
  417. * RTCSC - Real-Time Clock Status and Control Register UM 11-27
  418. *-----------------------------------------------------------------------
  419. */
  420. #define CFG_RTCSC ( RTCSC_SEC | \
  421. RTCSC_ALR | \
  422. RTCSC_RTF | \
  423. RTCSC_RTE \
  424. )
  425. /*-----------------------------------------------------------------------
  426. * PISCR - Periodic Interrupt Status and Control UM 11-31
  427. *-----------------------------------------------------------------------
  428. * Clear Periodic Interrupt Status, Interrupt Timer freezing enabled
  429. */
  430. #define CFG_PISCR ( PISCR_PS | \
  431. PISCR_PITF \
  432. )
  433. /*-----------------------------------------------------------------------
  434. * PLPRCR - PLL, Low-Power, and Reset Control Register UM 15-30
  435. *-----------------------------------------------------------------------
  436. * Reset PLL lock status sticky bit, timer expired status bit and timer
  437. * interrupt status bit. Set MF for 1:2:1 mode.
  438. */
  439. #define CFG_PLPRCR ( ((0x1 << PLPRCR_MF_SHIFT) & PLPRCR_MF_MSK) | \
  440. PLPRCR_SPLSS | \
  441. PLPRCR_TEXPS | \
  442. PLPRCR_TMIST \
  443. )
  444. /*-----------------------------------------------------------------------
  445. * SCCR - System Clock and reset Control Register UM 15-27
  446. *-----------------------------------------------------------------------
  447. * Set clock output, timebase and RTC source and divider,
  448. * power management and some other internal clocks
  449. */
  450. #define SCCR_MASK SCCR_EBDF11
  451. #define CFG_SCCR ( SCCR_TBS | /* timebase = GCLK/2 */ \
  452. SCCR_COM00 | /* full strength CLKOUT */ \
  453. SCCR_DFSYNC00 | /* SYNCLK / 1 (normal) */ \
  454. SCCR_DFBRG00 | /* BRGCLK / 1 (normal) */ \
  455. SCCR_DFNL000 | \
  456. SCCR_DFNH000 \
  457. )
  458. /*-----------------------------------------------------------------------
  459. * DER - Debug Enable Register UM 37-46
  460. *-----------------------------------------------------------------------
  461. * Mask all events that can cause entry into debug mode
  462. */
  463. #define CFG_DER 0
  464. /*
  465. * Initialize Memory Controller:
  466. *
  467. * BR0 and OR0 (FLASH memory)
  468. */
  469. #define FLASH_BASE0_PRELIM FLASH_BASE
  470. /*
  471. * Flash address mask
  472. */
  473. #define CFG_PRELIM_OR_AM 0xfe000000
  474. /*
  475. * FLASH timing:
  476. * 33 Mhz bus with ACS = 11, TRLX = 1, CSNT = 1, SCY = 3, EHTR = 1
  477. */
  478. #define CFG_OR_TIMING_FLASH ( OR_CSNT_SAM | \
  479. OR_ACS_DIV2 | \
  480. OR_BI | \
  481. OR_SCY_2_CLK | \
  482. OR_TRLX | \
  483. OR_EHTR \
  484. )
  485. #define CFG_OR0_PRELIM ( CFG_PRELIM_OR_AM | \
  486. CFG_OR_TIMING_FLASH \
  487. )
  488. #define CFG_BR0_PRELIM ( (FLASH_BASE0_PRELIM & BR_BA_MSK) | \
  489. BR_MS_GPCM | \
  490. BR_PS_8 | \
  491. BR_V \
  492. )
  493. /*
  494. * SDRAM configuration
  495. */
  496. #define CFG_OR1_AM 0xfc000000
  497. #define CFG_OR1 ( (CFG_OR1_AM & OR_AM_MSK) | \
  498. OR_CSNT_SAM \
  499. )
  500. #define CFG_BR1 ( (SDRAM_BASE & BR_BA_MSK) | \
  501. BR_MS_UPMA | \
  502. BR_PS_32 | \
  503. BR_V \
  504. )
  505. /*
  506. * Refresh rate 7.8 us (= 64 ms / 8K = 31.2 uS quad bursts) for one bank
  507. * of 256 MBit SDRAM
  508. */
  509. #define CFG_MPTPR_1BK_8K MPTPR_PTP_DIV16
  510. /*
  511. * Periodic timer for refresh @ 33 MHz system clock
  512. */
  513. #define CFG_MAMR_PTA 64
  514. /*
  515. * MAMR settings for SDRAM
  516. */
  517. #define CFG_MAMR_8COL ( (CFG_MAMR_PTA << MAMR_PTA_SHIFT) | \
  518. MAMR_PTAE | \
  519. MAMR_AMA_TYPE_1 | \
  520. MAMR_DSA_1_CYCL | \
  521. MAMR_G0CLA_A10 | \
  522. MAMR_RLFA_1X | \
  523. MAMR_WLFA_1X | \
  524. MAMR_TLFA_4X \
  525. )
  526. /*
  527. * CS2* configuration for Disk On Chip:
  528. * 33 MHz bus with TRLX=1, ACS=11, CSNT=1, EBDF=1, SCY=2, EHTR=1,
  529. * no burst.
  530. */
  531. #define CFG_OR2_PRELIM ( (0xffff0000 & OR_AM_MSK) | \
  532. OR_CSNT_SAM | \
  533. OR_ACS_DIV2 | \
  534. OR_BI | \
  535. OR_SCY_2_CLK | \
  536. OR_TRLX | \
  537. OR_EHTR \
  538. )
  539. #define CFG_BR2_PRELIM ( (DOC_BASE & BR_BA_MSK) | \
  540. BR_PS_8 | \
  541. BR_MS_GPCM | \
  542. BR_V \
  543. )
  544. /*
  545. * CS3* configuration for FPGA:
  546. * 33 MHz bus with SCY=15, no burst.
  547. * The FPGA uses TA and TEA to terminate bus cycles, but we
  548. * clear SETA and set the cycle length to a large number so that
  549. * the cycle will still complete even if there is a configuration
  550. * error that prevents TA from asserting on FPGA accesss.
  551. */
  552. #define CFG_OR3_PRELIM ( (0xfc000000 & OR_AM_MSK) | \
  553. OR_SCY_15_CLK | \
  554. OR_BI \
  555. )
  556. #define CFG_BR3_PRELIM ( (FPGA_BASE & BR_BA_MSK) | \
  557. BR_PS_32 | \
  558. BR_MS_GPCM | \
  559. BR_V \
  560. )
  561. /*
  562. * CS4* configuration for FPGA SelectMap configuration interface.
  563. * 33 MHz bus, UPMB, no burst. Do not assert GPLB5 on falling edge
  564. * of GCLK1_50
  565. */
  566. #define CFG_OR4_PRELIM ( (0xffff0000 & OR_AM_MSK) | \
  567. OR_G5LS | \
  568. OR_BI \
  569. )
  570. #define CFG_BR4_PRELIM ( (SELECTMAP_BASE & BR_BA_MSK) | \
  571. BR_PS_8 | \
  572. BR_MS_UPMB | \
  573. BR_V \
  574. )
  575. /*
  576. * CS5* configuration for Mil-Std 1553 databus interface.
  577. * 33 MHz bus, GPCM, no burst.
  578. * The 1553 interface uses TA and TEA to terminate bus cycles,
  579. * but we clear SETA and set the cycle length to a large number so that
  580. * the cycle will still complete even if there is a configuration
  581. * error that prevents TA from asserting on FPGA accesss.
  582. */
  583. #define CFG_OR5_PRELIM ( (0xffff0000 & OR_AM_MSK) | \
  584. OR_SCY_15_CLK | \
  585. OR_EHTR | \
  586. OR_TRLX | \
  587. OR_CSNT_SAM | \
  588. OR_BI \
  589. )
  590. #define CFG_BR5_PRELIM ( (M1553_BASE & BR_BA_MSK) | \
  591. BR_PS_16 | \
  592. BR_MS_GPCM | \
  593. BR_V \
  594. )
  595. /*
  596. * Boot Flags
  597. */
  598. #define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
  599. #define BOOTFLAG_WARM 0x02 /* Software reboot */
  600. /*
  601. * Disk On Chip (millenium) configuration
  602. */
  603. #define CFG_MAX_DOC_DEVICE 1
  604. #undef CFG_DOC_SUPPORT_2000
  605. #define CFG_DOC_SUPPORT_MILLENNIUM
  606. #undef CFG_DOC_PASSIVE_PROBE
  607. /*
  608. * FEC interrupt assignment
  609. */
  610. #define FEC_INTERRUPT SIU_LEVEL1
  611. /*
  612. * Sanity checks
  613. */
  614. #if defined(CONFIG_SCC1_ENET) && defined(CONFIG_FEC_ENET)
  615. #error Both CONFIG_SCC1_ENET and CONFIG_FEC_ENET configured
  616. #endif
  617. #endif /* __CONFIG_GEN860T_H */
  618. /* vim: set ts=4 tw=78 ai shiftwidth=4: */