public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [RFC 0/5] CAN framework for U-Boot
@ 2009-11-01 11:33 Wolfgang Grandegger
  2009-11-01 11:33 ` [U-Boot] [RFC 1/5] CAN interface library Wolfgang Grandegger
  0 siblings, 1 reply; 18+ messages in thread
From: Wolfgang Grandegger @ 2009-11-01 11:33 UTC (permalink / raw)
  To: u-boot

From: Wolfgang Grandegger <wg@denx.de>

This patch series adds a simple CAN framework for U-Boot. The main purpose
is to do simple RX/TX testing when the device boots up but the interface
functions could also be used for more complex tasks. This is just a RFC
and a few more features need to be added or issues to be fixed, like
using a generic device interface, if it already exists, and board
specific device configuration, e.g. via i82527_register(addr, cfg-params).
The sources are based on GPL v2+ code to be compatible with future U-Boot
licence requirement.

Please comment.

Wolfgang

Wolfgang Grandegger (5):
  CAN interface library
  CAN device test command
  CAN device driver for the SJA1000
  CAN device driver for the Intel 82527
  CAN interface support for the TQM855L module

 Makefile                  |    1 +
 board/tqc/tqm8xx/tqm8xx.c |   17 ++
 common/Makefile           |    1 +
 common/cmd_can.c          |  119 +++++++++++++++
 drivers/can/Makefile      |   49 ++++++
 drivers/can/can.c         |   88 +++++++++++
 drivers/can/i82527.c      |  366 +++++++++++++++++++++++++++++++++++++++++++++
 drivers/can/sja1000.c     |  223 +++++++++++++++++++++++++++
 include/can.h             |   70 +++++++++
 include/configs/TQM855L.h |    8 +-
 include/i82527.h          |  201 +++++++++++++++++++++++++
 include/sja1000.h         |  159 ++++++++++++++++++++
 12 files changed, 1301 insertions(+), 1 deletions(-)
 create mode 100644 common/cmd_can.c
 create mode 100644 drivers/can/Makefile
 create mode 100644 drivers/can/can.c
 create mode 100644 drivers/can/i82527.c
 create mode 100644 drivers/can/sja1000.c
 create mode 100644 include/can.h
 create mode 100644 include/i82527.h
 create mode 100644 include/sja1000.h

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

end of thread, other threads:[~2009-11-05 20:28 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-01 11:33 [U-Boot] [RFC 0/5] CAN framework for U-Boot Wolfgang Grandegger
2009-11-01 11:33 ` [U-Boot] [RFC 1/5] CAN interface library Wolfgang Grandegger
2009-11-01 11:33   ` [U-Boot] [RFC 2/5] CAN device test command Wolfgang Grandegger
2009-11-01 11:33     ` [U-Boot] [RFC 3/5] CAN device driver for the SJA1000 Wolfgang Grandegger
2009-11-01 11:33       ` [U-Boot] [RFC 4/5] CAN device driver for the Intel 82527 Wolfgang Grandegger
2009-11-01 11:33         ` [U-Boot] [RFC 5/5] CAN interface support for the TQM855L module Wolfgang Grandegger
2009-11-02 12:02       ` [U-Boot] [RFC 3/5] CAN device driver for the SJA1000 Matthias Fuchs
2009-11-02 12:50         ` Wolfgang Grandegger
2009-11-02 14:22           ` Matthias Fuchs
2009-11-02 20:20             ` Wolfgang Grandegger
2009-11-05 20:28               ` Wolfgang Denk
2009-11-01 14:45     ` [U-Boot] [RFC 2/5] CAN device test command Mike Frysinger
2009-11-01 16:24       ` Wolfgang Grandegger
2009-11-01 18:07         ` Mike Frysinger
2009-11-01 14:36   ` [U-Boot] [RFC 1/5] CAN interface library Mike Frysinger
2009-11-01 16:16     ` Wolfgang Grandegger
2009-11-01 18:05       ` Mike Frysinger
2009-11-01 22:00         ` Wolfgang Grandegger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox