From: Heiko Schocher <hs@denx.de>
To: Tom Rini <trini@konsulko.com>
Cc: "u-boot@lists.denx.de" <u-boot@lists.denx.de>
Subject: Please pull u-boot-i2c
Date: Tue, 11 Apr 2023 13:04:13 +0200 [thread overview]
Message-ID: <5266f18b-454e-1c8d-666f-41a9b94a9d8e@denx.de> (raw)
Hello Tom,
please pull from u-boot-i2c:
The following changes since commit 11c25c6df0b56ee7eee2c4ddc7f075880daeb8c7:
Merge https://source.denx.de/u-boot/custodians/u-boot-mmc (2023-04-10 08:32:11 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-i2c.git tags/for-v2023-07-rc1
for you to fetch changes up to 5cf008637221ad3b4d4ecdc2befca19b2bdab53d:
m68k: upgrading all boards to dm i2c (2023-04-11 06:52:11 +0200)
----------------------------------------------------------------
i2c updates for v2023-07-rc1
- designware_i2c: remove apparently redundant read of 'i2c, speeds' DT property
from Rasmus Villemoes
- fix: correct I2C deblock logic from Haibo Chen
- imx_lpi2c: Fix misuse the IS_ENABLED for DM clock from Ye Li
- m68k: convert to DM from Angelo Dureghello
----------------------------------------------------------------
Angelo Dureghello (6):
m68k: move CONFIG_SYS_I2C to CFG_ namespace
board: stmark2: add i2c0 pinmux pad configuration
m68k: mcf5441x: fix CONFIG_SYS_FSL_I2C definition
i2c: fsl_i2c: fix m68k transferts
m68k: dts: add i2c nodes
m68k: upgrading all boards to dm i2c
Haibo Chen (1):
i2c: correct I2C deblock logic
Rasmus Villemoes (1):
i2c: designware_i2c: remove apparently redundant read of 'i2c, speeds' DT property
Ye Li (1):
i2c: imx_lpi2c: Fix misuse the IS_ENABLED for DM clock
arch/m68k/cpu/mcf5445x/cpu_init.c | 6 +++---
arch/m68k/cpu/mcf5445x/speed.c | 5 ++---
arch/m68k/dts/M5208EVBE.dts | 6 ++++++
arch/m68k/dts/M5253DEMO.dts | 5 +++++
arch/m68k/dts/M5275EVB.dts | 6 ++++++
arch/m68k/dts/M53017EVB.dts | 6 ++++++
arch/m68k/dts/M5329AFEE.dts | 6 ++++++
arch/m68k/dts/M5329BFEE.dts | 6 ++++++
arch/m68k/dts/M5373EVB.dts | 4 ++++
arch/m68k/dts/astro_mcf5373l.dts | 5 +++++
arch/m68k/dts/eb_cpu5282.dts | 9 +++++++++
arch/m68k/dts/eb_cpu5282_internal.dts | 9 +++++++++
arch/m68k/dts/mcf5208.dtsi | 10 ++++++++++
arch/m68k/dts/mcf523x.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5249.dtsi | 28 ++++++++++++++++++++++++++++
arch/m68k/dts/mcf5253.dtsi | 28 ++++++++++++++++++++++++++++
arch/m68k/dts/mcf5271.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5275.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5282.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5301x.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5307.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5329.dtsi | 10 ++++++++++
arch/m68k/dts/mcf537x.dtsi | 10 ++++++++++
arch/m68k/dts/mcf5441x.dtsi | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
arch/m68k/dts/stmark2.dts | 4 ++++
arch/m68k/include/asm/fsl_i2c.h | 10 ++++++++++
configs/M5208EVBE_defconfig | 5 +----
configs/M5235EVB_Flash32_defconfig | 1 +
configs/M5235EVB_defconfig | 1 +
configs/M5253DEMO_defconfig | 5 +----
configs/M5275EVB_defconfig | 5 +----
configs/M53017EVB_defconfig | 6 ++----
configs/M5329AFEE_defconfig | 6 ++----
configs/M5329BFEE_defconfig | 6 ++----
configs/M5373EVB_defconfig | 3 ++-
configs/astro_mcf5373l_defconfig | 6 ++----
configs/eb_cpu5282_defconfig | 5 ++---
configs/eb_cpu5282_internal_defconfig | 5 ++---
configs/stmark2_defconfig | 4 ++++
drivers/i2c/designware_i2c_pci.c | 14 --------------
drivers/i2c/fsl_i2c.c | 16 +++++++++-------
drivers/i2c/i2c-uclass.c | 4 ++--
drivers/i2c/imx_lpi2c.c | 4 ++--
include/configs/stmark2.h | 2 ++
44 files changed, 325 insertions(+), 66 deletions(-)
travis build is fine:
https://dev.azure.com/hs0298/hs/_build/results?buildId=102&view=results
Thanks!
bye,
Heiko
--
DENX Software Engineering GmbH, Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs@denx.de
next reply other threads:[~2023-04-11 11:04 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-11 11:04 Heiko Schocher [this message]
2023-04-11 14:42 ` Please pull u-boot-i2c Tom Rini
-- strict thread matches above, loose matches on Subject: below --
2026-08-25 11:21 Heiko Schocher
2026-08-25 20:02 ` Tom Rini
2026-08-26 4:17 ` Heiko Schocher
2026-07-09 15:24 Heiko Schocher
2026-07-10 1:11 ` Tom Rini
2026-05-14 13:36 Heiko Schocher
2026-05-14 17:55 ` Tom Rini
2026-01-07 7:15 Heiko Schocher
2026-01-07 21:07 ` Tom Rini
2024-10-21 8:27 Heiko Schocher
2024-10-21 16:39 ` Tom Rini
2024-08-08 8:42 Heiko Schocher
2024-08-08 13:58 ` Tom Rini
2024-08-08 14:06 ` Heiko Schocher
2024-08-08 14:52 ` Tom Rini
2023-11-02 14:10 Heiko Schocher
2023-11-02 14:53 ` Tom Rini
2023-08-15 7:53 Heiko Schocher
2023-08-15 16:59 ` Tom Rini
2023-06-05 7:39 Heiko Schocher
2023-06-05 19:58 ` Tom Rini
2023-06-06 4:17 ` Heiko Schocher
2023-06-06 17:29 ` Tom Rini
2023-02-13 14:52 Heiko Schocher
2023-02-13 16:28 ` Tom Rini
2022-12-05 7:30 Heiko Schocher
2022-12-05 15:58 ` Tom Rini
2022-11-14 9:12 Heiko Schocher
2022-11-14 20:44 ` Tom Rini
2022-07-19 15:24 Heiko Schocher
2022-07-20 11:10 ` Tom Rini
2022-03-23 9:16 Heiko Schocher
2022-03-23 14:22 ` Tom Rini
2021-12-20 10:14 Heiko Schocher
2021-12-20 16:16 ` 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=5266f18b-454e-1c8d-666f-41a9b94a9d8e@denx.de \
--to=hs@denx.de \
--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.