1# 2# MPC8xx Communication options 3# 4mainmenu_option next_comment 5comment 'MPC8xx Options' 6 7comment 'Generic MPC8xx Options' 8bool 'Copy-Back Data Cache (else Writethrough)' CONFIG_8xx_COPYBACK 9bool 'CPU6 Silicon Errata (860 Pre Rev. C)' CONFIG_8xx_CPU6 10bool 'I2C/SPI Microcode Patch' CONFIG_UCODE_PATCH 11 12comment 'MPC8xx CPM Options' 13if [ "$CONFIG_NET_ETHERNET" = "y" ]; then 14 bool 'CPM SCC Ethernet' CONFIG_SCC_ENET 15 if [ "$CONFIG_SCC_ENET" = "y" ]; then 16 choice 'SCC used for Ethernet' \ 17 "SCC1 CONFIG_SCC1_ENET \ 18 SCC2 CONFIG_SCC2_ENET \ 19 SCC3 CONFIG_SCC3_ENET" SCC1 20 fi 21 bool '8xxT FEC Ethernet' CONFIG_FEC_ENET 22 if [ "$CONFIG_FEC_ENET" = "y" ]; then 23 bool 'Use MDIO for PHY configuration' CONFIG_USE_MDIO 24 fi 25 bool 'Use Big CPM Ethernet Buffers' CONFIG_ENET_BIG_BUFFERS 26fi 27if [ "$CONFIG_SCC3_ENET" != "y" ]; then 28 bool 'Use SMC1 for UART' CONFIG_8xx_SMC1 29fi 30bool 'Use SMC2 for UART' CONFIG_8xx_SMC2 31if [ "$CONFIG_8xx_SMC2" = "y" ]; then 32 bool 'Use Alternate SMC2 I/O (823/850)' CONFIG_ALTSMC2 33 bool 'Use SMC2 for Console' CONFIG_CONS_SMC2 34fi 35if [ "$CONFIG_SCC1_ENET" != "y" ]; then 36 bool 'Use SCC1 for UART' CONFIG_8xx_SCC1 37fi 38if [ "$CONFIG_SCC2_ENET" != "y" ]; then 39 bool 'Use SCC2 for UART' CONFIG_8xx_SCC2 40fi 41if [ "$CONFIG_SCC3_ENET" != "y" ]; then 42 bool 'Use SCC3 for UART' CONFIG_8xx_SCC3 43fi 44bool 'Use SCC4 for UART' CONFIG_8xx_SCC4 45endmenu 46