diff options
author | David Brownell <david-b@pacbell.net> | 2008-02-08 07:21:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:38 -0500 |
commit | 9a1e8eb1f0b76b5e72a2343ad881c81b08dd6410 (patch) | |
tree | f844d0e1316b49fd66cf773009ba2c3d46fcd18f /drivers/misc/Kconfig | |
parent | c8cece84c9f36410de5164735e909603426e4d5f (diff) |
Basic PWM driver for AVR32 and AT91
PWM device setup, and a simple PWM driver exposing a programming interface
giving access to each channel's full capabilities. Note that this doesn't
support starting several channels in synch.
[hskinnemoen@atmel.com: allocate platform device dynamically]
[hskinnemoen@atmel.com: Kconfig fix]
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Cc: Andrew Victor <linux@maxim.org.za>
Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/misc/Kconfig')
-rw-r--r-- | drivers/misc/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 7b5220ca7d7f..1941587a7aa2 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig | |||
@@ -13,6 +13,15 @@ menuconfig MISC_DEVICES | |||
13 | 13 | ||
14 | if MISC_DEVICES | 14 | if MISC_DEVICES |
15 | 15 | ||
16 | config ATMEL_PWM | ||
17 | tristate "Atmel AT32/AT91 PWM support" | ||
18 | depends on AVR32 || ARCH_AT91 | ||
19 | help | ||
20 | This option enables device driver support for the PWM channels | ||
21 | on certain Atmel prcoessors. Pulse Width Modulation is used for | ||
22 | purposes including software controlled power-efficent backlights | ||
23 | on LCD displays, motor control, and waveform generation. | ||
24 | |||
16 | config IBM_ASM | 25 | config IBM_ASM |
17 | tristate "Device driver for IBM RSA service processor" | 26 | tristate "Device driver for IBM RSA service processor" |
18 | depends on X86 && PCI && INPUT && EXPERIMENTAL | 27 | depends on X86 && PCI && INPUT && EXPERIMENTAL |