* [U-Boot-Users] [GIT PULL] AVR32 update
@ 2007-12-17 10:18 Haavard Skinnemoen
2007-12-26 23:47 ` Wolfgang Denk
0 siblings, 1 reply; 8+ messages in thread
From: Haavard Skinnemoen @ 2007-12-17 10:18 UTC (permalink / raw)
To: u-boot
Hi Wolfgang,
The following changes since commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2:
Wolfgang Denk (1):
Release v1.3.1
are available in the git repository at:
git://www.denx.de/git/u-boot-avr32.git master
This adds support for two new daughterboards for the ATSTK1000:
ATSTK1003 and ATSTK1004. No ATNGW100 support yet, unfortunately, but
the major blocker for ATNGW100 support, the cfi_flash driver, has been
resolved so I'll submit the ATNGW100 addition for review shortly after
the cfi_flash changes have been merged.
Haavard Skinnemoen (10):
atmel_mci: Show SR when block read fails
AVR32: Rename at32ap7000 -> at32ap700x
AVR32: Make some AT32AP700x peripherals optional
AVR32: Add support for the ATSTK1003 board
AVR32: Add support for the ATSTK1004 board
Add ATSTK100[234] to MAINTAINERS
README: Remove ATSTK1000 daughterboard list
AVR32: Fix wrong pin setup for USART3
AVR32: Enable interrupts at bootup
AVR32: Fix logic inversion in disable_interrupts()
MAINTAINERS | 5 +-
MAKEALL | 2 +
Makefile | 8 +-
README | 4 +-
cpu/at32ap/{at32ap7000 => at32ap700x}/Makefile | 0
cpu/at32ap/{at32ap7000 => at32ap700x}/gpio.c | 9 +-
cpu/at32ap/atmel_mci.c | 13 +-
include/asm-avr32/arch-at32ap700x/chip-features.h | 34 ++++
.../{arch-at32ap7000 => arch-at32ap700x}/clk.h | 8 +
.../{arch-at32ap7000 => arch-at32ap700x}/gpio.h | 8 +
.../hmatrix2.h | 0
.../memory-map.h | 0
.../{arch-at32ap7000 => arch-at32ap700x}/mmc.h | 0
include/configs/atstk1003.h | 184 +++++++++++++++++++
include/configs/atstk1004.h | 185 ++++++++++++++++++++
lib_avr32/board.c | 2 +
lib_avr32/interrupts.c | 2 +-
17 files changed, 451 insertions(+), 13 deletions(-)
rename cpu/at32ap/{at32ap7000 => at32ap700x}/Makefile (100%)
rename cpu/at32ap/{at32ap7000 => at32ap700x}/gpio.c (95%)
create mode 100644 include/asm-avr32/arch-at32ap700x/chip-features.h
rename include/asm-avr32/{arch-at32ap7000 => arch-at32ap700x}/clk.h (92%)
rename include/asm-avr32/{arch-at32ap7000 => arch-at32ap700x}/gpio.h (98%)
rename include/asm-avr32/{arch-at32ap7000 => arch-at32ap700x}/hmatrix2.h (100%)
rename include/asm-avr32/{arch-at32ap7000 => arch-at32ap700x}/memory-map.h (100%)
rename include/asm-avr32/{arch-at32ap7000 => arch-at32ap700x}/mmc.h (100%)
create mode 100644 include/configs/atstk1003.h
create mode 100644 include/configs/atstk1004.h
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] AVR32 update
2007-12-17 10:18 [U-Boot-Users] [GIT PULL] AVR32 update Haavard Skinnemoen
@ 2007-12-26 23:47 ` Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2007-12-26 23:47 UTC (permalink / raw)
To: u-boot
In message <20071217111820.593e0d69@dhcp-252-066.norway.atmel.com> you wrote:
>
> The following changes since commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2:
> Wolfgang Denk (1):
> Release v1.3.1
>
> are available in the git repository at:
>
> git://www.denx.de/git/u-boot-avr32.git master
Merged. 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
There are three ways to get something done: do it yourself, hire
someone, or forbid your kids to do it.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] AVR32 update
@ 2008-01-18 8:58 Haavard Skinnemoen
2008-01-23 13:34 ` Wolfgang Denk
0 siblings, 1 reply; 8+ messages in thread
From: Haavard Skinnemoen @ 2008-01-18 8:58 UTC (permalink / raw)
To: u-boot
The following changes since commit f188896c2f1594fe749fdb99bbc8c54023cfab3a:
Wolfgang Denk (1):
Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master
are available in the git repository at:
git://www.denx.de/git/u-boot-avr32.git master
Yeah, I know it's one day too late, but since I haven't seen any
announcement that the merge window has closed yet (nor any -rc
announcement), I decided to make a run for it.
Please feel free to reject it if you've already closed the merged
window (without telling anyone ;) and I'll send you a new request with
only the bug fix.
Haavard Skinnemoen (2):
AVR32: Initialize ipaddr, loadaddr and bootfile at startup
AVR32: ATNGW100 board support
MAINTAINERS | 1 +
MAKEALL | 1 +
Makefile | 3 +
board/atmel/atngw100/Makefile | 40 +++++++++
board/atmel/atngw100/atngw100.c | 73 ++++++++++++++++
board/atmel/atngw100/config.mk | 3 +
board/atmel/atngw100/eth.c | 36 ++++++++
board/atmel/atngw100/u-boot.lds | 80 +++++++++++++++++
include/configs/atngw100.h | 182 +++++++++++++++++++++++++++++++++++++++
lib_avr32/board.c | 10 ++
net/eth.c | 4 +
11 files changed, 433 insertions(+), 0 deletions(-)
create mode 100644 board/atmel/atngw100/Makefile
create mode 100644 board/atmel/atngw100/atngw100.c
create mode 100644 board/atmel/atngw100/config.mk
create mode 100644 board/atmel/atngw100/eth.c
create mode 100644 board/atmel/atngw100/u-boot.lds
create mode 100644 include/configs/atngw100.h
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] AVR32 update
2008-01-18 8:58 [U-Boot-Users] [GIT PULL] AVR32 update Haavard Skinnemoen
@ 2008-01-23 13:34 ` Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2008-01-23 13:34 UTC (permalink / raw)
To: u-boot
In message <20080118095852.4b945a45@siona> you wrote:
> The following changes since commit f188896c2f1594fe749fdb99bbc8c54023cfab3a:
> Wolfgang Denk (1):
> Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master
>
> are available in the git repository at:
>
> git://www.denx.de/git/u-boot-avr32.git master
>
> Yeah, I know it's one day too late, but since I haven't seen any
> announcement that the merge window has closed yet (nor any -rc
> announcement), I decided to make a run for it.
>
> Please feel free to reject it if you've already closed the merged
> window (without telling anyone ;) and I'll send you a new request with
> only the bug fix.
>
> Haavard Skinnemoen (2):
> AVR32: Initialize ipaddr, loadaddr and bootfile at startup
> AVR32: ATNGW100 board support
Done, 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] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] avr32 update
@ 2008-05-29 17:41 Haavard Skinnemoen
2008-06-04 22:05 ` Wolfgang Denk
0 siblings, 1 reply; 8+ messages in thread
From: Haavard Skinnemoen @ 2008-05-29 17:41 UTC (permalink / raw)
To: u-boot
Hi Wolfgang,
Please pull the 'master' branch of
git://git.denx.de/u-boot-avr32.git master
to receive the below updates.
The SPI stuff and a few other patches I've posted are not included here
since they aren't really avr32-related. I'm hoping you'll still apply
them before the merge window closes.
David Brownell (2):
avr32: stk1002 and ngw100 convergence
avr32: Disable the AP7000 internal watchdog on startup
Haavard Skinnemoen (15):
avr32: Use correct condition around macb clock accessors
avr32: Get rid of the .flashprog section
avr32: Add support for the ATSTK1006 board
avr32: Clean up the HMATRIX code
avr32: Remove unused file cpu/at32ap/pm.c
avr32: Use new-style Makefile for the at32ap platform
avr32: Rename pm_init() as clk_init() and make SoC-specific
avr32: Put memset in its own section
avr32: Use the same entry point for reset and exception handling
avr32: Do stricter stack checking in the exception handler
avr32: Rework SDRAM initialization code
avr32: Fix two warnings in atmel_mci.c
avr32: Fix wrong error flags in atmel_mci driver
avr32: Compile atmel_mci.o conditionally
avr32: Fix theoretical race in udelay()
MAINTAINERS | 1 +
MAKEALL | 1 +
Makefile | 3 +
board/atmel/atngw100/atngw100.c | 27 ++-
board/atmel/atngw100/u-boot.lds | 9 +-
board/atmel/atstk1000/atstk1000.c | 54 +++++-
board/atmel/atstk1000/flash.c | 6 +-
board/atmel/atstk1000/u-boot.lds | 9 +-
cpu/at32ap/Makefile | 20 ++-
cpu/at32ap/at32ap700x/Makefile | 2 +-
cpu/at32ap/at32ap700x/clk.c | 68 +++++++
cpu/at32ap/{ => at32ap700x}/sm.h | 0
cpu/at32ap/atmel_mci.c | 12 +-
cpu/at32ap/cpu.c | 50 +-----
cpu/at32ap/entry.S | 64 -------
cpu/at32ap/exception.c | 3 +-
cpu/at32ap/hsdramc.c | 102 ++++-------
cpu/at32ap/interrupts.c | 16 +-
cpu/at32ap/pm.c | 42 -----
cpu/at32ap/start.S | 129 ++++++++++++-
include/asm-avr32/arch-at32ap700x/clk.h | 4 +-
include/asm-avr32/arch-at32ap700x/hmatrix.h | 61 ++++++
include/asm-avr32/arch-at32ap700x/hmatrix2.h | 232 ------------------------
include/asm-avr32/arch-at32ap700x/memory-map.h | 20 ++
include/asm-avr32/hmatrix-common.h | 131 +++++++++++++
include/asm-avr32/sdram.h | 27 +++-
include/asm-avr32/sections.h | 7 -
include/configs/atngw100.h | 26 +--
include/configs/atstk1002.h | 19 +-
include/configs/atstk1003.h | 15 +-
include/configs/atstk1004.h | 16 +-
include/configs/atstk1006.h | 203 +++++++++++++++++++++
lib_avr32/memset.S | 2 +-
33 files changed, 817 insertions(+), 564 deletions(-)
create mode 100644 cpu/at32ap/at32ap700x/clk.c
rename cpu/at32ap/{ => at32ap700x}/sm.h (100%)
delete mode 100644 cpu/at32ap/entry.S
delete mode 100644 cpu/at32ap/pm.c
create mode 100644 include/asm-avr32/arch-at32ap700x/hmatrix.h
delete mode 100644 include/asm-avr32/arch-at32ap700x/hmatrix2.h
create mode 100644 include/asm-avr32/hmatrix-common.h
create mode 100644 include/configs/atstk1006.h
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] avr32 update
2008-05-29 17:41 Haavard Skinnemoen
@ 2008-06-04 22:05 ` Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2008-06-04 22:05 UTC (permalink / raw)
To: u-boot
In message <20080529194141.50ff3adf@hskinnemo-gx745.norway.atmel.com> you wrote:
>
> Please pull the 'master' branch of
>
> git://git.denx.de/u-boot-avr32.git master
>
> to receive the below updates.
>
> The SPI stuff and a few other patches I've posted are not included here
> since they aren't really avr32-related. I'm hoping you'll still apply
> them before the merge window closes.
>
> David Brownell (2):
> avr32: stk1002 and ngw100 convergence
> avr32: Disable the AP7000 internal watchdog on startup
>
> Haavard Skinnemoen (15):
> avr32: Use correct condition around macb clock accessors
> avr32: Get rid of the .flashprog section
> avr32: Add support for the ATSTK1006 board
> avr32: Clean up the HMATRIX code
> avr32: Remove unused file cpu/at32ap/pm.c
> avr32: Use new-style Makefile for the at32ap platform
> avr32: Rename pm_init() as clk_init() and make SoC-specific
> avr32: Put memset in its own section
> avr32: Use the same entry point for reset and exception handling
> avr32: Do stricter stack checking in the exception handler
> avr32: Rework SDRAM initialization code
> avr32: Fix two warnings in atmel_mci.c
> avr32: Fix wrong error flags in atmel_mci driver
> avr32: Compile atmel_mci.o conditionally
> avr32: Fix theoretical race in udelay()
>
> MAINTAINERS | 1 +
> MAKEALL | 1 +
> Makefile | 3 +
> board/atmel/atngw100/atngw100.c | 27 ++-
> board/atmel/atngw100/u-boot.lds | 9 +-
> board/atmel/atstk1000/atstk1000.c | 54 +++++-
> board/atmel/atstk1000/flash.c | 6 +-
> board/atmel/atstk1000/u-boot.lds | 9 +-
> cpu/at32ap/Makefile | 20 ++-
> cpu/at32ap/at32ap700x/Makefile | 2 +-
> cpu/at32ap/at32ap700x/clk.c | 68 +++++++
> cpu/at32ap/{ => at32ap700x}/sm.h | 0
> cpu/at32ap/atmel_mci.c | 12 +-
> cpu/at32ap/cpu.c | 50 +-----
> cpu/at32ap/entry.S | 64 -------
> cpu/at32ap/exception.c | 3 +-
> cpu/at32ap/hsdramc.c | 102 ++++-------
> cpu/at32ap/interrupts.c | 16 +-
> cpu/at32ap/pm.c | 42 -----
> cpu/at32ap/start.S | 129 ++++++++++++-
> include/asm-avr32/arch-at32ap700x/clk.h | 4 +-
> include/asm-avr32/arch-at32ap700x/hmatrix.h | 61 ++++++
> include/asm-avr32/arch-at32ap700x/hmatrix2.h | 232 ------------------------
> include/asm-avr32/arch-at32ap700x/memory-map.h | 20 ++
> include/asm-avr32/hmatrix-common.h | 131 +++++++++++++
> include/asm-avr32/sdram.h | 27 +++-
> include/asm-avr32/sections.h | 7 -
> include/configs/atngw100.h | 26 +--
> include/configs/atstk1002.h | 19 +-
> include/configs/atstk1003.h | 15 +-
> include/configs/atstk1004.h | 16 +-
> include/configs/atstk1006.h | 203 +++++++++++++++++++++
> lib_avr32/memset.S | 2 +-
> 33 files changed, 817 insertions(+), 564 deletions(-)
> create mode 100644 cpu/at32ap/at32ap700x/clk.c
> rename cpu/at32ap/{ => at32ap700x}/sm.h (100%)
> delete mode 100644 cpu/at32ap/entry.S
> delete mode 100644 cpu/at32ap/pm.c
> create mode 100644 include/asm-avr32/arch-at32ap700x/hmatrix.h
> delete mode 100644 include/asm-avr32/arch-at32ap700x/hmatrix2.h
> create mode 100644 include/asm-avr32/hmatrix-common.h
> create mode 100644 include/configs/atstk1006.h
Done. 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
The easiest way to figure the cost of living is to take your income
and add ten percent.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] avr32 update
@ 2008-07-04 15:24 Haavard Skinnemoen
2008-07-06 22:40 ` Wolfgang Denk
0 siblings, 1 reply; 8+ messages in thread
From: Haavard Skinnemoen @ 2008-07-04 15:24 UTC (permalink / raw)
To: u-boot
Hi Wolfgang,
Please pull the master branch of the avr32 tree:
git://git.denx.de/u-boot-avr32.git master
to receive the following updates. I consider all of them to be fixes:
Having no users of the new SPI flash framework is a rather serious bug
IMO, as it prevents people from testing it.
All three patches were posted to the list two weeks ago. Nobody has
posted any comments.
Haavard Skinnemoen (2):
avr32: Fix SPI portmux initialization
avr32: Enable SPI flash support on ATNGW100
Peter Ma (1):
avr32: Add GPIO manipulation functions
board/atmel/atngw100/atngw100.c | 25 +++++++++++++
cpu/at32ap/at32ap700x/gpio.c | 56 ++++++++++++++++++------------
cpu/at32ap/pio.c | 56 ++++++++++++++++++++++++++++++
include/asm-avr32/arch-at32ap700x/gpio.h | 8 ++++
include/configs/atngw100.h | 6 +++
5 files changed, 129 insertions(+), 22 deletions(-)
^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot-Users] [GIT PULL] avr32 update
2008-07-04 15:24 [U-Boot-Users] [GIT PULL] avr32 update Haavard Skinnemoen
@ 2008-07-06 22:40 ` Wolfgang Denk
0 siblings, 0 replies; 8+ messages in thread
From: Wolfgang Denk @ 2008-07-06 22:40 UTC (permalink / raw)
To: u-boot
In message <20080704172428.7b57f80c@hskinnemo-gx745.norway.atmel.com> you wrote:
>
> Please pull the master branch of the avr32 tree:
>
> git://git.denx.de/u-boot-avr32.git master
>
> to receive the following updates. I consider all of them to be fixes:
> Having no users of the new SPI flash framework is a rather serious bug
> IMO, as it prevents people from testing it.
>
> All three patches were posted to the list two weeks ago. Nobody has
> posted any comments.
>
> Haavard Skinnemoen (2):
> avr32: Fix SPI portmux initialization
> avr32: Enable SPI flash support on ATNGW100
>
> Peter Ma (1):
> avr32: Add GPIO manipulation functions
>
> board/atmel/atngw100/atngw100.c | 25 +++++++++++++
> cpu/at32ap/at32ap700x/gpio.c | 56 ++++++++++++++++++------------
> cpu/at32ap/pio.c | 56 ++++++++++++++++++++++++++++++
> include/asm-avr32/arch-at32ap700x/gpio.h | 8 ++++
> include/configs/atngw100.h | 6 +++
> 5 files changed, 129 insertions(+), 22 deletions(-)
Done, 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
Of course there's no reason for it, it's just our policy.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2008-07-06 22:40 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-18 8:58 [U-Boot-Users] [GIT PULL] AVR32 update Haavard Skinnemoen
2008-01-23 13:34 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2008-07-04 15:24 [U-Boot-Users] [GIT PULL] avr32 update Haavard Skinnemoen
2008-07-06 22:40 ` Wolfgang Denk
2008-05-29 17:41 Haavard Skinnemoen
2008-06-04 22:05 ` Wolfgang Denk
2007-12-17 10:18 [U-Boot-Users] [GIT PULL] AVR32 update Haavard Skinnemoen
2007-12-26 23:47 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox