From: Detlev Zundel <dzu@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/7] Update for inka4x0 plus some new features
Date: Wed, 25 Mar 2009 17:27:51 +0100 [thread overview]
Message-ID: <1237998478-18452-1-git-send-email-dzu@denx.de> (raw)
This patchset contains updates for the ink4x0 platform. Namely it
adds hardware diagnostic funtions and an RTC driver.
For a nice integration by using private command tables, do_help is
extended to support this scenario also.
To successfully convert all the pointer access to accessor macros, a
bunch of new defines is also needed for the 5200 cpu.
Changes from v1:
Addresses comments from ML. Specifically:
- Moved ns16650 defines to proper include file.
- Used structures from this header file to access UARTs - this
nicely eliminates serial_{in,out}.
- Convert inka_diag.c pointer accesses to accessor macros.
- Move variable declarations to start of functions.
A diff of the "before" and "after" branches will be posted seperately
for easier inspection.
Detlev Zundel (7):
command.c: Expose the core of do_help as _do_help to the rest of
u-boot.
mpc5xxx: Add structure definition for several more register blocks.
drivers/twserial: Add protocol driver for "three wire serial"
interface.
rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
inka4x0: Add hardware diagnosis functions for inka4x0
inka4x0: Add hardware diagnosis and RTC in configuration.
inka4x0: Use proper accessor macros for memory mapped registers.
Makefile | 3 +-
board/inka4x0/Makefile | 4 +-
board/inka4x0/inka4x0.c | 171 +++++++++-----
board/inka4x0/inkadiag.c | 514 +++++++++++++++++++++++++++++++++++++++++++
common/command.c | 20 +-
drivers/rtc/Makefile | 1 +
drivers/rtc/rtc4543.c | 118 ++++++++++
drivers/twserial/Makefile | 46 ++++
drivers/twserial/soft_tws.c | 110 +++++++++
include/command.h | 4 +-
include/configs/inka4x0.h | 91 +++++++-
include/mpc5xxx.h | 124 +++++++++++
include/ns16550.h | 11 +
include/rtc.h | 4 +
include/tws.h | 47 ++++
15 files changed, 1190 insertions(+), 78 deletions(-)
create mode 100644 board/inka4x0/inkadiag.c
create mode 100644 drivers/rtc/rtc4543.c
create mode 100644 drivers/twserial/Makefile
create mode 100644 drivers/twserial/soft_tws.c
create mode 100644 include/tws.h
next reply other threads:[~2009-03-25 16:27 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-25 16:27 Detlev Zundel [this message]
2009-03-25 16:27 ` [U-Boot] [PATCH v2 1/7] command.c: Expose the core of do_help as _do_help to the rest of u-boot Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 2/7] mpc5xxx: Add structure definition for several more register blocks Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 3/7] drivers/twserial: Add protocol driver for "three wire serial" interface Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON) Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 5/7] inka4x0: Add hardware diagnosis functions for inka4x0 Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 6/7] inka4x0: Add hardware diagnosis and RTC in configuration Detlev Zundel
2009-03-25 16:27 ` [U-Boot] [PATCH v2 7/7] inka4x0: Use proper accessor macros for memory mapped registers Detlev Zundel
2009-03-27 10:33 ` [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON) Anatolij Gustschin
2009-03-27 10:51 ` Wolfgang Denk
2009-03-27 11:13 ` Detlev Zundel
2009-03-27 12:43 ` Anatolij Gustschin
2009-03-27 12:53 ` Jerry Van Baren
2009-03-27 13:00 ` Detlev Zundel
2009-03-27 16:06 ` Scott Wood
2009-03-25 19:19 ` [U-Boot] [PATCH v2 3/7] drivers/twserial: Add protocol driver for "three wire serial" interface Wolfgang Denk
2009-03-26 9:33 ` Detlev Zundel
2009-03-26 15:23 ` Detlev Zundel
2009-03-27 20:08 ` Wolfgang Denk
2009-03-27 10:02 ` Anatolij Gustschin
2009-03-27 10:33 ` Detlev Zundel
2009-03-27 20:06 ` [U-Boot] [PATCH v2 1/7] command.c: Expose the core of do_help as _do_help to the rest of u-boot Wolfgang Denk
2009-03-25 16:36 ` [U-Boot] [PATCH v2 0/7] Update for inka4x0 plus some new features Detlev Zundel
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=1237998478-18452-1-git-send-email-dzu@denx.de \
--to=dzu@denx.de \
--cc=u-boot@lists.denx.de \
/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 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.