From: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [GIT PULL] u-boot-mips/master
Date: Fri, 30 Jan 2015 15:42:25 +0100 [thread overview]
Message-ID: <54CB9851.1060704@gmail.com> (raw)
The following changes since commit ab92da9f47d51d363c7de42e2a7bd807e2c1bd54:
Merge branch 'master' of git://git.denx.de/u-boot-x86 (2015-01-26 17:44:49 -0500)
are available in the git repository at:
git://git.denx.de/u-boot-mips.git master
for you to fetch changes up to eef88dfb3e16e4631e078f42714dbcef3216e3e1:
MIPS: unify CPU code in arch/mips/cpu/ (2015-01-30 14:19:58 +0100)
----------------------------------------------------------------
Daniel Schwierzeck (2):
MIPS: move au1x00 SoC code to arch/mips/mach-au1x00
MIPS: unify CPU code in arch/mips/cpu/
Paul Burton (15):
MIPS: avoid .set ISA for cache operations
MIPS: unify cache maintenance functions
MIPS: unify cache initialization code
MIPS: refactor L1 cache config reads to a macro
MIPS: refactor cache loops to a macro
MIPS: inline mips_init_[id]cache functions
MIPS: allow systems to skip loads during cache init
MIPS: clear TagLo select 2 during cache init
malta: IDE support
malta: delay after reset
malta: enable HUSH parser
malta: enable ELF loading
MIPS: use asm.h macros in mips32 start.S
MIPS: handle mips64 relocs in mips32 start.S
MIPS: handle mips64 ST0_KX bit in mips32 start.S
arch/mips/Kconfig | 6 +++
arch/mips/Makefile | 8 +--
arch/mips/cpu/Makefile | 9 ++++
arch/mips/cpu/cpu.c | 38 +++++++++++++++
arch/mips/cpu/{mips64 => }/interrupts.c | 0
arch/mips/cpu/mips32/Makefile | 12 -----
arch/mips/cpu/mips32/interrupts.c | 22 ---------
arch/mips/cpu/mips32/time.c | 19 --------
arch/mips/cpu/mips64/Makefile | 9 ----
arch/mips/cpu/mips64/cache.S | 213 --------------------------------------------------------------------------------
arch/mips/cpu/mips64/cpu.c | 95 ------------------------------------
arch/mips/cpu/mips64/start.S | 291 --------------------------------------------------------------------------------------------------------------
arch/mips/cpu/{mips32 => }/start.S | 137 ++++++++++++++++++++++++++++++----------------------
arch/mips/cpu/{mips64 => }/time.c | 0
arch/mips/include/asm/cacheops.h | 13 +++++
arch/mips/include/asm/malta.h | 5 ++
arch/mips/lib/Makefile | 2 +
arch/mips/{cpu/mips32/cpu.c => lib/cache.c} | 75 ++++++-----------------------
arch/mips/{cpu/mips32/cache.S => lib/cache_init.S} | 222 +++++++++++++++++++++++++++++++++++-------------------------------------------------
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/Makefile | 0
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_eth.c | 6 +++
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_ide.c | 0
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_serial.c | 0
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.c | 0
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.h | 0
arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/config.mk | 0
board/imgtec/malta/malta.c | 20 ++++++++
include/configs/malta.h | 13 +++++
28 files changed, 303 insertions(+), 912 deletions(-)
create mode 100644 arch/mips/cpu/Makefile
create mode 100644 arch/mips/cpu/cpu.c
rename arch/mips/cpu/{mips64 => }/interrupts.c (100%)
delete mode 100644 arch/mips/cpu/mips32/Makefile
delete mode 100644 arch/mips/cpu/mips32/interrupts.c
delete mode 100644 arch/mips/cpu/mips32/time.c
delete mode 100644 arch/mips/cpu/mips64/Makefile
delete mode 100644 arch/mips/cpu/mips64/cache.S
delete mode 100644 arch/mips/cpu/mips64/cpu.c
delete mode 100644 arch/mips/cpu/mips64/start.S
rename arch/mips/cpu/{mips32 => }/start.S (61%)
rename arch/mips/cpu/{mips64 => }/time.c (100%)
rename arch/mips/{cpu/mips32/cpu.c => lib/cache.c} (55%)
rename arch/mips/{cpu/mips32/cache.S => lib/cache_init.S} (59%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/Makefile (100%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_eth.c (98%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_ide.c (100%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_serial.c (100%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.c (100%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/au1x00_usb_ohci.h (100%)
rename arch/mips/{cpu/mips32/au1x00 => mach-au1x00}/config.mk (100%)
next reply other threads:[~2015-01-30 14:42 UTC|newest]
Thread overview: 75+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-30 14:42 Daniel Schwierzeck [this message]
2015-02-02 18:57 ` [U-Boot] [GIT PULL] u-boot-mips/master Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2018-09-23 16:58 Daniel Schwierzeck
2018-09-24 15:01 ` Tom Rini
2018-08-08 15:31 Daniel Schwierzeck
2018-08-10 3:27 ` Tom Rini
2017-11-28 21:13 Daniel Schwierzeck
2017-11-29 4:23 ` Tom Rini
2016-11-30 18:13 Daniel Schwierzeck
2016-11-30 19:01 ` Tom Rini
2016-11-30 19:21 ` Daniel Schwierzeck
2016-12-01 0:45 ` Tom Rini
2016-09-21 15:49 Daniel Schwierzeck
2016-09-22 15:35 ` Tom Rini
2016-06-10 10:52 Daniel Schwierzeck
2016-06-19 14:01 ` Tom Rini
2016-05-31 9:36 Daniel Schwierzeck
2016-05-31 14:50 ` Tom Rini
2016-05-26 0:13 Daniel Schwierzeck
2016-05-26 15:49 ` Tom Rini
2016-04-19 11:24 Daniel Schwierzeck
2016-04-21 11:25 ` Tom Rini
2016-03-09 11:01 Daniel Schwierzeck
2016-03-10 16:01 ` Tom Rini
2016-01-16 20:45 Daniel Schwierzeck
2016-01-17 3:00 ` Tom Rini
2015-11-06 13:10 Daniel Schwierzeck
2015-11-07 13:18 ` Tom Rini
2015-08-24 11:24 Daniel Schwierzeck
2015-08-24 13:43 ` Tom Rini
2015-08-24 15:47 ` Daniel Schwierzeck
2015-07-02 9:34 Daniel Schwierzeck
2015-07-10 12:55 ` Tom Rini
2015-04-24 10:20 Daniel Schwierzeck
2015-04-28 14:51 ` Tom Rini
2015-01-21 13:14 Daniel Schwierzeck
2015-01-23 21:56 ` Tom Rini
2014-11-27 15:25 Daniel Schwierzeck
2014-11-27 18:09 ` Tom Rini
2014-10-31 18:50 Daniel Schwierzeck
2014-11-04 2:33 ` Tom Rini
2014-04-20 11:28 Daniel Schwierzeck
2014-04-21 8:37 ` Masahiro Yamada
2014-04-21 9:10 ` Daniel Schwierzeck
2014-04-21 9:46 ` Masahiro Yamada
2014-04-23 15:15 ` Tom Rini
2014-03-04 22:49 Daniel Schwierzeck
2014-03-05 0:03 ` Tom Rini
2013-11-26 23:56 Daniel Schwierzeck
2013-12-02 16:12 ` Tom Rini
2013-11-15 23:03 Daniel Schwierzeck
2013-11-17 19:17 ` Tom Rini
2013-11-09 20:53 Daniel Schwierzeck
2013-11-11 17:30 ` Tom Rini
2013-11-11 19:00 ` Daniel Schwierzeck
2013-11-11 19:11 ` Tom Rini
2013-11-11 19:13 ` Tom Rini
2013-08-13 10:42 Daniel Schwierzeck
2013-08-13 13:13 ` Tom Rini
2013-07-23 22:42 Daniel Schwierzeck
2013-07-25 13:06 ` Tom Rini
2013-01-31 0:21 Daniel Schwierzeck
2013-01-31 0:30 ` Tom Rini
2013-01-16 10:11 Daniel Schwierzeck
2013-01-21 21:08 ` Tom Rini
2012-12-12 13:00 Daniel Schwierzeck
2012-12-12 13:52 ` Tom Rini
2012-12-08 20:57 Daniel Schwierzeck
2012-12-10 15:07 ` Tom Rini
2012-11-27 23:19 Daniel Schwierzeck
2012-11-28 13:04 ` Tom Rini
2012-10-16 22:01 Daniel Schwierzeck
2012-10-17 21:10 ` Tom Rini
2012-06-03 22:04 Daniel Schwierzeck
2012-06-07 21:39 ` Wolfgang Denk
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=54CB9851.1060704@gmail.com \
--to=daniel.schwierzeck@gmail.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox