All of lore.kernel.org
 help / color / mirror / Atom feed
From: Petr Cvek <petr.cvek@tul.cz>
To: robert.jarzmik@free.fr, philipp.zabel@gmail.com,
	daniel@zonque.org, haojian.zhuang@gmail.com,
	sameo@linux.intel.com, lee.jones@linaro.org, cooloney@gmail.com,
	rpurdie@rpsys.net, j.anaszewski@samsung.com,
	linux@arm.linux.org.uk, sre@kernel.org, dbaryshkov@gmail.com,
	dwmw2@infradead.org
Cc: linux-leds@vger.kernel.org, linux-pm@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 00/21] ARM: pxa: magician: Rework HTC Magician support
Date: Mon, 17 Aug 2015 23:55:07 +0200	[thread overview]
Message-ID: <55D2583B.8040602@tul.cz> (raw)

This patchset will clean, fix and finally add multiple PXA devices
to HTC Magician machine. Also it adds leds-pasic3 driver to LED subsystem.
This driver require changes into htc-pasic3 structures, which are used
exclusively by magician.c code.

Petr Cvek (21):
  ARM: pxa: magician: Fix Kconfig for magician to always include
    htc-egpio
  ARM: pxa: magician: Fix indentation and whitespaces
  ARM: pxa: magician: Fix comments, debug functions and print strings
  ARM: pxa: magician: Add, fix and init (new) GPIOs
  ARM: pxa: magician: Add support for ADS7846 touchscreen
  ARM: pxa: magician: Add normal and power I2C definition
  ARM: pxa: magician: Fix IrDA pdata and redundant GPIO request
  ARM: pxa: magician: Add StrataFlash Vpp GPIO and alternative driver
  ARM: pxa: magician: Add OV9640 camera support
  ARM: pxa: magician: Add UDA1380 sound support
  ARM: pxa: magician: Add MAX1586 Vcore regulator support
  ARM: pxa: magician: Add PXA27x UDC support
  ARM: pxa: magician: Fix charging source and add NiCd backup charging
  ARM: pxa: magician: Fix PXA USB OHCI port enable flags
  ARM: pxa: magician: Fix PWM backlight regulator
  ARM: pxa: magician: Add support for alternative LCD backlight
  ARM: pxa: magician: Remove (temporarily) pasic3 LED support
  mfd: htc-pasic3: Prepare driver for leds-pasic3
  leds: leds-pasic3: Add support for PASIC3 LED controller
  ARM: pxa: magician: Re-add pdata for new leds-pasic3 driver
  ARM: pxa: magician: Move platform_add_devices() to the end of
    magician_init()

 arch/arm/mach-pxa/Kconfig                 |    1 +
 arch/arm/mach-pxa/include/mach/magician.h |   39 +-
 arch/arm/mach-pxa/magician.c              | 1153 ++++++++++++++++++++++-------
 drivers/leds/Kconfig                      |    9 +
 drivers/leds/Makefile                     |    1 +
 drivers/leds/leds-pasic3.c                |  232 ++++++
 drivers/mfd/htc-pasic3.c                  |   54 +-
 include/linux/mfd/htc-pasic3.h            |   85 ++-
 8 files changed, 1255 insertions(+), 319 deletions(-)
 create mode 100644 drivers/leds/leds-pasic3.c

-- 
1.7.12.1


WARNING: multiple messages have this Message-ID (diff)
From: petr.cvek@tul.cz (Petr Cvek)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 00/21] ARM: pxa: magician: Rework HTC Magician support
Date: Mon, 17 Aug 2015 23:55:07 +0200	[thread overview]
Message-ID: <55D2583B.8040602@tul.cz> (raw)

This patchset will clean, fix and finally add multiple PXA devices
to HTC Magician machine. Also it adds leds-pasic3 driver to LED subsystem.
This driver require changes into htc-pasic3 structures, which are used
exclusively by magician.c code.

Petr Cvek (21):
  ARM: pxa: magician: Fix Kconfig for magician to always include
    htc-egpio
  ARM: pxa: magician: Fix indentation and whitespaces
  ARM: pxa: magician: Fix comments, debug functions and print strings
  ARM: pxa: magician: Add, fix and init (new) GPIOs
  ARM: pxa: magician: Add support for ADS7846 touchscreen
  ARM: pxa: magician: Add normal and power I2C definition
  ARM: pxa: magician: Fix IrDA pdata and redundant GPIO request
  ARM: pxa: magician: Add StrataFlash Vpp GPIO and alternative driver
  ARM: pxa: magician: Add OV9640 camera support
  ARM: pxa: magician: Add UDA1380 sound support
  ARM: pxa: magician: Add MAX1586 Vcore regulator support
  ARM: pxa: magician: Add PXA27x UDC support
  ARM: pxa: magician: Fix charging source and add NiCd backup charging
  ARM: pxa: magician: Fix PXA USB OHCI port enable flags
  ARM: pxa: magician: Fix PWM backlight regulator
  ARM: pxa: magician: Add support for alternative LCD backlight
  ARM: pxa: magician: Remove (temporarily) pasic3 LED support
  mfd: htc-pasic3: Prepare driver for leds-pasic3
  leds: leds-pasic3: Add support for PASIC3 LED controller
  ARM: pxa: magician: Re-add pdata for new leds-pasic3 driver
  ARM: pxa: magician: Move platform_add_devices() to the end of
    magician_init()

 arch/arm/mach-pxa/Kconfig                 |    1 +
 arch/arm/mach-pxa/include/mach/magician.h |   39 +-
 arch/arm/mach-pxa/magician.c              | 1153 ++++++++++++++++++++++-------
 drivers/leds/Kconfig                      |    9 +
 drivers/leds/Makefile                     |    1 +
 drivers/leds/leds-pasic3.c                |  232 ++++++
 drivers/mfd/htc-pasic3.c                  |   54 +-
 include/linux/mfd/htc-pasic3.h            |   85 ++-
 8 files changed, 1255 insertions(+), 319 deletions(-)
 create mode 100644 drivers/leds/leds-pasic3.c

-- 
1.7.12.1

             reply	other threads:[~2015-08-17 21:55 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-17 21:55 Petr Cvek [this message]
2015-08-17 21:55 ` [PATCH v2 00/21] ARM: pxa: magician: Rework HTC Magician support Petr Cvek
2015-08-17 22:20 ` Petr Cvek
2015-08-17 22:20   ` Petr Cvek
2015-09-05 10:10 ` Robert Jarzmik
2015-09-05 10:10   ` Robert Jarzmik
2015-09-07  4:14   ` Petr Cvek
2015-09-07  4:14     ` Petr Cvek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55D2583B.8040602@tul.cz \
    --to=petr.cvek@tul.cz \
    --cc=cooloney@gmail.com \
    --cc=daniel@zonque.org \
    --cc=dbaryshkov@gmail.com \
    --cc=dwmw2@infradead.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=j.anaszewski@samsung.com \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=philipp.zabel@gmail.com \
    --cc=robert.jarzmik@free.fr \
    --cc=rpurdie@rpsys.net \
    --cc=sameo@linux.intel.com \
    --cc=sre@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.