All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
@ 2012-05-21  1:50 Bo Shen
  2012-05-28  7:43 ` Bo Shen
  2012-06-28 15:17 ` Andreas Bießmann
  0 siblings, 2 replies; 6+ messages in thread
From: Bo Shen @ 2012-05-21  1:50 UTC (permalink / raw)
  To: u-boot

Enable new PIO feature supported by Atmel SoC.
Using CPU_HAS_PIO3 micro to enable PIO new feature.

Signed-off-by: Bo Shen <voice.shen@atmel.com>
---
Changes since v1:
 - remove the legacy interface.
Changes since v2:
 - keep the legacy interface, don't touch it.

 arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
 drivers/gpio/at91_gpio.c                  |  125 ++++++++++++++++++++++++++++-
 2 files changed, 167 insertions(+), 3 deletions(-)

diff --git a/arch/arm/include/asm/arch-at91/at91_pio.h b/arch/arm/include/asm/arch-at91/at91_pio.h
index 416cabf..0483c98 100644
--- a/arch/arm/include/asm/arch-at91/at91_pio.h
+++ b/arch/arm/include/asm/arch-at91/at91_pio.h
@@ -66,14 +66,50 @@ typedef struct at91_port {
 	u32	puer;		/* 0x64 Pull-up Enable Register */
 	u32	pusr;		/* 0x68 Pad Pull-up Status Register */
 	u32	reserved4;
+#if defined(CPU_HAS_PIO3)
+	u32	abcdsr1;	/* 0x70 Peripheral ABCD Select Register 1 */
+	u32	abcdsr2;	/* 0x74 Peripheral ABCD Select Register 2 */
+	u32	reserved5[2];
+	u32	ifscdr;		/* 0x80 Input Filter SCLK Disable Register */
+	u32	ifscer;		/* 0x84 Input Filter SCLK Enable Register */
+	u32	ifscsr;		/* 0x88 Input Filter SCLK Status Register */
+	u32	scdr;		/* 0x8C SCLK Divider Debouncing Register */
+	u32	ppddr;		/* 0x90 Pad Pull-down Disable Register */
+	u32	ppder;		/* 0x94 Pad Pull-down Enable Register */
+	u32	ppdsr;		/* 0x98 Pad Pull-down Status Register */
+	u32	reserved6;	/*  */
+#else
 	u32	asr;		/* 0x70 Select A Register */
 	u32	bsr;		/* 0x74 Select B Register */
 	u32	absr;		/* 0x78 AB Select Status Register */
 	u32	reserved5[9];	/*  */
+#endif
 	u32	ower;		/* 0xA0 Output Write Enable Register */
 	u32	owdr;		/* 0xA4 Output Write Disable Register */
-	u32	owsr;		/* OxA8 utput Write Status Register */
+	u32	owsr;		/* OxA8 Output Write Status Register */
+#if defined(CPU_HAS_PIO3)
+	u32	reserved7;	/*  */
+	u32	aimer;		/* 0xB0 Additional INT Modes Enable Register */
+	u32	aimdr;		/* 0xB4 Additional INT Modes Disable Register */
+	u32	aimmr;		/* 0xB8 Additional INT Modes Mask Register */
+	u32	reserved8;	/* */
+	u32	esr;		/* 0xC0 Edge Select Register */
+	u32	lsr;		/* 0xC4 Level Select Register */
+	u32	elsr;		/* 0xC8 Edge/Level Status Register */
+	u32	reserved9;	/* 0xCC */
+	u32	fellsr;		/* 0xD0 Falling /Low Level Select Register */
+	u32	rehlsr;		/* 0xD4 Rising /High Level Select Register */
+	u32	frlhsr;		/* 0xD8 Fall/Rise - Low/High Status Register */
+	u32	reserved10;	/* */
+	u32	locksr;		/* 0xE0 Lock Status */
+	u32	wpmr;		/* 0xE4 Write Protect Mode Register */
+	u32	wpsr;		/* 0xE8 Write Protect Status Register */
+	u32	reserved11[5];	/* */
+	u32	schmitt;	/* 0x100 Schmitt Trigger Register */
+	u32	reserved12[63];
+#else
 	u32	reserved6[85];
+#endif
 } at91_port_t;
 
 typedef union at91_pio {
@@ -94,6 +130,13 @@ typedef union at91_pio {
 #ifdef CONFIG_AT91_GPIO
 int at91_set_a_periph(unsigned port, unsigned pin, int use_pullup);
 int at91_set_b_periph(unsigned port, unsigned pin, int use_pullup);
+#if defined(CPU_HAS_PIO3)
+int at91_set_c_periph(unsigned port, unsigned pin, int use_pullup);
+int at91_set_d_periph(unsigned port, unsigned pin, int use_pullup);
+int at91_set_pio_debounce(unsigned port, unsigned pin, int is_on, int div);
+int at91_set_pio_pulldown(unsigned port, unsigned pin, int is_on);
+int at91_set_pio_disable_schmitt_trig(unsigned port, unsigned pin);
+#endif
 int at91_set_pio_input(unsigned port, unsigned pin, int use_pullup);
 int at91_set_pio_multi_drive(unsigned port, unsigned pin, int is_on);
 int at91_set_pio_output(unsigned port, unsigned pin, int value);
diff --git a/drivers/gpio/at91_gpio.c b/drivers/gpio/at91_gpio.c
index be2a026..ac3b322 100644
--- a/drivers/gpio/at91_gpio.c
+++ b/drivers/gpio/at91_gpio.c
@@ -86,7 +86,14 @@ int at91_set_a_periph(unsigned port, unsigned pin, int use_pullup)
 		mask = 1 << pin;
 		writel(mask, &pio->port[port].idr);
 		at91_set_pio_pullup(port, pin, use_pullup);
+#if defined(CPU_HAS_PIO3)
+		writel(readl(&pio->port[port].abcdsr1) & ~mask,
+			&pio->port[port].abcdsr1);
+		writel(readl(&pio->port[port].abcdsr2) & ~mask,
+			&pio->port[port].abcdsr2);
+#else
 		writel(mask, &pio->port[port].asr);
+#endif
 		writel(mask, &pio->port[port].pdr);
 	}
 	return 0;
@@ -104,12 +111,63 @@ int at91_set_b_periph(unsigned port, unsigned pin, int use_pullup)
 		mask = 1 << pin;
 		writel(mask, &pio->port[port].idr);
 		at91_set_pio_pullup(port, pin, use_pullup);
+#if defined(CPU_HAS_PIO3)
+		writel(readl(&pio->port[port].abcdsr1) | mask,
+			&pio->port[port].abcdsr1);
+		writel(readl(&pio->port[port].abcdsr2) & ~mask,
+			&pio->port[port].abcdsr2);
+#else
 		writel(mask, &pio->port[port].bsr);
+#endif
 		writel(mask, &pio->port[port].pdr);
 	}
 	return 0;
 }
 
