[PATCH 0/8] MinnowBoard support

From: Darren Hart
Date: Tue Jun 25 2013 - 21:54:05 EST


The following patches add support for the MinnowBoard:

http://www.minnowboard.org

The MinnowBoard is an E6xx Atom CPU paired with an EG20T PCH on a small
(4.25" x 4.25") board with USB, MMC, SATA, Ethernet, audio, GPIO, GPIO
buttons, GPIO LEDs, and EMGD graphics. It has an expansion connector
allowing for daughter cards (Lures) to access things like I2C, SPI, CAN,
UARTs, GPIO, LVDS, SATA and USB. The Lure specification is available
here:

http://www.elinux.org/Minnowboard:Lures_Specifications

This is a rather unique x86 board and the platform drivers are
admittedly atypical for x86. They are intended to provide board-specifc
support where no discovery is possible as well as example drivers and
convenient access to the available GPIO. Future improvements may include
ACPI versions of these drivers, which would at least make them
discoverable.

The following changes since commit 1e876e3b1a9df25bb04682b0d48aaa7e8ae1fc82:

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux (2013-06-25 09:08:07 -1000)

are available in the git repository at:

git://git.infradead.org/users/dvhart/linux-2.6.git minnow/platform-v1
ssh://git.infradead.org/srv/git/users/dvhart/linux-2.6.git minnow/platform-v1
http://git.infradead.org/users/dvhart/linux-2.6.git/shortlog/refs/heads/minnow/platform-v1

Darren Hart (8):
pch_gbe: Use PCH_GBE_PHY_REGS_LEN instead of 32
pch_uart: Add uart_clk selection for the MinnowBoard
gpio-sch: Add sch_gpio_resume_set_enable()
minnowboard: Add base platform driver for the MinnowBoard
minnowboard-gpio: Export MinnowBoard expansion GPIO
minnowboard-keys: Bind MinnowBoard buttons to arrow keys
pci: Add CircuitCo VENDOR ID and MinnowBoard DEVICE ID
pch_gbe: Add MinnowBoard support

drivers/gpio/gpio-sch.c | 24 +++
drivers/net/ethernet/oki-semi/pch_gbe/Kconfig | 1 +
drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe.h | 2 +
.../net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c | 34 +++-
.../net/ethernet/oki-semi/pch_gbe/pch_gbe_phy.c | 89 ++++++++++
.../net/ethernet/oki-semi/pch_gbe/pch_gbe_phy.h | 2 +
drivers/platform/x86/Kconfig | 52 ++++++
drivers/platform/x86/Makefile | 3 +
drivers/platform/x86/minnowboard-gpio.c | 115 ++++++++++++
drivers/platform/x86/minnowboard-gpio.h | 60 +++++++
drivers/platform/x86/minnowboard-keys.c | 108 ++++++++++++
drivers/platform/x86/minnowboard.c | 193 +++++++++++++++++++++
drivers/tty/serial/pch_uart.c | 5 +
include/linux/gpio-sch.h | 6 +
include/linux/minnowboard.h | 37 ++++
include/linux/pci_ids.h | 3 +
16 files changed, 733 insertions(+), 1 deletion(-)
create mode 100644 drivers/platform/x86/minnowboard-gpio.c
create mode 100644 drivers/platform/x86/minnowboard-gpio.h
create mode 100644 drivers/platform/x86/minnowboard-keys.c
create mode 100644 drivers/platform/x86/minnowboard.c
create mode 100644 include/linux/gpio-sch.h
create mode 100644 include/linux/minnowboard.h

--
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/