mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 11:01:38 +00:00
22ba14f41c
multiplatform and extended DT support. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABAgAGBQJWb9LqAAoJEEEQszewGV1z1I4QAIgylTG1hftD5xCtaKsgJv5X pcp+eVVCeYjeO3AbknrXzBlty0u3/rDOR6n9aUn7ci63qErGi2GeoZ5glo6y3aOU qKo2/M0LOoP3y6SGxMjaPTTpStjKsaj2XLjHLNrSHAKXsvoFB69vnAlQh2jU+ohX JEl9wvkugMWicGaiooWQfG7OAf2Gb6AFAKQUfYNVNNXBTD13oQcFRgLwBKDkNlc9 7N6yzPQDNQiauytr7Ji/49fbkiOLFSB5yllhecb37F/b56XprGvsXJTRwsQhPwbj ig28qu/g7LhfnkZUOTwhWH6WdyFarMlpA8oHHKrZBeGySgvdjXBVYH4IQAfhT2N9 WSh/he+w8T2+oMVj97gLSxKiP4ugUSsBR6daq5X8NESobxFVYzmFIYQxKxOwFif4 JDWvOKaQsRhx42iAq3CIMkh7yQsBC4tJjtyvVwHuGeC2zRlyODbBCnN4OGKDdYpJ +VY4kr48Yld5IxYm6J6fXOEWTcFw2n/hvEVsik5mmgw1rYivJsCcvcVxv04xZYCl 6d13eCaSh2TfeKYs/Qf2yy3hmps4dWFcd18/xWRyFdnkCs5qGRbtgLiAQtUnQAGm bpaI/rYeRnnF80af2dhpZT2i0zBL9uuur7FYZDB9xsQDOkqnCYxKvSW1CfNg5Gtc senI3dczeTC3NtwRp4eC =Zhx3 -----END PGP SIGNATURE----- Merge tag 'realview-base-armsoc-1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator into next/multiplatform Merge "Realview multiplatform support" from Linus Walleij: The board and infrastructure changes for RealView multiplatform and extended DT support. * tag 'realview-base-armsoc-1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-integrator: ARM: realview: add an DT SMP boot method ARM: realview: select SP810 and ICST for the DT variant soc: versatile: add support for the PB11MPCore clk: versatile-icst: add device tree support clk: versatile-icst: refactor to allocate regmap separately clk: versatile-icst: convert to use regmap ARM: realview: remove private barrier implementation ARM: no longer force unbuffered DMA for realview clk/realview: stop using machine headers ARM: realview: don't map undefined PCI registers ARM: realview: remove sparsemem hack Conflicts: drivers/clk/versatile/Kconfig
30 lines
988 B
Plaintext
30 lines
988 B
Plaintext
config COMMON_CLK_VERSATILE
|
|
bool "Clock driver for ARM Reference designs"
|
|
depends on ARCH_INTEGRATOR || ARCH_REALVIEW || \
|
|
ARCH_VERSATILE || ARCH_VEXPRESS || ARM64 || \
|
|
COMPILE_TEST
|
|
select REGMAP_MMIO
|
|
---help---
|
|
Supports clocking on ARM Reference designs:
|
|
- Integrator/AP and Integrator/CP
|
|
- RealView PB1176, EB, PB11MP and PBX
|
|
- Versatile Express
|
|
|
|
config CLK_SP810
|
|
bool "Clock driver for ARM SP810 System Controller"
|
|
depends on COMMON_CLK_VERSATILE
|
|
default y if ARCH_VEXPRESS
|
|
---help---
|
|
Supports clock muxing (REFCLK/TIMCLK to TIMERCLKEN0-3) capabilities
|
|
of the ARM SP810 System Controller cell.
|
|
|
|
config CLK_VEXPRESS_OSC
|
|
bool "Clock driver for Versatile Express OSC clock generators"
|
|
depends on COMMON_CLK_VERSATILE
|
|
depends on VEXPRESS_CONFIG
|
|
default y if ARCH_VEXPRESS
|
|
---help---
|
|
Simple regmap-based driver driving clock generators on Versatile
|
|
Express platforms hidden behind its configuration infrastructure,
|
|
commonly known as OSCs.
|