linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq()
@ 2016-09-27 13:43 남영민
  2016-09-30 10:34 ` Krzysztof Kozlowski
  0 siblings, 1 reply; 5+ messages in thread
From: 남영민 @ 2016-09-27 13:43 UTC (permalink / raw)
  To: gregkh, jslaby; +Cc: linux-serial, linux-samsung-soc

This patch adds clock controls in s3c24xx_serial_resume_noirq()
to set S3C64XX_UINTM register.

Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
---
 drivers/tty/serial/samsung.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c
index ae2095a..97f7b3b 100644
--- a/drivers/tty/serial/samsung.c
+++ b/drivers/tty/serial/samsung.c
@@ -1921,6 +1921,7 @@ static int s3c24xx_serial_resume(struct device *dev)
 static int s3c24xx_serial_resume_noirq(struct device *dev)
 {
 	struct uart_port *port = s3c24xx_dev_to_port(dev);
+	struct s3c24xx_uart_port *ourport = to_ourport(port);
 
 	if (port) {
 		/* restore IRQ mask */
@@ -1930,7 +1931,9 @@ static int s3c24xx_serial_resume_noirq(struct device *dev)
 				uintm &= ~S3C64XX_UINTM_TXD_MSK;
 			if (rx_enabled(port))
 				uintm &= ~S3C64XX_UINTM_RXD_MSK;
+			clk_prepare_enable(ourport->clk);
 			wr_regl(port, S3C64XX_UINTM, uintm);
+			clk_disable_unprepare(ourport->clk);
 		}
 	}
 
-- 
2.8.1

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

* Re: [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq()
  2016-09-27 13:43 [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq() 남영민
@ 2016-09-30 10:34 ` Krzysztof Kozlowski
  2016-10-04  5:04   ` 남영민
  0 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2016-09-30 10:34 UTC (permalink / raw)
  To: 남영민; +Cc: gregkh, jslaby, linux-serial, linux-samsung-soc

On Tue, Sep 27, 2016 at 10:43:54PM +0900, 남영민 wrote:
> This patch adds clock controls in s3c24xx_serial_resume_noirq()
> to set S3C64XX_UINTM register.

Code looks correct but the commit message is bogus. It does not bring
any benefit over the code, not mentioning that it is quite cryptic (what
does the "clock controls" mean?).

Just describe here WHAT is the problem and WHY the fix is needed.

Best regards,
Krzysztof

> 
> Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
> ---
>  drivers/tty/serial/samsung.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/tty/serial/samsung.c b/drivers/tty/serial/samsung.c
> index ae2095a..97f7b3b 100644
> --- a/drivers/tty/serial/samsung.c
> +++ b/drivers/tty/serial/samsung.c
> @@ -1921,6 +1921,7 @@ static int s3c24xx_serial_resume(struct device *dev)
>  static int s3c24xx_serial_resume_noirq(struct device *dev)
>  {
>  	struct uart_port *port = s3c24xx_dev_to_port(dev);
> +	struct s3c24xx_uart_port *ourport = to_ourport(port);
>  
>  	if (port) {
>  		/* restore IRQ mask */
> @@ -1930,7 +1931,9 @@ static int s3c24xx_serial_resume_noirq(struct device *dev)
>  				uintm &= ~S3C64XX_UINTM_TXD_MSK;
>  			if (rx_enabled(port))
>  				uintm &= ~S3C64XX_UINTM_RXD_MSK;
> +			clk_prepare_enable(ourport->clk);
>  			wr_regl(port, S3C64XX_UINTM, uintm);
> +			clk_disable_unprepare(ourport->clk);
>  		}
>  	}
>  
> -- 
> 2.8.1
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* RE: [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq()
  2016-09-30 10:34 ` Krzysztof Kozlowski
@ 2016-10-04  5:04   ` 남영민
  2017-01-26 13:40     ` Tobias Jakobi
  0 siblings, 1 reply; 5+ messages in thread
From: 남영민 @ 2016-10-04  5:04 UTC (permalink / raw)
  To: 'Krzysztof Kozlowski'
  Cc: gregkh, jslaby, linux-serial, linux-samsung-soc

Hello,

>On Tue, Sep 27, 2016 at 10:43:54PM +0900, 남영민 wrote:
>> This patch adds clock controls in s3c24xx_serial_resume_noirq() to set
>> S3C64XX_UINTM register.
>
>Code looks correct but the commit message is bogus. It does not bring any
>benefit over the code, not mentioning that it is quite cryptic (what does
>the "clock controls" mean?).
>
>Just describe here WHAT is the problem and WHY the fix is needed.
>
>Best regards,
>Krzysztof
>

