Kconfig 643 字节
Newer Older
1 2 3 4 5 6
# We keep common IP's here for Nomadik and other similar
# familiy of processors from ST-Ericsson. At the moment we have
# just MTU, others to follow soon.

config PLAT_NOMADIK
	bool
7
	depends on ARCH_NOMADIK || ARCH_U8500
8
	default y
9
	select CLKSRC_MMIO
10 11 12 13 14 15 16 17 18 19 20 21 22
	help
	  Common platform code for Nomadik and other ST-Ericsson
	  platforms.

if PLAT_NOMADIK

config HAS_MTU
	bool
	help
	  Support for Multi Timer Unit. MTU provides access
	  to multiple interrupt generating programmable
	  32-bit free running decrementing counters.

23 24 25 26 27 28
config NOMADIK_MTU_SCHED_CLOCK
	bool
	depends on HAS_MTU
	help
	  Use the Multi Timer Unit as the sched_clock.

29
endif