linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] Add i.MX23/28 auart support
@ 2011-01-24 10:03 Sascha Hauer
  2011-01-24 10:03 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Sascha Hauer @ 2011-01-24 10:03 UTC (permalink / raw)
  To: linux-arm-kernel

changes since v2:
- Fix console support
- For handling the CREAD flag just disable the receiver instead of
  ignoring the characters in the receive interrupt
- Add timeout to loops in console support

The following changes since commit 0c21e3aaf6ae85bee804a325aa29c325209180fd:

  Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/hch/hfsplus (2011-01-07 17:16:27 -0800)

are available in the git repository at:

  nowhere ..BRANCH.NOT.VERIFIED..

Sascha Hauer (2):
      serial: Add auart driver for i.MX23/28
      ARM MXS: Add auart platform support for i.MX28

 arch/arm/mach-mxs/clock-mx28.c                  |    5 +
 arch/arm/mach-mxs/devices-mx28.h                |    8 +
 arch/arm/mach-mxs/devices/Kconfig               |    3 +
 arch/arm/mach-mxs/devices/Makefile              |    1 +
 arch/arm/mach-mxs/devices/platform-auart.c      |   54 ++
 arch/arm/mach-mxs/include/mach/devices-common.h |   10 +
 drivers/serial/Kconfig                          |   15 +
 drivers/serial/Makefile                         |    1 +
 drivers/serial/mxs-auart.c                      |  799 +++++++++++++++++++++++
 9 files changed, 896 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/mach-mxs/devices/platform-auart.c
 create mode 100644 drivers/serial/mxs-auart.c

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [PATCH v2] Add i.MX23/28 auart support
@ 2011-01-13 13:14 Sascha Hauer
  2011-01-13 13:14 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
  0 siblings, 1 reply; 10+ messages in thread
From: Sascha Hauer @ 2011-01-13 13:14 UTC (permalink / raw)
  To: linux-arm-kernel

This is the second version of these patches. I have reworked the driver to
support the NPCK, BRKINT, PARMRK, IGNPAR, IGNBRK and cflag CREAD flags. I have
tested these flags to the best of my knowledge, but it's sometimes hard to
judge if the behaviour is expected.

Sascha


Sascha Hauer (2):
      serial: Add auart driver for i.MX23/28
      ARM MXS: Add auart platform support for i.MX28

 arch/arm/mach-mxs/clock-mx28.c                  |    5 +
 arch/arm/mach-mxs/devices-mx28.h                |    8 +
 arch/arm/mach-mxs/devices/Kconfig               |    3 +
 arch/arm/mach-mxs/devices/Makefile              |    1 +
 arch/arm/mach-mxs/devices/platform-auart.c      |   54 ++
 arch/arm/mach-mxs/include/mach/devices-common.h |   10 +
 drivers/serial/Kconfig                          |   15 +
 drivers/serial/Makefile                         |    1 +
 drivers/serial/mxs-auart.c                      |  806 +++++++++++++++++++++++
 9 files changed, 903 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/mach-mxs/devices/platform-auart.c
 create mode 100644 drivers/serial/mxs-auart.c

^ permalink raw reply	[flat|nested] 10+ messages in thread
* Add i.MX23/28 auart support
@ 2011-01-11 15:09 Sascha Hauer
  2011-01-11 15:09 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
  0 siblings, 1 reply; 10+ messages in thread
From: Sascha Hauer @ 2011-01-11 15:09 UTC (permalink / raw)
  To: linux-arm-kernel

The following series adds support for the auart found on i.MX23/28

Sascha Hauer (2):
      serial: Add auart driver for i.MX23/28
      ARM i.MXS: Add auart platform support for i.MX28

 arch/arm/mach-mxs/clock-mx28.c                  |    5 +
 arch/arm/mach-mxs/devices-mx28.h                |    8 +
 arch/arm/mach-mxs/devices/Kconfig               |    3 +
 arch/arm/mach-mxs/devices/Makefile              |    1 +
 arch/arm/mach-mxs/devices/platform-auart.c      |   54 ++
 arch/arm/mach-mxs/include/mach/devices-common.h |   10 +
 drivers/serial/Kconfig                          |   15 +
 drivers/serial/Makefile                         |    1 +
 drivers/serial/mxs-auart.c                      |  763 +++++++++++++++++++++++
 9 files changed, 860 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/mach-mxs/devices/platform-auart.c
 create mode 100644 drivers/serial/mxs-auart.c

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

end of thread, other threads:[~2011-01-25 23:37 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-24 10:03 [PATCH v3] Add i.MX23/28 auart support Sascha Hauer
2011-01-24 10:03 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
2011-01-24 10:03 ` [PATCH 2/2] ARM MXS: Add auart platform support for i.MX28 Sascha Hauer
2011-01-25 23:37 ` [PATCH v3] Add i.MX23/28 auart support Shawn Guo
  -- strict thread matches above, loose matches on Subject: below --
2011-01-13 13:14 [PATCH v2] " Sascha Hauer
2011-01-13 13:14 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
2011-01-11 15:09 Add i.MX23/28 auart support Sascha Hauer
2011-01-11 15:09 ` [PATCH 1/2] serial: Add auart driver for i.MX23/28 Sascha Hauer
2011-01-11 16:05   ` Russell King - ARM Linux
2011-01-11 17:10   ` Wolfram Sang
2011-01-11 17:57     ` Sascha Hauer
2011-01-12  5:39   ` Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).