U-boot Archive mirror
 help / color / mirror / Atom feed
From: Jiaxun Yang <jiaxun.yang@flygoat.com>
To: u-boot@lists.denx.de
Cc: Michal Simek <michal.simek@amd.com>,
	Tom Rini <trini@konsulko.com>,
	 Daniel Schwierzeck <daniel.schwierzeck@gmail.com>,
	 Paul Burton <paulburton@kernel.org>,
	Simon Glass <sjg@chromium.org>,  Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>,
	 Sumit Garg <sumit.garg@linaro.org>,
	Jiaxun Yang <jiaxun.yang@flygoat.com>
Subject: [PATCH 00/13] MIPS: Boston: Various enhancements
Date: Mon, 13 May 2024 19:12:57 +0100	[thread overview]
Message-ID: <20240513-boston-v1-0-fac96938417e@flygoat.com> (raw)

Hi all,

This is a huge series which promoted MIPS/Boston target into a
usable state, with fixes to drivers and general framework issues
I found in this process.

I also converted the target to OF_UPSTREAM.

This target is covered by QEMU, to test on QEMU:
```
make boston64r6el_defconfig
make
qemu-system-mips64el -M boston -cpu I6500 -bios ./u-boot.bin -nographic
```

This is my first u-boot contribution, please kindly advise if you
have any comments.

Thanks

Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
---
Jiaxun Yang (13):
      pci: xilinx: Handle size of ecam region properly
      pci: auto: Reduce bridge mem alignment boundary for boston
      pci: Enable PCI_MAP_SYSTEM_MEMORY when ARCH_MAP_SYSMEM is not set
      ahci: DMA addressing fixes
      ahci: dwc_ahsata: Generalize the driver
      MIPS: Provide dummy acpi_table.h
      MIPS: boston: Imply various options
      MIPS: boston: Provide default env vars
      syscon: Probe device first in syscon_get_regmap
      clk: boston: Allow to get regmap from parent device
      dts/upstream: Add Makefile for MIPS
      MIPS: boston: Migrate to OF_UPSTREAM
      mailmap: Update email for Paul Burton

 .mailmap                           |   3 +-
 arch/mips/Kconfig                  |  28 +++++
 arch/mips/dts/Makefile             |   1 -
 arch/mips/dts/boston-u-boot.dtsi   |  10 ++
 arch/mips/dts/img,boston.dts       | 222 -------------------------------------
 arch/mips/include/asm/acpi_table.h |  10 ++
 board/imgtec/boston/Kconfig        |   4 +
 board/imgtec/boston/MAINTAINERS    |   3 +-
 board/imgtec/boston/boston.env     |   9 ++
 board/imgtec/malta/MAINTAINERS     |   2 +-
 configs/boston32r2_defconfig       |   2 +-
 configs/boston32r2el_defconfig     |   2 +-
 configs/boston32r6_defconfig       |   2 +-
 configs/boston32r6el_defconfig     |   2 +-
 configs/boston64r2_defconfig       |   2 +-
 configs/boston64r2el_defconfig     |   2 +-
 configs/boston64r6_defconfig       |   2 +-
 configs/boston64r6el_defconfig     |   2 +-
 drivers/ata/ahci.c                 |  34 +++---
 drivers/ata/dwc_ahsata.c           |  82 +++++++++-----
 drivers/ata/dwc_ahsata_priv.h      |   2 -
 drivers/clk/clk_boston.c           |  15 ++-
 drivers/core/syscon-uclass.c       |   4 +
 drivers/pci/Kconfig                |  10 ++
 drivers/pci/pci_auto.c             |  16 +--
 drivers/pci/pcie_xilinx.c          |  53 ++++++---
 dts/upstream/src/mips/Makefile     |  14 +++
 include/ahci.h                     |   4 +-
 28 files changed, 234 insertions(+), 308 deletions(-)
---
base-commit: c8ffd1356d42223cbb8c86280a083cc3c93e6426
change-id: 20240513-boston-45ef6edc219f

Best regards,
-- 
Jiaxun Yang <jiaxun.yang@flygoat.com>


             reply	other threads:[~2024-05-13 18:17 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-13 18:12 Jiaxun Yang [this message]
2024-05-13 18:12 ` [PATCH 01/13] pci: xilinx: Handle size of ecam region properly Jiaxun Yang
2024-05-13 18:12 ` [PATCH 02/13] pci: auto: Reduce bridge mem alignment boundary for boston Jiaxun Yang
2024-05-13 18:13 ` [PATCH 03/13] pci: Enable PCI_MAP_SYSTEM_MEMORY when ARCH_MAP_SYSMEM is not set Jiaxun Yang
2024-05-13 18:13 ` [PATCH 04/13] ahci: DMA addressing fixes Jiaxun Yang
2024-05-13 18:13 ` [PATCH 05/13] ahci: dwc_ahsata: Generalize the driver Jiaxun Yang
2024-05-13 18:13 ` [PATCH 06/13] MIPS: Provide dummy acpi_table.h Jiaxun Yang
2024-05-13 18:13 ` [PATCH 07/13] MIPS: boston: Imply various options Jiaxun Yang
2024-05-13 18:13 ` [PATCH 08/13] MIPS: boston: Provide default env vars Jiaxun Yang
2024-05-13 18:13 ` [PATCH 09/13] syscon: Probe device first in syscon_get_regmap Jiaxun Yang
2024-05-14 14:50   ` Jonas Karlman
2024-05-15  0:12     ` Jiaxun Yang
2024-05-15  6:28       ` Jonas Karlman
2024-05-13 18:13 ` [PATCH 10/13] clk: boston: Allow to get regmap from parent device Jiaxun Yang
2024-05-13 18:13 ` [PATCH 11/13] dts/upstream: Add Makefile for MIPS Jiaxun Yang
2024-05-14  5:38   ` Sumit Garg
2024-05-13 18:13 ` [PATCH 12/13] MIPS: boston: Migrate to OF_UPSTREAM Jiaxun Yang
2024-05-14  5:45   ` Sumit Garg
2024-05-16 11:58     ` Jiaxun Yang
2024-05-16 12:10       ` Sumit Garg
2024-05-13 18:13 ` [PATCH 13/13] mailmap: Update email for Paul Burton Jiaxun Yang

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=20240513-boston-v1-0-fac96938417e@flygoat.com \
    --to=jiaxun.yang@flygoat.com \
    --cc=daniel.schwierzeck@gmail.com \
    --cc=lukma@denx.de \
    --cc=michal.simek@amd.com \
    --cc=paulburton@kernel.org \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=sumit.garg@linaro.org \
    --cc=trini@konsulko.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).