+#if defined(CPU_HAS_PIO3)
+/*
+ * mux the pin to the "C" internal peripheral role.
+ */
+int at91_set_c_periph(unsigned port, unsigned pin, int use_pullup)
+{
+	at91_pio_t	*pio = (at91_pio_t *) ATMEL_BASE_PIOA;
+	u32		mask;
+
+	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
+		mask = 1 << pin;
+		writel(mask, &pio->port[port].idr);
+		at91_set_pio_pullup(port, pin, use_pullup);
+		writel(readl(&pio->port[port].abcdsr1) & ~mask,
+			&pio->port[port].abcdsr1);
+		writel(readl(&pio->port[port].abcdsr2) | mask,
+			&pio->port[port].abcdsr2);
+		writel(mask, &pio->port[port].pdr);
+	}
+	return 0;
+}
+
+/*
+ * mux the pin to the "D" internal peripheral role.
+ */
+int at91_set_d_periph(unsigned port, unsigned pin, int use_pullup)
+{
+	at91_pio_t	*pio = (at91_pio_t *) ATMEL_BASE_PIOA;
+	u32		mask;
+
+	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
+		mask = 1 << pin;
+		writel(mask, &pio->port[port].idr);
+		at91_set_pio_pullup(port, pin, use_pullup);
+		writel(readl(&pio->port[port].abcdsr1) | mask,
+			&pio->port[port].abcdsr1);
+		writel(readl(&pio->port[port].abcdsr2) | mask,
+			&pio->port[port].abcdsr2);
+		writel(mask, &pio->port[port].pdr);
+	}
+	return 0;
+}
+#endif
+
 /*
  * mux the pin to the gpio controller (instead of "A" or "B" peripheral), and
  * configure it for an input.
@@ -162,13 +220,76 @@ int at91_set_pio_deglitch(unsigned port, unsigned pin, int is_on)
 
 	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
 		mask = 1 << pin;
-		if (is_on)
+		if (is_on) {
+#if defined(CPU_HAS_PIO3)
+			writel(mask, &pio->port[port].ifscdr);
+#endif
 			writel(mask, &pio->port[port].ifer);
-		else
+		} else {
 			writel(mask, &pio->port[port].ifdr);
+		}
+	}
+	return 0;
+}
+
+#if defined(CPU_HAS_PIO3)
+/*
+ * enable/disable the debounce filter.
+ */
+int at91_set_pio_debounce(unsigned port, unsigned pin, int is_on, int div)
+{
+	at91_pio_t	*pio = (at91_pio_t *) ATMEL_BASE_PIOA;
+	u32		mask;
+
+	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
+		mask = 1 << pin;
+		if (is_on) {
+			writel(mask, &pio->port[port].ifscer);
+			writel(div & PIO_SCDR_DIV, &pio->port[port].scdr);
+			writel(mask, &pio->port[port].ifer);
+		} else {
+			writel(mask, &pio->port[port].ifdr);
+		}
+	}
+	return 0;
+}
+
+/*
+ * enable/disable the pull-down.
+ * If pull-up already enabled while calling the function, we disable it.
+ */
+int at91_set_pio_pulldown(unsigned port, unsigned pin, int is_on)
+{
+	at91_pio_t	*pio = (at91_pio_t *) ATMEL_BASE_PIOA;
+	u32		mask;
+
+	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
+		mask = 1 << pin;
+		writel(mask, &pio->port[port].pudr);
+		if (is_on)
+			writel(mask, &pio->port[port].ppder);
+		else
+			writel(mask, &pio->port[port].ppddr);
+	}
+	return 0;
+}
+
+/*
+ * disable Schmitt trigger
+ */
+int at91_set_pio_disable_schmitt_trig(unsigned port, unsigned pin)
+{
+	at91_pio_t	*pio = (at91_pio_t *) ATMEL_BASE_PIOA;
+	u32		mask;
+
+	if ((port < ATMEL_PIO_PORTS) && (pin < 32)) {
+		mask = 1 << pin;
+		writel(readl(&pio->port[port].schmitt) | mask,
+			&pio->port[port].schmitt);
 	}
 	return 0;
 }
+#endif
 
 /*
  * enable/disable the multi-driver. This is only valid for output and
-- 
1.7.10

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

* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
  2012-05-21  1:50 [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device Bo Shen
@ 2012-05-28  7:43 ` Bo Shen
  2012-05-29  8:06   ` Andreas Bießmann
  2012-06-28 15:17 ` Andreas Bießmann
  1 sibling, 1 reply; 6+ messages in thread
From: Bo Shen @ 2012-05-28  7:43 UTC (permalink / raw)
  To: u-boot

Hi All,

On 5/21/2012 9:50, Bo Shen wrote:
> Enable new PIO feature supported by Atmel SoC.
> Using CPU_HAS_PIO3 micro to enable PIO new feature.
>
> Signed-off-by: Bo Shen<voice.shen@atmel.com>
> ---
> Changes since v1:
>   - remove the legacy interface.
> Changes since v2:
>   - keep the legacy interface, don't touch it.
>
>   arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
>   drivers/gpio/at91_gpio.c                  |  125 ++++++++++++++++++++++++++++-
>   2 files changed, 167 insertions(+), 3 deletions(-)
>

Ping

Best Regards
Bo Shen

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

* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
  2012-05-28  7:43 ` Bo Shen
@ 2012-05-29  8:06   ` Andreas Bießmann
  2012-06-01  9:12     ` Bo Shen
  0 siblings, 1 reply; 6+ messages in thread
From: Andreas Bießmann @ 2012-05-29  8:06 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

On 28.05.2012 09:43, Bo Shen wrote:
> Hi All,
> 
> On 5/21/2012 9:50, Bo Shen wrote:
>> Enable new PIO feature supported by Atmel SoC.
>> Using CPU_HAS_PIO3 micro to enable PIO new feature.
>>
>> Signed-off-by: Bo Shen<voice.shen@atmel.com>
>> ---
>> Changes since v1:
>>   - remove the legacy interface.
>> Changes since v2:
>>   - keep the legacy interface, don't touch it.
>>
>>   arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
>>   drivers/gpio/at91_gpio.c                  |  125
>> ++++++++++++++++++++++++++++-
>>   2 files changed, 167 insertions(+), 3 deletions(-)
>>
> 
> Ping

Acked-by: Andreas Bie?mann <andreas.devel@googlemail.com>

thats all I can do since this is ARM related.

best regards

Andreas Bie?mann

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

* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
  2012-05-29  8:06   ` Andreas Bießmann
@ 2012-06-01  9:12     ` Bo Shen
  2012-06-08  9:21       ` Bo Shen
  0 siblings, 1 reply; 6+ messages in thread
From: Bo Shen @ 2012-06-01  9:12 UTC (permalink / raw)
  To: u-boot

Hi All,

On 5/29/2012 16:06, Andreas Bie?mann wrote:
> Dear Bo Shen,
>
> On 28.05.2012 09:43, Bo Shen wrote:
>> Hi All,
>>
>> On 5/21/2012 9:50, Bo Shen wrote:
>>> Enable new PIO feature supported by Atmel SoC.
>>> Using CPU_HAS_PIO3 micro to enable PIO new feature.
>>>
>>> Signed-off-by: Bo Shen<voice.shen@atmel.com>
>>> ---
>>> Changes since v1:
>>>    - remove the legacy interface.
>>> Changes since v2:
>>>    - keep the legacy interface, don't touch it.
>>>
>>>    arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
>>>    drivers/gpio/at91_gpio.c                  |  125
>>> ++++++++++++++++++++++++++++-
>>>    2 files changed, 167 insertions(+), 3 deletions(-)
>>>
>>
>> Ping
>
> Acked-by: Andreas Bie?mann<andreas.devel@googlemail.com>

Ping

> thats all I can do since this is ARM related.
>
> best regards
>
> Andreas Bie?mann
>

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

* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
  2012-06-01  9:12     ` Bo Shen
@ 2012-06-08  9:21       ` Bo Shen
  0 siblings, 0 replies; 6+ messages in thread
From: Bo Shen @ 2012-06-08  9:21 UTC (permalink / raw)
  To: u-boot

On 6/1/2012 17:12, Bo Shen wrote:
> Hi All,
>
> On 5/29/2012 16:06, Andreas Bie?mann wrote:
>> Dear Bo Shen,
>>
>> On 28.05.2012 09:43, Bo Shen wrote:
>>> Hi All,
>>>
>>> On 5/21/2012 9:50, Bo Shen wrote:
>>>> Enable new PIO feature supported by Atmel SoC.
>>>> Using CPU_HAS_PIO3 micro to enable PIO new feature.
>>>>
>>>> Signed-off-by: Bo Shen<voice.shen@atmel.com>
>>>> ---
>>>> Changes since v1:
>>>> - remove the legacy interface.
>>>> Changes since v2:
>>>> - keep the legacy interface, don't touch it.
>>>>
>>>> arch/arm/include/asm/arch-at91/at91_pio.h | 45 ++++++++++-
>>>> drivers/gpio/at91_gpio.c | 125
>>>> ++++++++++++++++++++++++++++-
>>>> 2 files changed, 167 insertions(+), 3 deletions(-)
>>>>
>>>
>>> Ping
>>
>> Acked-by: Andreas Bie?mann<andreas.devel@googlemail.com>
>
> Ping
>

Ping again.

>> thats all I can do since this is ARM related.
>>
>> best regards
>>
>> Andreas Bie?mann
>>
>

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

* [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device
  2012-05-21  1:50 [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device Bo Shen
  2012-05-28  7:43 ` Bo Shen
@ 2012-06-28 15:17 ` Andreas Bießmann
  1 sibling, 0 replies; 6+ messages in thread
From: Andreas Bießmann @ 2012-06-28 15:17 UTC (permalink / raw)
  To: u-boot

Dear Bo Shen,

On 21.05.2012 03:50, Bo Shen wrote:
> Enable new PIO feature supported by Atmel SoC.
> Using CPU_HAS_PIO3 micro to enable PIO new feature.
> 
> Signed-off-by: Bo Shen <voice.shen@atmel.com>
> ---
> Changes since v1:
>  - remove the legacy interface.
> Changes since v2:
>  - keep the legacy interface, don't touch it.
> 
>  arch/arm/include/asm/arch-at91/at91_pio.h |   45 ++++++++++-
>  drivers/gpio/at91_gpio.c                  |  125 ++++++++++++++++++++++++++++-
>  2 files changed, 167 insertions(+), 3 deletions(-)

applied to u-boot-atmel/master, thanks!

Best regards

Andreas Bie?mann

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

end of thread, other threads:[~2012-06-28 15:17 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-21  1:50 [U-Boot] [PATCH v3] ATMEL/PIO: Enable new feature of PIO on Atmel device Bo Shen
2012-05-28  7:43 ` Bo Shen
2012-05-29  8:06   ` Andreas Bießmann
2012-06-01  9:12     ` Bo Shen
2012-06-08  9:21       ` Bo Shen
2012-06-28 15:17 ` Andreas Bießmann

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.