From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
To: barebox@lists.infradead.org
Subject: [PATCH 1/1 v3] at91sam9x5ek: add i2c support
Date: Sat, 3 Nov 2012 12:29:48 +0100 [thread overview]
Message-ID: <1351942188-25775-1-git-send-email-plagnioj@jcrosoft.com> (raw)
In-Reply-To: <1351795928-18677-1-git-send-email-plagnioj@jcrosoft.com>
enable qt1070 support
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
v3:
provide irq_pin for qt1070
and enable it by default
branch updated
The following changes since commit 220c2476bc88b8297607ca0a3f8e2e3495da6edb:
i2c: add versatile support (2012-11-03 04:09:17 +0800)
are available in the git repository at:
git://git.jcrosoft.org/barebox.git delivery/at91_i2c
for you to fetch changes up to 5824ffb7201d38315a24fa4ba21124ffaf86068f:
at91sam9x5ek: add i2c support (2012-11-03 04:09:55 +0800)
----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (7):
at91sam9x5: add i2c support
at91rm9200: add i2c support
at91sam9260/sam9g20: add i2c support
at91sam9263: add i2c support
at91sam9261/sam9g10: add i2c support
at91sam9g45: add i2c support
at91sam9x5ek: add i2c support
arch/arm/boards/at91sam9x5ek/init.c | 21 ++++++++++++++++++++-
arch/arm/configs/at91sam9x5ek_defconfig | 5 ++++-
arch/arm/mach-at91/at91rm9200_devices.c | 28 ++++++++++++++++++++++++++++
arch/arm/mach-at91/at91sam9260_devices.c | 32 ++++++++++++++++++++++++++++++++
arch/arm/mach-at91/at91sam9261_devices.c | 31 +++++++++++++++++++++++++++++++
arch/arm/mach-at91/at91sam9263_devices.c | 31 +++++++++++++++++++++++++++++++
arch/arm/mach-at91/at91sam9g45_devices.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
arch/arm/mach-at91/at91sam9x5_devices.c | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/arm/mach-at91/include/mach/board.h | 3 +++
9 files changed, 257 insertions(+), 2 deletions(-)
Best Regards,
J.
arch/arm/boards/at91sam9x5ek/init.c | 21 ++++++++++++++++++++-
arch/arm/configs/at91sam9x5ek_defconfig | 5 ++++-
2 files changed, 24 insertions(+), 2 deletions(-)
diff --git a/arch/arm/boards/at91sam9x5ek/init.c b/arch/arm/boards/at91sam9x5ek/init.c
index 78f7349..dbb9bb5 100644
--- a/arch/arm/boards/at91sam9x5ek/init.c
+++ b/arch/arm/boards/at91sam9x5ek/init.c
@@ -37,7 +37,7 @@
#include <mach/at91_pmc.h>
#include <mach/at91_rstc.h>
#include <mach/at91sam9x5_matrix.h>
-#include <gpio_keys.h>
+#include <input/qt1070.h>
#include <readkey.h>
#include <linux/w1-gpio.h>
#include <w1_mac_address.h>
@@ -114,6 +114,24 @@ static void ek_add_device_eth(void)
at91_add_device_eth(0, &macb_pdata);
}
+struct qt1070_platform_data qt1070_pdata = {
+ .irq_pin = AT91_PIN_PA7,
+};
+
+static struct i2c_board_info i2c_devices[] = {
+ {
+ .platform_data = &qt1070_pdata,
+ I2C_BOARD_INFO("qt1070", 0x1b),
+ },
+};
+
+static void ek_add_device_i2c(void)
+{
+ at91_set_gpio_input(qt1070_pdata.irq_pin, 0);
+ at91_set_deglitch(qt1070_pdata.irq_pin, 1);
+ at91_add_device_i2c(0, i2c_devices, ARRAY_SIZE(i2c_devices));
+}
+
/*
* USB Host port
*/
@@ -172,6 +190,7 @@ static int at91sam9x5ek_devices_init(void)
ek_add_device_eth();
at91_add_device_usbh_ohci(&ek_usbh_data);
ek_add_led();
+ ek_add_device_i2c();
armlinux_set_bootparams((void *)(AT91_CHIPSELECT_1 + 0x100));
armlinux_set_architecture(CONFIG_MACH_AT91SAM9X5EK);
diff --git a/arch/arm/configs/at91sam9x5ek_defconfig b/arch/arm/configs/at91sam9x5ek_defconfig
index 6315d9f..3e66c44 100644
--- a/arch/arm/configs/at91sam9x5ek_defconfig
+++ b/arch/arm/configs/at91sam9x5ek_defconfig
@@ -41,6 +41,7 @@ CONFIG_CMD_OFTREE=y
CONFIG_CMD_TIMEOUT=y
CONFIG_CMD_PARTITION=y
CONFIG_CMD_GPIO=y
+CONFIG_CMD_I2C=y
CONFIG_CMD_LED=y
CONFIG_CMD_LED_TRIGGER=y
CONFIG_NET=y
@@ -52,6 +53,8 @@ CONFIG_FS_TFTP=y
CONFIG_NET_NETCONSOLE=y
CONFIG_DRIVER_NET_MACB=y
# CONFIG_SPI is not set
+CONFIG_I2C=y
+CONFIG_I2C_GPIO=y
CONFIG_MTD=y
CONFIG_NAND=y
# CONFIG_NAND_ECC_HW is not set
@@ -64,7 +67,7 @@ CONFIG_DISK_WRITE=y
CONFIG_LED=y
CONFIG_LED_GPIO=y
CONFIG_LED_TRIGGERS=y
-CONFIG_KEYBOARD_GPIO=y
+CONFIG_KEYBOARD_QT1070=y
CONFIG_W1=y
CONFIG_W1_MASTER_GPIO=y
CONFIG_W1_SLAVE_DS2431=y
--
1.7.10.4
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-11-03 11:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-11-01 14:33 [PATCH 0/7] at91 add i2c-gpio suport Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 1/7] at91sam9x5: add i2c support Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 2/7] at91rm9200: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 3/7] at91sam9260/sam9g20: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 4/7] at91sam9263: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 5/7] at91sam9261/sam9g10: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 6/7] at91sam9g45: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 15:07 ` [PATCH 7/7] at91sam9x5ek: " Jean-Christophe PLAGNIOL-VILLARD
2012-11-01 18:52 ` [PATCH 1/1 v2] " Jean-Christophe PLAGNIOL-VILLARD
2012-11-03 11:29 ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-11-02 9:34 ` [PATCH 0/7] at91 add i2c-gpio suport Jean-Christophe PLAGNIOL-VILLARD
2012-11-02 20:24 ` Sascha Hauer
2012-11-03 7:25 ` Jean-Christophe PLAGNIOL-VILLARD
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=1351942188-25775-1-git-send-email-plagnioj@jcrosoft.com \
--to=plagnioj@jcrosoft.com \
--cc=barebox@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox