From: Ezequiel Garcia <ezequiel@collabora.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 0/6] Add support for MIPS Creator CI20
Date: Wed, 12 Dec 2018 10:58:39 -0300 [thread overview]
Message-ID: <20181212135845.21079-1-ezequiel@collabora.com> (raw)
A new round.
For this new round:
* Replaced infinite while loop with wait_for_bit.
* Added a MAINTAINERS file. If anyone wants to co-maintain this,
please let me know.
This is based on top of yesterday's master (ee168783ae8) and has
been tested by SD-card booting both U-Boot and Linux. Booting
Linux via TFTP was also tested.
Toolchain used to test:
$ mips-linux-gcc -v
Using built-in specs.
COLLECT_GCC=mips-linux-gcc
COLLECT_LTO_WRAPPER=/home/zeta/.buildman-toolchains/gcc-7.3.0-nolibc/mips-linux/bin/../libexec/gcc/mips-linux/7.3.0/lto-wrapper
Target: mips-linux
Configured with: /home/arnd/git/gcc/configure --target=mips-linux --enable-targets=all --prefix=/opt/crosstool/gcc-7.3.0-nolibc/mips-linux --enable-languages=c --without-headers --disable-bootstrap --disable-nls --disable-threads --disable-shared --disable-libmudflap --disable-libssp --disable-libgomp --disable-decimal-float --disable-libquadmath --disable-libatomic --disable-libcc1 --disable-libmpx --enable-checking=release
Thread model: single
gcc version 7.3.0 (GCC)
SPL size:
$ size spl/u-boot-spl
text data bss dec hex filename
9252 752 736 10740 29f4 spl/u-boot-spl
I've pushed a branch to https://github.com/ezequielgarcia/u-boot/tree/ci20-v2
and made sure travis passed.
Note that Paul's contributions are recorded using his imgtec.com
mail although it's no longer valid, and that we will rely on mailmap
to map it to mips.com.
It would be terrific to fit this on the next release.
Thanks!
Paul Burton (6):
misc: Add JZ47xx efuse driver
gpio: Add JZ47xx GPIO driver
mmc: Add JZ47xx SD/MMC controller driver
mips: Add SPL header
mips: jz47xx: Add JZ4780 SoC support
mips: jz47xx: Add Creator CI20 platform
arch/mips/Kconfig | 7 +
arch/mips/Makefile | 1 +
arch/mips/dts/Makefile | 1 +
arch/mips/dts/ci20.dts | 120 ++++
arch/mips/dts/jz4780.dtsi | 162 ++++++
arch/mips/include/asm/spl.h | 35 ++
arch/mips/mach-jz47xx/Kconfig | 26 +
arch/mips/mach-jz47xx/Makefile | 7 +
arch/mips/mach-jz47xx/include/mach/jz4780.h | 104 ++++
.../mach-jz47xx/include/mach/jz4780_dram.h | 457 +++++++++++++++
arch/mips/mach-jz47xx/jz4780/Makefile | 5 +
arch/mips/mach-jz47xx/jz4780/jz4780.c | 142 +++++
arch/mips/mach-jz47xx/jz4780/pll.c | 528 ++++++++++++++++++
arch/mips/mach-jz47xx/jz4780/sdram.c | 271 +++++++++
arch/mips/mach-jz47xx/jz4780/timer.c | 238 ++++++++
arch/mips/mach-jz47xx/jz4780/u-boot-spl.lds | 52 ++
arch/mips/mach-jz47xx/start.S | 99 ++++
board/imgtec/ci20/Kconfig | 15 +
board/imgtec/ci20/MAINTAINERS | 6 +
board/imgtec/ci20/Makefile | 5 +
board/imgtec/ci20/README | 10 +
board/imgtec/ci20/ci20.c | 365 ++++++++++++
configs/ci20_defconfig | 47 ++
drivers/gpio/Kconfig | 7 +
drivers/gpio/Makefile | 1 +
drivers/gpio/gpio-jz47xx.c | 78 +++
drivers/misc/Kconfig | 6 +
drivers/misc/Makefile | 1 +
drivers/misc/jz4780_efuse.c | 104 ++++
drivers/mmc/Kconfig | 6 +
drivers/mmc/Makefile | 1 +
drivers/mmc/jz_mmc. | 0
drivers/mmc/jz_mmc.c | 489 ++++++++++++++++
include/configs/ci20.h | 74 +++
include/dt-bindings/clock/jz4780-cgu.h | 88 +++
35 files changed, 3558 insertions(+)
create mode 100644 arch/mips/dts/ci20.dts
create mode 100644 arch/mips/dts/jz4780.dtsi
create mode 100644 arch/mips/include/asm/spl.h
create mode 100644 arch/mips/mach-jz47xx/Kconfig
create mode 100644 arch/mips/mach-jz47xx/Makefile
create mode 100644 arch/mips/mach-jz47xx/include/mach/jz4780.h
create mode 100644 arch/mips/mach-jz47xx/include/mach/jz4780_dram.h
create mode 100644 arch/mips/mach-jz47xx/jz4780/Makefile
create mode 100644 arch/mips/mach-jz47xx/jz4780/jz4780.c
create mode 100644 arch/mips/mach-jz47xx/jz4780/pll.c
create mode 100644 arch/mips/mach-jz47xx/jz4780/sdram.c
create mode 100644 arch/mips/mach-jz47xx/jz4780/timer.c
create mode 100644 arch/mips/mach-jz47xx/jz4780/u-boot-spl.lds
create mode 100644 arch/mips/mach-jz47xx/start.S
create mode 100644 board/imgtec/ci20/Kconfig
create mode 100644 board/imgtec/ci20/MAINTAINERS
create mode 100644 board/imgtec/ci20/Makefile
create mode 100644 board/imgtec/ci20/README
create mode 100644 board/imgtec/ci20/ci20.c
create mode 100644 configs/ci20_defconfig
create mode 100644 drivers/gpio/gpio-jz47xx.c
create mode 100644 drivers/misc/jz4780_efuse.c
create mode 100644 drivers/mmc/jz_mmc.
create mode 100644 drivers/mmc/jz_mmc.c
create mode 100644 include/configs/ci20.h
create mode 100644 include/dt-bindings/clock/jz4780-cgu.h
--
2.20.0.rc2
next reply other threads:[~2018-12-12 13:58 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-12 13:58 Ezequiel Garcia [this message]
2018-12-12 13:58 ` [U-Boot] [PATCH v2 1/6] misc: Add JZ47xx efuse driver Ezequiel Garcia
2018-12-12 13:58 ` [U-Boot] [PATCH v2 2/6] gpio: Add JZ47xx GPIO driver Ezequiel Garcia
2018-12-12 13:58 ` [U-Boot] [PATCH v2 3/6] mmc: Add JZ47xx SD/MMC controller driver Ezequiel Garcia
2018-12-12 13:58 ` [U-Boot] [PATCH v2 4/6] mips: Add SPL header Ezequiel Garcia
2018-12-12 13:58 ` [U-Boot] [PATCH v2 5/6] mips: jz47xx: Add JZ4780 SoC support Ezequiel Garcia
2018-12-12 13:58 ` [U-Boot] [PATCH v2 6/6] mips: jz47xx: Add Creator CI20 platform Ezequiel Garcia
2018-12-12 17:27 ` [U-Boot] [PATCH v2 0/6] Add support for MIPS Creator CI20 Daniel Schwierzeck
2018-12-12 18:03 ` Ezequiel Garcia
2018-12-12 20:13 ` Tom Rini
2018-12-12 20:43 ` Daniel Schwierzeck
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=20181212135845.21079-1-ezequiel@collabora.com \
--to=ezequiel@collabora.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