Dear Mike Frysinger, In message <[EMAIL PROTECTED]> you wrote: > The following changes since commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e: > Wolfgang Denk (1): > Fix strmhz(): avoid printing negative fractions > > are available in the git repository at: > > git://www.denx.de/git/u-boot-blackfin.git master > > Ben Maan (1): > Blackfin: fix port mux defines for BF54x > > Mike Frysinger (25): > Blackfin: unify DSPID/DBGSTAT MMR definitions > Blackfin: update anomaly lists > Blackfin: fix typo in boot mode comment and add NAND define > Blackfin: delete unused page_descriptor_table_size define > Blackfin: punt old unused mem_init.h header > Blackfin: only enable hardware error irq by default > Blackfin: document some of the blackfin directories > Blackfin: build with -fomit-frame-pointer > Blackfin: fix SWRST register definition > Blackfin: only initialize the RTC when actually used > Blackfin: unify cache handling code > Blackfin: drop unused cache flush code > Blackfin: check cache bits, not cplb bits > Blackfin: init NAND before relocating env > Blackfin: enable support for nested interrupts > Blackfin: don't bother displaying reboot msg when crashing > Blackfin: fix register dump messages > Blackfin: decode hwerrcause/excause when crashing > Blackfin: make baud calculation more accurate > Blackfin: set initial stack correctly according to Blackfin ABI > Blackfin: small cpu init optimization while setting interrupt mask > Blackfin: linker scripts: force start.o and set initcode boundaries > Blackfin: bf561-ezkit: drop pointless USB code > Blackfin: bf561-ezkit: drop redundant code > Blackfin: fix up UART status bit handling > > README | 2 + > blackfin_config.mk | 2 +- > board/bf533-ezkit/u-boot.lds.S | 7 +- > board/bf533-stamp/bf533-stamp.c | 1 - > board/bf533-stamp/u-boot.lds.S | 7 +- > board/bf537-stamp/u-boot.lds.S | 7 +- > board/bf561-ezkit/bf561-ezkit.c | 21 +-- > board/bf561-ezkit/u-boot.lds.S | 7 +- > cpu/blackfin/Makefile | 2 +- > cpu/blackfin/cpu.c | 40 +--- > cpu/blackfin/flush.S | 230 -------------- > cpu/blackfin/serial.c | 72 ++++- > cpu/blackfin/serial.h | 8 +- > cpu/blackfin/start.S | 27 +- > cpu/blackfin/traps.c | 54 +++- > drivers/rtc/bfin_rtc.c | 19 +- > include/asm-blackfin/blackfin-config-pre.h | 3 +- > include/asm-blackfin/cplb.h | 5 - > include/asm-blackfin/mach-bf527/BF522_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF522_def.h | 1 - > include/asm-blackfin/mach-bf527/BF523_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF523_def.h | 1 - > include/asm-blackfin/mach-bf527/BF524_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF524_def.h | 1 - > include/asm-blackfin/mach-bf527/BF525_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF525_def.h | 1 - > include/asm-blackfin/mach-bf527/BF526_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF526_def.h | 1 - > include/asm-blackfin/mach-bf527/BF527_cdef.h | 3 - > include/asm-blackfin/mach-bf527/BF527_def.h | 1 - > include/asm-blackfin/mach-bf527/anomaly.h | 63 ++++- > include/asm-blackfin/mach-bf533/anomaly.h | 28 ++- > .../mach-bf537/ADSP-EDN-BF534-extended_cdef.h | 3 - > .../mach-bf537/ADSP-EDN-BF534-extended_def.h | 1 - > include/asm-blackfin/mach-bf537/anomaly.h | 16 +- > include/asm-blackfin/mach-bf548/BF541_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF541_def.h | 1 - > include/asm-blackfin/mach-bf548/BF542_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF542_def.h | 1 - > include/asm-blackfin/mach-bf548/BF544_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF544_def.h | 1 - > include/asm-blackfin/mach-bf548/BF547_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF547_def.h | 1 - > include/asm-blackfin/mach-bf548/BF548_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF548_def.h | 1 - > include/asm-blackfin/mach-bf548/BF549_cdef.h | 3 - > include/asm-blackfin/mach-bf548/BF549_def.h | 1 - > include/asm-blackfin/mach-bf548/anomaly.h | 78 +++++- > include/asm-blackfin/mach-bf548/ports.h | 64 ++-- > include/asm-blackfin/mach-bf561/BF561_cdef.h | 18 +- > include/asm-blackfin/mach-bf561/BF561_def.h | 2 - > include/asm-blackfin/mach-bf561/anomaly.h | 9 +- > .../asm-blackfin/mach-common/ADSP-EDN-core_cdef.h | 6 + > .../asm-blackfin/mach-common/ADSP-EDN-core_def.h | 2 + > .../mach-common/ADSP-EDN-extended_cdef.h | 9 +- > .../mach-common/ADSP-EDN-extended_def.h | 1 - > include/asm-blackfin/mem_init.h | 321 > -------------------- > lib_blackfin/board.c | 14 +- > lib_blackfin/cache.c | 35 +++ > 59 files changed, 427 insertions(+), 805 deletions(-) > delete mode 100644 cpu/blackfin/flush.S > delete mode 100644 include/asm-blackfin/mem_init.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: [EMAIL PROTECTED] The idea of male and female are universal constants. -- Kirk, "Metamorphosis", stardate 3219.8 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot