U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Manikandan Muralidharan <manikandan.m@microchip.com>
To: Eugen Hristev <eugen.hristev@linaro.org>,
	Lukasz Majewski <lukma@denx.de>,  <seanga2@gmail.com>,
	<sumit.garg@linaro.org>, <kever.yang@rock-chips.com>,
	 <marek.vasut+renesas@mailbox.org>, <jonas@kwiboo.se>,
	<festevam@denx.de>,  <Oliver.Gaskell@analog.com>,
	<aford173@gmail.com>, <prasad.kummari@amd.com>,
	<caleb.connolly@linaro.org>, <andre.przywara@arm.com>,
	<neil.armstrong@linaro.org>, <mibodhi@gmail.com>,
	<nicolas.ferre@microchip.com>, <mihai.sain@microchip.com>,
	<sjg@chromium.org>, <u-boot@lists.denx.de>
Cc: <manikandan.m@microchip.com>
Subject: [PATCH v3 0/8] Add support for sam9x7 SoC and SAM9X75 Curiosity board
Date: Wed, 5 Mar 2025 11:37:03 +0530	[thread overview]
Message-ID: <20250305060711.1127301-1-manikandan.m@microchip.com> (raw)

This patch series adds support for the new SoC family - sam9x7.
 - sam9x7 SoC is added
 - Clock driver for sam9x7 is added
 - Target board SAM9X75 Curiosity is added with its differences in DT
 and MMC config support 

----

changes in v3:
- 1/8 - rename at91.h to at91-pmc-status.h, update the SoC DTs
	and MAINTAINERS file respectively
- 4/8 - update header from clk/at91.h to clock/at91.h 

changes in v2:
- 1/8 - add additional PMC clock definition to support the sam9x7 upstream DT
- 6/8 - Remove support for SoC DT and board DTS as they are already available
        in dts/upstream
      - add the differences in DT files between upstream Linux DT and U-Boot DT to
        at91-sam9x75_curiosity-u-boot.dtsi
- 7/8 - Add OF_UPSTREAM support for sam9x75 curiosity board
- 8/8 - update the DEFAULT_DEVICE_TREE config to <vendor/name>

----

Manikandan Muralidharan (4):
  dt-bindings: clock: rename at91.h to at91-pmc-status.h
  ARM: dts: at91: sam9x75_curiosity: add tweaks for sam9x75 curiosity
    board
  board: sam9x75_curiosity: Add support for sam9x75 curiosity
  configs: sam9x75_curiosity: Add initial mmc default config

Varshini Rajendran (4):
  clk: at91: sam9x60-pll: add support for core clock frequency inputs
  clk: at91: sam9x60-pll: add support for HW PLL freq dividers
  clk: at91: sam9x7: add pmc driver for sam9x7 SoC family
  ARM: at91: Add sam9x7 soc

 MAINTAINERS                                   |    2 +-
 .../dts/at91-sam9x75_curiosity-u-boot.dtsi    |  107 ++
 arch/arm/dts/at91-sama7g5ek-u-boot.dtsi       |    2 +-
 arch/arm/dts/at91sam9260.dtsi                 |    2 +-
 arch/arm/dts/at91sam9261.dtsi                 |    2 +-
 arch/arm/dts/at91sam9263.dtsi                 |    2 +-
 arch/arm/dts/at91sam9g45.dtsi                 |    2 +-
 arch/arm/dts/at91sam9n12.dtsi                 |    2 +-
 arch/arm/dts/at91sam9rl.dtsi                  |    2 +-
 arch/arm/dts/at91sam9x5.dtsi                  |    2 +-
 arch/arm/dts/sama5d3.dtsi                     |    2 +-
 arch/arm/dts/sama5d3_mci2.dtsi                |    2 +-
 arch/arm/dts/sama5d3_tcb1.dtsi                |    2 +-
 arch/arm/dts/sama5d3_uart.dtsi                |    2 +-
 arch/arm/dts/sama5d4.dtsi                     |    2 +-
 arch/arm/mach-at91/Kconfig                    |   12 +
 arch/arm/mach-at91/arm926ejs/Makefile         |    1 +
 arch/arm/mach-at91/arm926ejs/sam9x7_devices.c |   49 +
 arch/arm/mach-at91/include/mach/hardware.h    |    2 +
 arch/arm/mach-at91/include/mach/sam9x7.h      |  172 +++
 board/atmel/sam9x75_curiosity/Kconfig         |   15 +
 board/atmel/sam9x75_curiosity/MAINTAINERS     |    7 +
 board/atmel/sam9x75_curiosity/Makefile        |    7 +
 .../sam9x75_curiosity/sam9x75_curiosity.c     |   66 +
 configs/sam9x75_curiosity_mmc_defconfig       |   73 ++
 drivers/clk/at91/Makefile                     |    1 +
 drivers/clk/at91/clk-sam9x60-pll.c            |   55 +-
 drivers/clk/at91/pmc.h                        |    2 +
 drivers/clk/at91/sam9x60.c                    |    7 +
 drivers/clk/at91/sam9x7.c                     | 1094 +++++++++++++++++
 drivers/clk/at91/sama7g5.c                    |    6 +
 include/configs/sam9x75_curiosity.h           |   23 +
 .../clock/{at91.h => at91-pmc-status.h}       |    0
 33 files changed, 1703 insertions(+), 24 deletions(-)
 create mode 100644 arch/arm/dts/at91-sam9x75_curiosity-u-boot.dtsi
 create mode 100644 arch/arm/mach-at91/arm926ejs/sam9x7_devices.c
 create mode 100644 arch/arm/mach-at91/include/mach/sam9x7.h
 create mode 100644 board/atmel/sam9x75_curiosity/Kconfig
 create mode 100644 board/atmel/sam9x75_curiosity/MAINTAINERS
 create mode 100644 board/atmel/sam9x75_curiosity/Makefile
 create mode 100644 board/atmel/sam9x75_curiosity/sam9x75_curiosity.c
 create mode 100644 configs/sam9x75_curiosity_mmc_defconfig
 create mode 100644 drivers/clk/at91/sam9x7.c
 create mode 100644 include/configs/sam9x75_curiosity.h
 rename include/dt-bindings/clock/{at91.h => at91-pmc-status.h} (100%)

-- 
2.25.1


             reply	other threads:[~2025-03-05  6:07 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-05  6:07 Manikandan Muralidharan [this message]
2025-03-05  6:07 ` [PATCH v3 1/8] dt-bindings: clock: rename at91.h to at91-pmc-status.h Manikandan Muralidharan
2025-03-06  7:00   ` Sumit Garg
2025-03-06 10:39     ` Manikandan.M
2025-03-07  6:16       ` Sumit Garg
2025-03-17  5:40         ` Manikandan.M
2025-03-07 13:19       ` Eugen Hristev
2025-03-05  6:07 ` [PATCH v3 2/8] clk: at91: sam9x60-pll: add support for core clock frequency inputs Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 3/8] clk: at91: sam9x60-pll: add support for HW PLL freq dividers Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 4/8] clk: at91: sam9x7: add pmc driver for sam9x7 SoC family Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 5/8] ARM: at91: Add sam9x7 soc Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 6/8] ARM: dts: at91: sam9x75_curiosity: add tweaks for sam9x75 curiosity board Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 7/8] board: sam9x75_curiosity: Add support for sam9x75 curiosity Manikandan Muralidharan
2025-03-05  6:07 ` [PATCH v3 8/8] configs: sam9x75_curiosity: Add initial mmc default config Manikandan Muralidharan

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=20250305060711.1127301-1-manikandan.m@microchip.com \
    --to=manikandan.m@microchip.com \
    --cc=Oliver.Gaskell@analog.com \
    --cc=aford173@gmail.com \
    --cc=andre.przywara@arm.com \
    --cc=caleb.connolly@linaro.org \
    --cc=eugen.hristev@linaro.org \
    --cc=festevam@denx.de \
    --cc=jonas@kwiboo.se \
    --cc=kever.yang@rock-chips.com \
    --cc=lukma@denx.de \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=mibodhi@gmail.com \
    --cc=mihai.sain@microchip.com \
    --cc=neil.armstrong@linaro.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=prasad.kummari@amd.com \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=sumit.garg@linaro.org \
    --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