Thank you for taking your time for the review.
I will improve the commit message applying your suggestions and resend this patch.

Best regards,
Youngmin Nam


>>
>> Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
>> ---
>>  drivers/tty/serial/samsung.c | 3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/tty/serial/samsung.c
>> b/drivers/tty/serial/samsung.c index ae2095a..97f7b3b 100644
>> --- a/drivers/tty/serial/samsung.c
>> +++ b/drivers/tty/serial/samsung.c
>> @@ -1921,6 +1921,7 @@ static int s3c24xx_serial_resume(struct device
>> *dev)  static int s3c24xx_serial_resume_noirq(struct device *dev)  {
>>  	struct uart_port *port = s3c24xx_dev_to_port(dev);
>> +	struct s3c24xx_uart_port *ourport = to_ourport(port);
>>
>>  	if (port) {
>>  		/* restore IRQ mask */
>> @@ -1930,7 +1931,9 @@ static int s3c24xx_serial_resume_noirq(struct
>device *dev)
>>  				uintm &= ~S3C64XX_UINTM_TXD_MSK;
>>  			if (rx_enabled(port))
>>  				uintm &= ~S3C64XX_UINTM_RXD_MSK;
>> +			clk_prepare_enable(ourport->clk);
>>  			wr_regl(port, S3C64XX_UINTM, uintm);
>> +			clk_disable_unprepare(ourport->clk);
>>  		}
>>  	}
>>
>> --
>> 2.8.1
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe
>> linux-samsung-soc" in the body of a message to
>> majordomo@vger.kernel.org More majordomo info at
>http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq()
  2016-10-04  5:04   ` 남영민
@ 2017-01-26 13:40     ` Tobias Jakobi
  2017-02-01  9:45       ` 남영민
  0 siblings, 1 reply; 5+ messages in thread
From: Tobias Jakobi @ 2017-01-26 13:40 UTC (permalink / raw)
  To: 남영민, 'Krzysztof Kozlowski'
  Cc: gregkh, jslaby, linux-serial, linux-samsung-soc

Hello,

was going through my mail folder and I don't think that this patch was
ever applied (or resent).

Just wondering if it is still necessary.

- Tobias


남영민 wrote:
> Hello,
> 
>> On Tue, Sep 27, 2016 at 10:43:54PM +0900, 남영민 wrote:
>>> This patch adds clock controls in s3c24xx_serial_resume_noirq() to set
>>> S3C64XX_UINTM register.
>>
>> Code looks correct but the commit message is bogus. It does not bring any
>> benefit over the code, not mentioning that it is quite cryptic (what does
>> the "clock controls" mean?).
>>
>> Just describe here WHAT is the problem and WHY the fix is needed.
>>
>> Best regards,
>> Krzysztof
>>
> 
> Thank you for taking your time for the review.
> I will improve the commit message applying your suggestions and resend this patch.
> 
> Best regards,
> Youngmin Nam
> 
> 
>>>
>>> Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
>>> ---
>>>  drivers/tty/serial/samsung.c | 3 +++
>>>  1 file changed, 3 insertions(+)
>>>
>>> diff --git a/drivers/tty/serial/samsung.c
>>> b/drivers/tty/serial/samsung.c index ae2095a..97f7b3b 100644
>>> --- a/drivers/tty/serial/samsung.c
>>> +++ b/drivers/tty/serial/samsung.c
>>> @@ -1921,6 +1921,7 @@ static int s3c24xx_serial_resume(struct device
>>> *dev)  static int s3c24xx_serial_resume_noirq(struct device *dev)  {
>>>  	struct uart_port *port = s3c24xx_dev_to_port(dev);
>>> +	struct s3c24xx_uart_port *ourport = to_ourport(port);
>>>
>>>  	if (port) {
>>>  		/* restore IRQ mask */
>>> @@ -1930,7 +1931,9 @@ static int s3c24xx_serial_resume_noirq(struct
>> device *dev)
>>>  				uintm &= ~S3C64XX_UINTM_TXD_MSK;
>>>  			if (rx_enabled(port))
>>>  				uintm &= ~S3C64XX_UINTM_RXD_MSK;
>>> +			clk_prepare_enable(ourport->clk);
>>>  			wr_regl(port, S3C64XX_UINTM, uintm);
>>> +			clk_disable_unprepare(ourport->clk);
>>>  		}
>>>  	}
>>>
>>> --
>>> 2.8.1
>>>
>>>
>>> --
>>> To unsubscribe from this list: send the line "unsubscribe
>>> linux-samsung-soc" in the body of a message to
>>> majordomo@vger.kernel.org More majordomo info at
>> http://vger.kernel.org/majordomo-info.html
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

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

* RE: [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq()
  2017-01-26 13:40     ` Tobias Jakobi
