* [U-Boot] [Nios] Pull Request
@ 2010-03-18 15:47 Scott McNutt
2010-03-20 22:40 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-03-18 15:47 UTC (permalink / raw)
To: u-boot
Wolfgang,
The following changes since commit f1fdc42e5efb9e3b6d0dd3b605d0848d3ca8a039:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-video
are available in the git repository at:
git://git.denx.de/u-boot-nios.git master
Renato Andreola (1):
nios2: Added support to YANU UART
Thomas Chou (1):
nios2: use generic unaligned.h
cpu/nios2/serial.c | 168
++++++++++++++++++++++++++++++++++++++++-
include/asm-nios2/unaligned.h | 6 ++
include/nios2-yanu.h | 115 ++++++++++++++++++++++++++++
3 files changed, 288 insertions(+), 1 deletions(-)
create mode 100644 include/asm-nios2/unaligned.h
create mode 100644 include/nios2-yanu.h
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-03-18 15:47 Scott McNutt
@ 2010-03-20 22:40 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-03-20 22:40 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BA24B16.3090606@psyent.com> you wrote:
> Wolfgang,
>
> The following changes since commit f1fdc42e5efb9e3b6d0dd3b605d0848d3ca8a039:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-video
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git master
>
> Renato Andreola (1):
> nios2: Added support to YANU UART
>
> Thomas Chou (1):
> nios2: use generic unaligned.h
>
> cpu/nios2/serial.c | 168
> ++++++++++++++++++++++++++++++++++++++++-
> include/asm-nios2/unaligned.h | 6 ++
> include/nios2-yanu.h | 115 ++++++++++++++++++++++++++++
> 3 files changed, 288 insertions(+), 1 deletions(-)
> create mode 100644 include/asm-nios2/unaligned.h
> create mode 100644 include/nios2-yanu.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 find this a nice feature but it is not according to the documen-
tation. Or is it a BUG?" "Let's call it an accidental feature. :-)"
- Larry Wall in <6909@jpl-devvax.JPL.NASA.GOV>
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-04-02 17:06 Scott McNutt
2010-04-07 22:05 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-04-02 17:06 UTC (permalink / raw)
To: u-boot
Wolfgang,
The following changes since commit ffa37fc98d71ef930bccd4e9eed37f6ce6b4d6af:
Wolfgang Denk (1):
Merge branch 'next'
are available in the git repository at:
git://git.denx.de/u-boot-nios.git master
Scott McNutt (7):
nios2: Move serial drivers to individual files in drivers/serial
nios2: Add missing Ethernet initialization to board_init().
nios2: Add support for EPCS16 and EPCS64 configuration devices.
nios2: Fix outx/writex parameter order in io.h
nios2: Set CONFIG_SYS_HZ to 1000 all nios2 boards.
nios2: Fix AMDLV065D flash write bug in altera board common tree.
nios2: Reload timer count in reset_timer()
Thomas Chou (5):
nios2: add asm-nios2/errno.h
nios2: add local_irq_enable/disable to asm-nios2/system.h
nios2: use bitops from linux-2.6 asm-generic
nios2: add struct stat support in linux/stat.h
nios2: pass command line and initrd to linux in bootm.c
board/altera/common/AMDLV065D.c | 20 +-
board/altera/common/epled.c | 6 +-
board/psyent/common/AMDLV065D.c | 18 +-
board/psyent/pk1c20/led.c | 6 +-
cpu/nios2/Makefile | 2 +-
cpu/nios2/epcs.c | 18 ++-
cpu/nios2/interrupts.c | 49 +++++-
cpu/nios2/serial.c | 309
---------------------------------
drivers/serial/Makefile | 3 +
drivers/serial/altera_jtag_uart.c | 70 ++++++++
drivers/serial/altera_uart.c | 94 ++++++++++
drivers/serial/opencores_yanu.c | 188 ++++++++++++++++++++
include/asm-nios2/bitops.h | 14 +-
include/asm-nios2/bitops/atomic.h | 189 ++++++++++++++++++++
include/asm-nios2/bitops/ffs.h | 41 +++++
include/asm-nios2/bitops/non-atomic.h | 108 ++++++++++++
include/asm-nios2/errno.h | 1 +
include/asm-nios2/io.h | 18 +-
include/asm-nios2/system.h | 33 ++++
include/configs/EP1C20.h | 17 +-
include/configs/EP1S10.h | 17 +-
include/configs/EP1S40.h | 17 +-
include/configs/PCI5441.h | 17 +-
include/configs/PK1C20.h | 17 +-
include/linux/stat.h | 2 +-
lib_nios2/board.c | 7 +
lib_nios2/bootm.c | 19 ++-
27 files changed, 888 insertions(+), 412 deletions(-)
delete mode 100644 cpu/nios2/serial.c
create mode 100644 drivers/serial/altera_jtag_uart.c
create mode 100644 drivers/serial/altera_uart.c
create mode 100644 drivers/serial/opencores_yanu.c
create mode 100644 include/asm-nios2/bitops/atomic.h
create mode 100644 include/asm-nios2/bitops/ffs.h
create mode 100644 include/asm-nios2/bitops/non-atomic.h
create mode 100644 include/asm-nios2/errno.h
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-02 17:06 Scott McNutt
@ 2010-04-07 22:05 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-04-07 22:05 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BB62403.7070203@psyent.com> you wrote:
> Wolfgang,
>
> The following changes since commit ffa37fc98d71ef930bccd4e9eed37f6ce6b4d6af:
> Wolfgang Denk (1):
> Merge branch 'next'
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git master
>
> Scott McNutt (7):
> nios2: Move serial drivers to individual files in drivers/serial
> nios2: Add missing Ethernet initialization to board_init().
> nios2: Add support for EPCS16 and EPCS64 configuration devices.
> nios2: Fix outx/writex parameter order in io.h
> nios2: Set CONFIG_SYS_HZ to 1000 all nios2 boards.
> nios2: Fix AMDLV065D flash write bug in altera board common tree.
> nios2: Reload timer count in reset_timer()
>
> Thomas Chou (5):
> nios2: add asm-nios2/errno.h
> nios2: add local_irq_enable/disable to asm-nios2/system.h
> nios2: use bitops from linux-2.6 asm-generic
> nios2: add struct stat support in linux/stat.h
> nios2: pass command line and initrd to linux in bootm.c
>
> board/altera/common/AMDLV065D.c | 20 +-
> board/altera/common/epled.c | 6 +-
> board/psyent/common/AMDLV065D.c | 18 +-
> board/psyent/pk1c20/led.c | 6 +-
> cpu/nios2/Makefile | 2 +-
> cpu/nios2/epcs.c | 18 ++-
> cpu/nios2/interrupts.c | 49 +++++-
> cpu/nios2/serial.c | 309
> ---------------------------------
> drivers/serial/Makefile | 3 +
> drivers/serial/altera_jtag_uart.c | 70 ++++++++
> drivers/serial/altera_uart.c | 94 ++++++++++
> drivers/serial/opencores_yanu.c | 188 ++++++++++++++++++++
> include/asm-nios2/bitops.h | 14 +-
> include/asm-nios2/bitops/atomic.h | 189 ++++++++++++++++++++
> include/asm-nios2/bitops/ffs.h | 41 +++++
> include/asm-nios2/bitops/non-atomic.h | 108 ++++++++++++
> include/asm-nios2/errno.h | 1 +
> include/asm-nios2/io.h | 18 +-
> include/asm-nios2/system.h | 33 ++++
> include/configs/EP1C20.h | 17 +-
> include/configs/EP1S10.h | 17 +-
> include/configs/EP1S40.h | 17 +-
> include/configs/PCI5441.h | 17 +-
> include/configs/PK1C20.h | 17 +-
> include/linux/stat.h | 2 +-
> lib_nios2/board.c | 7 +
> lib_nios2/bootm.c | 19 ++-
> 27 files changed, 888 insertions(+), 412 deletions(-)
> delete mode 100644 cpu/nios2/serial.c
> create mode 100644 drivers/serial/altera_jtag_uart.c
> create mode 100644 drivers/serial/altera_uart.c
> create mode 100644 drivers/serial/opencores_yanu.c
> create mode 100644 include/asm-nios2/bitops/atomic.h
> create mode 100644 include/asm-nios2/bitops/ffs.h
> create mode 100644 include/asm-nios2/bitops/non-atomic.h
> create mode 100644 include/asm-nios2/errno.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
My brother sent me a postcard the other day with this big sattelite
photo of the entire earth on it. On the back it said: "Wish you were
here". - Steven Wright
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-04-16 20:58 Scott McNutt
2010-04-17 14:41 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-04-16 20:58 UTC (permalink / raw)
To: u-boot
Wolfgang,
These changes also fix a broken build for all nios2 boards due to
a typographic error introduced in the directory restructuring.
The following changes since commit 2a72e9ed18d2164eb7fe569119342eb631b568da:
Stefan Roese (1):
ppc4xx: Add option for PPC440SPe ports without old Rev. A support
are available in the git repository at:
git://git.denx.de/u-boot-nios.git master
Scott McNutt (1):
nios2: Move individual board linker scripts to common script in
cpu tree.
arch/nios2/config.mk | 2 +
{board/altera/ep1c20 => arch/nios2/cpu}/u-boot.lds | 2 +-
board/altera/ep1s10/u-boot.lds | 135
-------------------
board/altera/ep1s40/u-boot.lds | 135
-------------------
board/psyent/pci5441/u-boot.lds | 136
--------------------
board/psyent/pk1c20/u-boot.lds | 136
--------------------
6 files changed, 3 insertions(+), 543 deletions(-)
rename {board/altera/ep1c20 => arch/nios2/cpu}/u-boot.lds (98%)
delete mode 100644 board/altera/ep1s10/u-boot.lds
delete mode 100644 board/altera/ep1s40/u-boot.lds
delete mode 100644 board/psyent/pci5441/u-boot.lds
delete mode 100644 board/psyent/pk1c20/u-boot.lds
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-16 20:58 Scott McNutt
@ 2010-04-17 14:41 ` Wolfgang Denk
2010-04-17 15:46 ` Thomas Chou
` (2 more replies)
0 siblings, 3 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-04-17 14:41 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BC8CF63.5070208@psyent.com> you wrote:
> Wolfgang,
>
> These changes also fix a broken build for all nios2 boards due to
> a typographic error introduced in the directory restructuring.
>
> The following changes since commit 2a72e9ed18d2164eb7fe569119342eb631b568da:
> Stefan Roese (1):
> ppc4xx: Add option for PPC440SPe ports without old Rev. A support
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git master
>
> Scott McNutt (1):
> nios2: Move individual board linker scripts to common script in
> cpu tree.
>
> arch/nios2/config.mk | 2 +
> {board/altera/ep1c20 => arch/nios2/cpu}/u-boot.lds | 2 +-
> board/altera/ep1s10/u-boot.lds | 135
> -------------------
> board/altera/ep1s40/u-boot.lds | 135
> -------------------
> board/psyent/pci5441/u-boot.lds | 136
> --------------------
> board/psyent/pk1c20/u-boot.lds | 136
> --------------------
> 6 files changed, 3 insertions(+), 543 deletions(-)
> rename {board/altera/ep1c20 => arch/nios2/cpu}/u-boot.lds (98%)
> delete mode 100644 board/altera/ep1s10/u-boot.lds
> delete mode 100644 board/altera/ep1s40/u-boot.lds
> delete mode 100644 board/psyent/pci5441/u-boot.lds
> delete mode 100644 board/psyent/pk1c20/u-boot.lds
Applied, thanks.
Um... Scott, I have a few other NIOS2 related patches in my queue
that seem to be pending, could you please have a look at these?
03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with asm-nios2/dma-mapping.h
03/27 Thomas Chou [PATCH] nios2: add 64 bits swab support in asm-nios2/byteorder.h
03/27 Thomas Chou [PATCH] nios2: add gpio based status led driver
03/31 Thomas Chou [PATCH v5] nios2: add altera cf reset
04/17 Thomas Chou [PATCH] nios2: allow link script overriding from boards
04/17 Thomas Chou [PATCH 1/5 v3] nios2: add nios2-generic board
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
If in any problem you find yourself doing an immense amount of work,
the answer can be obtained by simple inspection.
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-17 14:41 ` Wolfgang Denk
@ 2010-04-17 15:46 ` Thomas Chou
2010-04-19 20:40 ` Scott McNutt
2010-04-23 0:11 ` Scott McNutt
2 siblings, 0 replies; 30+ messages in thread
From: Thomas Chou @ 2010-04-17 15:46 UTC (permalink / raw)
To: u-boot
On 04/17/2010 10:41 PM, Wolfgang Denk wrote:
>
> Um... Scott, I have a few other NIOS2 related patches in my queue
> that seem to be pending, could you please have a look at these?
>
> 03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with asm-nios2/dma-mapping.h
> 03/27 Thomas Chou [PATCH] nios2: add 64 bits swab support in asm-nios2/byteorder.h
> 03/27 Thomas Chou [PATCH] nios2: add gpio based status led driver
> 03/31 Thomas Chou [PATCH v5] nios2: add altera cf reset
> 04/17 Thomas Chou [PATCH] nios2: allow link script overriding from boards
> 04/17 Thomas Chou [PATCH 1/5 v3] nios2: add nios2-generic board
>
Hi Scott,
Please also spare some time look at these,
03/28 [PATCH v5 tabify] spi: add altera spi controller support
03/31 [PATCH v2] altera_jtag_uart: bypass when no jtag connection
Best regards,
Thomas
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-17 14:41 ` Wolfgang Denk
2010-04-17 15:46 ` Thomas Chou
@ 2010-04-19 20:40 ` Scott McNutt
2010-04-23 0:11 ` Scott McNutt
2 siblings, 0 replies; 30+ messages in thread
From: Scott McNutt @ 2010-04-19 20:40 UTC (permalink / raw)
To: u-boot
Wolfgang,
Wolfgang Denk wrote:
> Um... Scott, I have a few other NIOS2 related patches in my queue
> that seem to be pending, could you please have a look at these?
>
> 03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with asm-nios2/dma-mapping.h
> 03/27 Thomas Chou [PATCH] nios2: add 64 bits swab support in asm-nios2/byteorder.h
> 03/27 Thomas Chou [PATCH] nios2: add gpio based status led driver
> 03/31 Thomas Chou [PATCH v5] nios2: add altera cf reset
> 04/17 Thomas Chou [PATCH] nios2: allow link script overriding from boards
> 04/17 Thomas Chou [PATCH 1/5 v3] nios2: add nios2-generic board
Will do. The broken builds simply jumped to highest priority.
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-17 14:41 ` Wolfgang Denk
2010-04-17 15:46 ` Thomas Chou
2010-04-19 20:40 ` Scott McNutt
@ 2010-04-23 0:11 ` Scott McNutt
2010-04-24 19:25 ` Wolfgang Denk
2 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-04-23 0:11 UTC (permalink / raw)
To: u-boot
Wolfgang Denk wrote:
>
> Um... Scott, I have a few other NIOS2 related patches in my queue
> that seem to be pending, could you please have a look at these?
>
> 03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with asm-nios2/dma-mapping.h
Applied resubmission:
04/16 Thomas Chou [PATCH v3] nios2: add dma_alloc_coherent
> 03/27 Thomas Chou [PATCH] nios2: add 64 bits swab support in asm-nios2/byteorder.h
Applied resubmission:
04/17 Thomas Chou[PATCH v2] nios2: add 64 bits swab support
> 03/27 Thomas Chou [PATCH] nios2: add gpio based status led driver
Resubmitted as a misc patch:
04/20 Thomas Chou [PATCH v2] misc: add gpio based status led driver
> 03/31 Thomas Chou [PATCH v5] nios2: add altera cf reset
Applied.
> 04/17 Thomas Chou [PATCH] nios2: allow link script overriding from boards
Applied.
> 04/17 Thomas Chou [PATCH 1/5 v3] nios2: add nios2-generic board
Pending. Resubmitted as:
04/20 Thomas Chou [PATCH 1/5 v4] nios2: add nios2-generic board
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-23 0:11 ` Scott McNutt
@ 2010-04-24 19:25 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-04-24 19:25 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BD0E595.5030500@psyent.com> you wrote:
> Wolfgang Denk wrote:
> >
> > Um... Scott, I have a few other NIOS2 related patches in my queue
> > that seem to be pending, could you please have a look at these?
> >
> > 03/25 Thomas Chou [PATCH v2] nios2: add dma_alloc_coherent with asm-nios2/dma-mapping.h
>
> Applied resubmission:
> 04/16 Thomas Chou [PATCH v3] nios2: add dma_alloc_coherent
>
> > 03/27 Thomas Chou [PATCH] nios2: add 64 bits swab support in asm-nios2/byteorder.h
>
> Applied resubmission:
> 04/17 Thomas Chou[PATCH v2] nios2: add 64 bits swab support
>
> > 03/27 Thomas Chou [PATCH] nios2: add gpio based status led driver
>
> Resubmitted as a misc patch:
> 04/20 Thomas Chou [PATCH v2] misc: add gpio based status led driver
>
> > 03/31 Thomas Chou [PATCH v5] nios2: add altera cf reset
>
> Applied.
>
> > 04/17 Thomas Chou [PATCH] nios2: allow link script overriding from boards
>
> Applied.
>
> > 04/17 Thomas Chou [PATCH 1/5 v3] nios2: add nios2-generic board
>
> Pending. Resubmitted as:
> 04/20 Thomas Chou [PATCH 1/5 v4] nios2: add nios2-generic board
Thanks for the summary.
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
Alles Gescheite ist schon gedacht worden, man mu? nur versuchen,
es noch einmal zu denken. -- Goethe, Maximen und Reflexionen
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-04-24 22:31 Scott McNutt
2010-04-27 20:57 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-04-24 22:31 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-mmc
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (8):
nios2: allow link script overriding from boards
nios2: add altera cf reset
nios2: add 64 bits swab support
nios2: add dma_alloc_coherent
altera_jtag_uart: bypass when no jtag connection
nios2: consolidate reset initialization
nios2: fix no flash, add nand and mmc init in board.c
nios2: add nios2-generic board
MAINTAINERS | 1 +
MAKEALL | 1 +
Makefile | 6 +
arch/nios2/config.mk | 2 +-
arch/nios2/cpu/start.S | 9 +-
arch/nios2/include/asm/byteorder.h | 6 +
arch/nios2/include/asm/dma-mapping.h | 23 ++++
arch/nios2/lib/board.c | 18 ++++
board/altera/common/cfide.c | 33 ++++++
board/altera/nios2-generic/Makefile | 59 +++++++++++
board/altera/nios2-generic/config.mk | 34 ++++++
board/altera/nios2-generic/custom_fpga.h | 66 ++++++++++++
board/altera/nios2-generic/nios2-generic.c | 68 ++++++++++++
board/altera/nios2-generic/text_base.S | 21 ++++
board/altera/nios2-generic/u-boot.lds | 136 ++++++++++++++++++++++++
drivers/serial/altera_jtag_uart.c | 12 ++-
include/configs/nios2-generic.h | 153
++++++++++++++++++++++++++++
17 files changed, 640 insertions(+), 8 deletions(-)
create mode 100644 arch/nios2/include/asm/dma-mapping.h
create mode 100644 board/altera/common/cfide.c
create mode 100644 board/altera/nios2-generic/Makefile
create mode 100644 board/altera/nios2-generic/config.mk
create mode 100644 board/altera/nios2-generic/custom_fpga.h
create mode 100644 board/altera/nios2-generic/nios2-generic.c
create mode 100644 board/altera/nios2-generic/text_base.S
create mode 100644 board/altera/nios2-generic/u-boot.lds
create mode 100644 include/configs/nios2-generic.h
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-04-24 22:31 Scott McNutt
@ 2010-04-27 20:57 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-04-27 20:57 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BD3712B.10605@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 6e5fb4eec3702a13770769a5a48a9423aa68ee9c:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-mmc
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (8):
> nios2: allow link script overriding from boards
> nios2: add altera cf reset
> nios2: add 64 bits swab support
> nios2: add dma_alloc_coherent
> altera_jtag_uart: bypass when no jtag connection
> nios2: consolidate reset initialization
> nios2: fix no flash, add nand and mmc init in board.c
> nios2: add nios2-generic board
>
> MAINTAINERS | 1 +
> MAKEALL | 1 +
> Makefile | 6 +
> arch/nios2/config.mk | 2 +-
> arch/nios2/cpu/start.S | 9 +-
> arch/nios2/include/asm/byteorder.h | 6 +
> arch/nios2/include/asm/dma-mapping.h | 23 ++++
> arch/nios2/lib/board.c | 18 ++++
> board/altera/common/cfide.c | 33 ++++++
> board/altera/nios2-generic/Makefile | 59 +++++++++++
> board/altera/nios2-generic/config.mk | 34 ++++++
> board/altera/nios2-generic/custom_fpga.h | 66 ++++++++++++
> board/altera/nios2-generic/nios2-generic.c | 68 ++++++++++++
> board/altera/nios2-generic/text_base.S | 21 ++++
> board/altera/nios2-generic/u-boot.lds | 136 ++++++++++++++++++++++++
> drivers/serial/altera_jtag_uart.c | 12 ++-
> include/configs/nios2-generic.h | 153
> ++++++++++++++++++++++++++++
> 17 files changed, 640 insertions(+), 8 deletions(-)
> create mode 100644 arch/nios2/include/asm/dma-mapping.h
> create mode 100644 board/altera/common/cfide.c
> create mode 100644 board/altera/nios2-generic/Makefile
> create mode 100644 board/altera/nios2-generic/config.mk
> create mode 100644 board/altera/nios2-generic/custom_fpga.h
> create mode 100644 board/altera/nios2-generic/nios2-generic.c
> create mode 100644 board/altera/nios2-generic/text_base.S
> create mode 100644 board/altera/nios2-generic/u-boot.lds
> create mode 100644 include/configs/nios2-generic.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
They say a little knowledge is a dangerous thing, but it is not one
half so bad as a lot of ignorance. - Terry Pratchett, _Equal Rites_
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-05-28 15:09 Scott McNutt
2010-05-28 18:35 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-05-28 15:09 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 01f03bda5b22e5aeae5f02fd537da97a41485c73:
Wolfgang Denk (1):
Prepare v2010.06-rc1
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (8):
nios2: add gpio support
misc: add gpio based status led driver
nios2: add gpio support to nios2-generic board
spi: add altera spi controller support
nios2: fix r15 issue for gcc4
nios2: fix div64 issue for gcc4
nios2: allow STANDALONE_LOAD_ADDR overriding
nios: remove nios-32 arch
MAINTAINERS | 16 -
MAKEALL | 17 +-
Makefile | 62 ---
README | 15 +-
arch/nios/config.mk | 29 --
arch/nios/cpu/Makefile | 48 ---
arch/nios/cpu/asmi.c | 695
---------------------------------
arch/nios/cpu/config.mk | 24 --
arch/nios/cpu/cpu.c | 78 ----
arch/nios/cpu/interrupts.c | 196 ---------
arch/nios/cpu/serial.c | 135 -------
arch/nios/cpu/spi.c | 195 ---------
arch/nios/cpu/start.S | 238 -----------
arch/nios/cpu/traps.S | 582 ---------------------------
arch/nios/include/asm/bitops.h | 38 --
arch/nios/include/asm/byteorder.h | 30 --
arch/nios/include/asm/cache.h | 1 -
arch/nios/include/asm/config.h | 27 --
arch/nios/include/asm/global_data.h | 54 ---
arch/nios/include/asm/io.h | 141 -------
arch/nios/include/asm/posix_types.h | 63 ---
arch/nios/include/asm/processor.h | 1 -
arch/nios/include/asm/psr.h | 28 --
arch/nios/include/asm/ptrace.h | 36 --
arch/nios/include/asm/status_led.h | 132 -------
arch/nios/include/asm/string.h | 25 --
arch/nios/include/asm/system.h | 4 -
arch/nios/include/asm/types.h | 60 ---
arch/nios/include/asm/u-boot.h | 48 ---
arch/nios/lib/Makefile | 50 ---
arch/nios/lib/board.c | 168 --------
arch/nios/lib/bootm.c | 34 --
arch/nios/lib/cache.c | 32 --
arch/nios/lib/divmod.c | 101 -----
arch/nios/lib/math.h | 16 -
arch/nios/lib/mult.c | 56 ---
arch/nios/lib/time.c | 38 --
arch/nios2/config.mk | 4 +-
arch/nios2/cpu/start.S | 7 -
arch/nios2/include/asm/global_data.h | 2 +-
arch/nios2/include/asm/gpio.h | 52 +++
arch/nios2/lib/Makefile | 3 +-
arch/nios2/lib/divmod.c | 101 -----
arch/nios2/lib/libgcc.c | 592 ++++++++++++++++++++++++++++
arch/nios2/lib/longlong.h | 263 +++++++++++++
arch/nios2/lib/math.h | 16 -
arch/nios2/lib/mult.c | 56 ---
board/altera/dk1c20/Makefile | 51 ---
board/altera/dk1c20/config.mk | 29 --
board/altera/dk1c20/dk1c20.c | 93 -----
board/altera/dk1c20/flash.c | 62 ---
board/altera/dk1c20/misc.c | 33 --
board/altera/dk1c20/u-boot.lds | 70 ----
board/altera/dk1c20/vectors.S | 123 ------
board/altera/dk1s10/Makefile | 51 ---
board/altera/dk1s10/config.mk | 29 --
board/altera/dk1s10/dk1s10.c | 72 ----
board/altera/dk1s10/flash.c | 62 ---
board/altera/dk1s10/misc.c | 33 --
board/altera/dk1s10/u-boot.lds | 70 ----
board/altera/dk1s10/vectors.S | 139 -------
board/altera/nios2-generic/Makefile | 1 +
board/altera/nios2-generic/gpio.c | 55 +++
board/ssv/adnpesc1/Makefile | 51 ---
board/ssv/adnpesc1/adnpesc1.c | 103 -----
board/ssv/adnpesc1/config.mk | 29 --
board/ssv/adnpesc1/flash.c | 66 ---
board/ssv/adnpesc1/misc.c | 40 --
board/ssv/adnpesc1/u-boot.lds | 70 ----
board/ssv/adnpesc1/vectors.S | 138 -------
board/ssv/common/cmd_sled.c | 162 --------
board/ssv/common/flash.c | 207 ----------
board/ssv/common/post.c | 44 --
board/ssv/common/wd_pio.c | 160 --------
common/cmd_bdinfo.c | 19 -
common/cmd_bootm.c | 2 -
common/image.c | 1 -
config.mk | 8 -
doc/README.adnpesc1 | 235 -----------
doc/README.adnpesc1_base32 | 469 ----------------------
doc/README.dk1c20 | 153 --------
doc/README.dk1c20_std32 | 366 -----------------
doc/README.dk1s10 | 131 ------
doc/README.dk1s10_mldk20 | 286 --------------
doc/README.dk1s10_std32 | 354 -----------------
doc/README.dk1s40_std32 | 355 -----------------
doc/README.dk20k200_std32 | 242 ------------
doc/README.nios | 366 -----------------
doc/README.nios_CONFIG_SYS_NIOS_CPU | 140 -------
doc/README.nios_DK | 192 ---------
doc/README.standalone | 13 +-
doc/uImage.FIT/source_file_format.txt | 3 +-
drivers/misc/Makefile | 1 +
drivers/misc/gpio_led.c | 30 ++
drivers/spi/Makefile | 1 +
drivers/spi/altera_spi.c | 165 ++++++++
examples/standalone/stubs.c | 23 +-
fs/fat/fat.c | 3 -
include/configs/ADNPESC1.h | 689
--------------------------------
include/configs/ADNPESC1_base_32.h | 431 --------------------
include/configs/DK1C20.h | 555 --------------------------
include/configs/DK1C20_safe_32.h | 34 --
include/configs/DK1C20_standard_32.h | 279 -------------
include/configs/DK1S10.h | 561 --------------------------
include/configs/DK1S10_mtx_ldk_20.h | 187 ---------
include/configs/DK1S10_safe_32.h | 34 --
include/configs/DK1S10_standard_32.h | 274 -------------
include/configs/nios2-generic.h | 6 +-
include/image.h | 5 -
include/nios-io.h | 183 ---------
include/nios.h | 77 ----
include/watchdog.h | 4 -
112 files changed, 1189 insertions(+), 12340 deletions(-)
delete mode 100644 arch/nios/config.mk
delete mode 100644 arch/nios/cpu/Makefile
delete mode 100644 arch/nios/cpu/asmi.c
delete mode 100644 arch/nios/cpu/config.mk
delete mode 100644 arch/nios/cpu/cpu.c
delete mode 100644 arch/nios/cpu/interrupts.c
delete mode 100644 arch/nios/cpu/serial.c
delete mode 100644 arch/nios/cpu/spi.c
delete mode 100644 arch/nios/cpu/start.S
delete mode 100644 arch/nios/cpu/traps.S
delete mode 100644 arch/nios/include/asm/bitops.h
delete mode 100644 arch/nios/include/asm/byteorder.h
delete mode 100644 arch/nios/include/asm/cache.h
delete mode 100644 arch/nios/include/asm/config.h
delete mode 100644 arch/nios/include/asm/global_data.h
delete mode 100644 arch/nios/include/asm/io.h
delete mode 100644 arch/nios/include/asm/posix_types.h
delete mode 100644 arch/nios/include/asm/processor.h
delete mode 100644 arch/nios/include/asm/psr.h
delete mode 100644 arch/nios/include/asm/ptrace.h
delete mode 100644 arch/nios/include/asm/status_led.h
delete mode 100644 arch/nios/include/asm/string.h
delete mode 100644 arch/nios/include/asm/system.h
delete mode 100644 arch/nios/include/asm/types.h
delete mode 100644 arch/nios/include/asm/u-boot.h
delete mode 100644 arch/nios/lib/Makefile
delete mode 100644 arch/nios/lib/board.c
delete mode 100644 arch/nios/lib/bootm.c
delete mode 100644 arch/nios/lib/cache.c
delete mode 100644 arch/nios/lib/divmod.c
delete mode 100644 arch/nios/lib/math.h
delete mode 100644 arch/nios/lib/mult.c
delete mode 100644 arch/nios/lib/time.c
create mode 100644 arch/nios2/include/asm/gpio.h
delete mode 100644 arch/nios2/lib/divmod.c
create mode 100644 arch/nios2/lib/libgcc.c
create mode 100644 arch/nios2/lib/longlong.h
delete mode 100644 arch/nios2/lib/math.h
delete mode 100644 arch/nios2/lib/mult.c
delete mode 100644 board/altera/dk1c20/Makefile
delete mode 100644 board/altera/dk1c20/config.mk
delete mode 100644 board/altera/dk1c20/dk1c20.c
delete mode 100644 board/altera/dk1c20/flash.c
delete mode 100644 board/altera/dk1c20/misc.c
delete mode 100644 board/altera/dk1c20/u-boot.lds
delete mode 100644 board/altera/dk1c20/vectors.S
delete mode 100644 board/altera/dk1s10/Makefile
delete mode 100644 board/altera/dk1s10/config.mk
delete mode 100644 board/altera/dk1s10/dk1s10.c
delete mode 100644 board/altera/dk1s10/flash.c
delete mode 100644 board/altera/dk1s10/misc.c
delete mode 100644 board/altera/dk1s10/u-boot.lds
delete mode 100644 board/altera/dk1s10/vectors.S
create mode 100644 board/altera/nios2-generic/gpio.c
delete mode 100644 board/ssv/adnpesc1/Makefile
delete mode 100644 board/ssv/adnpesc1/adnpesc1.c
delete mode 100644 board/ssv/adnpesc1/config.mk
delete mode 100644 board/ssv/adnpesc1/flash.c
delete mode 100644 board/ssv/adnpesc1/misc.c
delete mode 100644 board/ssv/adnpesc1/u-boot.lds
delete mode 100644 board/ssv/adnpesc1/vectors.S
delete mode 100644 board/ssv/common/cmd_sled.c
delete mode 100644 board/ssv/common/flash.c
delete mode 100644 board/ssv/common/post.c
delete mode 100644 board/ssv/common/wd_pio.c
delete mode 100644 doc/README.adnpesc1
delete mode 100644 doc/README.adnpesc1_base32
delete mode 100644 doc/README.dk1c20
delete mode 100644 doc/README.dk1c20_std32
delete mode 100644 doc/README.dk1s10
delete mode 100644 doc/README.dk1s10_mldk20
delete mode 100644 doc/README.dk1s10_std32
delete mode 100644 doc/README.dk1s40_std32
delete mode 100644 doc/README.dk20k200_std32
delete mode 100644 doc/README.nios
delete mode 100644 doc/README.nios_CONFIG_SYS_NIOS_CPU
delete mode 100644 doc/README.nios_DK
create mode 100644 drivers/misc/gpio_led.c
create mode 100644 drivers/spi/altera_spi.c
delete mode 100644 include/configs/ADNPESC1.h
delete mode 100644 include/configs/ADNPESC1_base_32.h
delete mode 100644 include/configs/DK1C20.h
delete mode 100644 include/configs/DK1C20_safe_32.h
delete mode 100644 include/configs/DK1C20_standard_32.h
delete mode 100644 include/configs/DK1S10.h
delete mode 100644 include/configs/DK1S10_mtx_ldk_20.h
delete mode 100644 include/configs/DK1S10_safe_32.h
delete mode 100644 include/configs/DK1S10_standard_32.h
delete mode 100644 include/nios-io.h
delete mode 100644 include/nios.h
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-05-28 15:09 Scott McNutt
@ 2010-05-28 18:35 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-05-28 18:35 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4BFFDCAF.7020802@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 01f03bda5b22e5aeae5f02fd537da97a41485c73:
> Wolfgang Denk (1):
> Prepare v2010.06-rc1
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (8):
> nios2: add gpio support
> misc: add gpio based status led driver
> nios2: add gpio support to nios2-generic board
> spi: add altera spi controller support
> nios2: fix r15 issue for gcc4
> nios2: fix div64 issue for gcc4
> nios2: allow STANDALONE_LOAD_ADDR overriding
> nios: remove nios-32 arch
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'd rather be led to hell than managed to heaven.
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-07-12 16:15 Scott McNutt
2010-07-14 20:09 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-07-12 16:15 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
Wolfgang Denk (1):
Make sure that argv[] argument pointers are not modified.
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (6):
nios2: use gc sections to reduce image size
nios2: add fdt support
nios2: add gpio_request
gpio_led: add gpio_request to __led_init
nios2: add spi flash support to nios2-generic board
nios2: remove EP1C20, EP1S10, EP1S40 boards
MAINTAINERS | 3 -
MAKEALL | 3 -
arch/nios2/config.mk | 3 +
arch/nios2/include/asm/gpio.h | 6 +
arch/nios2/lib/bootm.c | 21 +++
board/altera/ep1c20/Makefile | 55 --------
board/altera/ep1c20/config.mk | 31 -----
board/altera/ep1c20/ep1c20.c | 52 -------
board/altera/ep1s10/Makefile | 55 --------
board/altera/ep1s10/config.mk | 31 -----
board/altera/ep1s10/ep1s10.c | 52 -------
board/altera/ep1s40/Makefile | 55 --------
board/altera/ep1s40/config.mk | 31 -----
board/altera/ep1s40/ep1s40.c | 47 -------
board/altera/nios2-generic/custom_fpga.h | 10 ++
board/altera/nios2-generic/gpio.c | 5 +
boards.cfg | 3 -
drivers/misc/gpio_led.c | 12 +-
include/configs/EP1C20.h | 214
------------------------------
include/configs/EP1S10.h | 207
-----------------------------
include/configs/EP1S40.h | 207
-----------------------------
21 files changed, 49 insertions(+), 1054 deletions(-)
delete mode 100644 board/altera/ep1c20/Makefile
delete mode 100644 board/altera/ep1c20/config.mk
delete mode 100644 board/altera/ep1c20/ep1c20.c
delete mode 100644 board/altera/ep1s10/Makefile
delete mode 100644 board/altera/ep1s10/config.mk
delete mode 100644 board/altera/ep1s10/ep1s10.c
delete mode 100644 board/altera/ep1s40/Makefile
delete mode 100644 board/altera/ep1s40/config.mk
delete mode 100644 board/altera/ep1s40/ep1s40.c
delete mode 100644 include/configs/EP1C20.h
delete mode 100644 include/configs/EP1S10.h
delete mode 100644 include/configs/EP1S40.h
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-07-12 16:15 Scott McNutt
@ 2010-07-14 20:09 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-07-14 20:09 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4C3B3FB3.3050009@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934:
> Wolfgang Denk (1):
> Make sure that argv[] argument pointers are not modified.
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (6):
> nios2: use gc sections to reduce image size
> nios2: add fdt support
> nios2: add gpio_request
> gpio_led: add gpio_request to __led_init
> nios2: add spi flash support to nios2-generic board
> nios2: remove EP1C20, EP1S10, EP1S40 boards
>
> MAINTAINERS | 3 -
> MAKEALL | 3 -
> arch/nios2/config.mk | 3 +
> arch/nios2/include/asm/gpio.h | 6 +
> arch/nios2/lib/bootm.c | 21 +++
> board/altera/ep1c20/Makefile | 55 --------
> board/altera/ep1c20/config.mk | 31 -----
> board/altera/ep1c20/ep1c20.c | 52 -------
> board/altera/ep1s10/Makefile | 55 --------
> board/altera/ep1s10/config.mk | 31 -----
> board/altera/ep1s10/ep1s10.c | 52 -------
> board/altera/ep1s40/Makefile | 55 --------
> board/altera/ep1s40/config.mk | 31 -----
> board/altera/ep1s40/ep1s40.c | 47 -------
> board/altera/nios2-generic/custom_fpga.h | 10 ++
> board/altera/nios2-generic/gpio.c | 5 +
> boards.cfg | 3 -
> drivers/misc/gpio_led.c | 12 +-
> include/configs/EP1C20.h | 214
> ------------------------------
> include/configs/EP1S10.h | 207
> -----------------------------
> include/configs/EP1S40.h | 207
> -----------------------------
> 21 files changed, 49 insertions(+), 1054 deletions(-)
> delete mode 100644 board/altera/ep1c20/Makefile
> delete mode 100644 board/altera/ep1c20/config.mk
> delete mode 100644 board/altera/ep1c20/ep1c20.c
> delete mode 100644 board/altera/ep1s10/Makefile
> delete mode 100644 board/altera/ep1s10/config.mk
> delete mode 100644 board/altera/ep1s10/ep1s10.c
> delete mode 100644 board/altera/ep1s40/Makefile
> delete mode 100644 board/altera/ep1s40/config.mk
> delete mode 100644 board/altera/ep1s40/ep1s40.c
> delete mode 100644 include/configs/EP1C20.h
> delete mode 100644 include/configs/EP1S10.h
> delete mode 100644 include/configs/EP1S40.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
"Ja, mach' nur einen Plan, sei nur ein grosses Licht
und mach' dann noch 'nen zweiten Plan, geh'n tun sie beide nicht."
-- Bert Brecht, Dreigroschenoper
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2010-08-25 15:47 Scott McNutt
2010-09-07 19:49 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2010-08-25 15:47 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
Wolfgang Denk (1):
Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (2):
nios2: fix bootm error on fdt args
nios2: fix out of reach case for do_reset
arch/nios2/cpu/cpu.c | 11 +++++------
arch/nios2/include/asm/system.h | 5 +++++
arch/nios2/lib/bootm.c | 2 +-
3 files changed, 11 insertions(+), 7 deletions(-)
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2010-08-25 15:47 Scott McNutt
@ 2010-09-07 19:49 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2010-09-07 19:49 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4C753AF8.7040309@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit bd2313078114c4b44c4a5ce149af43bcb7fc8854:
> Wolfgang Denk (1):
> Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (2):
> nios2: fix bootm error on fdt args
> nios2: fix out of reach case for do_reset
>
> arch/nios2/cpu/cpu.c | 11 +++++------
> arch/nios2/include/asm/system.h | 5 +++++
> arch/nios2/lib/bootm.c | 2 +-
> 3 files changed, 11 insertions(+), 7 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
Es ist nicht genug zu wissen, man mu? auch anwenden; es ist nicht ge-
nug zu wollen, man mu? auch tun. -- Goethe, Maximen und Reflexionen
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2011-02-08 13:43 Scott McNutt
2011-02-09 19:56 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2011-02-08 13:43 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 8d4addc3c3fe1a9ea160a5a1a20a1f934ff3fe97:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (4):
nios2: add gpio_free
altera_spi: add spi_set_speed
nios2: use long for ssize_t
nios2: add gpio_is_valid
arch/nios2/include/asm/gpio.h | 12 ++++++++++++
arch/nios2/include/asm/posix_types.h | 2 +-
board/altera/nios2-generic/custom_fpga.h | 1 +
board/altera/nios2-generic/gpio.c | 11 +++++++++++
drivers/spi/altera_spi.c | 5 +++++
5 files changed, 30 insertions(+), 1 deletions(-)
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2011-02-08 13:43 [U-Boot] [Nios] Pull Request Scott McNutt
@ 2011-02-09 19:56 ` Wolfgang Denk
2011-02-09 20:21 ` [U-Boot] P1022 eTSEC Renaud Barbier
0 siblings, 1 reply; 30+ messages in thread
From: Wolfgang Denk @ 2011-02-09 19:56 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4D514868.6060500@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 8d4addc3c3fe1a9ea160a5a1a20a1f934ff3fe97:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-mpc83xx
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (4):
> nios2: add gpio_free
> altera_spi: add spi_set_speed
> nios2: use long for ssize_t
> nios2: add gpio_is_valid
>
> arch/nios2/include/asm/gpio.h | 12 ++++++++++++
> arch/nios2/include/asm/posix_types.h | 2 +-
> board/altera/nios2-generic/custom_fpga.h | 1 +
> board/altera/nios2-generic/gpio.c | 11 +++++++++++
> drivers/spi/altera_spi.c | 5 +++++
> 5 files changed, 30 insertions(+), 1 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
God runs electromagnetics by wave theory on Monday, Wednesday, and
Friday, and the Devil runs them by quantum theory on Tuesday, Thurs-
day, and Saturday. -- William Bragg
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] P1022 eTSEC
2011-02-09 19:56 ` Wolfgang Denk
@ 2011-02-09 20:21 ` Renaud Barbier
2011-02-09 20:23 ` Renaud Barbier
2011-02-09 22:01 ` Peter Tyser
0 siblings, 2 replies; 30+ messages in thread
From: Renaud Barbier @ 2011-02-09 20:21 UTC (permalink / raw)
To: u-boot
We have a system with a P1022 connected to a 5461S in SGMII mode.
In order to make it work in SGMII mode, I set TBI ANA to 0x4001 as per
AN3869. Note that those bit are described as reserved in the P1022 doc
that I have.
I was then able to transfer data at 100/1000 (10 not tested).
As per AN3869 a value of 0x1a0 is for 1000BASE-X.
Looking at the tsec driver (drivers/net/tsec.c), one can see:
#define TBIANA_SETTINGS ( \
TBIANA_ASYMMETRIC_PAUSE \
| TBIANA_SYMMETRIC_PAUSE \
| TBIANA_FULL_DUPLEX \
)
==> 0x1a0
if (regs->ecntrl & ECNTRL_SGMII_MODE)
tsec_configure_serdes(priv);
That would mean the TBI ANA is not set correctly when SGMII
is reported.
Please can you verify this.
Cheers.
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] P1022 eTSEC
2011-02-09 20:21 ` [U-Boot] P1022 eTSEC Renaud Barbier
@ 2011-02-09 20:23 ` Renaud Barbier
2011-02-09 22:01 ` Peter Tyser
1 sibling, 0 replies; 30+ messages in thread
From: Renaud Barbier @ 2011-02-09 20:23 UTC (permalink / raw)
To: u-boot
Correction: P1013
On 09/02/11 20:21, Renaud Barbier wrote:
> We have a system with a P1022 connected to a 5461S in SGMII mode.
>
> In order to make it work in SGMII mode, I set TBI ANA to 0x4001 as per
> AN3869. Note that those bit are described as reserved in the P1022 doc
> that I have.
> I was then able to transfer data at 100/1000 (10 not tested).
>
> As per AN3869 a value of 0x1a0 is for 1000BASE-X.
>
>
> Looking at the tsec driver (drivers/net/tsec.c), one can see:
>
> #define TBIANA_SETTINGS ( \
> TBIANA_ASYMMETRIC_PAUSE \
> | TBIANA_SYMMETRIC_PAUSE \
> | TBIANA_FULL_DUPLEX \
> )
> ==> 0x1a0
>
> if (regs->ecntrl& ECNTRL_SGMII_MODE)
> tsec_configure_serdes(priv);
>
> That would mean the TBI ANA is not set correctly when SGMII
> is reported.
>
> Please can you verify this.
>
> Cheers.
>
>
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
--
Renaud Barbier
14, Links Place
3/2 great Michael House
Edinburgh, EH67EN
Tel: +44 131 561 3532
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] P1022 eTSEC
2011-02-09 20:21 ` [U-Boot] P1022 eTSEC Renaud Barbier
2011-02-09 20:23 ` Renaud Barbier
@ 2011-02-09 22:01 ` Peter Tyser
2011-02-10 11:28 ` Renaud Barbier
1 sibling, 1 reply; 30+ messages in thread
From: Peter Tyser @ 2011-02-09 22:01 UTC (permalink / raw)
To: u-boot
Hi Renaud,
On Wed, 2011-02-09 at 20:21 +0000, Renaud Barbier wrote:
> We have a system with a P1022 connected to a 5461S in SGMII mode.
>
> In order to make it work in SGMII mode, I set TBI ANA to 0x4001 as per
> AN3869. Note that those bit are described as reserved in the P1022 doc
> that I have.
> I was then able to transfer data at 100/1000 (10 not tested).
>
> As per AN3869 a value of 0x1a0 is for 1000BASE-X.
>
>
> Looking at the tsec driver (drivers/net/tsec.c), one can see:
>
> #define TBIANA_SETTINGS ( \
> TBIANA_ASYMMETRIC_PAUSE \
> | TBIANA_SYMMETRIC_PAUSE \
> | TBIANA_FULL_DUPLEX \
> )
> ==> 0x1a0
>
> if (regs->ecntrl & ECNTRL_SGMII_MODE)
> tsec_configure_serdes(priv);
>
> That would mean the TBI ANA is not set correctly when SGMII
> is reported.
>
> Please can you verify this.
Gotta love those undocumented register bits:) This same issue has been
discussed a number of times, but no one ever noticed the 0x4001 in
AN3869, or assumed it was an error. The bug also didn't seem to affect
some PHYs, eg Vitesse models:
http://old.nabble.com/-U-Boot---PATCH--tsec:-Force-TBI-PHY-to-1000Mbps-full-duplex-in-SGMII-mode-td26188785.html
http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/89059
http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/80256
My company worked around the issue by not enabling auto-negotiation in
the TBI control register via a custom CONFIG_TSEC_TBICR_SETTINGS value.
I just tried removing our workaround and setting TBIANA_SETTINGS to
0x4001, and it looks like it works on a P2020-based board with a
BCM5482S PHY.
It'd be ideal if someone from from Freescale chimed in so we knew what
bits we were hitting in the TBIANA register. The change has my ack
though. Let me know if you don't plan on submitting a change and I'll
update our boards, as well as the value of TBIANA_SETTINGS.
Best,
Peter
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] P1022 eTSEC
2011-02-09 22:01 ` Peter Tyser
@ 2011-02-10 11:28 ` Renaud Barbier
0 siblings, 0 replies; 30+ messages in thread
From: Renaud Barbier @ 2011-02-10 11:28 UTC (permalink / raw)
To: u-boot
I am not ready to submit a change as I have problems to boot my board on
the latest U-boot code.
I tested the change on a U-boot derived from July last year.
The tsec code is very similar to the latest code though.
Cheers,
Renaud.
On 09/02/11 22:01, Peter Tyser wrote:
> Hi Renaud,
>
> On Wed, 2011-02-09 at 20:21 +0000, Renaud Barbier wrote:
>> We have a system with a P1022 connected to a 5461S in SGMII mode.
>>
>> In order to make it work in SGMII mode, I set TBI ANA to 0x4001 as per
>> AN3869. Note that those bit are described as reserved in the P1022 doc
>> that I have.
>> I was then able to transfer data at 100/1000 (10 not tested).
>>
>> As per AN3869 a value of 0x1a0 is for 1000BASE-X.
>>
>>
>> Looking at the tsec driver (drivers/net/tsec.c), one can see:
>>
>> #define TBIANA_SETTINGS ( \
>> TBIANA_ASYMMETRIC_PAUSE \
>> | TBIANA_SYMMETRIC_PAUSE \
>> | TBIANA_FULL_DUPLEX \
>> )
>> ==> 0x1a0
>>
>> if (regs->ecntrl& ECNTRL_SGMII_MODE)
>> tsec_configure_serdes(priv);
>>
>> That would mean the TBI ANA is not set correctly when SGMII
>> is reported.
>>
>> Please can you verify this.
> Gotta love those undocumented register bits:) This same issue has been
> discussed a number of times, but no one ever noticed the 0x4001 in
> AN3869, or assumed it was an error. The bug also didn't seem to affect
> some PHYs, eg Vitesse models:
>
> http://old.nabble.com/-U-Boot---PATCH--tsec:-Force-TBI-PHY-to-1000Mbps-full-duplex-in-SGMII-mode-td26188785.html
> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/89059
> http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/80256
>
> My company worked around the issue by not enabling auto-negotiation in
> the TBI control register via a custom CONFIG_TSEC_TBICR_SETTINGS value.
> I just tried removing our workaround and setting TBIANA_SETTINGS to
> 0x4001, and it looks like it works on a P2020-based board with a
> BCM5482S PHY.
>
> It'd be ideal if someone from from Freescale chimed in so we knew what
> bits we were hitting in the TBIANA register. The change has my ack
> though. Let me know if you don't plan on submitting a change and I'll
> update our boards, as well as the value of TBIANA_SETTINGS.
>
> Best,
> Peter
>
--
Renaud Barbier
14, Links Place
3/2 great Michael House
Edinburgh, EH67EN
Tel: +44 131 561 3532
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2011-04-08 13:13 Scott McNutt
2011-04-10 19:23 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2011-04-08 13:13 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (1):
nios2: reset cfi flash before reading env
board/altera/nios2-generic/nios2-generic.c | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2011-04-08 13:13 [U-Boot] [Nios] " Scott McNutt
@ 2011-04-10 19:23 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2011-04-10 19:23 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4D9F09EC.70300@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 4db2fa7f9446d0f2fe8db3d62184b1212fe22707:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (1):
> nios2: reset cfi flash before reading env
>
> board/altera/nios2-generic/nios2-generic.c | 16 ++++++++++++++++
> 1 files changed, 16 insertions(+), 0 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
Philosophy is a game with objectives and no rules.
Mathematics is a game with rules and no objectives.
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] Nios Pull Request
@ 2011-05-17 1:22 Scott McNutt
2011-05-18 12:30 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2011-05-17 1:22 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit 535abb96fb665402894b820f934deaca61ce3d3e:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-nand-flash
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Thomas Chou (1):
nios2: Make STANDALONE_LOAD_ADDR configurable per board
arch/nios2/config.mk | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] Nios Pull Request
2011-05-17 1:22 [U-Boot] Nios " Scott McNutt
@ 2011-05-18 12:30 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2011-05-18 12:30 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4DD1CDD4.4040202@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit 535abb96fb665402894b820f934deaca61ce3d3e:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-nand-flash
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Thomas Chou (1):
> nios2: Make STANDALONE_LOAD_ADDR configurable per board
>
> arch/nios2/config.mk | 2 +-
> 1 files changed, 1 insertions(+), 1 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
Each honest calling, each walk of life, has its own elite, its own
aristocracy based on excellence of performance. - James Bryant Conant
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
@ 2011-06-30 13:35 Scott McNutt
2011-07-01 8:02 ` Wolfgang Denk
0 siblings, 1 reply; 30+ messages in thread
From: Scott McNutt @ 2011-06-30 13:35 UTC (permalink / raw)
To: u-boot
Dear Wolfgang,
The following changes since commit b1af6f532e0d348b153d5c148369229d24af361a:
Wolfgang Denk (1):
Prepare v2011.06
are available in the git repository at:
git://git.denx.de/u-boot-nios.git next
Mike Frysinger (1):
nios2: move generic config to boards.cfg
MAKEALL | 4 +---
Makefile | 14 --------------
boards.cfg | 1 +
3 files changed, 2 insertions(+), 17 deletions(-)
Regards,
--Scott
^ permalink raw reply [flat|nested] 30+ messages in thread
* [U-Boot] [Nios] Pull Request
2011-06-30 13:35 [U-Boot] [Nios] Pull Request Scott McNutt
@ 2011-07-01 8:02 ` Wolfgang Denk
0 siblings, 0 replies; 30+ messages in thread
From: Wolfgang Denk @ 2011-07-01 8:02 UTC (permalink / raw)
To: u-boot
Dear Scott McNutt,
In message <4E0C7BBE.4050607@psyent.com> you wrote:
> Dear Wolfgang,
>
> The following changes since commit b1af6f532e0d348b153d5c148369229d24af361a:
> Wolfgang Denk (1):
> Prepare v2011.06
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-nios.git next
>
> Mike Frysinger (1):
> nios2: move generic config to boards.cfg
>
> MAKEALL | 4 +---
> Makefile | 14 --------------
> boards.cfg | 1 +
> 3 files changed, 2 insertions(+), 17 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
But the only way of discovering the limits of the possible is to
venture a little way past them into the impossible.
- _Profiles of the Future_ (1962; rev. 1973)
``Hazards of Prophecy: The Failure of Imagination''
^ permalink raw reply [flat|nested] 30+ messages in thread
end of thread, other threads:[~2011-07-01 8:02 UTC | newest]
Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-08 13:43 [U-Boot] [Nios] Pull Request Scott McNutt
2011-02-09 19:56 ` Wolfgang Denk
2011-02-09 20:21 ` [U-Boot] P1022 eTSEC Renaud Barbier
2011-02-09 20:23 ` Renaud Barbier
2011-02-09 22:01 ` Peter Tyser
2011-02-10 11:28 ` Renaud Barbier
-- strict thread matches above, loose matches on Subject: below --
2011-06-30 13:35 [U-Boot] [Nios] Pull Request Scott McNutt
2011-07-01 8:02 ` Wolfgang Denk
2011-05-17 1:22 [U-Boot] Nios " Scott McNutt
2011-05-18 12:30 ` Wolfgang Denk
2011-04-08 13:13 [U-Boot] [Nios] " Scott McNutt
2011-04-10 19:23 ` Wolfgang Denk
2010-08-25 15:47 Scott McNutt
2010-09-07 19:49 ` Wolfgang Denk
2010-07-12 16:15 Scott McNutt
2010-07-14 20:09 ` Wolfgang Denk
2010-05-28 15:09 Scott McNutt
2010-05-28 18:35 ` Wolfgang Denk
2010-04-24 22:31 Scott McNutt
2010-04-27 20:57 ` Wolfgang Denk
2010-04-16 20:58 Scott McNutt
2010-04-17 14:41 ` Wolfgang Denk
2010-04-17 15:46 ` Thomas Chou
2010-04-19 20:40 ` Scott McNutt
2010-04-23 0:11 ` Scott McNutt
2010-04-24 19:25 ` Wolfgang Denk
2010-04-02 17:06 Scott McNutt
2010-04-07 22:05 ` Wolfgang Denk
2010-03-18 15:47 Scott McNutt
2010-03-20 22:40 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox