linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 0/9] Upstream merge of core of Goldfish AVD support
@ 2012-12-03 15:04 Alan Cox
  2012-12-03 15:04 ` [PATCH 1/9] goldfish: definitions for Goldfish on x86 platforms Alan Cox
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: Alan Cox @ 2012-12-03 15:04 UTC (permalink / raw)
  To: arve, x86, linux-kernel, mikechan

This is a port and clean up of the core platform and driver code for
the Goldfish AVD (Android Virtual Device).

With these patches applied you can boot Debian on Goldfish for minimal testing
purposes. It won't boot Android as there are other drivers needed, some of
which still need out of tree Android code.

Goldfish is both an ARM and an x86 platform. These patches add the x86 code
but they also add all the cleanups done to make most of the code portable. All
the drivers therefore are put into drivers/platform/goldfish or into the 
relevant driver directories  so they can be shared by other processors as
needed in future.

Once these drivers are in an upstream acceptable shape I'll look at feeding
the other bits in.

Alan
---

Arve Hjønnevåg (4):
      goldfish: tty driver
      goldfish: framebuffer
      goldfish: real time clock
      goldfish: NAND flash driver

Brian Swetland (1):
      goldfish: virtual input event driver

Jun Nakajima (2):
      goldfish: definitions for Goldfish on x86 platforms
      goldfish: add the goldfish virtual bus

Mike Lockwood (2):
      goldfish: emulated MMC device
      goldfish: power device


 arch/x86/Kconfig                         |   12 +
 arch/x86/include/asm/goldfish.h          |   43 ++
 drivers/input/keyboard/Kconfig           |   11 +
 drivers/input/keyboard/Makefile          |    1 
 drivers/input/keyboard/goldfish_events.c |  201 ++++++++++
 drivers/mmc/host/Kconfig                 |    7 
 drivers/mmc/host/Makefile                |    1 
 drivers/mmc/host/goldfish.c              |  579 ++++++++++++++++++++++++++++++
 drivers/mtd/devices/Kconfig              |    7 
 drivers/mtd/devices/Makefile             |    3 
 drivers/mtd/devices/goldfish_nand.c      |  475 +++++++++++++++++++++++++
 drivers/mtd/devices/goldfish_nand_reg.h  |   72 ++++
 drivers/platform/Makefile                |    1 
 drivers/platform/goldfish/Makefile       |    4 
 drivers/platform/goldfish/pdev_bus.c     |  267 ++++++++++++++
 drivers/power/Kconfig                    |    8 
 drivers/power/Makefile                   |    1 
 drivers/power/goldfish_battery.c         |  263 ++++++++++++++
 drivers/rtc/Kconfig                      |    9 
 drivers/rtc/Makefile                     |    1 
 drivers/rtc/rtc-goldfish.c               |  146 ++++++++
 drivers/tty/Kconfig                      |    6 
 drivers/tty/Makefile                     |    1 
 drivers/tty/goldfish.c                   |  342 ++++++++++++++++++
 drivers/video/Kconfig                    |    9 
 drivers/video/Makefile                   |    1 
 drivers/video/goldfishfb.c               |  327 +++++++++++++++++
 27 files changed, 2796 insertions(+), 2 deletions(-)
 create mode 100644 arch/x86/include/asm/goldfish.h
 create mode 100644 drivers/input/keyboard/goldfish_events.c
 create mode 100644 drivers/mmc/host/goldfish.c
 create mode 100644 drivers/mtd/devices/goldfish_nand.c
 create mode 100644 drivers/mtd/devices/goldfish_nand_reg.h
 create mode 100644 drivers/platform/goldfish/Makefile
 create mode 100644 drivers/platform/goldfish/pdev_bus.c
 create mode 100644 drivers/power/goldfish_battery.c
 create mode 100644 drivers/rtc/rtc-goldfish.c
 create mode 100644 drivers/tty/goldfish.c
 create mode 100644 drivers/video/goldfishfb.c

-- 
Moo!


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2012-12-04 10:07 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-03 15:04 [RFC PATCH 0/9] Upstream merge of core of Goldfish AVD support Alan Cox
2012-12-03 15:04 ` [PATCH 1/9] goldfish: definitions for Goldfish on x86 platforms Alan Cox
2012-12-04 10:07   ` Geert Uytterhoeven
2012-12-03 15:04 ` [PATCH 2/9] goldfish: add the goldfish virtual bus Alan Cox
2012-12-03 15:04 ` [PATCH 3/9] goldfish: tty driver Alan Cox
2012-12-03 15:05 ` [PATCH 4/9] goldfish: virtual input event driver Alan Cox
2012-12-03 15:05 ` [PATCH 5/9] goldfish: framebuffer Alan Cox
2012-12-03 15:05 ` [PATCH 6/9] goldfish: emulated MMC device Alan Cox
2012-12-03 15:05 ` [PATCH 7/9] goldfish: power device Alan Cox
2012-12-03 15:06 ` [PATCH 8/9] goldfish: real time clock Alan Cox
2012-12-03 15:06 ` [PATCH 9/9] goldfish: NAND flash driver Alan Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).