From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: Chen-Yu Tsai <wenst@chromium.org>,
Tinghan Shen <tinghan.shen@mediatek.com>
Cc: matthias.bgg@gmail.com, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/8] arm64: dts: mediatek: cherry: Enable the System Companion Processor
Date: Mon, 25 Jul 2022 10:06:48 +0200 [thread overview]
Message-ID: <94bea93e-484d-e635-4e94-5ffe14b127f4@collabora.com> (raw)
In-Reply-To: <CAGXv+5Ekk_ndyPGVmWWRFkE3uveDHSczyf2OsdhOtqfSHxvnMw@mail.gmail.com>
Il 25/07/22 06:21, Chen-Yu Tsai ha scritto:
> On Thu, Jul 21, 2022 at 10:50 PM AngeloGioacchino Del Regno
> <angelogioacchino.delregno@collabora.com> wrote:
>>
>> MT8195 features a SCP like some other older SoCs, and Cherry uses it
>> for various tasks. Add the required pin configuration and DMA pool
>> and enable the node.
>>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> ---
>> .../boot/dts/mediatek/mt8195-cherry.dtsi | 28 +++++++++++++++++++
>> 1 file changed, 28 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi b/arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi
>> index fcc600674339..feebbe367e93 100644
>> --- a/arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi
>> +++ b/arch/arm64/boot/dts/mediatek/mt8195-cherry.dtsi
>> @@ -104,6 +104,18 @@ usb_vbus: regulator-5v0-usb-vbus {
>> enable-active-high;
>> regulator-always-on;
>> };
>> +
>> + reserved_memory: reserved-memory {
>> + #address-cells = <2>;
>> + #size-cells = <2>;
>> + ranges;
>> +
>> + scp_mem: memory@50000000 {
>> + compatible = "shared-dma-pool";
>> + reg = <0 0x50000000 0 0x2900000>;
>> + no-map;
>> + };
>> + };
>> };
>>
>> &i2c0 {
>> @@ -600,6 +612,14 @@ pins-low-power-pupd {
>> };
>> };
>>
>> + scp_pins: scp-default-pins {
>> + pins-vreq {
>> + pinmux = <PINMUX_GPIO76__FUNC_SCP_VREQ_VAO>;
>> + bias-disable;
>> + input-enable;
>> + };
>> + };
>> +
>> spi0_pins: spi0-default-pins {
>> pins-cs-mosi-clk {
>> pinmux = <PINMUX_GPIO132__FUNC_SPIM0_CSB>,
>> @@ -643,6 +663,14 @@ &pmic {
>> interrupts-extended = <&pio 222 IRQ_TYPE_LEVEL_HIGH>;
>> };
>>
>> +&scp {
>> + status = "okay";
>> +
>> + memory-region = <&scp_mem>;
>> + pinctrl-names = "default";
>> + pinctrl-0 = <&scp_pins>;
>
> firmware-name = "mediatek/mt8195/scp.img";
>
My intention was to actually add this line here. I must've erroneously
dropped it during cleanup/rebase...
> Or maybe this should be added to the base mt8195.dtsi?
>
> The entry for mt8192 was added to mt8192-asurada.dtsi though.
>
> Tinghan, could you ask internally whether the SCP firmware should be
> tied to the SoC or the projects involving the SoC?
In my opinion, even if that may be tied to the SoCs, we should still declare
it in the machine(/platform) devicetree as (even if *luckily* this is not the
case on Chromebooks), firmwares may be signed with a OEM key and may differ
just for that.
I'll send a v3 with that fix ASAP.
Cheers,
Angelo
>
> Thanks
> ChenYu
>
>> +};
>> +
>> &spi0 {
>> status = "okay";
>>
>> --
>> 2.35.1
>>
>>
next prev parent reply other threads:[~2022-07-25 8:06 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-21 14:50 [PATCH v2 0/8] MT8195 Acer Tomato - devicetrees Part 2 AngeloGioacchino Del Regno
2022-07-21 14:50 ` [PATCH v2 1/8] arm64: dts: mediatek: cherry: Enable the System Companion Processor AngeloGioacchino Del Regno
2022-07-25 4:21 ` Chen-Yu Tsai
2022-07-25 8:06 ` AngeloGioacchino Del Regno [this message]
2022-07-21 14:50 ` [PATCH v2 2/8] arm64: dts: mediatek: cherry: Wire up the ChromeOS EC and GSC AngeloGioacchino Del Regno
2022-07-25 10:04 ` Chen-Yu Tsai
2022-07-21 14:50 ` [PATCH v2 3/8] arm64: dts: mediatek: cherry: Add keyboard mapping for the top row AngeloGioacchino Del Regno
2022-07-25 7:59 ` Chen-Yu Tsai
2022-07-21 14:50 ` [PATCH v2 4/8] arm64: dts: mediatek: cherry: Enable secondary SD/MMC controller AngeloGioacchino Del Regno
2022-07-25 8:54 ` Chen-Yu Tsai
2022-07-25 10:20 ` AngeloGioacchino Del Regno
2022-07-26 4:04 ` Chen-Yu Tsai
2022-07-26 8:11 ` AngeloGioacchino Del Regno
2022-07-21 14:50 ` [PATCH v2 5/8] arm64: dts: mediatek: cherry: Enable Elantech eKTH3000 i2c trackpad AngeloGioacchino Del Regno
2022-07-25 7:27 ` Chen-Yu Tsai
2022-07-21 14:50 ` [PATCH v2 6/8] arm64: dts: mediatek: cherry: Enable DSP, audio codec and sound card AngeloGioacchino Del Regno
2022-07-25 10:44 ` Chen-Yu Tsai
2022-07-25 10:48 ` AngeloGioacchino Del Regno
2022-07-26 4:02 ` Chen-Yu Tsai
2022-07-21 14:50 ` [PATCH v2 7/8] arm64: dts: mediatek: cherry: Enable keyboard PWM backlight AngeloGioacchino Del Regno
2022-07-25 9:57 ` Chen-Yu Tsai
2022-07-25 10:04 ` AngeloGioacchino Del Regno
2022-07-25 10:06 ` Chen-Yu Tsai
2022-07-25 10:14 ` AngeloGioacchino Del Regno
2022-07-21 14:50 ` [PATCH v2 8/8] arm64: dts: mediatek: cherry: Enable MT6315 regulators on SPMI bus AngeloGioacchino Del Regno
2022-07-25 9:08 ` Chen-Yu Tsai
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=94bea93e-484d-e635-4e94-5ffe14b127f4@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=robh+dt@kernel.org \
--cc=tinghan.shen@mediatek.com \
--cc=wenst@chromium.org \
/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