xref: /linux/arch/arm/mach-sa1100/Kconfig (revision 67f8bc848ee31831336bd478e57d2f993551902e)
1# SPDX-License-Identifier: GPL-2.0-only
2menuconfig ARCH_SA1100
3	bool "SA11x0 Implementations (DEPRECATED)"
4	depends on ARCH_MULTI_V4 && !(ARCH_MULTI_V4T || ARCH_MULTI_V5)
5	depends on !(ARCH_MOXART || ARCH_GEMINI)
6	depends on ATAGS
7	depends on CPU_LITTLE_ENDIAN
8	depends on MMU
9	select ARCH_NO_SG_CHAIN
10	select ARCH_MTD_XIP
11	select CLKSRC_MMIO
12	select CLKSRC_PXA
13	select CPU_FREQ
14	select CPU_SA1100
15	select GPIOLIB
16	select GPIOLIB_LEGACY
17	select IRQ_DOMAIN
18	select ISA
19	select NEED_MACH_MEMORY_H
20	help
21	  Support for StrongARM 11x0 based boards.
22
23	  Support for these machines will go away in 2027,
24	  unless there are any remaining users that speak up.
25
26if ARCH_SA1100
27
28config SA1100_ASSABET
29	bool "Assabet"
30	select ARM_SA1110_CPUFREQ
31	select GPIO_REG
32	select LEDS_GPIO_REGISTER
33	select REGULATOR
34	select REGULATOR_FIXED_VOLTAGE
35	help
36	  Say Y here if you are using the Intel(R) StrongARM(R) SA-1110
37	  Microprocessor Development Board (also known as the Assabet).
38
39config ASSABET_NEPONSET
40	bool "Include support for Neponset"
41	depends on SA1100_ASSABET
42	select SA1111
43	help
44	  Say Y here if you are using the Intel(R) StrongARM(R) SA-1110
45	  Microprocessor Development Board (Assabet)  with the SA-1111
46	  Development Board (Nepon).
47
48config SA1100_COLLIE
49	bool "Sharp Zaurus SL5500"
50	# FIXME: select ARM_SA11x0_CPUFREQ
51	select SHARP_LOCOMO
52	select SHARP_PARAM
53	select SHARP_SCOOP
54	help
55	  Say Y here to support the Sharp Zaurus SL5500 PDAs.
56
57config SA1100_H3600
58	bool "Compaq iPAQ H3600/H3700"
59	select ARM_SA1110_CPUFREQ
60	select HTC_EGPIO
61	select MFD_IPAQ_MICRO
62	help
63	  Say Y here if you intend to run this kernel on the Compaq iPAQ
64	  H3600 and H3700 handheld computers.
65
66config SA1100_JORNADA720
67	bool "HP Jornada 720"
68	# FIXME: select ARM_SA11x0_CPUFREQ
69	select SA1111
70	help
71	  Say Y here if you want to build a kernel for the HP Jornada 720
72	  handheld computer.  See
73	  <http://h10025.www1.hp.com/ewfrf/wc/product?product=61677&cc=us&lc=en&dlc=en&product=61677#>
74
75config SA1100_JORNADA720_SSP
76	bool "HP Jornada 720 Extended SSP driver"
77	depends on SA1100_JORNADA720
78	select SA1100_SSP
79	help
80	  Say Y here if you have a HP Jornada 7xx handheld computer and you
81	  want to access devices connected to the MCU. Those include the
82	  keyboard, touchscreen, backlight and battery. This driver also activates
83	  the generic SSP which it extends.
84
85config SA1100_SSP
86	tristate "Generic PIO SSP"
87	help
88	  Say Y here to enable support for the generic PIO SSP driver.
89	  This isn't for audio support, but for attached sensors and
90	  other devices, eg for BadgePAD 4 sensor support.
91
92endif
93