All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/12] MIPS: Boston: Various enhancements
@ 2024-05-17 18:14 Jiaxun Yang
  2024-05-17 18:14 ` [PATCH v3 01/12] pci: xilinx: Handle size of ecam region properly Jiaxun Yang
                   ` (13 more replies)
  0 siblings, 14 replies; 29+ messages in thread
From: Jiaxun Yang @ 2024-05-17 18:14 UTC (permalink / raw)
  To: u-boot
  Cc: Michal Simek, Tom Rini, Daniel Schwierzeck, Paul Burton,
	Simon Glass, Lukasz Majewski, Sean Anderson, Sumit Garg,
	Jonas Karlman, Jiaxun Yang

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>
---
Changes in v3:
- Slight change in clk_boston probe order (Jonas)
- Link to v2: https://lore.kernel.org/r/20240516-boston-v2-0-77938800d1dd@flygoat.com

Changes in v2:
- Drop "[PATCH 09/13] syscon: Probe device first in syscon_get_regmap"
  in flavour of fixing the driver device life cycle (Jonas)
- Link to v1: https://lore.kernel.org/r/20240513-boston-v1-0-fac96938417e@flygoat.com

---
Jiaxun Yang (12):
      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
      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           |  19 ++--
 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 +-
 27 files changed, 232 insertions(+), 310 deletions(-)
---
base-commit: c8ffd1356d42223cbb8c86280a083cc3c93e6426
change-id: 20240513-boston-45ef6edc219f

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


^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2025-04-23  1:50 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 18:14 [PATCH v3 00/12] MIPS: Boston: Various enhancements Jiaxun Yang
2024-05-17 18:14 ` [PATCH v3 01/12] pci: xilinx: Handle size of ecam region properly Jiaxun Yang
2024-05-19 17:57   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 02/12] pci: auto: Reduce bridge mem alignment boundary for boston Jiaxun Yang
2024-05-19 17:57   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 03/12] pci: Enable PCI_MAP_SYSTEM_MEMORY when ARCH_MAP_SYSMEM is not set Jiaxun Yang
2024-05-19 17:58   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 04/12] ahci: DMA addressing fixes Jiaxun Yang
2024-05-17 18:14 ` [PATCH v3 05/12] ahci: dwc_ahsata: Generalize the driver Jiaxun Yang
2024-05-17 18:14 ` [PATCH v3 06/12] MIPS: Provide dummy acpi_table.h Jiaxun Yang
2024-05-19 17:59   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 07/12] MIPS: boston: Imply various options Jiaxun Yang
2024-05-19 17:59   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 08/12] MIPS: boston: Provide default env vars Jiaxun Yang
2024-05-19 17:59   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 09/12] clk: boston: Allow to get regmap from parent device Jiaxun Yang
2024-05-19 18:16   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 10/12] dts/upstream: Add Makefile for MIPS Jiaxun Yang
2024-05-19 18:18   ` Daniel Schwierzeck
2024-05-17 18:14 ` [PATCH v3 11/12] MIPS: boston: Migrate to OF_UPSTREAM Jiaxun Yang
2024-05-19 18:20   ` Daniel Schwierzeck
2024-05-19 20:57     ` Jiaxun Yang
2024-05-19 22:47       ` Tom Rini
2024-05-20  9:52         ` Sumit Garg
2024-05-17 18:15 ` [PATCH v3 12/12] mailmap: Update email for Paul Burton Jiaxun Yang
2024-05-19 18:24   ` Daniel Schwierzeck
2024-05-30 19:21   ` Maciej W. Rozycki
2024-07-17 14:33 ` [PATCH v3 00/12] MIPS: Boston: Various enhancements Jiaxun Yang
2025-04-23  1:49 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.