public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Christophe Leroy <christophe.leroy@csgroup.eu>
To: Jagan Teki <jagan@amarulasolutions.com>,
	Jean-Michel CASAUBON <jean-michel.casaubon@csgroup.eu>,
	DUBOIS Hugo <hugo.dubois.ext@csgroup.eu>,
	florent.trinh-thai@csgroup.eu, Tom Rini <trini@konsulko.com>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>, u-boot@lists.denx.de
Subject: [PATCH v2 00/17] Misc changes for CSSI boards
Date: Mon, 15 Apr 2024 08:07:13 +0200	[thread overview]
Message-ID: <cover.1713160866.git.christophe.leroy@csgroup.eu> (raw)

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


             reply	other threads:[~2024-04-15  6:07 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-15  6:07 Christophe Leroy [this message]
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

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=cover.1713160866.git.christophe.leroy@csgroup.eu \
    --to=christophe.leroy@csgroup.eu \
    --cc=florent.trinh-thai@csgroup.eu \
    --cc=hugo.dubois.ext@csgroup.eu \
    --cc=jagan@amarulasolutions.com \
    --cc=jean-michel.casaubon@csgroup.eu \
    --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