Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0
config CONFIG_CPM1
	bool
	select CONFIG_CPM

choice
	prompt "8xx Machine Type"
	depends on CONFIG_PPC_8xx
	default CONFIG_MPC885ADS

config CONFIG_MPC8XXFADS
	bool "FADS"

config CONFIG_MPC86XADS
	bool "MPC86XADS"
	select CONFIG_CPM1
	help
	  MPC86x Application Development System by Freescale Semiconductor.
	  The MPC86xADS is meant to serve as a platform for s/w and h/w
	  development around the MPC86X processor families.

config CONFIG_MPC885ADS
	bool "MPC885ADS"
	select CONFIG_CPM1
	select CONFIG_OF_DYNAMIC
	help
	  Freescale Semiconductor MPC885 Application Development System (ADS).
	  Also known as DUET.
	  The CONFIG_MPC885ADS is meant to serve as a platform for s/w and h/w
	  development around the MPC885 processor family.

config CONFIG_PPC_EP88XC
	bool "Embedded Planet EP88xC (a.k.a. CWH-PPC-885XN-VE)"
	select CONFIG_CPM1
	help
	  This enables support for the Embedded Planet EP88xC board.

	  This board is also resold by Freescale as the QUICCStart
	  MPC885 Evaluation System and/or the CWH-CONFIG_PPC-885XN-VE.

config CONFIG_PPC_ADDER875
	bool "Analogue & Micro Adder 875"
	select CONFIG_CPM1
	help
	  This enables support for the Analogue & Micro Adder 875
	  board.

config CONFIG_TQM8XX
	bool "TQM8XX"
	select CONFIG_CPM1
	help
	  support for the mpc8xx based boards from TQM.

endchoice

menu "Freescale Ethernet driver platform-specific options"
	depends on (CONFIG_FS_ENET && CONFIG_MPC885ADS)

	config CONFIG_MPC8xx_SECOND_ETH
	bool "Second Ethernet channel"
	depends on CONFIG_MPC885ADS
	default y
	help
	  This enables support for second Ethernet on CONFIG_MPC885ADS and MPC86xADS boards.
	  The latter will use SCC1, for 885ADS you can select it below.

	choice
		prompt "Second Ethernet channel"
		depends on CONFIG_MPC8xx_SECOND_ETH
		default CONFIG_MPC8xx_SECOND_ETH_FEC2

		config CONFIG_MPC8xx_SECOND_ETH_FEC2
		bool "FEC2"
		depends on CONFIG_MPC885ADS
		help
		  Enable FEC2 to serve as 2-nd Ethernet channel. Note that SMC2
		  (often 2-nd UART) will not work if this is enabled.

		config CONFIG_MPC8xx_SECOND_ETH_SCC3
		bool "SCC3"
		depends on CONFIG_MPC885ADS
		help
		  Enable SCC3 to serve as 2-nd Ethernet channel. Note that SMC1
		  (often 1-nd UART) will not work if this is enabled.

	endchoice

endmenu

#
# MPC8xx Communication options
#

menu "MPC8xx CPM Options"
	depends on CONFIG_PPC_8xx

# This doesn't really belong here, but it is convenient to ask
# CONFIG_8xx specific questions.
comment "Generic MPC8xx Options"

config CONFIG_8xx_COPYBACK
	bool "Copy-Back Data Cache (else Writethrough)"
	help
	  Saying Y here will cause the cache on an MPC8xx processor to be used
	  in Copy-Back mode.  If you say N here, it is used in Writethrough
	  mode.

	  If in doubt, say Y here.

config CONFIG_8xx_GPIO
	bool "GPIO API Support"
	select CONFIG_GPIOLIB
	help
	  Saying Y here will cause the ports on an MPC8xx processor to be used
	  with the GPIO API.  If you say N here, the kernel needs less memory.

	  If in doubt, say Y here.

config CONFIG_8xx_CPU15
	bool "CPU15 Silicon Errata"
	depends on !CONFIG_HUGETLB_PAGE
	default y
	help
	  This enables a workaround for erratum CPU15 on MPC8xx chips.
	  This bug can cause incorrect code execution under certain
	  circumstances.  This workaround adds some overhead (a TLB miss
	  every time execution crosses a page boundary), and you may wish
	  to disable it if you have worked around the bug in the compiler
	  (by not placing conditional branches or branches to LR or CTR
	  in the last word of a page, with a target of the last cache
	  line in the next page), or if you have used some other
	  workaround.

	  If in doubt, say Y here.

choice
	prompt "Microcode patch selection"
	default CONFIG_NO_UCODE_PATCH
	help
	  Help not implemented yet, coming soon.

config CONFIG_NO_UCODE_PATCH
	bool "None"

config CONFIG_USB_SOF_UCODE_PATCH
	bool "USB SOF patch"
	help
	  Help not implemented yet, coming soon.

config CONFIG_I2C_SPI_UCODE_PATCH
	bool "I2C/SPI relocation patch"
	help
	  Help not implemented yet, coming soon.

config CONFIG_I2C_SPI_SMC1_UCODE_PATCH
	bool "I2C/SPI/SMC1 relocation patch"
	help
	  Help not implemented yet, coming soon.

config CONFIG_SMC_UCODE_PATCH
	bool "SMC relocation patch"
	help
	  This microcode relocates SMC1 and SMC2 parameter RAMs at
	  offset 0x1ec0 and 0x1fc0 to allow extended parameter RAM
	  for SCC3 and SCC4.

endchoice

config CONFIG_UCODE_PATCH
	bool
	default y
	depends on !CONFIG_NO_UCODE_PATCH

endmenu