All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot
@ 2023-02-06 13:53 Neil Armstrong
  2023-02-06 13:54 ` Konrad Dybcio
  2023-02-14 17:30 ` Bjorn Andersson
  0 siblings, 2 replies; 4+ messages in thread
From: Neil Armstrong @ 2023-02-06 13:53 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Konrad Dybcio, Mathieu Poirier
  Cc: linux-arm-msm, linux-remoteproc, linux-kernel, Neil Armstrong

Set the SM8550 adsp & cdsp auto_boot to true to match the behavior
of the previous platforms.

Fixes: 7eddedc97563 ("remoteproc: qcom_q6v5_pas: add sm8550 adsp, cdsp & mpss compatible & data")
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
---
 drivers/remoteproc/qcom_q6v5_pas.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
index 4e1d9b08def4..90c5612a3045 100644
--- a/drivers/remoteproc/qcom_q6v5_pas.c
+++ b/drivers/remoteproc/qcom_q6v5_pas.c
@@ -1108,7 +1108,7 @@ static const struct adsp_data sm8550_adsp_resource = {
 	.pas_id = 1,
 	.dtb_pas_id = 0x24,
 	.minidump_id = 5,
-	.auto_boot = false,
+	.auto_boot = true,
 	.proxy_pd_names = (char*[]){
 		"lcx",
 		"lmx",
@@ -1127,7 +1127,7 @@ static const struct adsp_data sm8550_cdsp_resource = {
 	.pas_id = 18,
 	.dtb_pas_id = 0x25,
 	.minidump_id = 7,
-	.auto_boot = false,
+	.auto_boot = true,
 	.proxy_pd_names = (char*[]){
 		"cx",
 		"mxc",

---
base-commit: ea4dabbb4ad7eb52632a2ca0b8f89f0ea7c55dcf
change-id: 20230206-topic-sm8550-upstream-fix-remoteproc-autoboot-5c7effcf197c

Best regards,
-- 
Neil Armstrong <neil.armstrong@linaro.org>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot
  2023-02-06 13:53 [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot Neil Armstrong
@ 2023-02-06 13:54 ` Konrad Dybcio
  2023-02-06 13:59   ` Neil Armstrong
  2023-02-14 17:30 ` Bjorn Andersson
  1 sibling, 1 reply; 4+ messages in thread
From: Konrad Dybcio @ 2023-02-06 13:54 UTC (permalink / raw)
  To: Neil Armstrong, Andy Gross, Bjorn Andersson, Mathieu Poirier
  Cc: linux-arm-msm, linux-remoteproc, linux-kernel



On 6.02.2023 14:53, Neil Armstrong wrote:
> Set the SM8550 adsp & cdsp auto_boot to true to match the behavior
> of the previous platforms.
> 
> Fixes: 7eddedc97563 ("remoteproc: qcom_q6v5_pas: add sm8550 adsp, cdsp & mpss compatible & data")
> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
> ---
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>

Konrad
>  drivers/remoteproc/qcom_q6v5_pas.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
> index 4e1d9b08def4..90c5612a3045 100644
> --- a/drivers/remoteproc/qcom_q6v5_pas.c
> +++ b/drivers/remoteproc/qcom_q6v5_pas.c
> @@ -1108,7 +1108,7 @@ static const struct adsp_data sm8550_adsp_resource = {
>  	.pas_id = 1,
>  	.dtb_pas_id = 0x24,
>  	.minidump_id = 5,
> -	.auto_boot = false,
> +	.auto_boot = true,
>  	.proxy_pd_names = (char*[]){
>  		"lcx",
>  		"lmx",
> @@ -1127,7 +1127,7 @@ static const struct adsp_data sm8550_cdsp_resource = {
>  	.pas_id = 18,
>  	.dtb_pas_id = 0x25,
>  	.minidump_id = 7,
> -	.auto_boot = false,
> +	.auto_boot = true,
>  	.proxy_pd_names = (char*[]){
>  		"cx",
>  		"mxc",
> 
> ---
> base-commit: ea4dabbb4ad7eb52632a2ca0b8f89f0ea7c55dcf
> change-id: 20230206-topic-sm8550-upstream-fix-remoteproc-autoboot-5c7effcf197c
P.S not sure if you wanted to send that to lkml
> 
> Best regards,

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot
  2023-02-06 13:54 ` Konrad Dybcio
@ 2023-02-06 13:59   ` Neil Armstrong
  0 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2023-02-06 13:59 UTC (permalink / raw)
  To: Konrad Dybcio, Andy Gross, Bjorn Andersson, Mathieu Poirier
  Cc: linux-arm-msm, linux-remoteproc, linux-kernel

On 06/02/2023 14:54, Konrad Dybcio wrote:
> 
> 
> On 6.02.2023 14:53, Neil Armstrong wrote:
>> Set the SM8550 adsp & cdsp auto_boot to true to match the behavior
>> of the previous platforms.
>>
>> Fixes: 7eddedc97563 ("remoteproc: qcom_q6v5_pas: add sm8550 adsp, cdsp & mpss compatible & data")
>> Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
>> ---
> Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> 
> Konrad
>>   drivers/remoteproc/qcom_q6v5_pas.c | 4 ++--
>>   1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/remoteproc/qcom_q6v5_pas.c b/drivers/remoteproc/qcom_q6v5_pas.c
>> index 4e1d9b08def4..90c5612a3045 100644
>> --- a/drivers/remoteproc/qcom_q6v5_pas.c
>> +++ b/drivers/remoteproc/qcom_q6v5_pas.c
>> @@ -1108,7 +1108,7 @@ static const struct adsp_data sm8550_adsp_resource = {
>>   	.pas_id = 1,
>>   	.dtb_pas_id = 0x24,
>>   	.minidump_id = 5,
>> -	.auto_boot = false,
>> +	.auto_boot = true,
>>   	.proxy_pd_names = (char*[]){
>>   		"lcx",
>>   		"lmx",
>> @@ -1127,7 +1127,7 @@ static const struct adsp_data sm8550_cdsp_resource = {
>>   	.pas_id = 18,
>>   	.dtb_pas_id = 0x25,
>>   	.minidump_id = 7,
>> -	.auto_boot = false,
>> +	.auto_boot = true,
>>   	.proxy_pd_names = (char*[]){
>>   		"cx",
>>   		"mxc",
>>
>> ---
>> base-commit: ea4dabbb4ad7eb52632a2ca0b8f89f0ea7c55dcf
>> change-id: 20230206-topic-sm8550-upstream-fix-remoteproc-autoboot-5c7effcf197c
> P.S not sure if you wanted to send that to lkml

It's part of what b4 sends, there's nothing secret

Neil

>>
>> Best regards,


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot
  2023-02-06 13:53 [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot Neil Armstrong
  2023-02-06 13:54 ` Konrad Dybcio
@ 2023-02-14 17:30 ` Bjorn Andersson
  1 sibling, 0 replies; 4+ messages in thread
From: Bjorn Andersson @ 2023-02-14 17:30 UTC (permalink / raw)
  To: Andy Gross, Mathieu Poirier, Neil Armstrong, Konrad Dybcio
  Cc: linux-kernel, linux-arm-msm, linux-remoteproc

On Mon, 06 Feb 2023 14:53:31 +0100, Neil Armstrong wrote:
> Set the SM8550 adsp & cdsp auto_boot to true to match the behavior
> of the previous platforms.
> 
> 

Applied, thanks!

[1/1] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot
      commit: a8086bd9723ac8f1f795ab64f1de7dd0b9be889a

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-14 17:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-06 13:53 [PATCH] remoteproc: qcom_q6v5_pas: enable sm8550 adsp & cdsp autoboot Neil Armstrong
2023-02-06 13:54 ` Konrad Dybcio
2023-02-06 13:59   ` Neil Armstrong
2023-02-14 17:30 ` Bjorn Andersson

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.