* [U-Boot-Users] AT91 pull request
@ 2008-04-01 5:51 Jean-Christophe PLAGNIOL-VILLARD
2008-04-07 22:20 ` Wolfgang Denk
0 siblings, 1 reply; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-04-01 5:51 UTC (permalink / raw)
To: u-boot
Please pull u-boot-at91
The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82:
Bartlomiej Sieka (1):
Fix host tool build breakage, take two
are available in the git repository at:
git://www.denx.de/git/u-boot-at91.git master
David Brownell (2):
add missing ARM boards to MAKEALL
use correct at91rm9200 register name
Jean-Christophe PLAGNIOL-VILLARD (5):
use correct at91rm9200 register name in m501sk board
AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
Stelian Pop (9):
Fix CFG_NO_FLASH compilation.
Cleanup DataFlash partition handling
Use timer_init() instead of board supplied interrupt_init()
Move at91cap9 specific files to at91sam9 directory
Import several header files from Linux
Finish header files reworking
Port AT91CAP9 to the new headers
Add support for AT91SAM9260EK
Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
MAINTAINERS | 5 +
MAKEALL | 4 +
Makefile | 5 +-
board/atmel/at91cap9adk/Makefile | 8 +-
board/atmel/at91cap9adk/at91cap9adk.c | 231 +++++-----
board/atmel/at91cap9adk/led.c | 43 +-
board/atmel/at91cap9adk/nand.c | 11 +-
.../atmel/at91sam9260ek}/Makefile | 24 +-
board/atmel/at91sam9260ek/at91sam9260ek.c | 236 +++++++++
board/atmel/at91sam9260ek/config.mk | 1 +
.../ether.c => board/atmel/at91sam9260ek/led.c | 41 ++-
board/atmel/at91sam9260ek/nand.c | 76 +++
.../clk.h => board/atmel/at91sam9260ek/u-boot.lds | 48 ++-
board/m501sk/memsetup.S | 8 +-
common/cmd_flash.c | 25 +-
common/cmd_mem.c | 6 +-
cpu/arm920t/at91rm9200/lowlevel_init.S | 6 +-
cpu/arm926ejs/at91cap9/spi.c | 119 -----
cpu/arm926ejs/{at91cap9 => at91sam9}/Makefile | 9 +-
cpu/arm926ejs/{at91cap9 => at91sam9}/config.mk | 0
cpu/arm926ejs/{at91cap9 => at91sam9}/ether.c | 6 +-
.../{at91cap9 => at91sam9}/lowlevel_init.S | 2 +-
cpu/arm926ejs/at91sam9/spi.c | 157 ++++++
cpu/arm926ejs/{at91cap9 => at91sam9}/timer.c | 32 +-
cpu/arm926ejs/{at91cap9 => at91sam9}/usb.c | 12 +-
cpu/arm926ejs/interrupts.c | 2 +-
drivers/mtd/Makefile | 8 +-
drivers/mtd/dataflash.c | 83 +---
drivers/net/macb.c | 4 +-
include/asm-arm/arch-at91cap9/AT91CAP9.h | 518 --------------------
include/asm-arm/arch-at91cap9/hardware.h | 38 --
include/asm-arm/arch-at91sam9/at91_pio.h | 49 ++
include/asm-arm/arch-at91sam9/at91_pit.h | 29 ++
include/asm-arm/arch-at91sam9/at91_pmc.h | 99 ++++
include/asm-arm/arch-at91sam9/at91_rstc.h | 38 ++
include/asm-arm/arch-at91sam9/at91_spi.h | 105 ++++
include/asm-arm/arch-at91sam9/at91cap9.h | 125 +++++
include/asm-arm/arch-at91sam9/at91cap9_matrix.h | 132 +++++
include/asm-arm/arch-at91sam9/at91sam9260.h | 124 +++++
include/asm-arm/arch-at91sam9/at91sam9260_matrix.h | 78 +++
include/asm-arm/arch-at91sam9/at91sam926x_mc.h | 140 ++++++
.../asm-arm/{arch-at91cap9 => arch-at91sam9}/clk.h | 4 +-
include/asm-arm/arch-at91sam9/gpio.h | 366 ++++++++++++++
include/asm-arm/arch-at91sam9/hardware.h | 56 +++
include/asm-arm/arch-at91sam9/io.h | 40 ++
.../{arch-at91cap9 => arch-at91sam9}/memory-map.h | 10 +-
include/configs/at91cap9adk.h | 61 +--
include/configs/at91rm9200dk.h | 2 +-
include/configs/at91sam9260ek.h | 191 +++++++
include/configs/cmc_pu2.h | 2 +-
include/configs/csb637.h | 2 +-
include/configs/mp2usb.h | 2 +-
include/dataflash.h | 6 +-
net/eth.c | 6 +-
54 files changed, 2406 insertions(+), 1029 deletions(-)
copy {cpu/arm926ejs/at91cap9 => board/atmel/at91sam9260ek}/Makefile (73%)
create mode 100644 board/atmel/at91sam9260ek/at91sam9260ek.c
create mode 100644 board/atmel/at91sam9260ek/config.mk
copy cpu/arm926ejs/at91cap9/ether.c => board/atmel/at91sam9260ek/led.c (56%)
create mode 100644 board/atmel/at91sam9260ek/nand.c
copy include/asm-arm/arch-at91cap9/clk.h => board/atmel/at91sam9260ek/u-boot.lds (56%)
delete mode 100644 cpu/arm926ejs/at91cap9/spi.c
rename cpu/arm926ejs/{at91cap9 => at91sam9}/Makefile (87%)
rename cpu/arm926ejs/{at91cap9 => at91sam9}/config.mk (100%)
rename cpu/arm926ejs/{at91cap9 => at91sam9}/ether.c (89%)
rename cpu/arm926ejs/{at91cap9 => at91sam9}/lowlevel_init.S (97%)
create mode 100644 cpu/arm926ejs/at91sam9/spi.c
rename cpu/arm926ejs/{at91cap9 => at91sam9}/timer.c (84%)
rename cpu/arm926ejs/{at91cap9 => at91sam9}/usb.c (83%)
delete mode 100644 include/asm-arm/arch-at91cap9/AT91CAP9.h
delete mode 100644 include/asm-arm/arch-at91cap9/hardware.h
create mode 100644 include/asm-arm/arch-at91sam9/at91_pio.h
create mode 100644 include/asm-arm/arch-at91sam9/at91_pit.h
create mode 100644 include/asm-arm/arch-at91sam9/at91_pmc.h
create mode 100644 include/asm-arm/arch-at91sam9/at91_rstc.h
create mode 100644 include/asm-arm/arch-at91sam9/at91_spi.h
create mode 100644 include/asm-arm/arch-at91sam9/at91cap9.h
create mode 100644 include/asm-arm/arch-at91sam9/at91cap9_matrix.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9260.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9260_matrix.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam926x_mc.h
rename include/asm-arm/{arch-at91cap9 => arch-at91sam9}/clk.h (95%)
create mode 100644 include/asm-arm/arch-at91sam9/gpio.h
create mode 100644 include/asm-arm/arch-at91sam9/hardware.h
create mode 100644 include/asm-arm/arch-at91sam9/io.h
rename include/asm-arm/{arch-at91cap9 => arch-at91sam9}/memory-map.h (85%)
create mode 100644 include/configs/at91sam9260ek.h
Best Reagards,
J.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
2008-04-01 5:51 [U-Boot-Users] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
@ 2008-04-07 22:20 ` Wolfgang Denk
0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-04-07 22:20 UTC (permalink / raw)
To: u-boot
In message <20080401055145.GD11802@game.jcrosoft.org> you wrote:
> Please pull u-boot-at91
>
> The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82:
> Bartlomiej Sieka (1):
> Fix host tool build breakage, take two
>
> are available in the git repository at:
>
> git://www.denx.de/git/u-boot-at91.git master
>
> David Brownell (2):
> add missing ARM boards to MAKEALL
> use correct at91rm9200 register name
>
> Jean-Christophe PLAGNIOL-VILLARD (5):
> use correct at91rm9200 register name in m501sk board
> AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
> AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
> AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
> dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
>
> Stelian Pop (9):
> Fix CFG_NO_FLASH compilation.
> Cleanup DataFlash partition handling
> Use timer_init() instead of board supplied interrupt_init()
> Move at91cap9 specific files to at91sam9 directory
> Import several header files from Linux
> Finish header files reworking
> Port AT91CAP9 to the new headers
> Add support for AT91SAM9260EK
> Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
Thanks. Applied.
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 last thing one knows in constructing a work is what to put first.
- Blaise Pascal
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
@ 2008-05-31 20:05 Jean-Christophe PLAGNIOL-VILLARD
2008-05-31 21:49 ` Matt Gessner
2008-06-04 22:05 ` Wolfgang Denk
0 siblings, 2 replies; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-05-31 20:05 UTC (permalink / raw)
To: u-boot
Please pull at91
The following changes since commit 2c8d41969b47eb0b973912830c58689b2ba0e50a:
Wolfgang Denk (1):
Merge branch 'master' of git://git.denx.de/u-boot-testing
are available in the git repository at:
git://git.denx.de/u-boot-at91.git for-1.3.4
Jean-Christophe PLAGNIOL-VILLARD (2):
Merging Stelian Pop AT91 patches
MAKEALL: add at91 list
Patrice Vilchez (1):
[AT91SAM9] Fix NAND FLASH timings
Stelian Pop (26):
Fix @ -> <at> substitution
Update origin and copyright information in arch-at91sam9 header files
Add copyright information in Atmel boards partition.c
Add proper copyright notices in Atmel boards Makefiles
Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
AT91CAP9ADK: Handle 8 or 16 bit NAND
AT91CAP9ADK: Normalize SPI timings
AT91CAP9ADK: Normalize BOOTARGS
AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
AT91SAM9260EK: Handle 8 or 16 bit NAND
AT91SAM9260EK: Normalize SPI timings
AT91SAM9260EK: Normalize BOOTARGS
AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
AT91SAM9261EK support
AT91SAM9263EK support
AT91SAM9RLEK support
Add ATMEL LCD driver
AT91CAP9ADK: hook up the ATMEL LCD driver
AT91SAM9261EK: hook up the ATMEL LCD driver
AT91SAM9263EK: hook up the ATMEL LCD driver
AT91SAM9RLEK: hook up the ATMEL LCD driver
Use custom logo for Atmel boards
Support AT91CAP9 revC CPUs
AT91: Cleanup unused config header file definitions.
Cleanup nand_info[] declaration.
Fix boot from NOR due to incorrect reset delay.
CHANGELOG | 12 +-
MAINTAINERS | 3 +
MAKEALL | 23 ++-
Makefile | 9 +
README | 4 +
board/atmel/at91cap9adk/Makefile | 4 +
board/atmel/at91cap9adk/at91cap9adk.c | 107 +++++++-
board/atmel/at91cap9adk/nand.c | 3 +
board/atmel/at91sam9260ek/Makefile | 4 +
board/atmel/at91sam9260ek/at91sam9260ek.c | 15 +-
board/atmel/at91sam9260ek/nand.c | 3 +
board/atmel/at91sam9260ek/u-boot.lds | 57 ----
board/atmel/at91sam9261ek/Makefile | 57 ++++
board/atmel/at91sam9261ek/at91sam9261ek.c | 258 ++++++++++++++++
board/atmel/at91sam9261ek/config.mk | 1 +
board/atmel/at91sam9261ek/led.c | 78 +++++
board/atmel/at91sam9261ek/nand.c | 79 +++++
board/atmel/at91sam9261ek/partition.c | 40 +++
board/atmel/at91sam9263ek/Makefile | 57 ++++
board/atmel/at91sam9263ek/at91sam9263ek.c | 310 ++++++++++++++++++++
board/atmel/at91sam9263ek/config.mk | 1 +
board/atmel/at91sam9263ek/led.c | 78 +++++
board/atmel/at91sam9263ek/nand.c | 79 +++++
board/atmel/at91sam9263ek/partition.c | 39 +++
board/atmel/at91sam9rlek/Makefile | 57 ++++
board/atmel/at91sam9rlek/at91sam9rlek.c | 215 ++++++++++++++
board/atmel/at91sam9rlek/config.mk | 1 +
board/atmel/at91sam9rlek/led.c | 77 +++++
board/atmel/at91sam9rlek/nand.c | 79 +++++
board/atmel/at91sam9rlek/partition.c | 39 +++
common/cmd_nand.c | 2 -
common/env_nand.c | 3 -
common/lcd.c | 78 +++++-
cpu/arm926ejs/at91sam9/config.mk | 1 +
.../arm926ejs/at91sam9}/u-boot.lds | 0
cpu/arm926ejs/at91sam9/usb.c | 8 +
drivers/net/dm9000x.c | 2 +
drivers/net/macb.c | 6 +-
drivers/video/Makefile | 1 +
drivers/video/atmel_lcdfb.c | 160 ++++++++++
fs/jffs2/jffs2_1pass.c | 3 -
include/asm-arm/arch-at91sam9/at91_pmc.h | 5 +
include/asm-arm/arch-at91sam9/at91cap9.h | 14 +-
include/asm-arm/arch-at91sam9/at91sam9261.h | 105 +++++++
include/asm-arm/arch-at91sam9/at91sam9261_matrix.h | 64 ++++
include/asm-arm/arch-at91sam9/at91sam9263.h | 127 ++++++++
include/asm-arm/arch-at91sam9/at91sam9263_matrix.h | 129 ++++++++
include/asm-arm/arch-at91sam9/at91sam9rl.h | 115 ++++++++
include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h | 96 ++++++
include/asm-arm/arch-at91sam9/clk.h | 6 +
include/asm-arm/arch-at91sam9/hardware.h | 9 +
include/atmel_lcdc.h | 177 +++++++++++
include/configs/at91cap9adk.h | 37 ++-
include/configs/at91sam9260ek.h | 25 ++-
include/configs/at91sam9261ek.h | 202 +++++++++++++
include/configs/at91sam9263ek.h | 206 +++++++++++++
include/configs/at91sam9rlek.h | 175 +++++++++++
include/lcd.h | 30 ++-
lib_arm/board.c | 39 ++-
net/eth.c | 3 +-
tools/Makefile | 4 +
tools/logos/atmel.bmp | Bin 0 -> 26334 bytes
62 files changed, 3509 insertions(+), 112 deletions(-)
delete mode 100644 board/atmel/at91sam9260ek/u-boot.lds
create mode 100644 board/atmel/at91sam9261ek/Makefile
create mode 100644 board/atmel/at91sam9261ek/at91sam9261ek.c
create mode 100644 board/atmel/at91sam9261ek/config.mk
create mode 100644 board/atmel/at91sam9261ek/led.c
create mode 100644 board/atmel/at91sam9261ek/nand.c
create mode 100644 board/atmel/at91sam9261ek/partition.c
create mode 100644 board/atmel/at91sam9263ek/Makefile
create mode 100644 board/atmel/at91sam9263ek/at91sam9263ek.c
create mode 100644 board/atmel/at91sam9263ek/config.mk
create mode 100644 board/atmel/at91sam9263ek/led.c
create mode 100644 board/atmel/at91sam9263ek/nand.c
create mode 100644 board/atmel/at91sam9263ek/partition.c
create mode 100644 board/atmel/at91sam9rlek/Makefile
create mode 100644 board/atmel/at91sam9rlek/at91sam9rlek.c
create mode 100644 board/atmel/at91sam9rlek/config.mk
create mode 100644 board/atmel/at91sam9rlek/led.c
create mode 100644 board/atmel/at91sam9rlek/nand.c
create mode 100644 board/atmel/at91sam9rlek/partition.c
rename {board/atmel/at91cap9adk => cpu/arm926ejs/at91sam9}/u-boot.lds (100%)
create mode 100644 drivers/video/atmel_lcdfb.c
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261_matrix.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263_matrix.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl.h
create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h
create mode 100644 include/atmel_lcdc.h
create mode 100644 include/configs/at91sam9261ek.h
create mode 100644 include/configs/at91sam9263ek.h
create mode 100644 include/configs/at91sam9rlek.h
create mode 100644 tools/logos/atmel.bmp
Best Regards,
J.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
2008-05-31 20:05 Jean-Christophe PLAGNIOL-VILLARD
@ 2008-05-31 21:49 ` Matt Gessner
2008-06-04 22:05 ` Wolfgang Denk
1 sibling, 0 replies; 9+ messages in thread
From: Matt Gessner @ 2008-05-31 21:49 UTC (permalink / raw)
To: u-boot
Have these changes been tested to work on AT91RM9200 boards?
Thanks.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
2008-05-31 20:05 Jean-Christophe PLAGNIOL-VILLARD
2008-05-31 21:49 ` Matt Gessner
@ 2008-06-04 22:05 ` Wolfgang Denk
1 sibling, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-06-04 22:05 UTC (permalink / raw)
To: u-boot
In message <20080531200537.GB27189@game.jcrosoft.org> you wrote:
> Please pull at91
>
> The following changes since commit 2c8d41969b47eb0b973912830c58689b2ba0e50a:
> Wolfgang Denk (1):
> Merge branch 'master' of git://git.denx.de/u-boot-testing
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-at91.git for-1.3.4
Please note that your pull request should refer to the "master"
branch!!!
> Jean-Christophe PLAGNIOL-VILLARD (2):
> Merging Stelian Pop AT91 patches
> MAKEALL: add at91 list
>
> Patrice Vilchez (1):
> [AT91SAM9] Fix NAND FLASH timings
>
> Stelian Pop (26):
> Fix @ -> <at> substitution
> Update origin and copyright information in arch-at91sam9 header files
> Add copyright information in Atmel boards partition.c
> Add proper copyright notices in Atmel boards Makefiles
> Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
> AT91CAP9ADK: Handle 8 or 16 bit NAND
> AT91CAP9ADK: Normalize SPI timings
> AT91CAP9ADK: Normalize BOOTARGS
> AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
> AT91SAM9260EK: Handle 8 or 16 bit NAND
> AT91SAM9260EK: Normalize SPI timings
> AT91SAM9260EK: Normalize BOOTARGS
> AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
> AT91SAM9261EK support
> AT91SAM9263EK support
> AT91SAM9RLEK support
> Add ATMEL LCD driver
> AT91CAP9ADK: hook up the ATMEL LCD driver
> AT91SAM9261EK: hook up the ATMEL LCD driver
> AT91SAM9263EK: hook up the ATMEL LCD driver
> AT91SAM9RLEK: hook up the ATMEL LCD driver
> Use custom logo for Atmel boards
> Support AT91CAP9 revC CPUs
> AT91: Cleanup unused config header file definitions.
> Cleanup nand_info[] declaration.
> Fix boot from NOR due to incorrect reset delay.
>
> CHANGELOG | 12 +-
> MAINTAINERS | 3 +
> MAKEALL | 23 ++-
> Makefile | 9 +
> README | 4 +
> board/atmel/at91cap9adk/Makefile | 4 +
> board/atmel/at91cap9adk/at91cap9adk.c | 107 +++++++-
> board/atmel/at91cap9adk/nand.c | 3 +
> board/atmel/at91sam9260ek/Makefile | 4 +
> board/atmel/at91sam9260ek/at91sam9260ek.c | 15 +-
> board/atmel/at91sam9260ek/nand.c | 3 +
> board/atmel/at91sam9260ek/u-boot.lds | 57 ----
> board/atmel/at91sam9261ek/Makefile | 57 ++++
> board/atmel/at91sam9261ek/at91sam9261ek.c | 258 ++++++++++++++++
> board/atmel/at91sam9261ek/config.mk | 1 +
> board/atmel/at91sam9261ek/led.c | 78 +++++
> board/atmel/at91sam9261ek/nand.c | 79 +++++
> board/atmel/at91sam9261ek/partition.c | 40 +++
> board/atmel/at91sam9263ek/Makefile | 57 ++++
> board/atmel/at91sam9263ek/at91sam9263ek.c | 310 ++++++++++++++++++++
> board/atmel/at91sam9263ek/config.mk | 1 +
> board/atmel/at91sam9263ek/led.c | 78 +++++
> board/atmel/at91sam9263ek/nand.c | 79 +++++
> board/atmel/at91sam9263ek/partition.c | 39 +++
> board/atmel/at91sam9rlek/Makefile | 57 ++++
> board/atmel/at91sam9rlek/at91sam9rlek.c | 215 ++++++++++++++
> board/atmel/at91sam9rlek/config.mk | 1 +
> board/atmel/at91sam9rlek/led.c | 77 +++++
> board/atmel/at91sam9rlek/nand.c | 79 +++++
> board/atmel/at91sam9rlek/partition.c | 39 +++
> common/cmd_nand.c | 2 -
> common/env_nand.c | 3 -
> common/lcd.c | 78 +++++-
> cpu/arm926ejs/at91sam9/config.mk | 1 +
> .../arm926ejs/at91sam9}/u-boot.lds | 0
> cpu/arm926ejs/at91sam9/usb.c | 8 +
> drivers/net/dm9000x.c | 2 +
> drivers/net/macb.c | 6 +-
> drivers/video/Makefile | 1 +
> drivers/video/atmel_lcdfb.c | 160 ++++++++++
> fs/jffs2/jffs2_1pass.c | 3 -
> include/asm-arm/arch-at91sam9/at91_pmc.h | 5 +
> include/asm-arm/arch-at91sam9/at91cap9.h | 14 +-
> include/asm-arm/arch-at91sam9/at91sam9261.h | 105 +++++++
> include/asm-arm/arch-at91sam9/at91sam9261_matrix.h | 64 ++++
> include/asm-arm/arch-at91sam9/at91sam9263.h | 127 ++++++++
> include/asm-arm/arch-at91sam9/at91sam9263_matrix.h | 129 ++++++++
> include/asm-arm/arch-at91sam9/at91sam9rl.h | 115 ++++++++
> include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h | 96 ++++++
> include/asm-arm/arch-at91sam9/clk.h | 6 +
> include/asm-arm/arch-at91sam9/hardware.h | 9 +
> include/atmel_lcdc.h | 177 +++++++++++
> include/configs/at91cap9adk.h | 37 ++-
> include/configs/at91sam9260ek.h | 25 ++-
> include/configs/at91sam9261ek.h | 202 +++++++++++++
> include/configs/at91sam9263ek.h | 206 +++++++++++++
> include/configs/at91sam9rlek.h | 175 +++++++++++
> include/lcd.h | 30 ++-
> lib_arm/board.c | 39 ++-
> net/eth.c | 3 +-
> tools/Makefile | 4 +
> tools/logos/atmel.bmp | Bin 0 -> 26334 bytes
> 62 files changed, 3509 insertions(+), 112 deletions(-)
> delete mode 100644 board/atmel/at91sam9260ek/u-boot.lds
> create mode 100644 board/atmel/at91sam9261ek/Makefile
> create mode 100644 board/atmel/at91sam9261ek/at91sam9261ek.c
> create mode 100644 board/atmel/at91sam9261ek/config.mk
> create mode 100644 board/atmel/at91sam9261ek/led.c
> create mode 100644 board/atmel/at91sam9261ek/nand.c
> create mode 100644 board/atmel/at91sam9261ek/partition.c
> create mode 100644 board/atmel/at91sam9263ek/Makefile
> create mode 100644 board/atmel/at91sam9263ek/at91sam9263ek.c
> create mode 100644 board/atmel/at91sam9263ek/config.mk
> create mode 100644 board/atmel/at91sam9263ek/led.c
> create mode 100644 board/atmel/at91sam9263ek/nand.c
> create mode 100644 board/atmel/at91sam9263ek/partition.c
> create mode 100644 board/atmel/at91sam9rlek/Makefile
> create mode 100644 board/atmel/at91sam9rlek/at91sam9rlek.c
> create mode 100644 board/atmel/at91sam9rlek/config.mk
> create mode 100644 board/atmel/at91sam9rlek/led.c
> create mode 100644 board/atmel/at91sam9rlek/nand.c
> create mode 100644 board/atmel/at91sam9rlek/partition.c
> rename {board/atmel/at91cap9adk => cpu/arm926ejs/at91sam9}/u-boot.lds (100%)
> create mode 100644 drivers/video/atmel_lcdfb.c
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261.h
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9261_matrix.h
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263.h
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9263_matrix.h
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl.h
> create mode 100644 include/asm-arm/arch-at91sam9/at91sam9rl_matrix.h
> create mode 100644 include/atmel_lcdc.h
> create mode 100644 include/configs/at91sam9261ek.h
> create mode 100644 include/configs/at91sam9263ek.h
> create mode 100644 include/configs/at91sam9rlek.h
> create mode 100644 tools/logos/atmel.bmp
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
Life is a game. Money is how we keep score. - Ted Turner
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 Pull request
@ 2008-07-05 15:38 Jean-Christophe PLAGNIOL-VILLARD
2008-07-06 22:48 ` Wolfgang Denk
0 siblings, 1 reply; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-07-05 15:38 UTC (permalink / raw)
To: u-boot
Please pull
The following changes since commit a524e112b424c6843800ea2f19d3a8cf01d0aa94:
Detlev Zundel (1):
Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
are available in the git repository at:
git://git.denx.de/u-boot-at91.git master
Patrice Vilchez (1):
[AT91SAM9] Fix NAND FLASH timings
Stelian Pop (1):
Fix boot from NOR due to incorrect reset delay.
board/atmel/at91cap9adk/at91cap9adk.c | 7 ++++++-
board/atmel/at91sam9260ek/at91sam9260ek.c | 8 ++++----
board/atmel/at91sam9261ek/at91sam9261ek.c | 12 ++++++------
board/atmel/at91sam9263ek/at91sam9263ek.c | 11 ++++++++---
board/atmel/at91sam9rlek/at91sam9rlek.c | 12 ++++++------
5 files changed, 30 insertions(+), 20 deletions(-)
Best Regards,
J.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 Pull request
2008-07-05 15:38 [U-Boot-Users] AT91 Pull request Jean-Christophe PLAGNIOL-VILLARD
@ 2008-07-06 22:48 ` Wolfgang Denk
0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-07-06 22:48 UTC (permalink / raw)
To: u-boot
In message <20080705153812.GA30303@game.jcrosoft.org> you wrote:
> Please pull
>
> The following changes since commit a524e112b424c6843800ea2f19d3a8cf01d0aa94:
> Detlev Zundel (1):
> Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-at91.git master
>
> Patrice Vilchez (1):
> [AT91SAM9] Fix NAND FLASH timings
>
> Stelian Pop (1):
> Fix boot from NOR due to incorrect reset delay.
>
> board/atmel/at91cap9adk/at91cap9adk.c | 7 ++++++-
> board/atmel/at91sam9260ek/at91sam9260ek.c | 8 ++++----
> board/atmel/at91sam9261ek/at91sam9261ek.c | 12 ++++++------
> board/atmel/at91sam9263ek/at91sam9263ek.c | 11 ++++++++---
> board/atmel/at91sam9rlek/at91sam9rlek.c | 12 ++++++------
> 5 files changed, 30 insertions(+), 20 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
You're dead, Jim.
-- McCoy, "The Tholian Web", stardate unknown
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
@ 2008-07-10 21:09 Jean-Christophe PLAGNIOL-VILLARD
2008-07-13 12:41 ` Wolfgang Denk
0 siblings, 1 reply; 9+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2008-07-10 21:09 UTC (permalink / raw)
To: u-boot
Hi,
please pull
The following changes since commit 4109df6f75fc00ab7da56d286ba50149a0d16a69:
Kim Phillips (1):
silence misc printf formatting compiler warnings
are available in the git repository at:
git://git.denx.de/u-boot-at91.git master
Jean-Christophe PLAGNIOL-VILLARD (1):
MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
Sergey Lapin (1):
DataFlash AT45DB021 support
MAKEALL | 12 +-----------
drivers/mtd/dataflash.c | 14 ++++++++++++++
include/dataflash.h | 1 +
3 files changed, 16 insertions(+), 11 deletions(-)
Best Regards,
J.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [U-Boot-Users] AT91 pull request
2008-07-10 21:09 [U-Boot-Users] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
@ 2008-07-13 12:41 ` Wolfgang Denk
0 siblings, 0 replies; 9+ messages in thread
From: Wolfgang Denk @ 2008-07-13 12:41 UTC (permalink / raw)
To: u-boot
In message <20080710210908.GJ18713@game.jcrosoft.org> you wrote:
> Hi,
> please pull
> The following changes since commit 4109df6f75fc00ab7da56d286ba50149a0d16a69:
> Kim Phillips (1):
> silence misc printf formatting compiler warnings
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-at91.git master
>
> Jean-Christophe PLAGNIOL-VILLARD (1):
> MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
>
> Sergey Lapin (1):
> DataFlash AT45DB021 support
>
> MAKEALL | 12 +-----------
> drivers/mtd/dataflash.c | 14 ++++++++++++++
> include/dataflash.h | 1 +
> 3 files changed, 16 insertions(+), 11 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
At the source of every error which is blamed on the computer you will
find at least two human errors, including the error of blaming it on
the computer.
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2008-07-13 12:41 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-01 5:51 [U-Boot-Users] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
2008-04-07 22:20 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2008-05-31 20:05 Jean-Christophe PLAGNIOL-VILLARD
2008-05-31 21:49 ` Matt Gessner
2008-06-04 22:05 ` Wolfgang Denk
2008-07-05 15:38 [U-Boot-Users] AT91 Pull request Jean-Christophe PLAGNIOL-VILLARD
2008-07-06 22:48 ` Wolfgang Denk
2008-07-10 21:09 [U-Boot-Users] AT91 pull request Jean-Christophe PLAGNIOL-VILLARD
2008-07-13 12:41 ` Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox