* [PATCH] coresight: acpi: add support for amba dma-330 controller
@ 2022-09-16 11:19 Vijayenthiran Subramaniam
2022-09-16 11:40 ` Suzuki K Poulose
2022-09-16 13:00 ` Sudeep Holla
0 siblings, 2 replies; 5+ messages in thread
From: Vijayenthiran Subramaniam @ 2022-09-16 11:19 UTC (permalink / raw)
To: rafael, lenb, linux-acpi, linux-kernel
Cc: linux-arm-kernel, coresight, suzuki.poulose, thomas.abraham,
vijayenthiran.subramaniam
Add ACPI ID for ARM DMA-330 controller to AMBA id list to allow the
probing of the device.
Signed-off-by: Vijayenthiran Subramaniam <vijayenthiran.subramaniam@arm.com>
---
drivers/acpi/acpi_amba.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/acpi/acpi_amba.c b/drivers/acpi/acpi_amba.c
index ab8a4e0191b1..5574a0a97655 100644
--- a/drivers/acpi/acpi_amba.c
+++ b/drivers/acpi/acpi_amba.c
@@ -21,6 +21,7 @@
static const struct acpi_device_id amba_id_list[] = {
{"ARMH0061", 0}, /* PL061 GPIO Device */
+ {"ARMH0330", 0}, /* ARM AMBA DMA Controller DMA-330 */
{"ARMHC500", 0}, /* ARM CoreSight ETM4x */
{"ARMHC501", 0}, /* ARM CoreSight ETR */
{"ARMHC502", 0}, /* ARM CoreSight STM */
--
2.17.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] coresight: acpi: add support for amba dma-330 controller
2022-09-16 11:19 [PATCH] coresight: acpi: add support for amba dma-330 controller Vijayenthiran Subramaniam
@ 2022-09-16 11:40 ` Suzuki K Poulose
2022-09-16 12:59 ` Vijayenthiran Subramanian
2022-09-16 13:00 ` Sudeep Holla
1 sibling, 1 reply; 5+ messages in thread
From: Suzuki K Poulose @ 2022-09-16 11:40 UTC (permalink / raw)
To: Vijayenthiran Subramaniam, rafael, lenb, linux-acpi, linux-kernel
Cc: linux-arm-kernel, coresight, thomas.abraham
Hi
nit: on subject. This has no relation to CoreSight. This
could be :
acpi: amba: Add support for xyz.
Suzuki
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] coresight: acpi: add support for amba dma-330 controller
2022-09-16 11:40 ` Suzuki K Poulose
@ 2022-09-16 12:59 ` Vijayenthiran Subramanian
0 siblings, 0 replies; 5+ messages in thread
From: Vijayenthiran Subramanian @ 2022-09-16 12:59 UTC (permalink / raw)
To: Suzuki K Poulose
Cc: Vijayenthiran Subramaniam, rafael, lenb, linux-acpi, linux-kernel,
linux-arm-kernel, thomas.abraham
Hi Suzuki,
On Fri, Sep 16, 2022 at 11:46 AM Suzuki K Poulose
<suzuki.poulose@arm.com> wrote:
>
> Hi
>
> nit: on subject. This has no relation to CoreSight. This
> could be :
>
> acpi: amba: Add support for xyz.
Ack. Will send a v2.
>
>
> Suzuki
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] coresight: acpi: add support for amba dma-330 controller
2022-09-16 11:19 [PATCH] coresight: acpi: add support for amba dma-330 controller Vijayenthiran Subramaniam
2022-09-16 11:40 ` Suzuki K Poulose
@ 2022-09-16 13:00 ` Sudeep Holla
2022-09-21 14:42 ` Vijayenthiran Subramanian
1 sibling, 1 reply; 5+ messages in thread
From: Sudeep Holla @ 2022-09-16 13:00 UTC (permalink / raw)
To: Vijayenthiran Subramaniam
Cc: rafael, lenb, linux-acpi, linux-kernel, linux-arm-kernel,
coresight, suzuki.poulose, thomas.abraham
On Fri, Sep 16, 2022 at 04:49:12PM +0530, Vijayenthiran Subramaniam wrote:
> Add ACPI ID for ARM DMA-330 controller to AMBA id list to allow the
> probing of the device.
>
$subject pattern is simply wrong and I see this is just copied from the
previous commit which makes no sense here. You can see other commits
and their patterns too.
Use prefix something like:
ACPI / amba:
or
ACPI: amba:
Also "Add .." in the $subject sounds like you are adding the support for
the controller here which is not the case.
Enable support for Arm Primecell PL330 dma controller
Or
Add Arm Primecell PL330 dma controller to the supported list
--
Regards,
Sudeep
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] coresight: acpi: add support for amba dma-330 controller
2022-09-16 13:00 ` Sudeep Holla
@ 2022-09-21 14:42 ` Vijayenthiran Subramanian
0 siblings, 0 replies; 5+ messages in thread
From: Vijayenthiran Subramanian @ 2022-09-21 14:42 UTC (permalink / raw)
To: Sudeep Holla
Cc: Vijayenthiran Subramaniam, rafael, lenb, linux-acpi, linux-kernel,
linux-arm-kernel, coresight, suzuki.poulose, thomas.abraham
Hi Sudeep,
On Fri, Sep 16, 2022 at 1:06 PM Sudeep Holla <sudeep.holla@arm.com> wrote:
>
> On Fri, Sep 16, 2022 at 04:49:12PM +0530, Vijayenthiran Subramaniam wrote:
> > Add ACPI ID for ARM DMA-330 controller to AMBA id list to allow the
> > probing of the device.
> >
>
> $subject pattern is simply wrong and I see this is just copied from the
> previous commit which makes no sense here. You can see other commits
> and their patterns too.
>
> Use prefix something like:
> ACPI / amba:
> or
> ACPI: amba:
>
> Also "Add .." in the $subject sounds like you are adding the support for
> the controller here which is not the case.
>
> Enable support for Arm Primecell PL330 dma controller
> Or
> Add Arm Primecell PL330 dma controller to the supported list
Ack.
I have posted v2 with the subject:
[PATCH v2] ACPI: amba: Add Arm DMA-330 controller to the supported list.
>
> --
> Regards,
> Sudeep
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-09-21 14:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-16 11:19 [PATCH] coresight: acpi: add support for amba dma-330 controller Vijayenthiran Subramaniam
2022-09-16 11:40 ` Suzuki K Poulose
2022-09-16 12:59 ` Vijayenthiran Subramanian
2022-09-16 13:00 ` Sudeep Holla
2022-09-21 14:42 ` Vijayenthiran Subramanian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox