1
0
Fork 0
alistair23-linux/arch/arm/mach-shmobile
Linus Torvalds 7f33e7241d pwm: Changes for v3.16-rc1
The majority of these changes are cleanups and fixes across all drivers.
 Redundant error messages are removed and more PWM controllers set the
 .can_sleep flag to signal that they can't be used in atomic context.
 
 Support is added for the Broadcom Kona family of SoCs and the Intel LPSS
 driver can now probe PCI devices in addition to ACPI devices. Upon shut-
 down, the pwm-backlight driver will now power off the backlight. It also
 uses the new descriptor-based GPIO API for more concise GPIO handling.
 
 A large chunk of these changes also converts platforms to use the lookup
 mechanism rather than relying on the global number space to reference
 PWM devices. This is largely in preparation for more unification and
 cleanups in future patches. Eventually it will allow the legacy PWM API
 to be removed.
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v2.0.22 (GNU/Linux)
 
 iQIcBAABAgAGBQJTl/AqAAoJEN0jrNd/PrOhoZsP/1yLaSK3NuBXWg3VdpH9i8so
 GXBeh3dbKAmC5MYQlhh5XTvuNBbfOoSp6dGdL3pV9GjcffbqzTynn5YszrbanezX
 +fqBF1NvW+jb2sUfQmedh9y30O1ADZM0p+FXW/R7e2khiE+8VF2ox35Hc3LLBqk8
 SiZoy1UEzIo0BAHgtgCw2VXUYUSYX/KYGoF/t8TCCObKVC3wQ7pW5tN3Ekj14yNL
 NspM0Q8OsITCQO0PdOfHw1gBmy4iLSuoNpPKP12BQVx5seZ4LBaIz9Wh0jFu89hq
 zI1gFpGptMsxsaAn/zk6Nr9lHDkqxkhnuYA+dgkA6k0KI9jS1Me20WQEmvM9H9xs
 BJ8QOfMQP7AHCZeW61J+iPTtCyMwFejRSPMtPjNMfaOQduWJw7+o0GaA30F39dw0
 3Cki1C44o9KfwCdC9OcmLignHt5TC1FEJgJL4OY695x0za7XcVgEN6nTg70AQfaz
 pcm4PeCqtM9jvXdJQdDGDI7gVzT33kpBnGatqQ2bUqMDx8HeHIkdEXehLwsYP46m
 FX0RJb5ue40esbVWZDGYWJqkdInpHt6deahTW+Jq9Exo4ZMr5/DVkMQCl8oF3/em
 Y5ED67dnAQ4au1MhElnDTPKk4Uh28aWTYwo8HSO6rt+8jcguH1KvXvLa+z2BcaMv
 ZVN0ZPy2813ix6Q0yO3D
 =BDxR
 -----END PGP SIGNATURE-----

Merge tag 'pwm/for-3.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm

Pull pwm changes from Thierry Reding:
 "The majority of these changes are cleanups and fixes across all
  drivers.  Redundant error messages are removed and more PWM
  controllers set the .can_sleep flag to signal that they can't be used
  in atomic context.

  Support is added for the Broadcom Kona family of SoCs and the Intel
  LPSS driver can now probe PCI devices in addition to ACPI devices.
  Upon shutdown, the pwm-backlight driver will now power off the
  backlight.  It also uses the new descriptor-based GPIO API for more
  concise GPIO handling.

  A large chunk of these changes also converts platforms to use the
  lookup mechanism rather than relying on the global number space to
  reference PWM devices.  This is largely in preparation for more
  unification and cleanups in future patches.  Eventually it will allow
  the legacy PWM API to be removed"

* tag 'pwm/for-3.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm: (38 commits)
  pwm: fsl-ftm: set pwm_chip can_sleep flag
  pwm: ab8500: Fix wrong value shift for disable/enable PWM
  pwm: samsung: do not set manual update bit in pwm_samsung_config
  pwm: lp3943: Set pwm_chip can_sleep flag
  pwm: atmel: set pwm_chip can_sleep flag
  pwm: mxs: set pwm_chip can_sleep flag
  pwm: tiehrpwm: inline accessor functions
  pwm: tiehrpwm: don't build PM related functions when not needed
  pwm-backlight: retrieve configured PWM period
  leds: leds-pwm: retrieve configured PWM period
  ARM: pxa: hx4700: use PWM_LOOKUP to initialize struct pwm_lookup
  ARM: shmobile: armadillo: use PWM_LOOKUP to initialize struct pwm_lookup
  ARM: OMAP3: Beagle: use PWM_LOOKUP to initialize struct pwm_lookup
  pwm: modify PWM_LOOKUP to initialize all struct pwm_lookup members
  ARM: pxa: hx4700: initialize all the struct pwm_lookup members
  ARM: OMAP3: Beagle: initialize all the struct pwm_lookup members
  pwm: renesas-tpu: remove unused struct tpu_pwm_platform_data
  ARM: shmobile: armadillo: initialize all struct pwm_lookup members
  pwm: add period and polarity to struct pwm_lookup
  pwm: twl: Really disable twl6030 PWMs
  ...
2014-06-11 14:06:55 -07:00
..
include/mach ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
Kconfig ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
Makefile ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
Makefile.boot ARM: shmobile: Remove non-multiplatform Genmai reference support 2014-05-17 09:06:04 +09:00
board-ape6evm-reference.c ARM: shmobile: Rename to r8a73a4_init_early() 2013-09-19 14:33:44 -07:00
board-ape6evm.c ARM: shmobile: ape6evm: don't use named resource for SDHI 2013-11-24 15:14:29 +09:00
board-armadillo800eva-reference.c Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into next 2014-06-05 15:57:04 -07:00
board-armadillo800eva.c pwm: Changes for v3.16-rc1 2014-06-11 14:06:55 -07:00
board-bockw-reference.c ARM: SoC board updates for 3.14 2014-01-23 18:48:28 -08:00
board-bockw.c ARM: shmobile: bockw: switch to use dai info for R-Car sound 2014-04-14 12:50:19 +09:00
board-genmai-reference.c ARM: shmobile: Let Genmai multiplatform boot with Genmai DTB 2014-05-17 09:06:19 +09:00
board-genmai.c ARM: shmobile: r7s72100: genmai: platform scif devices only for legacy support 2014-05-14 11:42:52 +09:00
board-koelsch-reference.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
board-koelsch.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
board-kzm9g-reference.c ARM: l2c: shmobile: remove cache size override 2014-05-30 00:50:02 +01:00
board-kzm9g.c ARM: l2c: shmobile: remove cache size override 2014-05-30 00:50:02 +01:00
board-lager-reference.c ARM: shmobile: lager: Enable SCIF0 and SCIF1 serial ports in DT 2014-05-14 09:56:35 +09:00
board-lager.c Renesas ARM Based SoC Boards Updates for v3.16 2014-05-05 14:14:29 -07:00
board-mackerel.c ASoC: fsi: fixup compile error for simple-card 2014-03-17 13:20:11 +00:00
board-marzen-reference.c ARM: shmobile: marzen: enable INTC IRQ 2013-10-08 10:02:22 +09:00
board-marzen.c Renesas ARM based SoC DT updates for v3.14 2013-12-20 12:17:18 -08:00
clock-r7s72100.c ARM: shmobile: r7s72100: remove SPI DT clocks from legacy clock support 2014-05-14 11:42:54 +09:00
clock-r8a73a4.c ARM: shmobile: r8a73a4: Switch to new style CMT device 2014-05-11 19:35:27 +09:00
clock-r8a7740.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
clock-r8a7778.c Renesas SoC Clock Cleanups for v3.16 2014-05-21 14:05:58 -07:00
clock-r8a7779.c ARM: shmobile: r8a7779: Switch to new style TMU device 2014-05-11 19:35:28 +09:00
clock-r8a7790.c ARM: shmobile: r8a7790: Switch to new style CMT device 2014-05-11 19:35:27 +09:00
clock-r8a7791.c ARM: shmobile: r8a7791: Switch to new style CMT device 2014-05-11 19:35:27 +09:00
clock-sh73a0.c ARM: shmobile: sh73a0: Switch to new style TMU device 2014-05-11 19:35:28 +09:00
clock-sh7372.c ARM: shmobile: sh7372: Switch to new style TMU device 2014-05-11 19:35:28 +09:00
clock.c ARM: shmobile: Introduce shmobile_clk_workaround() 2014-04-14 11:30:11 +09:00
console.c
cpuidle.c ARM: shmobile: cpuidle: use init/exit common routine 2013-04-23 13:45:22 +02:00
entry-intc.S ARM: gic: consolidate PPI handling 2011-10-23 13:32:29 +01:00
headsmp-scu.S Merge tag 'renesas-soc2-for-v3.12' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/soc 2013-08-14 11:09:47 -07:00
headsmp.S ARM: shmobile: Introduce shmobile_boot_size 2013-09-20 17:47:31 -07:00
intc-sh73a0.c ARM: shmobile: INTC External IRQ pin driver on sh73a0 2013-03-18 21:26:05 +09:00
intc-sh7372.c ARM: shmobile: use __iomem pointers for MMIO 2012-09-18 10:15:11 +02:00
platsmp-apmu.c ARM: shmobile: APMU: Fix warnings due to improper printk formats 2014-03-06 13:14:03 +09:00
platsmp-scu.c ARM: shmobile: Remove shmobile_smp_scu_boot_secondary() 2013-09-30 17:56:10 +09:00
platsmp.c ARM: shmobile: Remove unused shmobile_smp_init_cpus() 2013-09-20 17:47:31 -07:00
pm-r8a7740.c ARM: shmobile: r8a7740: Add CPU sleep suspend 2013-01-25 12:43:46 +09:00
pm-r8a7779.c ARM: shmobile: Break out R-Car SYSC PM code 2014-02-24 08:55:46 +09:00
pm-r8a7790.c ARM: shmobile: r8a7790 SYSC setup code 2014-02-24 08:55:46 +09:00
pm-rcar.c ARM: shmobile: Move SYSC base variable to inside ifdefs 2014-02-26 14:53:35 +09:00
pm-rmobile.c ARM: shmobile: Ignore callbacks for subsys generic_pm_domain_data 2014-04-25 10:01:43 +09:00
pm-sh73a0.c ARM: shmobile: sh73a0: Add CPU sleep suspend 2013-01-25 12:43:46 +09:00
pm-sh7372.c ARM: shmobile: Rework sh7372 sleep code to use virt_to_phys() 2013-06-17 16:06:47 +09:00
setup-emev2.c ARM: shmobile: Remove EMEV2 header file 2014-04-14 11:28:23 +09:00
setup-r7s72100.c ARM: shmobile: r7s72100: genmai: platform scif devices only for legacy support 2014-05-14 11:42:52 +09:00
setup-r8a73a4.c ARM: shmobile: r8a73a4: Switch to new style CMT device 2014-05-11 19:35:27 +09:00
setup-r8a7740.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
setup-r8a7778.c Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into next 2014-06-05 15:57:04 -07:00
setup-r8a7779.c Merge branch 'for-linus' of git://ftp.arm.linux.org.uk/~rmk/linux-arm into next 2014-06-05 15:57:04 -07:00
setup-r8a7790.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
setup-r8a7791.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
setup-rcar-gen2.c ARM: shmobile: rcar-gen2: Cache Mode Monitor Register Value 2014-04-14 11:28:42 +09:00
setup-sh73a0.c ARM: shmobile: sh73a0: Switch to new style TMU device 2014-05-11 19:35:28 +09:00
setup-sh7372.c ARM: SoC board support updates for 3.16 2014-06-02 16:21:41 -07:00
sh-gpio.h ARM: shmobile: mackerel: Use pinconf API to configure pin pull-down 2013-12-10 17:24:49 +09:00
sleep-sh7372.S ARM: shmobile: Insert align directives before 4 bytes data 2013-07-18 08:35:21 +09:00
smp-emev2.c ARM: shmobile: Remove EMEV2 header file 2014-04-14 11:28:23 +09:00
smp-r8a7779.c ARM: shmobile: Break out R-Car SYSC PM code 2014-02-24 08:55:46 +09:00
smp-r8a7790.c ARM: shmobile: r8a7790 CA15-SCU enablement 2014-02-24 08:55:47 +09:00
smp-r8a7791.c ARM: shmobile: Check r8a7791 MD21 at SMP boot 2014-04-14 11:28:43 +09:00
smp-sh73a0.c ARM: shmobile: Let sh73a0 rely on SCU CPU notifier 2013-09-30 17:56:09 +09:00
suspend.c arm: Use generic idle loop 2013-04-08 17:39:24 +02:00
timer.c ARM: shmobile: Set clock frequency in HZ from OF nodes 2014-05-14 14:02:21 +09:00