From: Albert ARIBAUD <albert.u.boot@aribaud.net>
To: u-boot@lists.denx.de
Subject: [U-Boot] Please pull u-boot-ti/master - applied to a temporary repo, see inside
Date: Sat, 17 Aug 2013 10:53:01 +0200 [thread overview]
Message-ID: <20130817105301.0159e099@lilith> (raw)
In-Reply-To: <20130816133927.GP13632@bill-the-cat>
Hi Tom,
On Fri, 16 Aug 2013 09:39:27 -0400, Tom Rini <trini@ti.com> wrote:
> Hey,
>
> The following changes since commit fdce7b633a1de24456226b18527cc7900c34282a:
>
> gpio: omap5-uevm: Configure the tca6424 gpio expander (2013-07-30 09:21:42 -0400)
>
> are available in the git repository at:
>
> git://git.denx.de/u-boot-ti.git master
>
> for you to fetch changes up to 425faf74cd8189c87919f7e72a0101c684ee3b9f:
>
> Add TI816X evm board support (2013-08-15 18:38:37 -0400)
>
> ----------------------------------------------------------------
> Ash Charles (1):
> omap: overo: Use 200MHz SDRC timings for revision 1, 2 & 3 boards
>
> Enric Balletbo i Serra (5):
> ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST
> ARM: IGEP0033: Remove CYGNUS name from header.
> ARM: IGEP0033: Add support to boot from NAND.
> ARM: IGEP0033: Remove duplicate / unused #defines.
> ARM: igep00x0.h: Enable the use of CMD_EXT4, CMD_FS_GENERIC and zImage.
>
> Enric Balletb? i Serra (1):
> ARM: IGEP0033: Add support for Flattened Device Tree.
>
> Heiko Schocher (5):
> ARM: AM33xx: Move s_init to a common place
> arm/davinci/da850: add uart0_pins_rtscts and RMII_MHz_50_CLK in emac_pins_rmii pinmux
> bootstage: get more BOOTSTAGE_ID* in show_boot_progress()
> arm, da850: enable the correct uart in arch_cpu_init()
> arm, da850: add ipam390 board support
>
> Javier Martinez Canillas (1):
> OMAP3: igep00x0: allow booting with a FDT from MMC
>
> Lokesh Vutla (9):
> ARM: AM33xx: Cleanup dplls data
> ARM: AM33xx: Cleanup clocks layer
> musb: Disable extra prints
> ARM: AM43xx: Add Board files
> ARM: AM43xx: Add header files
> ARM: AM43xx: clocks: Add dpll and clock data
> ARM: OMAP: Add CONFIG_OMAP_COMMON
> ARM: AM43xx: Add build support
> ARM: AM43xx: Add config file
>
> Masahiro Yamada (1):
> ARM: omap24xx: remove remainders of dead board
>
> Naumann Andreas (1):
> ARM: omap3: Implement dpll5 (HSUSB clk) workaround for OMAP36xx/AM/DM37xx according to errata sprz318e.
>
> Steve Sakoman (1):
> omap: overo: update support for Micron 1GB POP
>
> TENART Antoine (3):
> Prepare for TI816X : reuse existing code from TI814X
> Add TI816X support
> Add TI816X evm board support
>
> Taras Kondratiuk (1):
> omap: emif: Set initial DDR PHY config first
>
> Tom Rini (9):
> am33xx: CONFIG_DMA_COHERENT defines are unused, remove
> am33xx: Stop using PHYS_DRAM_1 define
> am335x_evm: Use default baud rate table
> arm: spl: For Falcon Mode, set a default machid of ~0
> am335x_evm: Bring in 'boot_fdt' logic from i.MX
> TI:am33xx: Create common config files for TI ARMv7 platforms, and AM33xx
> TI:omap5/dra7xx: Convert to ti_armv7_common.h
> TI:armv7: Enable CONFIG_CMD_SPI
> TI:armv7: Enable CONFIG_CMD_GPIO
>
> MAINTAINERS | 5 +
> Makefile | 2 +-
> arch/arm/config.mk | 2 +-
> arch/arm/cpu/arm1136/omap24xx/reset.S | 26 -
> arch/arm/cpu/arm1136/omap24xx/timer.c | 136 ------
> arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c | 4 +
> arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c | 6 +
> arch/arm/cpu/armv7/Makefile | 2 +-
> arch/arm/cpu/armv7/am33xx/Makefile | 7 +
> arch/arm/cpu/armv7/am33xx/board.c | 68 ++-
> arch/arm/cpu/armv7/am33xx/clock.c | 171 +++++++
> arch/arm/cpu/armv7/am33xx/clock_am33xx.c | 495 +++++---------------
> arch/arm/cpu/armv7/am33xx/clock_am43xx.c | 110 +++++
> arch/arm/cpu/armv7/am33xx/clock_ti814x.c | 120 +----
> arch/arm/cpu/armv7/am33xx/clock_ti816x.c | 445 ++++++++++++++++++
> arch/arm/cpu/armv7/am33xx/emif4.c | 11 +-
> arch/arm/cpu/armv7/omap-common/Makefile | 2 +-
> arch/arm/cpu/armv7/omap-common/boot-common.c | 3 +-
> arch/arm/cpu/armv7/omap-common/emif-common.c | 2 +-
> arch/arm/cpu/armv7/omap3/clock.c | 20 +-
> arch/arm/cpu/armv7/omap3/lowlevel_init.S | 18 +
> arch/arm/include/asm/arch-am33xx/clock.h | 98 ++++
> arch/arm/include/asm/arch-am33xx/clock_ti81xx.h | 142 ++++++
> arch/arm/include/asm/arch-am33xx/clocks_am33xx.h | 6 +-
> arch/arm/include/asm/arch-am33xx/cpu.h | 164 ++++++-
> arch/arm/include/asm/arch-am33xx/ddr_defs.h | 35 +-
> arch/arm/include/asm/arch-am33xx/hardware.h | 18 +-
> arch/arm/include/asm/arch-am33xx/hardware_am33xx.h | 15 +
> arch/arm/include/asm/arch-am33xx/hardware_am43xx.h | 54 +++
> arch/arm/include/asm/arch-am33xx/hardware_ti814x.h | 15 +
> arch/arm/include/asm/arch-am33xx/hardware_ti816x.h | 61 +++
> arch/arm/include/asm/arch-am33xx/mmc_host_def.h | 3 +
> arch/arm/include/asm/arch-am33xx/mux.h | 4 +
> arch/arm/include/asm/arch-am33xx/mux_am43xx.h | 142 ++++++
> arch/arm/include/asm/arch-am33xx/mux_ti816x.h | 363 ++++++++++++++
> arch/arm/include/asm/arch-am33xx/omap.h | 11 +-
> arch/arm/include/asm/arch-am33xx/spl.h | 15 +-
> arch/arm/include/asm/arch-am33xx/sys_proto.h | 9 +-
> arch/arm/include/asm/arch-davinci/pinmux_defs.h | 3 +-
> arch/arm/include/asm/arch-omap3/clock.h | 1 +
> arch/arm/include/asm/arch-omap3/clocks_omap3.h | 22 +
> arch/arm/lib/spl.c | 7 +-
> .../omap24xx => board/Barix/ipam390}/Makefile | 22 +-
> board/Barix/ipam390/README.ipam390 | 229 +++++++++
> board/Barix/ipam390/ipam390-ais-uart.cfg | 202 ++++++++
> board/Barix/ipam390/ipam390.c | 348 ++++++++++++++
> board/Barix/ipam390/u-boot-spl-ipam390.lds | 53 +++
> board/isee/igep0033/board.c | 59 +--
> board/isee/igep0033/board.h | 2 +-
> board/isee/igep00x0/igep00x0.c | 14 +
> board/overo/overo.c | 22 +-
> board/overo/overo.h | 1 +
> board/phytec/pcm051/board.c | 59 +--
> board/ti/am335x/board.c | 104 ++--
> board/ti/am335x/mux.c | 19 +
> board/ti/am43xx/Makefile | 38 ++
> board/ti/am43xx/board.c | 57 +++
> board/ti/am43xx/board.h | 17 +
> board/ti/am43xx/mux.c | 27 ++
> board/ti/ti814x/evm.c | 67 +--
> board/ti/ti816x/Makefile | 37 ++
> board/ti/ti816x/evm.c | 229 +++++++++
> boards.cfg | 3 +
> drivers/serial/ns16550.c | 5 +-
> drivers/usb/musb-new/musb_core.c | 20 +-
> include/bootstage.h | 1 +
> include/configs/am335x_evm.h | 258 ++--------
> include/configs/am3517_crane.h | 1 +
> include/configs/am3517_evm.h | 1 +
> include/configs/am43xx_evm.h | 135 ++++++
> include/configs/cm_t35.h | 1 +
> include/configs/devkit8000.h | 1 +
> include/configs/dig297.h | 1 +
> include/configs/dra7xx_evm.h | 11 +-
> include/configs/igep0033.h | 86 ++--
> include/configs/igep00x0.h | 25 +-
> include/configs/ipam390.h | 331 +++++++++++++
> include/configs/mcx.h | 1 +
> include/configs/nokia_rx51.h | 1 +
> include/configs/omap3_beagle.h | 1 +
> include/configs/omap3_evm_common.h | 1 +
> include/configs/omap3_logic.h | 1 +
> include/configs/omap3_mvblx.h | 1 +
> include/configs/omap3_overo.h | 1 +
> include/configs/omap3_pandora.h | 1 +
> include/configs/omap3_sdp3430.h | 1 +
> include/configs/omap3_zoom1.h | 1 +
> include/configs/omap3_zoom2.h | 1 +
> include/configs/omap4_common.h | 1 +
> include/configs/omap5_common.h | 191 ++------
> include/configs/omap5_uevm.h | 8 +-
> include/configs/pcm051.h | 9 +-
> include/configs/tam3517-common.h | 1 +
> include/configs/ti814x_evm.h | 9 +-
> include/configs/ti816x_evm.h | 180 +++++++
> include/configs/ti_am335x_common.h | 60 +++
> include/configs/ti_armv7_common.h | 250 ++++++++++
> include/configs/tricorder.h | 1 +
> spl/Makefile | 2 +-
> 99 files changed, 4633 insertions(+), 1419 deletions(-)
> delete mode 100644 arch/arm/cpu/arm1136/omap24xx/reset.S
> delete mode 100644 arch/arm/cpu/arm1136/omap24xx/timer.c
> create mode 100644 arch/arm/cpu/armv7/am33xx/clock.c
> create mode 100644 arch/arm/cpu/armv7/am33xx/clock_am43xx.c
> create mode 100644 arch/arm/cpu/armv7/am33xx/clock_ti816x.c
> create mode 100644 arch/arm/include/asm/arch-am33xx/clock_ti81xx.h
> create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_am43xx.h
> create mode 100644 arch/arm/include/asm/arch-am33xx/hardware_ti816x.h
> create mode 100644 arch/arm/include/asm/arch-am33xx/mux_am43xx.h
> create mode 100644 arch/arm/include/asm/arch-am33xx/mux_ti816x.h
> rename {arch/arm/cpu/arm1136/omap24xx => board/Barix/ipam390}/Makefile (53%)
> create mode 100644 board/Barix/ipam390/README.ipam390
> create mode 100644 board/Barix/ipam390/ipam390-ais-uart.cfg
> create mode 100644 board/Barix/ipam390/ipam390.c
> create mode 100644 board/Barix/ipam390/u-boot-spl-ipam390.lds
> create mode 100644 board/ti/am43xx/Makefile
> create mode 100644 board/ti/am43xx/board.c
> create mode 100644 board/ti/am43xx/board.h
> create mode 100644 board/ti/am43xx/mux.c
> create mode 100644 board/ti/ti816x/Makefile
> create mode 100644 board/ti/ti816x/evm.c
> create mode 100644 include/configs/am43xx_evm.h
> create mode 100644 include/configs/ipam390.h
> create mode 100644 include/configs/ti816x_evm.h
> create mode 100644 include/configs/ti_am335x_common.h
> create mode 100644 include/configs/ti_armv7_common.h
>
Applied to u-boot-arm/master, thanks -- BUT at the moment I cannot push
to u-boot-arm at denx. While this gets solved, I have set up a temporary
repo at 88.191.163.10. People can fetch it with
git fetch git://88.191.163.10/u-boot-arm
You won't have write access of course.
Amicalement,
--
Albert.
prev parent reply other threads:[~2013-08-17 8:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-16 13:39 [U-Boot] Please pull u-boot-ti/master Tom Rini
2013-08-17 8:53 ` Albert ARIBAUD [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130817105301.0159e099@lilith \
--to=albert.u.boot@aribaud.net \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.