
Hi Albert,
please pull from u-boot-imx, thanks !
The following changes since commit 262f08d6ea18a62f827b8ccb60f355ca2eaf6e2b:
zynq: Use arch_cpu_init() instead of lowlevel_init() (2013-10-17 08:34:45 +0200)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to c93addb5635630847e8a33f6dba4afef78a6d180:
wandboard: README: Include the quad version (2013-11-04 09:56:25 +0100)
---------------------------------------------------------------- Anatolij Gustschin (1): imx_watchdog: do not soft-reset while watchdog init
Christoph G. Baumann (1): ARM: mxs: Configure 2 Gbit DDR2 RAM for BG0900
Eric Nelson (1): i.MX6: nitrogen6x: fix erase size in 6x_upgrade.txt
Fabio Estevam (5): udoo: Add initial support for mx6q udoo board ARM: mx5: Enable L2 cache mx5: lowlevel_init: Remove unused macro configs: imx: Make CONFIG_SYS_PROMPT uniform across FSL boards wandboard: README: Include the quad version
Marek Vasut (4): ARM: mxs: tools: Use mkimage for BootStream generation ARM: mxs: Add PPC-AG BG0900 board ARM: mxs: Setup stack in JTAG mode ARM: mxs: Enable DCDC converter for battery boot
Otavio Salvador (1): mx6: Remove PAD_CTL_DSE_120ohm from i.MX6DL's IPU1_DI0_PIN4 pin
Pierre Aubert (1): mx6: compute PLL PFD frequencies rather than using defines
Stefano Babic (1): Revert "configs: imx: Make CONFIG_SYS_PROMPT uniform across FSL boards"
arch/arm/cpu/arm926ejs/mxs/Makefile | 11 +- arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg | 4 +- arch/arm/cpu/arm926ejs/mxs/mxsimage.mx28.cfg | 4 +- arch/arm/cpu/arm926ejs/mxs/spl_power_init.c | 2 + arch/arm/cpu/arm926ejs/mxs/start.S | 9 ++ arch/arm/cpu/armv7/mx5/lowlevel_init.S | 12 +- arch/arm/cpu/armv7/mx6/clock.c | 56 +++++-- arch/arm/include/asm/arch-mx6/crm_regs.h | 11 -- arch/arm/include/asm/arch-mx6/mx6dl_pins.h | 2 +- arch/arm/include/asm/arch-mxs/sys_proto.h | 2 + board/boundary/nitrogen6x/6x_upgrade.txt | 2 +- board/ppcag/bg0900/Makefile | 31 ++++ board/ppcag/bg0900/bg0900.c | 86 +++++++++++ board/ppcag/bg0900/spl_boot.c | 153 +++++++++++++++++++ board/udoo/Makefile | 26 ++++ board/udoo/udoo.c | 110 ++++++++++++++ board/wandboard/README | 4 +- boards.cfg | 2 + doc/README.mxs | 39 ++++- drivers/watchdog/imx_watchdog.c | 3 +- include/configs/bg0900.h | 97 ++++++++++++ include/configs/udoo.h | 206 ++++++++++++++++++++++++++ 22 files changed, 819 insertions(+), 53 deletions(-) create mode 100644 board/ppcag/bg0900/Makefile create mode 100644 board/ppcag/bg0900/bg0900.c create mode 100644 board/ppcag/bg0900/spl_boot.c create mode 100644 board/udoo/Makefile create mode 100644 board/udoo/udoo.c create mode 100644 include/configs/bg0900.h create mode 100644 include/configs/udoo.h

Hi Stefano,
On Tue, 05 Nov 2013 15:23:19 +0100, Stefano Babic sbabic@denx.de wrote:
Hi Albert,
please pull from u-boot-imx, thanks !
The following changes since commit 262f08d6ea18a62f827b8ccb60f355ca2eaf6e2b:
zynq: Use arch_cpu_init() instead of lowlevel_init() (2013-10-17 08:34:45 +0200)
are available in the git repository at:
git://www.denx.de/git/u-boot-imx.git master
for you to fetch changes up to c93addb5635630847e8a33f6dba4afef78a6d180:
wandboard: README: Include the quad version (2013-11-04 09:56:25 +0100)
Anatolij Gustschin (1): imx_watchdog: do not soft-reset while watchdog init
Christoph G. Baumann (1): ARM: mxs: Configure 2 Gbit DDR2 RAM for BG0900
Eric Nelson (1): i.MX6: nitrogen6x: fix erase size in 6x_upgrade.txt
Fabio Estevam (5): udoo: Add initial support for mx6q udoo board ARM: mx5: Enable L2 cache mx5: lowlevel_init: Remove unused macro configs: imx: Make CONFIG_SYS_PROMPT uniform across FSL boards wandboard: README: Include the quad version
Marek Vasut (4): ARM: mxs: tools: Use mkimage for BootStream generation ARM: mxs: Add PPC-AG BG0900 board ARM: mxs: Setup stack in JTAG mode ARM: mxs: Enable DCDC converter for battery boot
Otavio Salvador (1): mx6: Remove PAD_CTL_DSE_120ohm from i.MX6DL's IPU1_DI0_PIN4 pin
Pierre Aubert (1): mx6: compute PLL PFD frequencies rather than using defines
Stefano Babic (1): Revert "configs: imx: Make CONFIG_SYS_PROMPT uniform across FSL boards"
arch/arm/cpu/arm926ejs/mxs/Makefile | 11 +- arch/arm/cpu/arm926ejs/mxs/mxsimage.mx23.cfg | 4 +- arch/arm/cpu/arm926ejs/mxs/mxsimage.mx28.cfg | 4 +- arch/arm/cpu/arm926ejs/mxs/spl_power_init.c | 2 + arch/arm/cpu/arm926ejs/mxs/start.S | 9 ++ arch/arm/cpu/armv7/mx5/lowlevel_init.S | 12 +- arch/arm/cpu/armv7/mx6/clock.c | 56 +++++-- arch/arm/include/asm/arch-mx6/crm_regs.h | 11 -- arch/arm/include/asm/arch-mx6/mx6dl_pins.h | 2 +- arch/arm/include/asm/arch-mxs/sys_proto.h | 2 + board/boundary/nitrogen6x/6x_upgrade.txt | 2 +- board/ppcag/bg0900/Makefile | 31 ++++ board/ppcag/bg0900/bg0900.c | 86 +++++++++++ board/ppcag/bg0900/spl_boot.c | 153 +++++++++++++++++++ board/udoo/Makefile | 26 ++++ board/udoo/udoo.c | 110 ++++++++++++++ board/wandboard/README | 4 +- boards.cfg | 2 + doc/README.mxs | 39 ++++- drivers/watchdog/imx_watchdog.c | 3 +- include/configs/bg0900.h | 97 ++++++++++++ include/configs/udoo.h | 206 ++++++++++++++++++++++++++ 22 files changed, 819 insertions(+), 53 deletions(-) create mode 100644 board/ppcag/bg0900/Makefile create mode 100644 board/ppcag/bg0900/bg0900.c create mode 100644 board/ppcag/bg0900/spl_boot.c create mode 100644 board/udoo/Makefile create mode 100644 board/udoo/udoo.c create mode 100644 include/configs/bg0900.h create mode 100644 include/configs/udoo.h
Applied to u-boot-arm/master, thanks!
Amicalement,
participants (2)
-
Albert ARIBAUD
-
Stefano Babic