All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Microblaze/Xilinx drivers changes
@ 2011-09-13  7:09 Michal Simek
  2011-09-13  7:09 ` [U-Boot] [PATCH 01/26] net: emaclite: Change driver name and add address Michal Simek
  2011-09-13  9:53 ` [U-Boot] Microblaze/Xilinx drivers changes Wolfgang Denk
  0 siblings, 2 replies; 40+ messages in thread
From: Michal Simek @ 2011-09-13  7:09 UTC (permalink / raw)
  To: u-boot

Hi,

here is the whole package with Microblaze and Xilinx driver changes.
All patches are available in git://www.denx.de/git/u-boot-microblaze.git master branch
if you like to test them.

Thanks for your review,
Michal


Michal Simek (26):
      net: emaclite: Change driver name and add address
      net: emaclite: Remove deviceid property
      net: emaclite: Use calloc instead of malloc
      net: emaclite: Remove baseaddress from xemaclite
      net: emaclite: Use dynamic allocation
      net: emaclite: Setup RX/TX ping pong for every instance
      net: emaclite: Use unsigned long for baseaddr
      net: emaclite: Move RX/TX ping pong initialization to board
      net: emaclite: Use PKTSIZE directly
      net: emaclite: Fix coding style
      microblaze: Support CTRL+C when tftp is running
      microblaze: Support flashes on lower addresses
      microblaze: Initialize jumptable and console
      microblaze: Fix unaligned.h for endians
      microblaze: Copy bootfile from variables
      microblaze: Remove debug saving value
      microblaze: Setup MB vectors if feature is enable for u-boot
      microblaze: Save and restore first unused vector
      microblaze: Clean up reset asm code
      microblaze: Do not select NFS for platforms without ethernet
      microblaze: Remove address offset for uart16550
      microblaze: Enable FDT/FIT support
      serial: uartlite: Support for SERIAL_MULTI
      microblaze: Enable SERIAL_MULTI
      net: axi_ethernet: Add driver to u-boot
      microblaze: Wire up axi_ethernet driver initialization

 arch/microblaze/cpu/start.S                        |   67 +--
 arch/microblaze/include/asm/processor.h            |    5 +-
 arch/microblaze/include/asm/unaligned.h            |   17 +-
 arch/microblaze/lib/board.c                        |   19 +
 .../xilinx/microblaze-generic/microblaze-generic.c |   24 +-
 common/serial.c                                    |   14 +
 drivers/net/Makefile                               |    1 +
 drivers/net/xilinx_axi_emac.c                      |  664 ++++++++++++++++++++
 drivers/net/xilinx_emaclite.c                      |  250 ++++----
 drivers/serial/serial_xuartlite.c                  |  142 ++++-
 include/configs/microblaze-generic.h               |   15 +-
 include/netdev.h                                   |    5 +-
 include/serial.h                                   |    9 +-
 13 files changed, 1033 insertions(+), 199 deletions(-)
 create mode 100644 drivers/net/xilinx_axi_emac.c

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

end of thread, other threads:[~2011-09-14  6:51 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-13  7:09 [U-Boot] Microblaze/Xilinx drivers changes Michal Simek
2011-09-13  7:09 ` [U-Boot] [PATCH 01/26] net: emaclite: Change driver name and add address Michal Simek
2011-09-13  7:09   ` [U-Boot] [PATCH 02/26] net: emaclite: Remove deviceid property Michal Simek
2011-09-13  7:09     ` [U-Boot] [PATCH 03/26] net: emaclite: Use calloc instead of malloc Michal Simek
2011-09-13  7:09       ` [U-Boot] [PATCH 04/26] net: emaclite: Remove baseaddress from xemaclite Michal Simek
2011-09-13  7:10         ` [U-Boot] [PATCH 05/26] net: emaclite: Use dynamic allocation Michal Simek
2011-09-13  7:10           ` [U-Boot] [PATCH 06/26] net: emaclite: Setup RX/TX ping pong for every instance Michal Simek
2011-09-13  7:10             ` [U-Boot] [PATCH 07/26] net: emaclite: Use unsigned long for baseaddr Michal Simek
2011-09-13  7:10               ` [U-Boot] [PATCH 08/26] net: emaclite: Move RX/TX ping pong initialization to board Michal Simek
2011-09-13  7:10                 ` [U-Boot] [PATCH 09/26] net: emaclite: Use PKTSIZE directly Michal Simek
2011-09-13  7:10                   ` [U-Boot] [PATCH 10/26] net: emaclite: Fix coding style Michal Simek
2011-09-13  7:10                     ` [U-Boot] [PATCH 11/26] microblaze: Support CTRL+C when tftp is running Michal Simek
2011-09-13  7:10                       ` [U-Boot] [PATCH 12/26] microblaze: Support flashes on lower addresses Michal Simek
2011-09-13  7:10                         ` [U-Boot] [PATCH 13/26] microblaze: Initialize jumptable and console Michal Simek
2011-09-13  7:10                           ` [U-Boot] [PATCH 14/26] microblaze: Fix unaligned.h for endians Michal Simek
2011-09-13  7:10                             ` [U-Boot] [PATCH 15/26] microblaze: Copy bootfile from variables Michal Simek
2011-09-13  7:10                               ` [U-Boot] [PATCH 16/26] microblaze: Remove debug saving value Michal Simek
2011-09-13  7:10                                 ` [U-Boot] [PATCH 17/26] microblaze: Setup MB vectors if feature is enable for u-boot Michal Simek
2011-09-13  7:10                                   ` [U-Boot] [PATCH 18/26] microblaze: Save and restore first unused vector Michal Simek
2011-09-13  7:10                                     ` [U-Boot] [PATCH 19/26] microblaze: Clean up reset asm code Michal Simek
2011-09-13  7:10                                       ` [U-Boot] [PATCH 20/26] microblaze: Do not select NFS for platforms without ethernet Michal Simek
2011-09-13  7:10                                         ` [U-Boot] [PATCH 21/26] microblaze: Remove address offset for uart16550 Michal Simek
2011-09-13  7:10                                           ` [U-Boot] [PATCH 22/26] microblaze: Enable FDT/FIT support Michal Simek
2011-09-13  7:10                                             ` [U-Boot] [PATCH 23/26] serial: uartlite: Support for SERIAL_MULTI Michal Simek
2011-09-13  7:10                                               ` [U-Boot] [PATCH 24/26] microblaze: Enable SERIAL_MULTI Michal Simek
2011-09-13  7:10                                                 ` [U-Boot] [PATCH 25/26] net: axi_ethernet: Add driver to u-boot Michal Simek
2011-09-13  7:10                                                   ` [U-Boot] [PATCH 26/26] microblaze: Wire up axi_ethernet driver initialization Michal Simek
2011-09-13 17:36                                               ` [U-Boot] [PATCH 23/26] serial: uartlite: Support for SERIAL_MULTI Mike Frysinger
2011-09-13 17:34                         ` [U-Boot] [PATCH 12/26] microblaze: Support flashes on lower addresses Mike Frysinger
2011-09-14  6:48                           ` Michal Simek
2011-09-13 17:33                       ` [U-Boot] [PATCH 11/26] microblaze: Support CTRL+C when tftp is running Mike Frysinger
2011-09-13 17:37                         ` Mike Frysinger
2011-09-14  6:51                         ` Michal Simek
2011-09-13  9:53 ` [U-Boot] Microblaze/Xilinx drivers changes Wolfgang Denk
2011-09-13 11:16   ` Michal Simek
2011-09-13 13:16     ` Marek Vasut
2011-09-13 13:35       ` Michal Simek
2011-09-13 13:52         ` Marek Vasut
2011-09-13 13:57         ` Wolfgang Denk
2011-09-13 14:40           ` Michal Simek

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.