All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wu Zhangjin <wuzhangjin@gmail.com>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	linux-mips@linux-mips.org, zhangfx@lemote.com, yanh@lemote.com,
	huhb@lemote.com, Wu Zhangjin <wuzhangjin@gmail.com>
Subject: [PATCH v5 0/8] Loongson: YeeLoong: add platform specific drivers
Date: Sat, 28 Nov 2009 21:31:29 +0800	[thread overview]
Message-ID: <cover.1259414649.git.wuzhangjin@gmail.com> (raw)

From: Wu Zhangjin <wuzhangjin@gmail.com>

This patchset adds platform specific drivers for YeeLoong.

Changes from the v4 revision:
	
	- Split the drivers into its own module
	- Incorporates with the feedback of the Input(hotkey) driver from
	Dmitry Torokhov.
	- Cleanups and fixups

Wu Zhangjin (8):
  Loongson: Lemote-2F: add platform specific submenu
  Loongson: YeeLoong: add platform specific option
  Loongson: YeeLoong: add backlight driver
  Loongson: YeeLoong: add battery driver
  Loongson: YeeLoong: add hwmon driver
  Loongson: YeeLoong: add video output driver
  Loongson: YeeLoong: add suspend driver
  Loongson: YeeLoong: add hotkey driver

 arch/mips/kernel/setup.c                           |    1 +
 arch/mips/loongson/Kconfig                         |   21 +
 arch/mips/loongson/lemote-2f/Makefile              |    7 +-
 arch/mips/loongson/lemote-2f/ec_kb3310b.c          |  130 ------
 arch/mips/loongson/lemote-2f/ec_kb3310b.h          |  188 --------
 arch/mips/loongson/lemote-2f/pm.c                  |    4 +-
 arch/mips/loongson/lemote-2f/reset.c               |    2 +-
 .../loongson/lemote-2f/yeeloong_laptop/Kconfig     |   69 +++
 .../loongson/lemote-2f/yeeloong_laptop/Makefile    |   10 +
 .../loongson/lemote-2f/yeeloong_laptop/backlight.c |   93 ++++
 .../loongson/lemote-2f/yeeloong_laptop/battery.c   |  127 ++++++
 .../lemote-2f/yeeloong_laptop/ec_kb3310b.c         |  126 ++++++
 .../lemote-2f/yeeloong_laptop/ec_kb3310b.h         |  194 ++++++++
 .../loongson/lemote-2f/yeeloong_laptop/hotkey.c    |  468 ++++++++++++++++++++
 .../loongson/lemote-2f/yeeloong_laptop/hwmon.c     |  241 ++++++++++
 .../loongson/lemote-2f/yeeloong_laptop/suspend.c   |  141 ++++++
 .../lemote-2f/yeeloong_laptop/video_output.c       |  164 +++++++
 17 files changed, 1664 insertions(+), 322 deletions(-)
 delete mode 100644 arch/mips/loongson/lemote-2f/ec_kb3310b.c
 delete mode 100644 arch/mips/loongson/lemote-2f/ec_kb3310b.h
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/Kconfig
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/Makefile
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/backlight.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/battery.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/ec_kb3310b.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/ec_kb3310b.h
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/hotkey.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/hwmon.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/suspend.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop/video_output.c

             reply	other threads:[~2009-11-28 13:31 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-28 13:31 Wu Zhangjin [this message]
2009-11-28 13:31 ` [PATCH v5 1/8] Loongson: Lemote-2F: add platform specific submenu Wu Zhangjin
2009-11-28 13:34 ` [PATCH v5 2/8] Loongson: YeeLoong: add platform specific option Wu Zhangjin
2009-11-28 13:36 ` [PATCH v5 3/8] Loongson: YeeLoong: add backlight driver Wu Zhangjin
2009-11-30  5:22   ` Wu Zhangjin
2009-11-28 13:37 ` [PATCH v5 4/8] Loongson: YeeLoong: add battery driver Wu Zhangjin
2009-11-30  5:22   ` Wu Zhangjin
2009-11-28 13:38 ` [PATCH v5 5/8] Loongson: YeeLoong: add hwmon driver Wu Zhangjin
2009-11-28 13:38   ` [lm-sensors] " Wu Zhangjin
2009-11-30  5:20   ` Wu Zhangjin
2009-11-30  5:20     ` [lm-sensors] " Wu Zhangjin
2009-11-30  6:24     ` Wu Zhangjin
2009-11-30  6:24       ` [lm-sensors] " Wu Zhangjin
2009-12-01  1:48       ` Ralf Baechle
2009-12-01  1:48         ` [lm-sensors] " Ralf Baechle
2009-12-01  2:06         ` Wu Zhangjin
2009-12-01  2:06           ` [lm-sensors] " Wu Zhangjin
2009-11-28 13:41 ` [PATCH v5 6/8] Loongson: YeeLoong: add video output driver Wu Zhangjin
2009-11-30  5:19   ` Wu Zhangjin
2009-11-30  6:43     ` Wu Zhangjin
2009-11-28 13:42 ` [PATCH v5 7/8] Loongson: YeeLoong: add suspend driver Wu Zhangjin
2009-11-29  9:19   ` Pavel Machek
2009-11-29  9:19   ` Pavel Machek
2009-11-29 22:35   ` Rafael J. Wysocki
2009-11-29 22:35   ` Rafael J. Wysocki
2009-11-30  0:59     ` Wu Zhangjin
2009-11-30  0:59     ` Wu Zhangjin
2009-11-28 13:42 ` Wu Zhangjin
2009-11-28 13:44 ` [PATCH v5 8/8] Loongson: YeeLoong: add hotkey driver Wu Zhangjin
2009-11-29  5:35   ` Dmitry Torokhov
2009-11-29  5:50     ` Wu Zhangjin
2009-11-29  7:29       ` Ralf Baechle
2009-11-29  7:40         ` Wu Zhangjin
2009-11-30  5:18   ` Wu Zhangjin

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=cover.1259414649.git.wuzhangjin@gmail.com \
    --to=wuzhangjin@gmail.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=huhb@lemote.com \
    --cc=linux-mips@linux-mips.org \
    --cc=ralf@linux-mips.org \
    --cc=yanh@lemote.com \
    --cc=zhangfx@lemote.com \
    /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.