~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-mvebu/Kconfig

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0-only
  2 menuconfig ARCH_MVEBU
  3         bool "Marvell Engineering Business Unit (MVEBU) SoCs"
  4         depends on ARCH_MULTI_V7 || (ARCH_MULTI_V5 && CPU_LITTLE_ENDIAN)
  5         select CLKSRC_MMIO
  6         select PINCTRL
  7         select PLAT_ORION
  8         select SOC_BUS
  9         select MVEBU_MBUS
 10         select ZONE_DMA if ARM_LPAE
 11         select GPIOLIB
 12         select PCI_QUIRKS if PCI
 13 
 14 if ARCH_MVEBU
 15 
 16 config MACH_MVEBU_ANY
 17         bool
 18 
 19 config MACH_MVEBU_V7
 20         bool
 21         select ARMADA_370_XP_TIMER
 22         select CACHE_L2X0
 23         select ARM_CPU_SUSPEND
 24         select MACH_MVEBU_ANY
 25         select MVEBU_CLK_COREDIV
 26 
 27 config MACH_ARMADA_370
 28         bool "Marvell Armada 370 boards"
 29         depends on ARCH_MULTI_V7
 30         select ARMADA_370_CLK
 31         select ARMADA_370_XP_IRQ
 32         select CPU_PJ4B
 33         select MACH_MVEBU_V7
 34         select PINCTRL_ARMADA_370
 35         help
 36           Say 'Y' here if you want your kernel to support boards based
 37           on the Marvell Armada 370 SoC with device tree.
 38 
 39 config MACH_ARMADA_375
 40         bool "Marvell Armada 375 boards"
 41         depends on ARCH_MULTI_V7
 42         select ARMADA_370_XP_IRQ
 43         select ARM_ERRATA_720789
 44         select PL310_ERRATA_753970
 45         select ARM_GIC
 46         select ARMADA_375_CLK
 47         select HAVE_ARM_SCU
 48         select HAVE_ARM_TWD if SMP
 49         select MACH_MVEBU_V7
 50         select PINCTRL_ARMADA_375
 51         help
 52           Say 'Y' here if you want your kernel to support boards based
 53           on the Marvell Armada 375 SoC with device tree.
 54 
 55 config MACH_ARMADA_38X
 56         bool "Marvell Armada 380/385 boards"
 57         depends on ARCH_MULTI_V7
 58         select ARM_ERRATA_720789
 59         select PL310_ERRATA_753970
 60         select ARM_GIC
 61         select ARM_GLOBAL_TIMER
 62         select CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK
 63         select ARMADA_370_XP_IRQ
 64         select ARMADA_38X_CLK
 65         select HAVE_ARM_SCU
 66         select HAVE_ARM_TWD if SMP
 67         select MACH_MVEBU_V7
 68         select PINCTRL_ARMADA_38X
 69         help
 70           Say 'Y' here if you want your kernel to support boards based
 71           on the Marvell Armada 380/385 SoC with device tree.
 72 
 73 config MACH_ARMADA_39X
 74         bool "Marvell Armada 39x boards"
 75         depends on ARCH_MULTI_V7
 76         select ARM_GIC
 77         select ARMADA_370_XP_IRQ
 78         select ARMADA_39X_CLK
 79         select CACHE_L2X0
 80         select HAVE_ARM_SCU
 81         select HAVE_ARM_TWD if SMP
 82         select MACH_MVEBU_V7
 83         select PINCTRL_ARMADA_39X
 84         help
 85           Say 'Y' here if you want your kernel to support boards based
 86           on the Marvell Armada 39x SoC with device tree.
 87 
 88 config MACH_ARMADA_XP
 89         bool "Marvell Armada XP boards"
 90         depends on ARCH_MULTI_V7
 91         select ARMADA_370_XP_IRQ
 92         select ARMADA_XP_CLK
 93         select CPU_PJ4B
 94         select MACH_MVEBU_V7
 95         select PINCTRL_ARMADA_XP
 96         help
 97           Say 'Y' here if you want your kernel to support boards based
 98           on the Marvell Armada XP SoC with device tree.
 99 
100 config MACH_DOVE
101         bool "Marvell Dove boards"
102         depends on ARCH_MULTI_V7
103         select CACHE_L2X0
104         select CPU_PJ4
105         select DOVE_CLK
106         select MACH_MVEBU_ANY
107         select ORION_IRQCHIP
108         select ORION_TIMER
109         select PM_GENERIC_DOMAINS if PM
110         select PINCTRL_DOVE
111         help
112           Say 'Y' here if you want your kernel to support the
113           Marvell Dove using flattened device tree.
114 
115 config MACH_KIRKWOOD
116         bool "Marvell Kirkwood boards"
117         depends on ARCH_MULTI_V5
118         select CPU_FEROCEON
119         select GPIOLIB
120         select KIRKWOOD_CLK
121         select MACH_MVEBU_ANY
122         select ORION_IRQCHIP
123         select ORION_TIMER
124         select FORCE_PCI
125         select PCI_QUIRKS
126         select PINCTRL_KIRKWOOD
127         help
128           Say 'Y' here if you want your kernel to support boards based
129           on the Marvell Kirkwood device tree.
130 
131 endif

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php