From: Ezequiel Garcia <ezequiel@collabora.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/6] Add support for MIPS Creator CI20
Date: Mon, 10 Dec 2018 17:35:56 -0300 [thread overview]
Message-ID: <20181210203602.820-1-ezequiel@collabora.com> (raw)
As the subject says, this series adds support for CI20.
Most of the work was done by Paul Burton, and then by Marek Vasut.
I've just rescued the work from the dark wastelands of Mordor,
did some cleaning here and there and submitted.
Patches 1, 2, and 4 are completely untouched. I've picked them
from Marek's tree.
For the MMC driver (patch 3) there is some cleanup, and some
fixes for proper DM migration.
Finally, patches 5 and 6 have been changed a bit: I've cleaned
up the devicetree, the board support files and the defconfig.
This is based on top of today's master (7ff485c68b7e) and has
been tested by SD-card booting both U-Boot and Linux. Booting
Linux via TFTP was also tested.
Please note that I've added Paul's SOB to all the patches
he authored, to make the authorship chain more clear.
Reviews and tests are welcome. Bikesheds not so much! ;-)
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/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 | 100 ++++
drivers/mmc/Kconfig | 6 +
drivers/mmc/Makefile | 1 +
drivers/mmc/jz_mmc. | 0
drivers/mmc/jz_mmc.c | 491 ++++++++++++++++
include/configs/ci20.h | 74 +++
include/dt-bindings/clock/jz4780-cgu.h | 88 +++
34 files changed, 3550 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/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-10 20:35 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-12-10 20:35 Ezequiel Garcia [this message]
2018-12-10 20:35 ` [U-Boot] [PATCH 1/6] misc: Add JZ47xx efuse driver Ezequiel Garcia
2018-12-10 20:56 ` Marek Vasut
2018-12-10 22:02 ` Ezequiel Garcia
2018-12-10 22:03 ` Marek Vasut
2018-12-10 20:35 ` [U-Boot] [PATCH 2/6] gpio: Add JZ47xx GPIO driver Ezequiel Garcia
2018-12-10 20:35 ` [U-Boot] [PATCH 3/6] mmc: Add JZ47xx SD/MMC controller driver Ezequiel Garcia
2018-12-10 20:36 ` [U-Boot] [PATCH 4/6] mips: Add SPL header Ezequiel Garcia
2018-12-10 20:36 ` [U-Boot] [PATCH 5/6] mips: jz47xx: Add JZ4780 SoC support Ezequiel Garcia
2018-12-10 20:36 ` [U-Boot] [PATCH 6/6] mips: jz47xx: Add Creator CI20 platform Ezequiel Garcia
2018-12-10 20:58 ` [U-Boot] [PATCH 0/6] Add support for MIPS Creator CI20 Marek Vasut
2018-12-10 21:00 ` Andreas Färber
2018-12-10 21:31 ` Ezequiel Garcia
2018-12-10 21:39 ` Andreas Färber
2018-12-10 22:57 ` Paul Burton
2018-12-10 23:41 ` Tom Rini
2018-12-11 0:27 ` Ezequiel Garcia
2018-12-11 0:46 ` Tom Rini
2018-12-11 0:48 ` Tom Rini
2018-12-11 0:54 ` Ezequiel Garcia
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=20181210203602.820-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