All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] Pull request: u-boot-nds32
@ 2013-07-24  4:11 Macpaul Lin
  2013-07-24 13:39 ` [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers Tom Rini
  2013-07-25  8:49 ` [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
  0 siblings, 2 replies; 26+ messages in thread
From: Macpaul Lin @ 2013-07-24  4:11 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull the following patch from u-boot-nds32 into your tree.
Thanks!

The following changes since commit 62c175fbb8a0f9a926c88294ea9f7e88eb898f6c:

  Prepare v2013.07 (2013-07-23 07:58:13 -0400)

are available in the git repository at:

  git://git.denx.de/u-boot-nds32.git master

for you to fetch changes up to 4fc967051396e8e82138c65fd65a353f73e51b89:

  nds32: ag101/ag102: Fix setting lastdec and now values (2013-07-24
11:50:28 +0800)

----------------------------------------------------------------
Axel Lin (1):
      nds32: ag101/ag102: Fix setting lastdec and now values

Gabor Juhos (6):
      nds32: introduce macros for bit manipulation
      mmc: ftsdc010_mci: fix build error if CONFIG_FTSDC010_SDIO is not defined
      block: constify sect_buf argument of ide_write_data
      pci: add prototype for pci_ftpci_init() function
      pci: move pci_ftpci100.h to include/faraday/ftpci100.h
      nds32: adp-ag102: use 'faraday/ftpci100.h' for pci_ftpci_init

ken kuo (3):
      nds32: Enable two banks of SDRAM on Andes board
      nds32: Enable SDIO and EXT2 command support for Andes board
      nds32: Enable the function of passing parameters to Linux

 arch/nds32/cpu/n1213/ag101/lowlevel_init.S               |   6 +++++-
 arch/nds32/cpu/n1213/ag101/timer.c                       |   7 ++++---
 arch/nds32/cpu/n1213/ag102/timer.c                       |   7 ++++---
 arch/nds32/include/asm/io.h                              |  37
+++++++++++++++++++++++++++++++++
 arch/nds32/include/asm/setup.h                           | 192
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 board/AndesTech/adp-ag101/adp-ag101.c                    |  10 ++++++++-
 board/AndesTech/adp-ag101p/adp-ag101p.c                  |  10 ++++++++-
 board/AndesTech/adp-ag102/adp-ag102.c                    |   3 +--
 doc/driver-model/UDM-block.txt                           |   2 +-
 drivers/block/ftide020.c                                 |   2 +-
 drivers/mmc/ftsdc010_mci.c                               |   6 +++++-
 drivers/pci/pci_ftpci100.c                               |   4 ++--
 include/common.h                                         |   1 +
 include/configs/adp-ag101.h                              |  19
++++++++++++++++-
 include/configs/adp-ag101p.h                             |  18
++++++++++++++++-
 drivers/pci/pci_ftpci100.h => include/faraday/ftpci100.h |   2 ++
 include/ide.h                                            |   2 +-
 17 files changed, 309 insertions(+), 19 deletions(-)
 create mode 100644 arch/nds32/include/asm/setup.h
 rename drivers/pci/pci_ftpci100.h => include/faraday/ftpci100.h (98%)

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

* [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers
  2013-07-24  4:11 [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
@ 2013-07-24 13:39 ` Tom Rini
  2013-07-25  9:42   ` Macpaul Lin
  2013-07-25  8:49 ` [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
  1 sibling, 1 reply; 26+ messages in thread
From: Tom Rini @ 2013-07-24 13:39 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Tom Rini <trini@ti.com>
---
 arch/nds32/include/asm/io.h    |    4 +---
 arch/nds32/include/asm/setup.h |    4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/arch/nds32/include/asm/io.h b/arch/nds32/include/asm/io.h
index 254c8f9..04708e9 100644
--- a/arch/nds32/include/asm/io.h
+++ b/arch/nds32/include/asm/io.h
@@ -7,9 +7,7 @@
  * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
  * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
+ * SPDX-License-Identifier:	GPL-2.0
  *
  * Modifications:
  *  16-Sep-1996	RMK	Inlined the inx/outx functions & optimised for both
diff --git a/arch/nds32/include/asm/setup.h b/arch/nds32/include/asm/setup.h
index 0a14ea0..833d979 100644
--- a/arch/nds32/include/asm/setup.h
+++ b/arch/nds32/include/asm/setup.h
@@ -5,9 +5,7 @@
  *  Copyright (C) 2008 Andes Technology Corporation
  *	Copyright (C) 2013 Ken Kuo (ken_kuo at andestech.com)
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
+ * SPDX-License-Identifier:	GPL-2.0
  *
  *  Structure passed to kernel to tell it about the
  *  hardware it's running on.  See Documentation/arm/Setup
-- 
1.7.9.5

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

* [U-Boot] Pull request: u-boot-nds32
  2013-07-24  4:11 [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
  2013-07-24 13:39 ` [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers Tom Rini
@ 2013-07-25  8:49 ` Macpaul Lin
  1 sibling, 0 replies; 26+ messages in thread
From: Macpaul Lin @ 2013-07-25  8:49 UTC (permalink / raw)
  To: u-boot

Hi Tom

2013/7/24 Macpaul Lin <macpaul@gmail.com>:
> Hi Tom,
>
> Please pull the following patch from u-boot-nds32 into your tree.
> Thanks!
>

Because of there are new patches and compile error fix, please ignore
this pull-request. I'll review those new patches and resend this
pull-request later. Thanks!


-- 
Best regards,
Macpaul Lin

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

* [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers
  2013-07-24 13:39 ` [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers Tom Rini
@ 2013-07-25  9:42   ` Macpaul Lin
  0 siblings, 0 replies; 26+ messages in thread
From: Macpaul Lin @ 2013-07-25  9:42 UTC (permalink / raw)
  To: u-boot

Hi Tom,

2013/7/24 Tom Rini <trini@ti.com>:
> Signed-off-by: Tom Rini <trini@ti.com>
> ---
>  arch/nds32/include/asm/io.h    |    4 +---
>  arch/nds32/include/asm/setup.h |    4 +---
>  2 files changed, 2 insertions(+), 6 deletions(-)
>

Applied to u-boot-nds32.
Thanks!

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2014-01-28 12:12 uboot at andestech.com
@ 2014-01-29 14:46 ` Tom Rini
  0 siblings, 0 replies; 26+ messages in thread
From: Tom Rini @ 2014-01-29 14:46 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 28, 2014 at 08:12:51PM +0800, uboot at andestech.com wrote:

> Hi Tom,
> 
> Please pull the following patch from u-boot-nds32 into your tree.
> Thanks!
> 
> The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796:
> 
>   boards.cfg: Keep the entries sorted (2014-01-27 08:28:35 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-nds32.git master
> 
> for you to fetch changes up to f889cc81c1572f4af0be950fd49bb6b67bc580fb:
> 
>   nds32: add support for leopard and orca board boot flow auto detect (2014-01-28 19:23:01 +0800)
> 
> ----------------------------------------------------------------
> rick (1):
>       nds32: add support for leopard and orca board boot flow auto detect
> 
>  arch/nds32/cpu/n1213/ag101/asm-offsets.c   |    1 +
>  arch/nds32/cpu/n1213/ag101/lowlevel_init.S |   88 ++++++++++++++++++++++++++-
>  2 files changed, 85 insertions(+), 4 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20140129/629615ce/attachment.pgp>

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

* [U-Boot] Pull request: u-boot-nds32
@ 2014-01-28 12:12 uboot at andestech.com
  2014-01-29 14:46 ` Tom Rini
  0 siblings, 1 reply; 26+ messages in thread
From: uboot at andestech.com @ 2014-01-28 12:12 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull the following patch from u-boot-nds32 into your tree.
Thanks!

The following changes since commit 0876703cf2ee107372b56037d4eeeb7604c56796:

  boards.cfg: Keep the entries sorted (2014-01-27 08:28:35 -0500)

are available in the git repository at:

  git://git.denx.de/u-boot-nds32.git master

for you to fetch changes up to f889cc81c1572f4af0be950fd49bb6b67bc580fb:

  nds32: add support for leopard and orca board boot flow auto detect (2014-01-28 19:23:01 +0800)

----------------------------------------------------------------
rick (1):
      nds32: add support for leopard and orca board boot flow auto detect

 arch/nds32/cpu/n1213/ag101/asm-offsets.c   |    1 +
 arch/nds32/cpu/n1213/ag101/lowlevel_init.S |   88 ++++++++++++++++++++++++++-
 2 files changed, 85 insertions(+), 4 deletions(-)

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

* [U-Boot] Pull request: u-boot-nds32
       [not found] <A03ABFCCC2764549B3FC5B964513FD5C079B399C@ATCPCS12.andestech.com>
@ 2013-08-09 12:10 ` Tom Rini
  0 siblings, 0 replies; 26+ messages in thread
From: Tom Rini @ 2013-08-09 12:10 UTC (permalink / raw)
  To: u-boot

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On 08/08/2013 03:04 PM, uboot at andestech.com wrote:
> Hi Tom,
> 
> Please pull the following patch from u-boot-nds32 into your tree. 
> Thanks!
> 
> The following changes since commit
> d05bfd0586ccebe96e31976459c8ef45ec65e109:
> 
> Merge branch 'master' of git://git.denx.de/u-boot-i2c (2013-08-06
> 09:49:06 -0400)
> 
> are available in the git repository at:
> 
> git://git.denx.de/u-boot-nds32.git master
> 
> Andes (1): nds32: Change of NDS32 Custodian
> 
> ken kuo (2): nds32: introduce DMA allocation API nds32: fix the
> missing COBJS-y change
> 
> MAINTAINERS                          |    2 +- 
> arch/nds32/include/asm/dma-mapping.h |   33
> +++++++++++++++++++++++++++++++++ 
> board/AndesTech/adp-ag102/Makefile   |    2 +- 3 files changed, 35
> insertions(+), 2 deletions(-) create mode 100644
> arch/nds32/include/asm/dma-mapping.h

Applied to u-boot/master, thanks!

- -- 
Tom
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQIcBAEBAgAGBQJSBNwkAAoJENk4IS6UOR1WQrcP/3OY51BxZKS90i46D4vRFH/Z
9/MS5+EioB4y06cj8ipjoy7rdk2VyVTNIbWCwICa3h1k2lRD35jN+Asra6OxKOnW
aPFHDz5JsuyutHehkvds27XF5WnZ06cgdITbelPBJ5DBTn7/z5exaEAZZSEHRZ+D
2B39HDMT9gJuiAE/70iMJg5bh54+z/iQgP1zYTTF8lV2ZosEjjGNK7CWOeju/uI+
H1fYsuF9COP7G6/MTm8fSJ/J2DBnA/+wGLmwBvJTVZUc/U0YdwEzotTk3VbEha7G
n7bBbQsX0FtPo8Bn0U2qDugtHkuYthqZe0qaYIKqxEdvvwfK+dNBmwkOMj2wKJkj
wFJDJQuySCgzclbqM8O2zIAX1391TkOm9UUj7XDtnds6AQB9ohhjLeSPG6SyFSvz
BXoga52t7tQRpa8+HKtmkmBMCKg5fkOyy2iIIeU32lcTJFQ35fZIVq6CNsYPKZzP
9D+L96ZlpayoPwisfCgLSin5anPNAyXbZp0AfVvlPCzNGroit9WtXRnN8UkAtG0Q
fTnfIQeA6b8F2XYhW0V3QY9bauu0sEzQtKYpbWSpE69ojQTOGIIE40Wkpv11ZJVC
UhjDY+QsHqtVkNj0rgheYqbpVFSw6Cu8c5dhNLWTKg+MqD5DutetGsS3wOVWj1R2
R3LMo5aeRe378F1Q7fgs
=45p0
-----END PGP SIGNATURE-----

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

* [U-Boot] Pull request: u-boot-nds32
  2013-05-08  4:49 Macpaul Lin
@ 2013-05-08 11:46 ` Tom Rini
  0 siblings, 0 replies; 26+ messages in thread
From: Tom Rini @ 2013-05-08 11:46 UTC (permalink / raw)
  To: u-boot

On Wed, May 08, 2013 at 12:49:57PM +0800, Macpaul Lin wrote:

> Hi Tom,
> 
> Please pull the following patch from u-boot-nds32 into your tree.
> Thanks!
> 
> The following changes since commit 7e7501f4bb0d550fbc6960e7e2fb2bc84d9795cf:
> 
>   Merge branch 'master' of git://www.denx.de/git/u-boot-mmc
> (2013-05-07 10:09:00 -0400)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-nds32.git master
> 
> for you to fetch changes up to fe8e4dbad1d31c452af3fbabba21e72b210381b3:
> 
>   nds32: Use sections header to obtain link symbols (2013-05-08 12:38:10 +0800)
> 
> ----------------------------------------------------------------
> Kuan-Yu Kuo (1):
>       nds32: Use sections header to obtain link symbols
> 
>  arch/nds32/include/asm/u-boot-nds32.h | 5 -----
>  arch/nds32/lib/board.c                | 3 ++-
>  2 files changed, 2 insertions(+), 6 deletions(-)

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20130508/9ee45b2e/attachment.pgp>

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

* [U-Boot] Pull request: u-boot-nds32
@ 2013-05-08  4:49 Macpaul Lin
  2013-05-08 11:46 ` Tom Rini
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2013-05-08  4:49 UTC (permalink / raw)
  To: u-boot

Hi Tom,

Please pull the following patch from u-boot-nds32 into your tree.
Thanks!

The following changes since commit 7e7501f4bb0d550fbc6960e7e2fb2bc84d9795cf:

  Merge branch 'master' of git://www.denx.de/git/u-boot-mmc
(2013-05-07 10:09:00 -0400)

are available in the git repository at:


  git://git.denx.de/u-boot-nds32.git master

for you to fetch changes up to fe8e4dbad1d31c452af3fbabba21e72b210381b3:

  nds32: Use sections header to obtain link symbols (2013-05-08 12:38:10 +0800)

----------------------------------------------------------------
Kuan-Yu Kuo (1):
      nds32: Use sections header to obtain link symbols

 arch/nds32/include/asm/u-boot-nds32.h | 5 -----
 arch/nds32/lib/board.c                | 3 ++-
 2 files changed, 2 insertions(+), 6 deletions(-)

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2012-08-10 16:52 Macpaul Lin
@ 2012-08-10 20:16 ` Wolfgang Denk
  0 siblings, 0 replies; 26+ messages in thread
From: Wolfgang Denk @ 2012-08-10 20:16 UTC (permalink / raw)
  To: u-boot

Dear Macpaul Lin,

In message <CACCg+XP0dPFjnCovFqo=Hd3DDnb5CjkE5UvawijGeYxJ2uxHUQ@mail.gmail.com> you wrote:
> Dear Wolfgang,
> 
> Please pull the following 3 patches from u-boot-nds32 into your tree.
> 
> Thanks!
> Macpaul Lin.
> 
> The following changes since commit 4d3c95f5ea7c737a21cd6b9c59435ee693b3f127:
> 
>   zfs: Add ZFS filesystem support (2012-08-09 23:42:20 +0200)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-nds32.git master
> 
> for you to fetch changes up to 11a05fbde76765e4b256b86aa3b82ea3184e3c08:
> 
>   nds32: fix unused pmu_init warning (2012-08-11 00:43:28 +0800)
> 
> ----------------------------------------------------------------
> Mike Frysinger (3):
>       nds32: drop bi_enetaddr from global data
>       nds32: delete unused local variable
>       nds32: fix unused pmu_init warning
> 
>  arch/nds32/include/asm/u-boot.h | 1 -
>  arch/nds32/lib/board.c          | 3 ++-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
We fight only when there is no other choice. We prefer  the  ways  of
peaceful contact.
	-- Kirk, "Spectre of the Gun", stardate 4385.3

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

* [U-Boot] Pull request: u-boot-nds32
@ 2012-08-10 16:52 Macpaul Lin
  2012-08-10 20:16 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2012-08-10 16:52 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Please pull the following 3 patches from u-boot-nds32 into your tree.

Thanks!
Macpaul Lin.

The following changes since commit 4d3c95f5ea7c737a21cd6b9c59435ee693b3f127:

  zfs: Add ZFS filesystem support (2012-08-09 23:42:20 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-nds32.git master

for you to fetch changes up to 11a05fbde76765e4b256b86aa3b82ea3184e3c08:

  nds32: fix unused pmu_init warning (2012-08-11 00:43:28 +0800)

----------------------------------------------------------------
Mike Frysinger (3):
      nds32: drop bi_enetaddr from global data
      nds32: delete unused local variable
      nds32: fix unused pmu_init warning

 arch/nds32/include/asm/u-boot.h | 1 -
 arch/nds32/lib/board.c          | 3 ++-
 2 files changed, 2 insertions(+), 2 deletions(-)

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

* [U-Boot] Pull request: u-boot-nds32
  2012-07-20 16:03 Macpaul Lin
@ 2012-07-20 20:37 ` Wolfgang Denk
  0 siblings, 0 replies; 26+ messages in thread
From: Wolfgang Denk @ 2012-07-20 20:37 UTC (permalink / raw)
  To: u-boot

Dear Macpaul Lin,

In message <CACCg+XMy_r4Rv99tKhi-Wh7UfhjOFKRU_chPSWJAjymdGbsqVQ@mail.gmail.com> you wrote:
>
> The following changes since commit 3ec81d758c09d6887a77a1b1259d044a2905bc8e:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-usb (2012-07-20
> 09:12:43 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.denx.de/u-boot-nds32.git master
> 
> for you to fetch changes up to 8d732840ba1cd4d41c12242ba07f1cf58b6429bf:
> 
>   nds32: split common cache access from cpu into lib (2012-07-20 23:55:52
> +0800)
> 
> ----------------------------------------------------------------
> Macpaul Lin (1):
>       nds32: split common cache access from cpu into lib
> 
>  arch/nds32/cpu/n1213/ag101/cpu.c | 112 ----------------------------
>  arch/nds32/cpu/n1213/ag102/cpu.c | 112 ----------------------------
>  arch/nds32/lib/Makefile          |   2 +-
>  arch/nds32/lib/cache.c           | 157
> +++++++++++++++++++++++++++++++++++++++
>  4 files changed, 158 insertions(+), 225 deletions(-)
>  create mode 100644 arch/nds32/lib/cache.c

Applied, thanks.

> --bcaec554de605b34b304c5450bb9
> Content-Type: text/html; charset=ISO-8859-1
> Content-Transfer-Encoding: quoted-printable

Please, do NOT send HTML!!!

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Gew?hnlich glaubt der Mensch,  wenn er nur Worte h?rt,  es m?sse sich
dabei doch auch was denken lassen.                 -- Goethe, Faust I

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

* [U-Boot] Pull request: u-boot-nds32
@ 2012-07-20 16:03 Macpaul Lin
  2012-07-20 20:37 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2012-07-20 16:03 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Please pull the following 1 patch from u-boot-nds32 into your tree.

Thanks!
Macpaul Lin.

The following changes since commit 3ec81d758c09d6887a77a1b1259d044a2905bc8e:

  Merge branch 'master' of git://git.denx.de/u-boot-usb (2012-07-20
09:12:43 +0200)

are available in the git repository at:


  git://git.denx.de/u-boot-nds32.git master

for you to fetch changes up to 8d732840ba1cd4d41c12242ba07f1cf58b6429bf:

  nds32: split common cache access from cpu into lib (2012-07-20 23:55:52
+0800)

----------------------------------------------------------------
Macpaul Lin (1):
      nds32: split common cache access from cpu into lib

 arch/nds32/cpu/n1213/ag101/cpu.c | 112 ----------------------------
 arch/nds32/cpu/n1213/ag102/cpu.c | 112 ----------------------------
 arch/nds32/lib/Makefile          |   2 +-
 arch/nds32/lib/cache.c           | 157
+++++++++++++++++++++++++++++++++++++++
 4 files changed, 158 insertions(+), 225 deletions(-)
 create mode 100644 arch/nds32/lib/cache.c

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

* [U-Boot] Pull request: u-boot-nds32
  2012-04-22  9:33 Macpaul Lin
@ 2012-04-30 14:37 ` Wolfgang Denk
  0 siblings, 0 replies; 26+ messages in thread
From: Wolfgang Denk @ 2012-04-30 14:37 UTC (permalink / raw)
  To: u-boot

Dear Macpaul Lin,

In message <CACCg+XPuPEJ1BBOhLuYRWV=ZXwOsgsquyfedSBBgypFmCbbXpQ@mail.gmail.com> you wrote:
> Dear Wolfgang,
> 
> Please pull the following 4 patches into your tree.
> 
> Thanks!
> Macpaul Lin.
> 
> 
> The following changes since commit 2790bf69dc12fb9aeb9836904e5f57c7f83d5552:
> 
>   Prepare v2012.04 (2012-04-21 18:55:26 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-nds32.git master
> 
> Macpaul Lin (4):
>       nds32/ag102: add header support of ag102 soc
>       nds32/ag102: add ag102 soc support
>       board/adp-ag102: add board specific files
>       board/adp-ag102: add configuration of adp-ag102
> 
>  MAINTAINERS                                |    1 +
>  arch/nds32/cpu/n1213/ag102/Makefile        |   58 +++++
>  arch/nds32/cpu/n1213/ag102/asm-offsets.c   |   54 ++++
>  arch/nds32/cpu/n1213/ag102/cpu.c           |  195 +++++++++++++++
>  arch/nds32/cpu/n1213/ag102/lowlevel_init.S |  297 ++++++++++++++++++++++
>  arch/nds32/cpu/n1213/ag102/timer.c         |  205 +++++++++++++++
>  arch/nds32/cpu/n1213/ag102/watchdog.S      |   49 ++++
>  arch/nds32/include/asm/arch-ag102/ag102.h  |   97 +++++++
>  arch/nds32/include/asm/mach-types.h        |   14 +
>  board/AndesTech/adp-ag102/Makefile         |   43 ++++
>  board/AndesTech/adp-ag102/adp-ag102.c      |  107 ++++++++
>  boards.cfg                                 |    1 +
>  doc/README.ag102                           |   36 +++
>  include/configs/adp-ag102.h                |  375 ++++++++++++++++++++++++++++
>  14 files changed, 1532 insertions(+), 0 deletions(-)
>  create mode 100644 arch/nds32/cpu/n1213/ag102/Makefile
>  create mode 100644 arch/nds32/cpu/n1213/ag102/asm-offsets.c
>  create mode 100644 arch/nds32/cpu/n1213/ag102/cpu.c
>  create mode 100644 arch/nds32/cpu/n1213/ag102/lowlevel_init.S
>  create mode 100644 arch/nds32/cpu/n1213/ag102/timer.c
>  create mode 100644 arch/nds32/cpu/n1213/ag102/watchdog.S
>  create mode 100644 arch/nds32/include/asm/arch-ag102/ag102.h
>  create mode 100644 board/AndesTech/adp-ag102/Makefile
>  create mode 100644 board/AndesTech/adp-ag102/adp-ag102.c
>  create mode 100644 doc/README.ag102
>  create mode 100644 include/configs/adp-ag102.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
HEALTH WARNING: Care Should Be Taken When Lifting This Product, Since
Its Mass, and Thus Its Weight, Is Dependent on Its Velocity  Relative
to the User.

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

* [U-Boot] Pull request: u-boot-nds32
@ 2012-04-22  9:33 Macpaul Lin
  2012-04-30 14:37 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2012-04-22  9:33 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Please pull the following 4 patches into your tree.

Thanks!
Macpaul Lin.


The following changes since commit 2790bf69dc12fb9aeb9836904e5f57c7f83d5552:

  Prepare v2012.04 (2012-04-21 18:55:26 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-nds32.git master

Macpaul Lin (4):
      nds32/ag102: add header support of ag102 soc
      nds32/ag102: add ag102 soc support
      board/adp-ag102: add board specific files
      board/adp-ag102: add configuration of adp-ag102

 MAINTAINERS                                |    1 +
 arch/nds32/cpu/n1213/ag102/Makefile        |   58 +++++
 arch/nds32/cpu/n1213/ag102/asm-offsets.c   |   54 ++++
 arch/nds32/cpu/n1213/ag102/cpu.c           |  195 +++++++++++++++
 arch/nds32/cpu/n1213/ag102/lowlevel_init.S |  297 ++++++++++++++++++++++
 arch/nds32/cpu/n1213/ag102/timer.c         |  205 +++++++++++++++
 arch/nds32/cpu/n1213/ag102/watchdog.S      |   49 ++++
 arch/nds32/include/asm/arch-ag102/ag102.h  |   97 +++++++
 arch/nds32/include/asm/mach-types.h        |   14 +
 board/AndesTech/adp-ag102/Makefile         |   43 ++++
 board/AndesTech/adp-ag102/adp-ag102.c      |  107 ++++++++
 boards.cfg                                 |    1 +
 doc/README.ag102                           |   36 +++
 include/configs/adp-ag102.h                |  375 ++++++++++++++++++++++++++++
 14 files changed, 1532 insertions(+), 0 deletions(-)
 create mode 100644 arch/nds32/cpu/n1213/ag102/Makefile
 create mode 100644 arch/nds32/cpu/n1213/ag102/asm-offsets.c
 create mode 100644 arch/nds32/cpu/n1213/ag102/cpu.c
 create mode 100644 arch/nds32/cpu/n1213/ag102/lowlevel_init.S
 create mode 100644 arch/nds32/cpu/n1213/ag102/timer.c
 create mode 100644 arch/nds32/cpu/n1213/ag102/watchdog.S
 create mode 100644 arch/nds32/include/asm/arch-ag102/ag102.h
 create mode 100644 board/AndesTech/adp-ag102/Makefile
 create mode 100644 board/AndesTech/adp-ag102/adp-ag102.c
 create mode 100644 doc/README.ag102
 create mode 100644 include/configs/adp-ag102.h



-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-18  9:35 Macpaul Lin
@ 2011-11-21 21:03 ` Wolfgang Denk
  0 siblings, 0 replies; 26+ messages in thread
From: Wolfgang Denk @ 2011-11-21 21:03 UTC (permalink / raw)
  To: u-boot

Dear Macpaul Lin,

In message <CACCg+XOGHErs_cx+ZmQ2sK=VKPALbkvv_gedkVT-4QsVp6R1-w@mail.gmail.com> you wrote:
> Dear Wolfgang,
> 
> I have applied the following patch fix.
> Could you please pull these 3 patches to your tree.
> 
> Thanks,
> Macpaul
> 
> 
> The following changes since commit 05622191e510e495b6a06da6342126e80a3fed8f:
> 
>   tools: checkpatch.pl from Linux added to tools (2011-11-17 14:27:11 +0100)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-nds32.git master
> 
> Macpaul Lin (3):
>       ftide020: fix incorrect information display format
>       nds32: enhance io.h for compatibility with periphals
>       nds32/lib: add ide generic support
> 
>  arch/nds32/include/asm/io.h |   18 ++++++++++++++++++
>  arch/nds32/lib/board.c      |    5 +++++
>  drivers/block/ftide020.c    |    5 ++---
>  3 files changed, 25 insertions(+), 3 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Those who hate and fight must stop themselves -- otherwise it is  not
stopped.
	-- Spock, "Day of the Dove", stardate unknown

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

* [U-Boot] Pull request: u-boot-nds32
@ 2011-11-18  9:35 Macpaul Lin
  2011-11-21 21:03 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2011-11-18  9:35 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

I have applied the following patch fix.
Could you please pull these 3 patches to your tree.

Thanks,
Macpaul


The following changes since commit 05622191e510e495b6a06da6342126e80a3fed8f:

  tools: checkpatch.pl from Linux added to tools (2011-11-17 14:27:11 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-nds32.git master

Macpaul Lin (3):
      ftide020: fix incorrect information display format
      nds32: enhance io.h for compatibility with periphals
      nds32/lib: add ide generic support

 arch/nds32/include/asm/io.h |   18 ++++++++++++++++++
 arch/nds32/lib/board.c      |    5 +++++
 drivers/block/ftide020.c    |    5 ++---
 3 files changed, 25 insertions(+), 3 deletions(-)

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-10  3:14 Macpaul Lin
@ 2011-11-16 19:02 ` Wolfgang Denk
  0 siblings, 0 replies; 26+ messages in thread
From: Wolfgang Denk @ 2011-11-16 19:02 UTC (permalink / raw)
  To: u-boot

Dear Macpaul Lin,

In message <CACCg+XMNaz2ELmEYSnLGz21kpxcNDO8u4i8dbfHrLhjW03iccg@mail.gmail.com> you wrote:
> Dear Wolfgang,
> 
> Could you please pull these 5 patches to your tree.
> 
> Thanks,
> Macpaul
> 
> 
> The following changes since commit 5721385b187b3154c7768e6c182501022f4e2e45:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
> (2011-11-08 07:44:52 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-nds32.git master
> 
> Macpaul Lin (5):
>       andes_pcu.h: header file of andes_pcu power control unit
>       dwcddr21mctl: Synopsys DWC DDR2/1 Memory Controller
>       nds32: fix data section of linker script
>       adp-ag101p: Add SoC and board support of ag101p
>       adp-ag101p: add product into MAINTAINERS list
> 
>  MAINTAINERS                             |    1 +
>  arch/nds32/cpu/n1213/u-boot.lds         |    2 +-
>  arch/nds32/include/asm/mach-types.h     |   14 ++
>  board/AndesTech/adp-ag101p/Makefile     |   44 ++++
>  board/AndesTech/adp-ag101p/adp-ag101p.c |   89 +++++++
>  boards.cfg                              |    1 +
>  include/andestech/andes_pcu.h           |  367 +++++++++++++++++++++++++++++
>  include/configs/adp-ag101p.h            |  383 +++++++++++++++++++++++++++++++
>  include/synopsys/dwcddr21mctl.h         |  337 +++++++++++++++++++++++++++
>  9 files changed, 1237 insertions(+), 1 deletions(-)
>  create mode 100644 board/AndesTech/adp-ag101p/Makefile
>  create mode 100644 board/AndesTech/adp-ag101p/adp-ag101p.c
>  create mode 100644 include/andestech/andes_pcu.h
>  create mode 100644 include/configs/adp-ag101p.h
>  create mode 100644 include/synopsys/dwcddr21mctl.h

Applied, thanks.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I had the rare misfortune of being one of the first people to try and
implement a PL/1 compiler.                             -- T. Cheatham

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

* [U-Boot] Pull request: u-boot-nds32
@ 2011-11-10  3:14 Macpaul Lin
  2011-11-16 19:02 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2011-11-10  3:14 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Could you please pull these 5 patches to your tree.

Thanks,
Macpaul


The following changes since commit 5721385b187b3154c7768e6c182501022f4e2e45:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
(2011-11-08 07:44:52 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-nds32.git master

Macpaul Lin (5):
      andes_pcu.h: header file of andes_pcu power control unit
      dwcddr21mctl: Synopsys DWC DDR2/1 Memory Controller
      nds32: fix data section of linker script
      adp-ag101p: Add SoC and board support of ag101p
      adp-ag101p: add product into MAINTAINERS list

 MAINTAINERS                             |    1 +
 arch/nds32/cpu/n1213/u-boot.lds         |    2 +-
 arch/nds32/include/asm/mach-types.h     |   14 ++
 board/AndesTech/adp-ag101p/Makefile     |   44 ++++
 board/AndesTech/adp-ag101p/adp-ag101p.c |   89 +++++++
 boards.cfg                              |    1 +
 include/andestech/andes_pcu.h           |  367 +++++++++++++++++++++++++++++
 include/configs/adp-ag101p.h            |  383 +++++++++++++++++++++++++++++++
 include/synopsys/dwcddr21mctl.h         |  337 +++++++++++++++++++++++++++
 9 files changed, 1237 insertions(+), 1 deletions(-)
 create mode 100644 board/AndesTech/adp-ag101p/Makefile
 create mode 100644 board/AndesTech/adp-ag101p/adp-ag101p.c
 create mode 100644 include/andestech/andes_pcu.h
 create mode 100644 include/configs/adp-ag101p.h
 create mode 100644 include/synopsys/dwcddr21mctl.h

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-09  8:54 Macpaul Lin
@ 2011-11-10  2:45 ` Macpaul Lin
  0 siblings, 0 replies; 26+ messages in thread
From: Macpaul Lin @ 2011-11-10  2:45 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

2011/11/9 Macpaul Lin <macpaul@gmail.com>:
> Dear Wolfgang,
>
> Could you please pull these 3 patches to your tree.
>
> Thanks,
> Macpaul
>
>

Sorry, please ignore this pull request.
I'll send a new pull request later.
Thank!

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
@ 2011-11-09  8:54 Macpaul Lin
  2011-11-10  2:45 ` Macpaul Lin
  0 siblings, 1 reply; 26+ messages in thread
From: Macpaul Lin @ 2011-11-09  8:54 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Could you please pull these 3 patches to your tree.

Thanks,
Macpaul


The following changes since commit 5721385b187b3154c7768e6c182501022f4e2e45:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
(2011-11-08 07:44:52 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-nds32.git master

Macpaul Lin (3):
      andes_pcu.h: header file of andes_pcu power control unit
      dwcddr21mctl: Synopsys DWC DDR2/1 Memory Controller
      nds32: fix data section of linker script

 arch/nds32/cpu/n1213/u-boot.lds |    2 +-
 include/andestech/andes_pcu.h   |  367 +++++++++++++++++++++++++++++++++++++++
 include/synopsys/dwcddr21mctl.h |  337 +++++++++++++++++++++++++++++++++++
 3 files changed, 705 insertions(+), 1 deletions(-)
 create mode 100644 include/andestech/andes_pcu.h
 create mode 100644 include/synopsys/dwcddr21mctl.h


-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-04 21:19     ` Mike Frysinger
@ 2011-11-05  1:31       ` 馬克泡
  0 siblings, 0 replies; 26+ messages in thread
From: 馬克泡 @ 2011-11-05  1:31 UTC (permalink / raw)
  To: u-boot

Hi Mike,

2011/11/5 Mike Frysinger <vapier@gentoo.org>:
> 2009.01-rc2 is not a tag that came from Wolfgang's tree (the official tag would
> have been "v2009.01-rc2"), so that means it's a tag of your own. ?whether you
> delete it is up to you.
>
> seems the nds32 tree is missing a lot of tags from Wolfgang's tree ... try
> doing `git push --tags` ?
> -mike
>

I've never set up this tag whether in local or in remote.
(Andestech commit the u-boot code back to mainline since 2010.)
It comes every time when I clone the code from remote custodian's tree.
I'll delete it and add Wolfgang's tag to nds32 tree.
Thanks!

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-04  7:02   ` 馬克泡
@ 2011-11-04 21:19     ` Mike Frysinger
  2011-11-05  1:31       ` 馬克泡
  0 siblings, 1 reply; 26+ messages in thread
From: Mike Frysinger @ 2011-11-04 21:19 UTC (permalink / raw)
  To: u-boot

On Friday 04 November 2011 03:02:21 ??? wrote:
> However, I've found there is an error when I push to custodian repo.
> error: refs/tags/2009.01-rc2 does not point to a valid object!
> Should I delete this tag, too?

2009.01-rc2 is not a tag that came from Wolfgang's tree (the official tag would 
have been "v2009.01-rc2"), so that means it's a tag of your own.  whether you 
delete it is up to you.

seems the nds32 tree is missing a lot of tags from Wolfgang's tree ... try 
doing `git push --tags` ?
-mike
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 836 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20111104/5ced3228/attachment.pgp 

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-03 18:34 ` Wolfgang Denk
@ 2011-11-04  7:02   ` 馬克泡
  2011-11-04 21:19     ` Mike Frysinger
  0 siblings, 1 reply; 26+ messages in thread
From: 馬克泡 @ 2011-11-04  7:02 UTC (permalink / raw)
  To: u-boot

Hi Wolfgang

2011/11/4 Wolfgang Denk <wd@denx.de>:
> Dear =?UTF-8?B?6aas5YWL5rOh?=,
>
> In message <CACCg+XPfsaHVvUSoS18ey=2euTSZTzuR1pUT+W6Qt3ndAnzmdw@mail.gmail.com> you wrote:
>>
>> are available in the git repository at:
>> ? git://git.denx.de/u-boot-nds32.git master
>
> Applied, thanks.
>
>
> Can you please deleted tag 'NIOS2-5_0_0' from your tree? ?Thanks.
>

This tag has been deleted and updated to custodian repo in
git://git.denx.de/u-boot-nds32.git

However, I've found there is an error when I push to custodian repo.
error: refs/tags/2009.01-rc2 does not point to a valid object!
Should I delete this tag, too?

Thanks.

-- 
Best regards,
Macpaul Lin

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

* [U-Boot] Pull request: u-boot-nds32
  2011-11-01  5:05 馬克泡
@ 2011-11-03 18:34 ` Wolfgang Denk
  2011-11-04  7:02   ` 馬克泡
  0 siblings, 1 reply; 26+ messages in thread
From: Wolfgang Denk @ 2011-11-03 18:34 UTC (permalink / raw)
  To: u-boot

Dear =?UTF-8?B?6aas5YWL5rOh?=,

In message <CACCg+XPfsaHVvUSoS18ey=2euTSZTzuR1pUT+W6Qt3ndAnzmdw@mail.gmail.com> you wrote:
> 
> The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:
> 
>   e1000: Allow direct access to the E1000 SPI EEPROM device
> (2011-10-28 00:37:01 +0200)
> 
> are available in the git repository at:
>   git://git.denx.de/u-boot-nds32.git master
> 
> Macpaul Lin (3):
>       nds32: Use getenv_ulong() in place of getenv(), strtoul
>       nds32: cache: define ARCH_DMA_MINALIGN for DMA buffer alignment
>       nds32: asm/io.h: add __iormb __iowmb and inline io support
> 
>  arch/nds32/include/asm/cache.h |   11 ++++++
>  arch/nds32/include/asm/io.h    |   72 +++++++++++++++++++++++++++++-----------
>  arch/nds32/lib/board.c         |   12 +-----
>  3 files changed, 65 insertions(+), 30 deletions(-)

Applied, thanks.


Can you please deleted tag 'NIOS2-5_0_0' from your tree?  Thanks.


Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
"Do we define evil as the absence of goodness? It seems only  logical
that shit happens--we discover this by the process of elimination."
                                                        -- Larry Wall

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

* [U-Boot] Pull request: u-boot-nds32
@ 2011-11-01  5:05 馬克泡
  2011-11-03 18:34 ` Wolfgang Denk
  0 siblings, 1 reply; 26+ messages in thread
From: 馬克泡 @ 2011-11-01  5:05 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang,

Please pull these 3 patches to your tree.

Thanks,
Macpaul

The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2:

  e1000: Allow direct access to the E1000 SPI EEPROM device
(2011-10-28 00:37:01 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-nds32.git master

Macpaul Lin (3):
      nds32: Use getenv_ulong() in place of getenv(), strtoul
      nds32: cache: define ARCH_DMA_MINALIGN for DMA buffer alignment
      nds32: asm/io.h: add __iormb __iowmb and inline io support

 arch/nds32/include/asm/cache.h |   11 ++++++
 arch/nds32/include/asm/io.h    |   72 +++++++++++++++++++++++++++++-----------
 arch/nds32/lib/board.c         |   12 +-----
 3 files changed, 65 insertions(+), 30 deletions(-)


--
Best regards,
Macpaul Lin

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

end of thread, other threads:[~2014-01-29 14:46 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-24  4:11 [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
2013-07-24 13:39 ` [U-Boot] [PATCH] nds32: Update <asm/io.h> and <asm/setup.h> with SPDX license identifiers Tom Rini
2013-07-25  9:42   ` Macpaul Lin
2013-07-25  8:49 ` [U-Boot] Pull request: u-boot-nds32 Macpaul Lin
  -- strict thread matches above, loose matches on Subject: below --
2014-01-28 12:12 uboot at andestech.com
2014-01-29 14:46 ` Tom Rini
     [not found] <A03ABFCCC2764549B3FC5B964513FD5C079B399C@ATCPCS12.andestech.com>
2013-08-09 12:10 ` Tom Rini
2013-05-08  4:49 Macpaul Lin
2013-05-08 11:46 ` Tom Rini
2012-08-10 16:52 Macpaul Lin
2012-08-10 20:16 ` Wolfgang Denk
2012-07-20 16:03 Macpaul Lin
2012-07-20 20:37 ` Wolfgang Denk
2012-04-22  9:33 Macpaul Lin
2012-04-30 14:37 ` Wolfgang Denk
2011-11-18  9:35 Macpaul Lin
2011-11-21 21:03 ` Wolfgang Denk
2011-11-10  3:14 Macpaul Lin
2011-11-16 19:02 ` Wolfgang Denk
2011-11-09  8:54 Macpaul Lin
2011-11-10  2:45 ` Macpaul Lin
2011-11-01  5:05 馬克泡
2011-11-03 18:34 ` Wolfgang Denk
2011-11-04  7:02   ` 馬克泡
2011-11-04 21:19     ` Mike Frysinger
2011-11-05  1:31       ` 馬克泡

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.