All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Minkyu Kang" <mk7.kang@samsung.com>
To: <u-boot@lists.denx.de>, <trini@konsulko.com>
Subject: Please pull u-boot-samsung master
Date: Tue, 20 Feb 2024 13:25:44 +0900	[thread overview]
Message-ID: <1ec901da63b4$dee1e420$9ca5ac60$@samsung.com> (raw)
In-Reply-To: CGME20240220042544epcas1p1814450956381663117a9e274d775a952@epcas1p1.samsung.com

Dear Tom,

The following changes since commit 15e7927b5a2d33666af19879577bf0c30ab088fe:

  Merge patch series "omap3: Make SPL_OMAP3_ID_NAND depend on
NAND_OMAP_GPMC" (2024-01-22 14:18:55 -0500)

are available in the git repository at:

  git@source.denx.de:u-boot/custodians/u-boot-samsung.git master

for you to fetch changes up to 1e81d12e34e874319e041652198a4ba561d751ab:

  MAINTAINERS: Add new Samsung subsystems (2024-01-24 11:23:20 +0900)

----------------------------------------------------------------
Sam Protsenko (13):
      dt-bindings: soc: samsung: Add Exynos USI
      dt-bindings: soc: samsung: Add Exynos PMU
      dt-bindings: clock: Add Exynos850 clock controller
      soc: samsung: Add Exynos USI driver
      soc: samsung: Add Exynos PMU driver
      clk: exynos: Move pll code into clk-exynos7420
      clk: exynos: Add Samsung clock framework
      clk: exynos: Add Exynos850 clock driver
      pinctrl: exynos: Add pinctrl support for Exynos850
      serial: s5p: Add Exynos850 compatible
      arm: exynos: Add Exynos850 SoC support
      board: samsung: Add support for E850-96 board
      MAINTAINERS: Add new Samsung subsystems

 MAINTAINERS                                                 |   25 +
 arch/arm/dts/Makefile                                       |    1 +
 arch/arm/dts/exynos-pinctrl.h                               |   79 +++
 arch/arm/dts/exynos850-e850-96-u-boot.dtsi                  |   37 ++
 arch/arm/dts/exynos850-e850-96.dts                          |  273
+++++++++
 arch/arm/dts/exynos850-pinctrl.dtsi                         |  663
++++++++++++++++++++++
 arch/arm/dts/exynos850.dtsi                                 |  809
++++++++++++++++++++++++++
 arch/arm/mach-exynos/Kconfig                                |   28 +-
 arch/arm/mach-exynos/mmu-arm64.c                            |   34 ++
 board/samsung/e850-96/Kconfig                               |   16 +
 board/samsung/e850-96/MAINTAINERS                           |    9 +
 board/samsung/e850-96/Makefile                              |    6 +
 board/samsung/e850-96/e850-96.c                             |   22 +
 configs/e850-96_defconfig                                   |   21 +
 doc/board/samsung/e850-96.rst                               |   87 +++
 doc/board/samsung/img/exynos850-boot-architecture.svg       | 1283
++++++++++++++++++++++++++++++++++++++++++
 doc/board/samsung/index.rst                                 |    1 +
 doc/device-tree-bindings/clock/samsung,exynos850-clock.yaml |  307
++++++++++
 doc/device-tree-bindings/soc/samsung/exynos-pmu.yaml        |   85 +++
 doc/device-tree-bindings/soc/samsung/exynos-usi.yaml        |  162 ++++++
 drivers/clk/exynos/Kconfig                                  |    7 +
 drivers/clk/exynos/Makefile                                 |   11 +-
 drivers/clk/exynos/clk-exynos7420.c                         |   25 +-
 drivers/clk/exynos/clk-exynos850.c                          |  189 +++++++
 drivers/clk/exynos/clk-pll.c                                |  167 +++++-
 drivers/clk/exynos/clk-pll.h                                |   16 +-
 drivers/clk/exynos/clk.c                                    |  121 ++++
 drivers/clk/exynos/clk.h                                    |  228 ++++++++
 drivers/pinctrl/exynos/Kconfig                              |    8 +
 drivers/pinctrl/exynos/Makefile                             |    1 +
 drivers/pinctrl/exynos/pinctrl-exynos850.c                  |  125 ++++
 drivers/serial/serial_s5p.c                                 |    1 +
 drivers/soc/Kconfig                                         |    1 +
 drivers/soc/Makefile                                        |    1 +
 drivers/soc/samsung/Kconfig                                 |   33 ++
 drivers/soc/samsung/Makefile                                |    4 +
 drivers/soc/samsung/exynos-pmu.c                            |  102 ++++
 drivers/soc/samsung/exynos-usi.c                            |  208 +++++++
 include/configs/e850-96.h                                   |   12 +
 include/dt-bindings/clock/exynos850.h                       |  337
+++++++++++
 include/dt-bindings/soc/samsung,exynos-usi.h                |   17 +
 41 files changed, 5538 insertions(+), 24 deletions(-)
 create mode 100644 arch/arm/dts/exynos-pinctrl.h
 create mode 100644 arch/arm/dts/exynos850-e850-96-u-boot.dtsi
 create mode 100644 arch/arm/dts/exynos850-e850-96.dts
 create mode 100644 arch/arm/dts/exynos850-pinctrl.dtsi
 create mode 100644 arch/arm/dts/exynos850.dtsi
 create mode 100644 board/samsung/e850-96/Kconfig
 create mode 100644 board/samsung/e850-96/MAINTAINERS
 create mode 100644 board/samsung/e850-96/Makefile
 create mode 100644 board/samsung/e850-96/e850-96.c
 create mode 100644 configs/e850-96_defconfig
 create mode 100644 doc/board/samsung/e850-96.rst
 create mode 100644 doc/board/samsung/img/exynos850-boot-architecture.svg
 create mode 100644
doc/device-tree-bindings/clock/samsung,exynos850-clock.yaml
 create mode 100644 doc/device-tree-bindings/soc/samsung/exynos-pmu.yaml
 create mode 100644 doc/device-tree-bindings/soc/samsung/exynos-usi.yaml
 create mode 100644 drivers/clk/exynos/clk-exynos850.c
 create mode 100644 drivers/clk/exynos/clk.c
 create mode 100644 drivers/clk/exynos/clk.h
 create mode 100644 drivers/pinctrl/exynos/pinctrl-exynos850.c
 create mode 100644 drivers/soc/samsung/Kconfig
 create mode 100644 drivers/soc/samsung/Makefile
 create mode 100644 drivers/soc/samsung/exynos-pmu.c
 create mode 100644 drivers/soc/samsung/exynos-usi.c
 create mode 100644 include/configs/e850-96.h
 create mode 100644 include/dt-bindings/clock/exynos850.h
 create mode 100644 include/dt-bindings/soc/samsung,exynos-usi.h

Thanks,
Minkyu Kang.



       reply	other threads:[~2024-02-20  4:26 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20240220042544epcas1p1814450956381663117a9e274d775a952@epcas1p1.samsung.com>
2024-02-20  4:25 ` Minkyu Kang [this message]
2024-02-20 18:15   ` Please pull u-boot-samsung master Tom Rini
     [not found] <CGME20260225075234epcas1p4b0561d04c012cbe3574755cc475c34fe@epcas1p4.samsung.com>
2026-02-25  7:52 ` please " Minkyu Kang
2026-02-25 17:26   ` Tom Rini
     [not found] <CGME20260223103749epcas1p2d9af2576eb9704b70a8572f7ccb8080f@epcas1p2.samsung.com>
2026-02-23 10:37 ` Minkyu Kang
2026-02-23 18:45   ` Tom Rini
2026-02-24  1:06     ` Minkyu Kang
2026-02-24 15:45       ` Kaustabh Chakraborty
     [not found] <CGME20251202065932epcas1p317a2fa75a3b16a4984a0c0bdf0515b5a@epcas1p3.samsung.com>
2025-12-02  6:59 ` Minkyu Kang
2025-12-02 19:30   ` Tom Rini
2025-09-05  6:39 Minkyu Kang
2025-09-05 16:44 ` Tom Rini
     [not found] <CGME20250725073112epcas1p364a18714ffddd807ea6c1fd1b8b373bd@epcas1p3.samsung.com>
2025-07-25  7:31 ` Please " Minkyu Kang
2025-07-25 16:31   ` Tom Rini
     [not found] <CGME20250210043511epcas1p33ed93b581644b1a1a14a8710afeaaf97@epcas1p3.samsung.com>
2025-02-10  4:35 ` Minkyu Kang
2025-02-10 15:52   ` Tom Rini
     [not found] <CGME20241203063944epcas1p45e5c757403cd06ebd265a93e7fdbbeff@epcas1p4.samsung.com>
2024-12-03  6:39 ` Minkyu Kang
2024-12-03 19:57   ` Tom Rini
     [not found] <CGME20240822102010epcas1p434e5a447b002e8bdea5423a034c2e444@epcas1p4.samsung.com>
2024-08-22 10:20 ` Minkyu Kang
2024-08-22 21:54   ` Tom Rini
2024-08-23  7:50     ` Minkyu Kang
     [not found] <CGME20240603060854epcas1p207233f59828c47f31e941894634b9af7@epcas1p2.samsung.com>
2024-06-03  6:08 ` Minkyu Kang
2024-06-03 17:42   ` Tom Rini
     [not found] <CGME20240404085411epcas1p3f10e648bd35670e090592cb4fbb97d58@epcas1p3.samsung.com>
2024-04-04  8:54 ` Minkyu Kang
2024-04-06  0:41   ` Tom Rini
     [not found] <CGME20240109015516epcas1p368e48c6d3e2433577bf7d0684966c45b@epcas1p3.samsung.com>
2024-01-09  1:55 ` Minkyu Kang
2024-01-09 15:59   ` Tom Rini
     [not found]     ` <29757fea-207b-53c8-844f-e76829cf04b3@posteo.net>
     [not found]       ` <20240111175723.GK1610741@bill-the-cat>
2024-01-12 18:52         ` Stefan Bosch
2024-01-12 18:54           ` Tom Rini
2024-01-09 17:49   ` Tom Rini
2024-01-11  5:25     ` Minkyu Kang
     [not found] <CGME20231128031606epcas1p4a03b83245075b91119b523dda9899537@epcas1p4.samsung.com>
2023-11-28  3:16 ` Minkyu Kang
2023-11-28 16:28   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2021-01-22  7:45 please " Minkyu Kang
2021-01-23 17:45 ` Tom Rini

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='1ec901da63b4$dee1e420$9ca5ac60$@samsung.com' \
    --to=mk7.kang@samsung.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.