public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v2 00/17] Misc changes for CSSI boards
@ 2024-04-15  6:07 Christophe Leroy
  2024-04-15  6:07 ` [PATCH v2 01/17] board: cssi: Fix MCR3000 board environment Christophe Leroy
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Christophe Leroy @ 2024-04-15  6:07 UTC (permalink / raw)
  To: Jagan Teki, Jean-Michel CASAUBON, DUBOIS Hugo, florent.trinh-thai,
	Tom Rini
  Cc: Christophe Leroy, u-boot

This series contains misc fixes and changes for CSSI boards.

Main changes are:
- Fix and optimise mpc8xx SPI driver
- Add support for LM74 temperature sensor
- Add support for loading FPGA on MCR3000

I will send a pull request later before close of the merge window.

Changes since v1:
- Added temperature and FPGA support and SPI driver optimisation

Christophe Leroy (13):
  board: cssi: Fix SPI nodes in DTS
  spi: mpc8xx: Add GPIO dependency
  spi: mpc8xx: Fix transfert when input or output buffer is NULL
  thermal: Add support for TI LM74
  board: cssi: Add support for SPI bus on MCR3000 board
  board: cssi: add support for reading temperature
  powerpc: 8xx: Set SDMA configuration register correcly
  spi: mpc8xx: Allow transfer of more than MAX_BUFFER len
  spi: mpc8xx: Use 16 bit mode for large transfers with even size
  spi: mpc8xx: Set up speed as requested
  board: cssi: Use HAVE_VENDOR_COMMON_LIB logic
  board: cssi: Load FPGA on MCR3000 board
  board: cssi: Read and display MCR board address

Hugo Dubois (2):
  board: cssi: Initialise port F on MIAE
  board: cssi: Properly initialise MAC address for fibre on CMPC885
    board

Jean-Michel CASAUBON (2):
  board: cssi: Fix MCR3000 board environment
  board: cssi: Allow use without HUSH shell

 arch/powerpc/cpu/mpc8xx/cpu_init.c |   6 ++
 arch/powerpc/dts/cmpc885.dts       |  18 ++++-
 arch/powerpc/dts/cmpcpro.dts       |  16 +++-
 arch/powerpc/dts/mcr3000.dts       |  41 +++++++++++
 board/cssi/cmpc885/Makefile        |   2 +-
 board/cssi/cmpc885/cmpc885.c       |   4 +-
 board/cssi/cmpc885/cmpc885.env     |   4 +-
 board/cssi/cmpcpro/Makefile        |   2 +-
 board/cssi/cmpcpro/cmpcpro.env     |   4 +-
 board/cssi/common/Makefile         |   8 ++
 board/cssi/common/common.c         |  42 ++++++++++-
 board/cssi/mcr3000/Makefile        |   1 +
 board/cssi/mcr3000/fpga_code.h     |  10 +++
 board/cssi/mcr3000/mcr3000.c       |  58 +++++++++++++++
 board/cssi/mcr3000/mcr3000.env     |   2 +-
 board/cssi/mcr3000/mcr3000_gpio.c  | 109 ++++++++++++++++++++++++++++
 configs/CMPC885_defconfig          |   3 +
 configs/CMPCPRO_defconfig          |   3 +
 configs/MCR3000_defconfig          |   8 ++
 drivers/spi/Kconfig                |   2 +-
 drivers/spi/mpc8xx_spi.c           | 113 ++++++++++++++++++++++++-----
 drivers/thermal/Kconfig            |   6 ++
 drivers/thermal/Makefile           |   1 +
 drivers/thermal/ti-lm74.c          |  52 +++++++++++++
 24 files changed, 476 insertions(+), 39 deletions(-)
 create mode 100644 board/cssi/common/Makefile
 create mode 100644 board/cssi/mcr3000/fpga_code.h
 create mode 100644 board/cssi/mcr3000/mcr3000_gpio.c
 create mode 100644 drivers/thermal/ti-lm74.c

-- 
2.43.0


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

end of thread, other threads:[~2024-04-15  6:10 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-15  6:07 [PATCH v2 00/17] Misc changes for CSSI boards Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 01/17] board: cssi: Fix MCR3000 board environment Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 02/17] board: cssi: Fix SPI nodes in DTS Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 03/17] board: cssi: Allow use without HUSH shell Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 04/17] board: cssi: Initialise port F on MIAE Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 05/17] board: cssi: Properly initialise MAC address for fibre on CMPC885 board Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 06/17] spi: mpc8xx: Add GPIO dependency Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 07/17] spi: mpc8xx: Fix transfert when input or output buffer is NULL Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 08/17] thermal: Add support for TI LM74 Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 09/17] board: cssi: Add support for SPI bus on MCR3000 board Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 10/17] board: cssi: add support for reading temperature Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 11/17] powerpc: 8xx: Set SDMA configuration register correcly Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 12/17] spi: mpc8xx: Allow transfer of more than MAX_BUFFER len Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 13/17] spi: mpc8xx: Use 16 bit mode for large transfers with even size Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 14/17] spi: mpc8xx: Set up speed as requested Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 15/17] board: cssi: Use HAVE_VENDOR_COMMON_LIB logic Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 16/17] board: cssi: Load FPGA on MCR3000 board Christophe Leroy
2024-04-15  6:07 ` [PATCH v2 17/17] board: cssi: Read and display MCR board address Christophe Leroy

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