public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v1 00/15] mips: octeon: MIPS Octeon misc updates: NIC23, AHCI, serial-remote tools etc
@ 2021-04-07  7:12 Stefan Roese
  2021-04-07  7:12 ` [PATCH v1 01/15] mips: octeon: Move CVMX_SYNC from octeon_ddr.h to cvmx-regs.h Stefan Roese
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Stefan Roese @ 2021-04-07  7:12 UTC (permalink / raw)
  To: u-boot


This patchset adds the following updates / fixes for Marvell MIPS Octeon:
- MIPS Octeon NIC23 base support
- Add serial_octeon_pcie_console to support the Marvell remote tool
  "oct-remote-console"
- Add serial_octeon_bootcmd to support the Marvell remote tools
  "oct-remote-load" & "oct-remote-bootcmd"
- Fix AHCI driver to support big-endian platforms
- Misc minor updates & fixes to the MIPS Octeon platform code
- EBB7304: Enable USB storage support
- EBB7304: Add I2C support (devices & commands)

This patchset requires the MIPS Octeon serdes & PCIe patchset which was
posted to the list 2020-12-11.

Thanks,
Stefan


Aaron Williams (2):
  mips: octeon: dts/dtsi: Change UART DT node to use clocks property
  mips: octeon: ebb7304: Add support for some I2C devices

Stefan Roese (13):
  mips: octeon: Move CVMX_SYNC from octeon_ddr.h to cvmx-regs.h
  mips: octeon: cvmx-bootmem: Fix compare in "if" statement
  mips: octeon: cvmx-coremask.h: Fix cvmx_coremask_dprint() with DEBUG
    defined
  serial: serial_octeon_pcie_console.c: Add PCI remote console support
  serial: serial_octeon_bootcmd.c: Add PCI remote console support
  mips: octeon: cpu.c: Add arch_misc_init() for pci-console &
    pci-bootcmd
  mips: octeon: cpu.c: Enable AHCI/SATA support
  sata: ahci_mvebu.c: Enable AHCI/SATA driver for MIPS Octeon
  ata: ahci: Fix usage on big-endian platforms
  scsi: Add ata_swap_buf_le16() to support big-endian platforms
  mips: octeon: mrvl,cn73xx.dtsi:  Add AHCI/SATA DT node
  mips: octeon: Add Octeon III NIC23 board support
  mips: octeon: octeon_ebb7304_defconfig: Enable USB storage support

 arch/mips/dts/Makefile                        |   1 +
 arch/mips/dts/mrvl,cn73xx.dtsi                |  21 +
 arch/mips/dts/mrvl,octeon-ebb7304.dts         |  15 +-
 arch/mips/dts/mrvl,octeon-nic23.dts           | 162 ++++++++
 arch/mips/mach-octeon/Kconfig                 |   7 +
 arch/mips/mach-octeon/cpu.c                   | 348 ++++++++++++++++-
 arch/mips/mach-octeon/cvmx-bootmem.c          |   4 +-
 .../mach-octeon/include/mach/cvmx-coremask.h  |   5 +-
 .../mips/mach-octeon/include/mach/cvmx-regs.h |   1 +
 .../mach-octeon/include/mach/octeon_ddr.h     |   2 -
 board/Marvell/octeon_nic23/Kconfig            |  19 +
 board/Marvell/octeon_nic23/MAINTAINERS        |   7 +
 board/Marvell/octeon_nic23/Makefile           |   8 +
 board/Marvell/octeon_nic23/board.c            | 106 +++++
 board/Marvell/octeon_nic23/board_ddr.h        | 269 +++++++++++++
 configs/octeon_ebb7304_defconfig              |   9 +-
 configs/octeon_nic23_defconfig                |  70 ++++
 drivers/ata/Kconfig                           |   2 +-
 drivers/ata/ahci.c                            |  23 +-
 drivers/ata/ahci_mvebu.c                      |   3 +-
 drivers/scsi/scsi.c                           |   6 +
 drivers/serial/Kconfig                        |  24 ++
 drivers/serial/Makefile                       |   2 +
 drivers/serial/serial_octeon_bootcmd.c        | 182 +++++++++
 drivers/serial/serial_octeon_pcie_console.c   | 365 ++++++++++++++++++
 include/configs/octeon_nic23.h                |  21 +
 26 files changed, 1656 insertions(+), 26 deletions(-)
 create mode 100644 arch/mips/dts/mrvl,octeon-nic23.dts
 create mode 100644 board/Marvell/octeon_nic23/Kconfig
 create mode 100644 board/Marvell/octeon_nic23/MAINTAINERS
 create mode 100644 board/Marvell/octeon_nic23/Makefile
 create mode 100644 board/Marvell/octeon_nic23/board.c
 create mode 100644 board/Marvell/octeon_nic23/board_ddr.h
 create mode 100644 configs/octeon_nic23_defconfig
 create mode 100644 drivers/serial/serial_octeon_bootcmd.c
 create mode 100644 drivers/serial/serial_octeon_pcie_console.c
 create mode 100644 include/configs/octeon_nic23.h

-- 
2.31.1

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

end of thread, other threads:[~2021-04-24 22:49 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-07  7:12 [PATCH v1 00/15] mips: octeon: MIPS Octeon misc updates: NIC23, AHCI, serial-remote tools etc Stefan Roese
2021-04-07  7:12 ` [PATCH v1 01/15] mips: octeon: Move CVMX_SYNC from octeon_ddr.h to cvmx-regs.h Stefan Roese
2021-04-07  7:12 ` [PATCH v1 02/15] mips: octeon: cvmx-bootmem: Fix compare in "if" statement Stefan Roese
2021-04-07  7:12 ` [PATCH v1 03/15] mips: octeon: cvmx-coremask.h: Fix cvmx_coremask_dprint() with DEBUG defined Stefan Roese
2021-04-07  7:12 ` [PATCH v1 04/15] serial: serial_octeon_pcie_console.c: Add PCI remote console support Stefan Roese
2021-04-07  7:12 ` [PATCH v1 05/15] serial: serial_octeon_bootcmd.c: " Stefan Roese
2021-04-07  7:12 ` [PATCH v1 06/15] mips: octeon: cpu.c: Add arch_misc_init() for pci-console & pci-bootcmd Stefan Roese
2021-04-07  7:12 ` [PATCH v1 07/15] mips: octeon: cpu.c: Enable AHCI/SATA support Stefan Roese
2021-04-07  7:12 ` [PATCH v1 08/15] sata: ahci_mvebu.c: Enable AHCI/SATA driver for MIPS Octeon Stefan Roese
2021-04-07  7:12 ` [PATCH v1 09/15] ata: ahci: Fix usage on big-endian platforms Stefan Roese
2021-04-07  7:12 ` [PATCH v1 10/15] scsi: Add ata_swap_buf_le16() to support " Stefan Roese
2021-04-07  7:12 ` [PATCH v1 11/15] mips: octeon: mrvl, cn73xx.dtsi: Add AHCI/SATA DT node Stefan Roese
2021-04-07  7:12 ` [PATCH v1 12/15] mips: octeon: Add Octeon III NIC23 board support Stefan Roese
2021-04-07  7:12 ` [PATCH v1 13/15] mips: octeon: dts/dtsi: Change UART DT node to use clocks property Stefan Roese
2021-04-07  7:12 ` [PATCH v1 14/15] mips: octeon: ebb7304: Add support for some I2C devices Stefan Roese
2021-04-07  7:12 ` [PATCH v1 15/15] mips: octeon: octeon_ebb7304_defconfig: Enable USB storage support Stefan Roese
2021-04-24 22:49 ` [PATCH v1 00/15] mips: octeon: MIPS Octeon misc updates: NIC23, AHCI, serial-remote tools etc Daniel Schwierzeck

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox