Message ID | 20240517-boston-v3-0-1ea7d23f4a1d@flygoat.com |
---|---|
Headers | show |
Series | MIPS: Boston: Various enhancements | expand |
在2024年5月18日五月 上午2:14,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. Ping for apply :-) > > 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>
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,