mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-19 15:39:07 +00:00
aeec56e331
The basic GPIO controllers may be found in various on-board FPGA and ASIC solutions that are used to control board's switches, LEDs, chip-selects, Ethernet/USB PHY power, etc. These controllers may not provide any means of pin setup (in/out/open drain). The driver supports: - 8/16/32/64 bits registers; - GPIO controllers with clear/set registers; - GPIO controllers with a single "data" register; - Big endian bits/GPIOs ordering (mostly used on PowerPC). Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com> Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: David Brownell <david-b@pacbell.net> Cc: Samuel Ortiz <sameo@linux.intel.com>, Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
41 lines
1.5 KiB
Makefile
41 lines
1.5 KiB
Makefile
# generic gpio support: dedicated expander chips, etc
|
|
#
|
|
# NOTE: platform-specific GPIO drivers don't belong in the
|
|
# drivers/gpio directory; put them with other platform setup
|
|
# code, IRQ controllers, board init, etc.
|
|
|
|
ccflags-$(CONFIG_DEBUG_GPIO) += -DDEBUG
|
|
|
|
obj-$(CONFIG_GPIOLIB) += gpiolib.o
|
|
|
|
obj-$(CONFIG_GPIO_ADP5520) += adp5520-gpio.o
|
|
obj-$(CONFIG_GPIO_ADP5588) += adp5588-gpio.o
|
|
obj-$(CONFIG_GPIO_BASIC_MMIO) += basic_mmio_gpio.o
|
|
obj-$(CONFIG_GPIO_LANGWELL) += langwell_gpio.o
|
|
obj-$(CONFIG_GPIO_MAX730X) += max730x.o
|
|
obj-$(CONFIG_GPIO_MAX7300) += max7300.o
|
|
obj-$(CONFIG_GPIO_MAX7301) += max7301.o
|
|
obj-$(CONFIG_GPIO_MAX732X) += max732x.o
|
|
obj-$(CONFIG_GPIO_MC33880) += mc33880.o
|
|
obj-$(CONFIG_GPIO_MCP23S08) += mcp23s08.o
|
|
obj-$(CONFIG_GPIO_PCA953X) += pca953x.o
|
|
obj-$(CONFIG_GPIO_PCF857X) += pcf857x.o
|
|
obj-$(CONFIG_GPIO_PL061) += pl061.o
|
|
obj-$(CONFIG_GPIO_STMPE) += stmpe-gpio.o
|
|
obj-$(CONFIG_GPIO_TC35892) += tc35892-gpio.o
|
|
obj-$(CONFIG_GPIO_TIMBERDALE) += timbgpio.o
|
|
obj-$(CONFIG_GPIO_TWL4030) += twl4030-gpio.o
|
|
obj-$(CONFIG_GPIO_UCB1400) += ucb1400_gpio.o
|
|
obj-$(CONFIG_GPIO_XILINX) += xilinx_gpio.o
|
|
obj-$(CONFIG_GPIO_CS5535) += cs5535-gpio.o
|
|
obj-$(CONFIG_GPIO_BT8XX) += bt8xxgpio.o
|
|
obj-$(CONFIG_GPIO_IT8761E) += it8761e_gpio.o
|
|
obj-$(CONFIG_GPIO_VR41XX) += vr41xx_giu.o
|
|
obj-$(CONFIG_GPIO_WM831X) += wm831x-gpio.o
|
|
obj-$(CONFIG_GPIO_WM8350) += wm8350-gpiolib.o
|
|
obj-$(CONFIG_GPIO_WM8994) += wm8994-gpio.o
|
|
obj-$(CONFIG_GPIO_SCH) += sch_gpio.o
|
|
obj-$(CONFIG_GPIO_RDC321X) += rdc321x-gpio.o
|
|
obj-$(CONFIG_GPIO_JANZ_TTL) += janz-ttl.o
|
|
obj-$(CONFIG_GPIO_SX150X) += sx150x.o
|