All of lore.kernel.org
 help / color / mirror / Atom feed
From: Florian Fainelli <florian@openwrt.org>
To: Graham Gower <graham.gower@gmail.com>, Mirko Vogt <lists@nanl.de>,
	"Lars-Peter Clausen" <lars@metafoo.de>
Cc: linux-mips@linux-mips.org
Subject: Re: [PATCH 0/3] XBurst JZ4730 support
Date: Thu, 25 Feb 2010 08:52:09 +0100	[thread overview]
Message-ID: <201002250852.09638.florian@openwrt.org> (raw)
In-Reply-To: <4B861890.6090002@gmail.com>

Hi Graham,

On Thursday 25 February 2010 07:28:32 Graham Gower wrote:
> This patch set contains support for Ingenic's XBurst cpu, plus basic
> support for their JZ4730 reference boards.
> 
> 
> Graham Gower (3):
>   Add XBurst JZ4730 support.
>   8250: serial driver changes for XBurst SoCs.
>   net: add driver for JZ4730 ethernet controller.

Seems like patches 1 and 3 were too big and got retained by the mailing-list 
program.

Maybe you should work with the OpenWrt and qi-hardware guys to get the jz4740 
also merged in the same time?

> 
>  arch/mips/Kconfig                                |   13 +
>  arch/mips/Makefile                               |   14 +-
>  arch/mips/boot/Makefile                          |   15 +-
>  arch/mips/include/asm/bootinfo.h                 |    7 +
>  arch/mips/include/asm/cpu.h                      |    9 +
>  arch/mips/include/asm/mach-generic/irq.h         |    2 +-
>  arch/mips/include/asm/mach-xburst/clock-jz4730.h |   41 +
>  arch/mips/include/asm/mach-xburst/dma-jz4730.h   |  156 +++
>  arch/mips/include/asm/mach-xburst/irq-jz4730.h   |   33 +
>  arch/mips/include/asm/mach-xburst/uart-jz4730.h  |  141 +++
>  arch/mips/include/asm/mach-xburst/war.h          |   25 +
>  arch/mips/include/asm/mach-xburst/xburst.h       |   20 +
>  arch/mips/include/asm/r4kcache.h                 |  240 +++++
>  arch/mips/kernel/cpu-probe.c                     |   21 +
>  arch/mips/mm/c-r4k.c                             |   30 +
>  arch/mips/mm/tlbex.c                             |    5 +
>  arch/mips/xburst/Kconfig                         |   23 +
>  arch/mips/xburst/Makefile                        |    3 +
>  arch/mips/xburst/jz4730/Makefile                 |   11 +
>  arch/mips/xburst/jz4730/board-libra.c            |   32 +
>  arch/mips/xburst/jz4730/board-pmp.c              |   32 +
>  arch/mips/xburst/jz4730/clocks.c                 |  294 +++++
>  arch/mips/xburst/jz4730/irq.c                    |  104 ++
>  arch/mips/xburst/jz4730/platform.c               |   49 +
>  arch/mips/xburst/jz4730/prom.c                   |  104 ++
>  arch/mips/xburst/jz4730/setup.c                  |  136 +++
>  arch/mips/xburst/jz4730/time.c                   |  140 +++
>  drivers/net/Kconfig                              |   10 +
>  drivers/net/Makefile                             |    1 +
>  drivers/net/jz_eth.c                             | 1232
>  ++++++++++++++++++++++ drivers/net/jz_eth.h                             | 
>  403 +++++++
>  drivers/serial/8250.c                            |   12 +
>  32 files changed, 3355 insertions(+), 3 deletions(-)
>  create mode 100644 arch/mips/include/asm/mach-xburst/clock-jz4730.h
>  create mode 100644 arch/mips/include/asm/mach-xburst/dma-jz4730.h
>  create mode 100644 arch/mips/include/asm/mach-xburst/irq-jz4730.h
>  create mode 100644 arch/mips/include/asm/mach-xburst/uart-jz4730.h
>  create mode 100644 arch/mips/include/asm/mach-xburst/war.h
>  create mode 100644 arch/mips/include/asm/mach-xburst/xburst.h
>  create mode 100644 arch/mips/xburst/Kconfig
>  create mode 100644 arch/mips/xburst/Makefile
>  create mode 100644 arch/mips/xburst/jz4730/Makefile
>  create mode 100644 arch/mips/xburst/jz4730/board-libra.c
>  create mode 100644 arch/mips/xburst/jz4730/board-pmp.c
>  create mode 100644 arch/mips/xburst/jz4730/clocks.c
>  create mode 100644 arch/mips/xburst/jz4730/irq.c
>  create mode 100644 arch/mips/xburst/jz4730/platform.c
>  create mode 100644 arch/mips/xburst/jz4730/prom.c
>  create mode 100644 arch/mips/xburst/jz4730/setup.c
>  create mode 100644 arch/mips/xburst/jz4730/time.c
>  create mode 100644 drivers/net/jz_eth.c
>  create mode 100644 drivers/net/jz_eth.h
> 

-- 
Regards, Florian

  parent reply	other threads:[~2010-02-25  7:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-02-25  6:28 [PATCH 0/3] XBurst JZ4730 support Graham Gower
2010-02-25  6:29 ` [PATCH 1/3] Add " Graham Gower
2010-02-25  6:30 ` [PATCH 2/3] 8250: serial driver changes for XBurst SoCs Graham Gower
2010-02-25  6:31 ` [PATCH 3/3] net: add driver for JZ4730 ethernet controller Graham Gower
2010-02-25  7:52 ` Florian Fainelli [this message]
2010-02-25 21:12   ` [PATCH 0/3] XBurst JZ4730 support Graham Gower
2010-02-26  1:51     ` Lars-Peter Clausen
2010-02-26  3:34       ` Graham Gower
2010-02-26 11:41         ` blast_dcache32 problem with PREEMPT kernel Anoop P.A.
2010-02-26 11:41           ` Anoop P.A.

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=201002250852.09638.florian@openwrt.org \
    --to=florian@openwrt.org \
    --cc=graham.gower@gmail.com \
    --cc=lars@metafoo.de \
    --cc=linux-mips@linux-mips.org \
    --cc=lists@nanl.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.