From: Hanjun Guo <hanjun.guo@linaro.org>
To: ahs3@redhat.com, Marc Zyngier <marc.zyngier@arm.com>,
"Rafael J. Wysocki" <rjw@rjwysocki.net>,
Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: linux-acpi@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linuxarm@huawei.com,
Thomas Gleixner <tglx@linutronix.de>,
Kefeng Wang <wangkefeng.wang@huawei.com>,
huxinwei@huawei.com, yimin@huawei.com,
MaJun <majun258@huawei.com>, Darren Hart <dvhart@infradead.org>
Subject: Re: [Update][PATCH v9.1 15/15] irqchip: mbigen: Add ACPI support
Date: Wed, 29 Mar 2017 11:01:02 +0800 [thread overview]
Message-ID: <58DB236E.9000006@linaro.org> (raw)
In-Reply-To: <6fb7a454-7829-0147-9b53-2d85e9200ad3@redhat.com>
On 03/29/2017 03:13 AM, Al Stone wrote:
> On 03/28/2017 06:21 AM, Hanjun Guo wrote:
[...]
>>
>> +#ifdef CONFIG_ACPI
>> +static int mbigen_acpi_create_domain(struct platform_device *pdev,
>> + struct mbigen_device *mgn_chip)
>> +{
>> + struct irq_domain *domain;
>> + u32 num_pins = 0;
>> + int ret;
>> +
>> + /*
>> + * "num-pins" is the total number of interrupt pins implemented in
>> + * this mbigen instance, and mbigen is an interrupt controller
>> + * connected to ITS converting wired interrupts into MSI, so we
>> + * use "num-pins" to alloc MSI vectors which are needed by client
>> + * devices connected to it.
>> + *
>> + * Here is the DSDT device node used for mbigen in firmware:
>> + * Device(MBI0) {
>> + * Name(_HID, "HISI0152")
>> + * Name(_UID, Zero)
>> + * Name(_CRS, ResourceTemplate() {
>> + * Memory32Fixed(ReadWrite, 0xa0080000, 0x10000)
>> + * })
>> + *
>> + * Name(_DSD, Package () {
>> + * ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
>> + * Package () {
>> + * Package () {"num-pins", 378}
>> + * }
>> + * })
>> + * }
>> + */
>
> Excellent. These comments I really like. Thanks for doing this!
>
>> + ret = device_property_read_u32(&pdev->dev, "num-pins", &num_pins);
>> + if (ret || num_pins == 0)
>> + return -EINVAL;
>> +
>> + domain = platform_msi_create_device_domain(&pdev->dev, num_pins,
>> + mbigen_write_msg,
>> + &mbigen_domain_ops,
>> + mgn_chip);
>> + if (!domain)
>> + return -ENOMEM;
>> +
>> + return 0;
>> +}
>> +#else
>> +static inline int mbigen_acpi_create_domain(struct platform_device *pdev,
>> + struct mbigen_device *mgn_chip)
>> +{
>> + return -ENODEV;
>> +}
>> +#endif
>> +
>> static int mbigen_device_probe(struct platform_device *pdev)
>> {
>> struct mbigen_device *mgn_chip;
>> @@ -289,9 +342,18 @@ static int mbigen_device_probe(struct platform_device *pdev)
>> if (IS_ERR(mgn_chip->base))
>> return PTR_ERR(mgn_chip->base);
>>
>> - err = mbigen_of_create_domain(pdev, mgn_chip);
>> - if (err)
>> + if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node)
>> + err = mbigen_of_create_domain(pdev, mgn_chip);
>> + else if (ACPI_COMPANION(&pdev->dev))
>> + err = mbigen_acpi_create_domain(pdev, mgn_chip);
>> + else
>> + err = -EINVAL;
>> +
>> + if (err) {
>> + dev_err(&pdev->dev, "Failed to create mbi-gen@%p irqdomain",
>> + mgn_chip->base);
>> return err;
>> + }
>>
>> platform_set_drvdata(pdev, mgn_chip);
>> return 0;
>> @@ -303,10 +365,17 @@ static int mbigen_device_probe(struct platform_device *pdev)
>> };
>> MODULE_DEVICE_TABLE(of, mbigen_of_match);
>>
>> +static const struct acpi_device_id mbigen_acpi_match[] = {
>> + { "HISI0152", 0 },
>> + {}
>> +};
>> +MODULE_DEVICE_TABLE(acpi, mbigen_acpi_match);
>> +
>> static struct platform_driver mbigen_platform_driver = {
>> .driver = {
>> .name = "Hisilicon MBIGEN-V2",
>> .of_match_table = mbigen_of_match,
>> + .acpi_match_table = ACPI_PTR(mbigen_acpi_match),
>> },
>> .probe = mbigen_device_probe,
>> };
>>
>
> All LGTM.
>
> Reviewed-by: Al Stone <ahs3@redhat.com>
Thank you Al :)
Marc, Lorenzo, since it's little bit late and urgent, could we merge
this version?
Thanks
Hanjun
WARNING: multiple messages have this Message-ID (diff)
From: hanjun.guo@linaro.org (Hanjun Guo)
To: linux-arm-kernel@lists.infradead.org
Subject: [Update][PATCH v9.1 15/15] irqchip: mbigen: Add ACPI support
Date: Wed, 29 Mar 2017 11:01:02 +0800 [thread overview]
Message-ID: <58DB236E.9000006@linaro.org> (raw)
In-Reply-To: <6fb7a454-7829-0147-9b53-2d85e9200ad3@redhat.com>
On 03/29/2017 03:13 AM, Al Stone wrote:
> On 03/28/2017 06:21 AM, Hanjun Guo wrote:
[...]
>>
>> +#ifdef CONFIG_ACPI
>> +static int mbigen_acpi_create_domain(struct platform_device *pdev,
>> + struct mbigen_device *mgn_chip)
>> +{
>> + struct irq_domain *domain;
>> + u32 num_pins = 0;
>> + int ret;
>> +
>> + /*
>> + * "num-pins" is the total number of interrupt pins implemented in
>> + * this mbigen instance, and mbigen is an interrupt controller
>> + * connected to ITS converting wired interrupts into MSI, so we
>> + * use "num-pins" to alloc MSI vectors which are needed by client
>> + * devices connected to it.
>> + *
>> + * Here is the DSDT device node used for mbigen in firmware:
>> + * Device(MBI0) {
>> + * Name(_HID, "HISI0152")
>> + * Name(_UID, Zero)
>> + * Name(_CRS, ResourceTemplate() {
>> + * Memory32Fixed(ReadWrite, 0xa0080000, 0x10000)
>> + * })
>> + *
>> + * Name(_DSD, Package () {
>> + * ToUUID("daffd814-6eba-4d8c-8a91-bc9bbf4aa301"),
>> + * Package () {
>> + * Package () {"num-pins", 378}
>> + * }
>> + * })
>> + * }
>> + */
>
> Excellent. These comments I really like. Thanks for doing this!
>
>> + ret = device_property_read_u32(&pdev->dev, "num-pins", &num_pins);
>> + if (ret || num_pins == 0)
>> + return -EINVAL;
>> +
>> + domain = platform_msi_create_device_domain(&pdev->dev, num_pins,
>> + mbigen_write_msg,
>> + &mbigen_domain_ops,
>> + mgn_chip);
>> + if (!domain)
>> + return -ENOMEM;
>> +
>> + return 0;
>> +}
>> +#else
>> +static inline int mbigen_acpi_create_domain(struct platform_device *pdev,
>> + struct mbigen_device *mgn_chip)
>> +{
>> + return -ENODEV;
>> +}
>> +#endif
>> +
>> static int mbigen_device_probe(struct platform_device *pdev)
>> {
>> struct mbigen_device *mgn_chip;
>> @@ -289,9 +342,18 @@ static int mbigen_device_probe(struct platform_device *pdev)
>> if (IS_ERR(mgn_chip->base))
>> return PTR_ERR(mgn_chip->base);
>>
>> - err = mbigen_of_create_domain(pdev, mgn_chip);
>> - if (err)
>> + if (IS_ENABLED(CONFIG_OF) && pdev->dev.of_node)
>> + err = mbigen_of_create_domain(pdev, mgn_chip);
>> + else if (ACPI_COMPANION(&pdev->dev))
>> + err = mbigen_acpi_create_domain(pdev, mgn_chip);
>> + else
>> + err = -EINVAL;
>> +
>> + if (err) {
>> + dev_err(&pdev->dev, "Failed to create mbi-gen@%p irqdomain",
>> + mgn_chip->base);
>> return err;
>> + }
>>
>> platform_set_drvdata(pdev, mgn_chip);
>> return 0;
>> @@ -303,10 +365,17 @@ static int mbigen_device_probe(struct platform_device *pdev)
>> };
>> MODULE_DEVICE_TABLE(of, mbigen_of_match);
>>
>> +static const struct acpi_device_id mbigen_acpi_match[] = {
>> + { "HISI0152", 0 },
>> + {}
>> +};
>> +MODULE_DEVICE_TABLE(acpi, mbigen_acpi_match);
>> +
>> static struct platform_driver mbigen_platform_driver = {
>> .driver = {
>> .name = "Hisilicon MBIGEN-V2",
>> .of_match_table = mbigen_of_match,
>> + .acpi_match_table = ACPI_PTR(mbigen_acpi_match),
>> },
>> .probe = mbigen_device_probe,
>> };
>>
>
> All LGTM.
>
> Reviewed-by: Al Stone <ahs3@redhat.com>
Thank you Al :)
Marc, Lorenzo, since it's little bit late and urgent, could we merge
this version?
Thanks
Hanjun
next prev parent reply other threads:[~2017-03-29 3:01 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-28 12:21 [Update][PATCH v9.1 15/15] irqchip: mbigen: Add ACPI support Hanjun Guo
2017-03-28 12:21 ` Hanjun Guo
2017-03-28 12:21 ` Hanjun Guo
2017-03-28 12:30 ` majun (Euler7)
2017-03-28 12:30 ` majun (Euler7)
2017-03-28 12:30 ` majun (Euler7)
2017-03-28 12:53 ` Wei Xu
2017-03-28 12:53 ` Wei Xu
2017-03-28 12:53 ` Wei Xu
2017-03-28 19:13 ` Al Stone
2017-03-28 19:13 ` Al Stone
2017-03-28 19:13 ` Al Stone
2017-03-29 3:01 ` Hanjun Guo [this message]
2017-03-29 3:01 ` Hanjun Guo
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=58DB236E.9000006@linaro.org \
--to=hanjun.guo@linaro.org \
--cc=ahs3@redhat.com \
--cc=dvhart@infradead.org \
--cc=huxinwei@huawei.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxarm@huawei.com \
--cc=lorenzo.pieralisi@arm.com \
--cc=majun258@huawei.com \
--cc=marc.zyngier@arm.com \
--cc=rjw@rjwysocki.net \
--cc=tglx@linutronix.de \
--cc=wangkefeng.wang@huawei.com \
--cc=yimin@huawei.com \
/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.