1#
2# MPC8xx Communication options
3#
4mainmenu_option next_comment
5comment 'MPC8xx CPM Options'
6
7if [ "$CONFIG_NET_ETHERNET" = "y" ]; then
8  bool 'CPM SCC Ethernet' CONFIG_SCC_ENET
9  if [ "$CONFIG_SCC_ENET" = "y" ]; then
10    choice 'SCC used for Ethernet'	\
11  	"SCC1	CONFIG_SCC1_ENET	\
12	 SCC2	CONFIG_SCC2_ENET	\
13	 SCC3	CONFIG_SCC3_ENET"	SCC1
14  fi
15  bool '860T FEC Ethernet' CONFIG_FEC_ENET
16  if [ "$CONFIG_FEC_ENET" = "y" ]; then
17    bool 'Use MDIO for PHY configuration' CONFIG_USE_MDIO
18  fi
19  bool 'Use Big CPM Ethernet Buffers' CONFIG_ENET_BIG_BUFFERS
20fi
21bool 'Use SMC2 for UART' CONFIG_SMC2_UART
22if [ "$CONFIG_SMC2_UART" = "y" ]; then
23  bool 'Use Alternate SMC2 I/O (823/850)' CONFIG_ALTSMC2
24  bool 'Use SMC2 for Console' CONFIG_CONS_SMC2
25fi
26bool 'Enable SCC2 and SCC3 for UART' CONFIG_USE_SCC_IO
27
28# This doesn't really belong here, but it is convenient to ask
29# 8xx specific questions.
30
31comment 'Generic MPC8xx Options'
32bool 'Copy-Back Data Cache (else Writethrough)' CONFIG_8xx_COPYBACK
33bool 'CPU6 Silicon Errata (860 Pre Rev. C)' CONFIG_8xx_CPU6
34bool 'I2C/SPI Microcode Patch' CONFIG_UCODE_PATCH
35
36endmenu
37