@ 2017-02-01  9:45       ` 남영민
  0 siblings, 0 replies; 5+ messages in thread
From: 남영민 @ 2017-02-01  9:45 UTC (permalink / raw)
  To: 'Tobias Jakobi', 'Krzysztof Kozlowski'
  Cc: gregkh, jslaby, linux-serial, linux-samsung-soc

Hello,

>
>Hello,
>
>was going through my mail folder and I don't think that this patch was ever
>applied (or resent).
>
>Just wondering if it is still necessary.
>
>- Tobias
>

Sorry for late reply. I will resend the patch soon.

Thanks.

>
>남영민 wrote:
>> Hello,
>>
>>> On Tue, Sep 27, 2016 at 10:43:54PM +0900, 남영민 wrote:
>>>> This patch adds clock controls in s3c24xx_serial_resume_noirq() to
>>>> set S3C64XX_UINTM register.
>>>
>>> Code looks correct but the commit message is bogus. It does not bring
>>> any benefit over the code, not mentioning that it is quite cryptic
>>> (what does the "clock controls" mean?).
>>>
>>> Just describe here WHAT is the problem and WHY the fix is needed.
>>>
>>> Best regards,
>>> Krzysztof
>>>
>>
>> Thank you for taking your time for the review.
>> I will improve the commit message applying your suggestions and resend
>this patch.
>>
>> Best regards,
>> Youngmin Nam
>>
>>
>>>>
>>>> Signed-off-by: Youngmin Nam <youngmin.nam@samsung.com>
>>>> ---
>>>>  drivers/tty/serial/samsung.c | 3 +++
>>>>  1 file changed, 3 insertions(+)
>>>>
>>>> diff --git a/drivers/tty/serial/samsung.c
>>>> b/drivers/tty/serial/samsung.c index ae2095a..97f7b3b 100644
>>>> --- a/drivers/tty/serial/samsung.c
>>>> +++ b/drivers/tty/serial/samsung.c
>>>> @@ -1921,6 +1921,7 @@ static int s3c24xx_serial_resume(struct device
>>>> *dev)  static int s3c24xx_serial_resume_noirq(struct device *dev)  {
>>>>  	struct uart_port *port = s3c24xx_dev_to_port(dev);
>>>> +	struct s3c24xx_uart_port *ourport = to_ourport(port);
>>>>
>>>>  	if (port) {
>>>>  		/* restore IRQ mask */
>>>> @@ -1930,7 +1931,9 @@ static int s3c24xx_serial_resume_noirq(struct
>>> device *dev)
>>>>  				uintm &= ~S3C64XX_UINTM_TXD_MSK;
>>>>  			if (rx_enabled(port))
>>>>  				uintm &= ~S3C64XX_UINTM_RXD_MSK;
>>>> +			clk_prepare_enable(ourport->clk);
>>>>  			wr_regl(port, S3C64XX_UINTM, uintm);
>>>> +			clk_disable_unprepare(ourport->clk);
>>>>  		}
>>>>  	}
>>>>
>>>> --
>>>> 2.8.1
>>>>
>>>>
>>>> --
>>>> To unsubscribe from this list: send the line "unsubscribe
>>>> linux-samsung-soc" in the body of a message to
>>>> majordomo@vger.kernel.org More majordomo info at
>>> http://vger.kernel.org/majordomo-info.html
>>
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe
>> linux-samsung-soc" in the body of a message to
>> majordomo@vger.kernel.org More majordomo info at
>> http://vger.kernel.org/majordomo-info.html
>>
>
>--
>To unsubscribe from this list: send the line "unsubscribe linux-samsung-
>soc" in the body of a message to majordomo@vger.kernel.org More majordomo
>info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2017-02-01  9:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-27 13:43 [PATCH] serial: samsung: add clock controls in s3c24xx_serial_resume_noirq() 남영민
2016-09-30 10:34 ` Krzysztof Kozlowski
2016-10-04  5:04   ` 남영민
2017-01-26 13:40     ` Tobias Jakobi
2017-02-01  9:45       ` 남영민

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).