U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: Mark Kettenis <mark.kettenis@xs4all.nl>,
	Jaehoon Chung <jh80.chung@gmail.com>
Cc: kettenis@openbsd.org, u-boot@lists.denx.de, sjg@chromium.org
Subject: Re: [PATCH 0/3] Apple M1 power management controller support
Date: Wed, 29 Dec 2021 10:50:17 +0900	[thread overview]
Message-ID: <772bd801-887f-57cd-d5c5-83f4f46cdd31@samsung.com> (raw)
In-Reply-To: <d3cb700e11f12e39@bloch.sibelius.xs4all.nl>

Dear Mark,

On 12/24/21 6:37 AM, Mark Kettenis wrote:
>> From: Jaehoon Chung <jh80.chung@gmail.com>
>> Date: Wed, 22 Dec 2021 18:56:18 +0900
> 
> Dear Jaehoon,
> 
> Just noticed that I accidentally included some unrelated
> driver/mailbox changes in the first patch from this series.  So I sent
> a v2 without those.

I have checked your patch V2. After applied the watchdog patches, I will check your patches one more.

Best Regards,
Jaehoon Chung

> 
> Thanks,
> 
> Mark
> 
> 
>> Hi Mark,
>>
>> On 12/21/21 5:30 PM, Mark Kettenis wrote:
>>>> From: Jaehoon Chung <jh80.chung@samsung.com>
>>>> Date: Tue, 21 Dec 2021 08:00:38 +0900
>>> Hello Jaehoon,
>>>
>>>> Dear Mark,
>>>>
>>>> On 12/7/21 4:03 AM, Mark Kettenis wrote:
>>>>> This series adds support for the power management controller found on
>>>>> Apple SoCs based on the device tree bindings submitted to upstream
>>>>> Linux.  This is needed to enable power domains for devices that
>>>>> haven't been enabled by earlier boot stages.
>>>> Is there any patch before applied this patchset?
>>> This is based on next, with the watchdog patch applied:
>>>
>>> https://protect2.fireeye.com/v1/url?k=3d0f182a-62942121-3d0e9365-002590f5b904-fe718e0a7d074ee3&q=1&e=eeb98822-5c4a-4946-9af9-cd3bcec1aef0&u=https%3A%2F%2Fpatchwork.ozlabs.org%2Fproject%2Fuboot%2Flist%2F%3Fseries%3D271919
>>>
>>> The drivers are independent, but I suppose you get conflicts in
>>> Kconfig and maybe the device tree without that series applied.
>>
>> Thanks for sharing information. I will check on next branch. 
>>
>> Best Regards,
>> Jaehoon Chung
>>
>>>
>>> Cheers,
>>>
>>> Mark
>>>
>>>>>
>>>>> Mark Kettenis (3):
>>>>>   arm: dts: apple: Update Apple M1 device trees
>>>>>   arm: dts: apple: Add u-boot,dm-pre-reloc properties
>>>>>   power: domain: Add Apple pmgr driver
>>>>>
>>>>>  arch/arm/Kconfig                    |    4 +
>>>>>  arch/arm/dts/Makefile               |    5 +-
>>>>>  arch/arm/dts/t8103-j274-u-boot.dtsi |    1 +
>>>>>  arch/arm/dts/t8103-j274.dts         |  122 +--
>>>>>  arch/arm/dts/t8103-j293-u-boot.dtsi |    1 +
>>>>>  arch/arm/dts/t8103-j293.dts         |   92 +--
>>>>>  arch/arm/dts/t8103-j313-u-boot.dtsi |    1 +
>>>>>  arch/arm/dts/t8103-j313.dts         |   57 ++
>>>>>  arch/arm/dts/t8103-j456-u-boot.dtsi |    1 +
>>>>>  arch/arm/dts/t8103-j456.dts         |   71 ++
>>>>>  arch/arm/dts/t8103-j457-u-boot.dtsi |    1 +
>>>>>  arch/arm/dts/t8103-j457.dts         |   59 ++
>>>>>  arch/arm/dts/t8103-jxxx.dtsi        |  140 ++++
>>>>>  arch/arm/dts/t8103-pmgr.dtsi        | 1136 +++++++++++++++++++++++++++
>>>>>  arch/arm/dts/t8103-u-boot.dtsi      |   25 +
>>>>>  arch/arm/dts/t8103.dtsi             |  585 +++++++-------
>>>>>  drivers/mailbox/Kconfig             |    9 +
>>>>>  drivers/mailbox/Makefile            |    1 +
>>>>>  drivers/power/domain/Kconfig        |    8 +
>>>>>  drivers/power/domain/Makefile       |    1 +
>>>>>  drivers/power/domain/apple-pmgr.c   |  113 +++
>>>>>  21 files changed, 2005 insertions(+), 428 deletions(-)
>>>>>  create mode 100644 arch/arm/dts/t8103-j274-u-boot.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-j293-u-boot.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-j313-u-boot.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-j313.dts
>>>>>  create mode 100644 arch/arm/dts/t8103-j456-u-boot.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-j456.dts
>>>>>  create mode 100644 arch/arm/dts/t8103-j457-u-boot.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-j457.dts
>>>>>  create mode 100644 arch/arm/dts/t8103-jxxx.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-pmgr.dtsi
>>>>>  create mode 100644 arch/arm/dts/t8103-u-boot.dtsi
>>>>>  create mode 100644 drivers/power/domain/apple-pmgr.c
>>>>>
>>>>
>>
>>
> 


      reply	other threads:[~2021-12-29  1:50 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20211206190321epcas1p4d6818c609bb81f779ec2e8b14a951c0b@epcas1p4.samsung.com>
2021-12-06 19:03 ` [PATCH 0/3] Apple M1 power management controller support Mark Kettenis
2021-12-06 19:03   ` [PATCH 1/3] arm: dts: apple: Update Apple M1 device trees Mark Kettenis
2021-12-06 19:03   ` [PATCH 2/3] arm: dts: apple: Add u-boot,dm-pre-reloc properties Mark Kettenis
2021-12-06 19:03   ` [PATCH 3/3] power: domain: Add Apple pmgr driver Mark Kettenis
2021-12-20 23:00   ` [PATCH 0/3] Apple M1 power management controller support Jaehoon Chung
2021-12-21  8:30     ` Mark Kettenis
2021-12-22  9:56       ` Jaehoon Chung
2021-12-23 21:37         ` Mark Kettenis
2021-12-29  1:50           ` Jaehoon Chung [this message]

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=772bd801-887f-57cd-d5c5-83f4f46cdd31@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=jh80.chung@gmail.com \
    --cc=kettenis@openbsd.org \
    --cc=mark.kettenis@xs4all.nl \
    --cc=sjg@chromium.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