Re: [U-Boot] [PATCH v3] AT91: pio: Add PIO3 features

2011-12-15 Thread Remy Bohmer
Hi,

2011/11/16 Hong Xu hong...@atmel.com:
 This patch adds the support for new PIO controller introduced by some
 AT91 SoCs.

 New features include
 * More peripheral multiplexing
 * Pull-down, Schmitt trigger, Debouncer
 * More irq trigger mode (may be not interesting in U-Boot)

 Signed-off-by: Hong Xu hong...@atmel.com

Maybe this helps getting this patch rolling again:
Acked-by: Remy Bohmer li...@bohmer.net

Kind regards,

Remy
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3] AT91: pio: Add PIO3 features

2011-11-20 Thread Hong Xu

ping ...

BR,
Eric

On 11/16/2011 06:47 PM, Hong Xu wrote:

This patch adds the support for new PIO controller introduced by some
AT91 SoCs.

New features include
* More peripheral multiplexing
* Pull-down, Schmitt trigger, Debouncer
* More irq trigger mode (may be not interesting in U-Boot)

Signed-off-by: Hong Xu hong...@atmel.com
---
Change for v3
* CONFIG_CPU_HAS_PIO3 - ATMEL_CPU_HAS_PIO3
PIO3 is a feature of CPU, not a configuration item

arch/arm/include/asm/arch-at91/at91_pio.h | 48 ++-
drivers/gpio/at91_gpio.c | 130 +++-
2 files changed, 171 insertions(+), 7 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..069368d 100644
--- a/arch/arm/include/asm/arch-at91/at91_pio.h
+++ b/arch/arm/include/asm/arch-at91/at91_pio.h
@@ -4,6 +4,7 @@
* Copyright (C) 2005 Ivan Kokshaysky
* Copyright (C) SAN People


[...]

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v3] AT91: pio: Add PIO3 features

2011-11-16 Thread Hong Xu
This patch adds the support for new PIO controller introduced by some
AT91 SoCs.

New features include
* More peripheral multiplexing
* Pull-down, Schmitt trigger, Debouncer
* More irq trigger mode (may be not interesting in U-Boot)

Signed-off-by: Hong Xu hong...@atmel.com
---
Change for v3
   * CONFIG_CPU_HAS_PIO3 - ATMEL_CPU_HAS_PIO3
 PIO3 is a feature of CPU, not a configuration item

 arch/arm/include/asm/arch-at91/at91_pio.h |   48 ++-
 drivers/gpio/at91_gpio.c  |  130 +++-
 2 files changed, 171 insertions(+), 7 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..069368d 100644
--- a/arch/arm/include/asm/arch-at91/at91_pio.h
+++ b/arch/arm/include/asm/arch-at91/at91_pio.h
@@ -4,6 +4,7 @@
  * Copyright (C) 2005 Ivan Kokshaysky
  * Copyright (C) SAN People
  * Copyright (C) 2009 Jens Scharsig (js_at...@scharsoft.de)
+ * Copyright (C) 2011 Hong Xu (hong...@atmel.com)
  *
  * Parallel I/O Controller (PIO) - System peripherals registers.
  * Based on AT91RM9200 datasheet revision E.
@@ -17,7 +18,6 @@
 #ifndef AT91_PIO_H
 #define AT91_PIO_H
 
-
 #define AT91_ASM_PIO_RANGE 0x200
 #define AT91_ASM_PIOC_ASR  \
(ATMEL_BASE_PIO + AT91_PIO_PORTC * AT91_ASM_PIO_RANGE + 0x70)
@@ -66,14 +66,51 @@ typedef struct at91_port {
u32 puer;   /* 0x64 Pull-up Enable Register */
u32 pusr;   /* 0x68 Pad Pull-up Status Register */
u32 reserved4;
+#if defined(ATMEL_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 */
+#define PIO_SCDR_DIV_MASK  (0x3fff   0)  /* Slow Clock Divider Mask */
+   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(ATMEL_CPU_HAS_PIO3)
+   u32 reserved7;  /*  */
+   u32 aimer;  /* Additional Interrupt Modes Enable Register*/
+   u32 aimdr;  /* Additional Interrupt Modes Disable Register*/
+   u32 aimmr;  /* Additional Intterupt 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 Edge/Low Level Select Register*/
+   u32 rehlsr; /* 0xD4 Rising Edge/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;   /* 0xE4 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 +131,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(ATMEL_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