All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wu Zhangjin <wuzhangjin@gmail.com>
To: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org, zhangfx@lemote.com, yanh@lemote.com,
	huhb@lemote.com, Wu Zhangjin <wuzhangjin@gmail.com>
Subject: [PATCH 0/5] Lemote-2f: Add Platform Specific Support
Date: Fri, 20 Nov 2009 01:32:05 +0800	[thread overview]
Message-ID: <cover.1258651050.git.wuzhangjin@gmail.com> (raw)

This patchset add the platform specific support for LynLoong2F(ALLINONE) PC and
YeeLoong2F netbook. and also, a cleanup and update for YeeLoong2F is added.

  o [loongson] LynLoong2F: Add Platform Specific Support
    Add the backlight and suspend support for LynLoong2F.
  o [loongson] yeeloong2f: add basic ec operations
    [loongson] yeeloong2f: add platform specific support
    Add the support for YeeLoong2F's Embedded Controller and cleanup the reset
    logic with the ec operations. the following yeeloong2f patches need this ec support.
  o [loongson] yeeloong2f: add platform specific support
    Add the backlight,hwmon,hotkey,thermal,battery,suspend support for YeeLoong2F.
  o [loongson] yeeloong2f: add LID open event as the wakeup event
    Setup a new wakeup interrupt for YeeLoong2F to allow user wakeup the
    netbook from suspend mode via opening the netbook.

All of the above updates have been put into this branch:

git://dev.lemote.com/rt4ls.git linux-loongson/dev/for-upstream

Thanks & Best Regards,
     Wu Zhangjin

Wu Zhangjin (5):
  [loongson] LynLoong2F: Add Platform Specific Support
  [loongson] yeeloong2f: add basic ec operations
  [loongson] yeeloong2f: add LID open event as the wakeup event
  [loongson] yeeloong2f: cleanup the reset logic with ec_write function
  [loongson] yeeloong2f: add platform specific support

 .../mips/include/asm/mach-loongson/cs5536/cs5536.h |   35 +
 .../asm/mach-loongson/cs5536/cs5536_mfgpt.h        |    5 +
 arch/mips/include/asm/mach-loongson/loongson.h     |    1 +
 arch/mips/kernel/setup.c                           |    1 +
 arch/mips/loongson/Kconfig                         |   53 +
 arch/mips/loongson/common/cmdline.c                |   10 +
 arch/mips/loongson/lemote-2f/Makefile              |    8 +-
 arch/mips/loongson/lemote-2f/ec_kb3310b.c          |  132 ++
 arch/mips/loongson/lemote-2f/ec_kb3310b.h          |  197 +++
 arch/mips/loongson/lemote-2f/irq.c                 |    4 +-
 arch/mips/loongson/lemote-2f/lynloong_pc.c         |  609 +++++++++
 arch/mips/loongson/lemote-2f/pm.c                  |   72 +
 arch/mips/loongson/lemote-2f/reset.c               |   21 +-
 arch/mips/loongson/lemote-2f/yeeloong_laptop.c     | 1354 ++++++++++++++++++++
 14 files changed, 2481 insertions(+), 21 deletions(-)
 create mode 100644 arch/mips/loongson/lemote-2f/ec_kb3310b.c
 create mode 100644 arch/mips/loongson/lemote-2f/ec_kb3310b.h
 create mode 100644 arch/mips/loongson/lemote-2f/lynloong_pc.c
 create mode 100644 arch/mips/loongson/lemote-2f/yeeloong_laptop.c

             reply	other threads:[~2009-11-19 17:32 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-11-19 17:32 Wu Zhangjin [this message]
2009-11-19 17:33 ` [PATCH 1/5] [loongson] LynLoong2F: Add Platform Specific Support Wu Zhangjin
2009-11-19 17:33 ` [PATCH 2/5] [loongson] yeeloong2f: add basic ec operations Wu Zhangjin
2009-11-19 17:34 ` [PATCH 3/5] [loongson] yeeloong2f: add LID open event as the wakeup event Wu Zhangjin
2009-11-19 17:34 ` [PATCH 4/5] [loongson] yeeloong2f: cleanup the reset logic with ec_write function Wu Zhangjin
2009-11-19 17:39 ` [PATCH 5/5] [loongson] yeeloong2f: add platform specific support Wu Zhangjin
2009-11-19 17:39   ` [lm-sensors] [PATCH 5/5] [loongson] yeeloong2f: add platform Wu Zhangjin
2009-11-19 18:02   ` [PATCH 5/5] [loongson] yeeloong2f: add platform specific support Wu Zhangjin
2009-11-19 18:02     ` [lm-sensors] [PATCH 5/5] [loongson] yeeloong2f: add platform Wu Zhangjin
2009-11-19 21:42     ` [PATCH 5/5] [loongson] yeeloong2f: add platform specific support Sergei Shtylyov
2009-11-19 21:42       ` [lm-sensors] [PATCH 5/5] [loongson] yeeloong2f: add platform Sergei Shtylyov
2009-11-20  1:08       ` [PATCH 5/5] [loongson] yeeloong2f: add platform specific support Wu Zhangjin
2009-11-20  1:08         ` [lm-sensors] [PATCH 5/5] [loongson] yeeloong2f: add platform 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.1258651050.git.wuzhangjin@gmail.com \
    --to=wuzhangjin@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.