All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support
@ 2012-04-11  3:58 Kuninori Morimoto
  2012-04-23  6:54 ` [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key Kuninori Morimoto
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Kuninori Morimoto @ 2012-04-11  3:58 UTC (permalink / raw)
  To: linux-sh

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm/mach-shmobile/board-kzm9g.c |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c
index 145341d..c846531 100644
--- a/arch/arm/mach-shmobile/board-kzm9g.c
+++ b/arch/arm/mach-shmobile/board-kzm9g.c
@@ -21,6 +21,7 @@
 #include <linux/gpio.h>
 #include <linux/io.h>
 #include <linux/irq.h>
+#include <linux/i2c.h>
 #include <linux/platform_device.h>
 #include <linux/smsc911x.h>
 #include <linux/usb/r8a66597.h>
@@ -146,6 +147,13 @@ static struct platform_device lcdc_device = {
 	},
 };
 
+static struct i2c_board_info i2c1_devices[] = {
+	{
+		I2C_BOARD_INFO("st1232-ts", 0x55),
+		.irq = intcs_evt2irq(0x300), /* IRQ8 */
+	},
+};
+
 static struct platform_device *kzm_devices[] __initdata = {
 	&smsc_device,
 	&usb_host_device,
@@ -253,11 +261,17 @@ static void __init kzm_init(void)
 	gpio_request(GPIO_PORT222,	NULL);
 	gpio_direction_output(GPIO_PORT222, 1);
 
+	/* Touchscreen */
+	gpio_request(GPIO_PORT223, NULL); /* IRQ8 */
+	gpio_direction_input(GPIO_PORT223);
+
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 64K*8way */
 	l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff);
 #endif
 
+	i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices));
+
 	sh73a0_add_standard_devices();
 	platform_add_devices(kzm_devices, ARRAY_SIZE(kzm_devices));
 }
-- 
1.7.5.4


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

* [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key
  2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
@ 2012-04-23  6:54 ` Kuninori Morimoto
  2012-04-24 23:55 ` Simon Horman
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Kuninori Morimoto @ 2012-04-23  6:54 UTC (permalink / raw)
  To: linux-sh

This patch adds extra GPIO via PCF8757 chip,
and use it as gpio-key.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 arch/arm/mach-shmobile/board-kzm9g.c |   59 ++++++++++++++++++++++++++++++++++
 1 files changed, 59 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c
index 657ba64..78e9850 100644
--- a/arch/arm/mach-shmobile/board-kzm9g.c
+++ b/arch/arm/mach-shmobile/board-kzm9g.c
@@ -19,9 +19,12 @@
 
 #include <linux/delay.h>
 #include <linux/gpio.h>
+#include <linux/gpio_keys.h>
 #include <linux/io.h>
 #include <linux/irq.h>
 #include <linux/i2c.h>
+#include <linux/i2c/pcf857x.h>
+#include <linux/input.h>
 #include <linux/mmc/host.h>
 #include <linux/mmc/sh_mmcif.h>
 #include <linux/mmc/sh_mobile_sdhi.h>
@@ -39,6 +42,18 @@
 #include <asm/mach/arch.h>
 #include <video/sh_mobile_lcdc.h>
 
+/*
+ * external GPIO
+ */
+#define GPIO_PCF8575_BASE	(GPIO_NR)
+#define GPIO_PCF8575_PORT10	(GPIO_NR + 8)
+#define GPIO_PCF8575_PORT11	(GPIO_NR + 9)
+#define GPIO_PCF8575_PORT12	(GPIO_NR + 10)
+#define GPIO_PCF8575_PORT13	(GPIO_NR + 11)
+#define GPIO_PCF8575_PORT14	(GPIO_NR + 12)
+#define GPIO_PCF8575_PORT15	(GPIO_NR + 13)
+#define GPIO_PCF8575_PORT16	(GPIO_NR + 14)
+
 /* SMSC 9221 */
 static struct resource smsc9221_resources[] = {
 	[0] = {
@@ -225,7 +240,38 @@ static struct platform_device sdhi0_device = {
 	},
 };
 
+/* KEY */
+#define GPIO_KEY(c, g, d) { .code = c, .gpio = g, .desc = d, .active_low = 1 }
+
+static struct gpio_keys_button gpio_buttons[] = {
+	GPIO_KEY(KEY_BACK,	GPIO_PCF8575_PORT10,	"SW3"),
+	GPIO_KEY(KEY_RIGHT,	GPIO_PCF8575_PORT11,	"SW2-R"),
+	GPIO_KEY(KEY_LEFT,	GPIO_PCF8575_PORT12,	"SW2-L"),
+	GPIO_KEY(KEY_ENTER,	GPIO_PCF8575_PORT13,	"SW2-P"),
+	GPIO_KEY(KEY_UP,	GPIO_PCF8575_PORT14,	"SW2-U"),
+	GPIO_KEY(KEY_DOWN,	GPIO_PCF8575_PORT15,	"SW2-D"),
+	GPIO_KEY(KEY_HOME,	GPIO_PCF8575_PORT16,	"SW1"),
+};
+
+static struct gpio_keys_platform_data gpio_key_info = {
+	.buttons	= gpio_buttons,
+	.nbuttons	= ARRAY_SIZE(gpio_buttons),
+	.poll_interval	= 250, /* poling at this point */
+};
+
+static struct platform_device gpio_keys_device = {
+	/* gpio-pcf857x.c driver doesn't support gpio_to_irq() */
+	.name	= "gpio-keys-polled",
+	.dev	= {
+		.platform_data  = &gpio_key_info,
+	},
+};
+
 /* I2C */
+static struct pcf857x_platform_data pcf8575_pdata = {
+	.gpio_base	= GPIO_PCF8575_BASE,
+};
+
 static struct i2c_board_info i2c1_devices[] = {
 	{
 		I2C_BOARD_INFO("st1232-ts", 0x55),
@@ -233,12 +279,20 @@ static struct i2c_board_info i2c1_devices[] = {
 	},
 };
 
+static struct i2c_board_info i2c3_devices[] = {
+	{
+		I2C_BOARD_INFO("pcf8575", 0x20),
+		.platform_data = &pcf8575_pdata,
+	},
+};
+
 static struct platform_device *kzm_devices[] __initdata = {
 	&smsc_device,
 	&usb_host_device,
 	&lcdc_device,
 	&mmc_device,
 	&sdhi0_device,
+	&gpio_keys_device,
 };
 
 /*
@@ -373,12 +427,17 @@ static void __init kzm_init(void)
 	gpio_request(GPIO_PORT15, NULL);
 	gpio_direction_output(GPIO_PORT15, 1); /* power */
 
+	/* I2C 3 */
+	gpio_request(GPIO_FN_PORT27_I2C_SCL3, NULL);
+	gpio_request(GPIO_FN_PORT28_I2C_SDA3, NULL);
+
 #ifdef CONFIG_CACHE_L2X0
 	/* Early BRESP enable, Shared attribute override enable, 64K*8way */
 	l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff);
 #endif
 
 	i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices));
+	i2c_register_board_info(3, i2c3_devices, ARRAY_SIZE(i2c3_devices));
 
 	sh73a0_add_standard_devices();
 	platform_add_devices(kzm_devices, ARRAY_SIZE(kzm_devices));
-- 
1.7.5.4


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

* Re: [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key
  2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
  2012-04-23  6:54 ` [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key Kuninori Morimoto
@ 2012-04-24 23:55 ` Simon Horman
  2012-04-25  0:11 ` Kuninori Morimoto
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2012-04-24 23:55 UTC (permalink / raw)
  To: linux-sh

On Sun, Apr 22, 2012 at 11:54:14PM -0700, Kuninori Morimoto wrote:
> This patch adds extra GPIO via PCF8757 chip,
> and use it as gpio-key.

Hi Morimoto-san,

I am having a little trouble getting this working on top of 3.4-rc4
with your "[PATCH 0/6] ARM: mach-shmobile: add KZM-A9-GT board support"
series and the rest of this series.

I have enabled INPUT_PCF8574, but perhaps that isn't sufficient?

> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
> ---
>  arch/arm/mach-shmobile/board-kzm9g.c |   59 ++++++++++++++++++++++++++++++++++
>  1 files changed, 59 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/mach-shmobile/board-kzm9g.c b/arch/arm/mach-shmobile/board-kzm9g.c
> index 657ba64..78e9850 100644
> --- a/arch/arm/mach-shmobile/board-kzm9g.c
> +++ b/arch/arm/mach-shmobile/board-kzm9g.c
> @@ -19,9 +19,12 @@
>  
>  #include <linux/delay.h>
>  #include <linux/gpio.h>
> +#include <linux/gpio_keys.h>
>  #include <linux/io.h>
>  #include <linux/irq.h>
>  #include <linux/i2c.h>
> +#include <linux/i2c/pcf857x.h>
> +#include <linux/input.h>
>  #include <linux/mmc/host.h>
>  #include <linux/mmc/sh_mmcif.h>
>  #include <linux/mmc/sh_mobile_sdhi.h>
> @@ -39,6 +42,18 @@
>  #include <asm/mach/arch.h>
>  #include <video/sh_mobile_lcdc.h>
>  
> +/*
> + * external GPIO
> + */
> +#define GPIO_PCF8575_BASE	(GPIO_NR)
> +#define GPIO_PCF8575_PORT10	(GPIO_NR + 8)
> +#define GPIO_PCF8575_PORT11	(GPIO_NR + 9)
> +#define GPIO_PCF8575_PORT12	(GPIO_NR + 10)
> +#define GPIO_PCF8575_PORT13	(GPIO_NR + 11)
> +#define GPIO_PCF8575_PORT14	(GPIO_NR + 12)
> +#define GPIO_PCF8575_PORT15	(GPIO_NR + 13)
> +#define GPIO_PCF8575_PORT16	(GPIO_NR + 14)
> +
>  /* SMSC 9221 */
>  static struct resource smsc9221_resources[] = {
>  	[0] = {
> @@ -225,7 +240,38 @@ static struct platform_device sdhi0_device = {
>  	},
>  };
>  
> +/* KEY */
> +#define GPIO_KEY(c, g, d) { .code = c, .gpio = g, .desc = d, .active_low = 1 }
> +
> +static struct gpio_keys_button gpio_buttons[] = {
> +	GPIO_KEY(KEY_BACK,	GPIO_PCF8575_PORT10,	"SW3"),
> +	GPIO_KEY(KEY_RIGHT,	GPIO_PCF8575_PORT11,	"SW2-R"),
> +	GPIO_KEY(KEY_LEFT,	GPIO_PCF8575_PORT12,	"SW2-L"),
> +	GPIO_KEY(KEY_ENTER,	GPIO_PCF8575_PORT13,	"SW2-P"),
> +	GPIO_KEY(KEY_UP,	GPIO_PCF8575_PORT14,	"SW2-U"),
> +	GPIO_KEY(KEY_DOWN,	GPIO_PCF8575_PORT15,	"SW2-D"),
> +	GPIO_KEY(KEY_HOME,	GPIO_PCF8575_PORT16,	"SW1"),
> +};
> +
> +static struct gpio_keys_platform_data gpio_key_info = {
> +	.buttons	= gpio_buttons,
> +	.nbuttons	= ARRAY_SIZE(gpio_buttons),
> +	.poll_interval	= 250, /* poling at this point */
> +};
> +
> +static struct platform_device gpio_keys_device = {
> +	/* gpio-pcf857x.c driver doesn't support gpio_to_irq() */
> +	.name	= "gpio-keys-polled",
> +	.dev	= {
> +		.platform_data  = &gpio_key_info,
> +	},
> +};
> +
>  /* I2C */
> +static struct pcf857x_platform_data pcf8575_pdata = {
> +	.gpio_base	= GPIO_PCF8575_BASE,
> +};
> +
>  static struct i2c_board_info i2c1_devices[] = {
>  	{
>  		I2C_BOARD_INFO("st1232-ts", 0x55),
> @@ -233,12 +279,20 @@ static struct i2c_board_info i2c1_devices[] = {
>  	},
>  };
>  
> +static struct i2c_board_info i2c3_devices[] = {
> +	{
> +		I2C_BOARD_INFO("pcf8575", 0x20),
> +		.platform_data = &pcf8575_pdata,
> +	},
> +};
> +
>  static struct platform_device *kzm_devices[] __initdata = {
>  	&smsc_device,
>  	&usb_host_device,
>  	&lcdc_device,
>  	&mmc_device,
>  	&sdhi0_device,
> +	&gpio_keys_device,
>  };
>  
>  /*
> @@ -373,12 +427,17 @@ static void __init kzm_init(void)
>  	gpio_request(GPIO_PORT15, NULL);
>  	gpio_direction_output(GPIO_PORT15, 1); /* power */
>  
> +	/* I2C 3 */
> +	gpio_request(GPIO_FN_PORT27_I2C_SCL3, NULL);
> +	gpio_request(GPIO_FN_PORT28_I2C_SDA3, NULL);
> +
>  #ifdef CONFIG_CACHE_L2X0
>  	/* Early BRESP enable, Shared attribute override enable, 64K*8way */
>  	l2x0_init(IOMEM(0xf0100000), 0x40460000, 0x82000fff);
>  #endif
>  
>  	i2c_register_board_info(1, i2c1_devices, ARRAY_SIZE(i2c1_devices));
> +	i2c_register_board_info(3, i2c3_devices, ARRAY_SIZE(i2c3_devices));
>  
>  	sh73a0_add_standard_devices();
>  	platform_add_devices(kzm_devices, ARRAY_SIZE(kzm_devices));
> -- 
> 1.7.5.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* Re: [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key
  2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
  2012-04-23  6:54 ` [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key Kuninori Morimoto
  2012-04-24 23:55 ` Simon Horman
@ 2012-04-25  0:11 ` Kuninori Morimoto
  2012-04-25  6:19 ` Simon Horman
  2012-04-25  7:25 ` Kuninori Morimoto
  4 siblings, 0 replies; 6+ messages in thread
From: Kuninori Morimoto @ 2012-04-25  0:11 UTC (permalink / raw)
  To: linux-sh


Hi Simon

> I am having a little trouble getting this working on top of 3.4-rc4
> with your "[PATCH 0/6] ARM: mach-shmobile: add KZM-A9-GT board support"
> series and the rest of this series.
> 
> I have enabled INPUT_PCF8574, but perhaps that isn't sufficient?

Thank you for testing this.
But sorry, I didn't explain about it.

please enable GPIO_PCF857X, not INPUT_PCF8574

O  GPIO_PCF857X
X  INPUT_PCF8574

and enable KEYBOARD_GPIO_POLLED too

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key
  2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2012-04-25  0:11 ` Kuninori Morimoto
@ 2012-04-25  6:19 ` Simon Horman
  2012-04-25  7:25 ` Kuninori Morimoto
  4 siblings, 0 replies; 6+ messages in thread
From: Simon Horman @ 2012-04-25  6:19 UTC (permalink / raw)
  To: linux-sh

On Tue, Apr 24, 2012 at 05:11:05PM -0700, Kuninori Morimoto wrote:
> 
> Hi Simon
> 
> > I am having a little trouble getting this working on top of 3.4-rc4
> > with your "[PATCH 0/6] ARM: mach-shmobile: add KZM-A9-GT board support"
> > series and the rest of this series.
> > 
> > I have enabled INPUT_PCF8574, but perhaps that isn't sufficient?
> 
> Thank you for testing this.
> But sorry, I didn't explain about it.
> 
> please enable GPIO_PCF857X, not INPUT_PCF8574
> 
> O  GPIO_PCF857X
> X  INPUT_PCF8574
> 
> and enable KEYBOARD_GPIO_POLLED too

Thanks, I have it working now.

Do you think it is worth updating the default config?

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

* Re: [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key
  2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
                   ` (3 preceding siblings ...)
  2012-04-25  6:19 ` Simon Horman
@ 2012-04-25  7:25 ` Kuninori Morimoto
  4 siblings, 0 replies; 6+ messages in thread
From: Kuninori Morimoto @ 2012-04-25  7:25 UTC (permalink / raw)
  To: linux-sh


Hi Simon

> > please enable GPIO_PCF857X, not INPUT_PCF8574
> > 
> > O  GPIO_PCF857X
> > X  INPUT_PCF8574
> > 
> > and enable KEYBOARD_GPIO_POLLED too
> 
> Thanks, I have it working now.
> 
> Do you think it is worth updating the default config?

Yes. very nice
Thank you for pointing it.
I send defconfig update patch.
for KZM9G and Armadillo

Best regards
---
Kuninori Morimoto

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

end of thread, other threads:[~2012-04-25  7:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-11  3:58 [PATCH 6/6] ARM: mach-shmobile: kzm9g: add ST1232 Touchscreen support Kuninori Morimoto
2012-04-23  6:54 ` [PATCH 6/6] ARM: mach-shmobile: kzm9g: add PCF8757 gpio-key Kuninori Morimoto
2012-04-24 23:55 ` Simon Horman
2012-04-25  0:11 ` Kuninori Morimoto
2012-04-25  6:19 ` Simon Horman
2012-04-25  7:25 ` Kuninori Morimoto

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.